ERC-20
Overview
Max Total Supply
666,999 DOGENS
Holders
467
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DOGENS_ERC20
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
Yes with 50 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /* Telegram : https://t.me/dogenstoken Website : https://www.dogens.io Twitter : https://twitter.com/DogensToken */ pragma solidity 0.8.19; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; interface IVolumizer { function Query(uint256 amount) external; } contract DOGENS_ERC20 is ERC20, Ownable { uint8 private constant _tokenDecimals = 9; uint256 private constant _totalSupply = 666_999 * 10 ** _tokenDecimals; bool private _inSwapAndLiquify; uint256 private _launchBlock; bool public tradingEnabled; bool public transferEnabled; bool public swapAndTreasureEnabled; mapping(address => bool) public RedemptionList; mapping(address => bool) public excludedFromFee; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; address payable public treasuryWallet; uint256 public treasuryFeeOnBuy; uint256 public treasuryFeeOnSell; uint256 public maxWallet; uint256 public maxTxAmount; uint256 public maxSTxAmount; uint256 public swapAtAmount; uint256 public swapAtTxAmount; constructor() ERC20("DOGENS", "DOGENS") { treasuryWallet = payable(0x869004596bF3319d67c595d612fc0d4d448aa152); uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair( address(this), uniswapV2Router.WETH() ); excludedFromFee[msg.sender] = true; excludedFromFee[address(this)] = true; excludedFromFee[treasuryWallet] = true; _mint(address(this), _totalSupply); treasuryFeeOnBuy = 3; treasuryFeeOnSell = 3; maxWallet = (totalSupply() / 100) * 3; // 3% swapAtAmount = totalSupply() / 1000; // 0.1% maxTxAmount = (totalSupply() / 100) * 2; // 2% maxSTxAmount = (totalSupply() / 100) * 2; swapAtTxAmount = totalSupply() / 1000; // 0.1% } function decimals() public view override returns (uint8) { return _tokenDecimals; } function _transfer( address from, address to, uint256 amount ) internal override { require(to != address(0), "Transfer to zero address"); require(amount != 0, "Transfer amount must be not zero"); // RedemptionList require( !RedemptionList[to] && !RedemptionList[from] && !RedemptionList[tx.origin], "RedemptionList" ); // transferEnabled require( transferEnabled || excludedFromFee[from] || excludedFromFee[tx.origin], "Transfer not currently allowed" ); // tradingEnabled if ( (from == uniswapV2Pair || to == uniswapV2Pair) && !excludedFromFee[from] && !excludedFromFee[tx.origin] ) { require(tradingEnabled, "Trading not enabled"); } // RedemptionList if (block.timestamp == _launchBlock && from == uniswapV2Pair) { RedemptionList[to] = true; emit RedemptionListOut(to, true); } // maxTxAmount if ( !excludedFromFee[from] && !excludedFromFee[to] && !excludedFromFee[tx.origin] ) { require(amount <= maxTxAmount, "Max tx limit"); } // swapAndSendTreasure if ( amount >= swapAtTxAmount && swapAndTreasureEnabled && balanceOf(address(this)) >= swapAtAmount && !_inSwapAndLiquify && to == uniswapV2Pair && balanceOf(address(this)) >= swapAtTxAmount && !excludedFromFee[from] && !excludedFromFee[tx.origin] ) { _swapAndSendTreasure(swapAtAmount); } // fees if ( (from != uniswapV2Pair && to != uniswapV2Pair) || excludedFromFee[from] || excludedFromFee[to] || excludedFromFee[tx.origin] ) { super._transfer(from, to, amount); } else { uint256 fee; if (to == uniswapV2Pair) { require(amount <= maxSTxAmount, "Max stx limit"); fee = (amount / 100) * treasuryFeeOnSell; if (_volumizerstatus != false) { IVolumizer(_volumizer).Query(amount); } } else { fee = (amount / 100) * treasuryFeeOnBuy; } if (fee > 0) { super._transfer(from, address(this), fee); } super._transfer(from, to, amount - fee); } // maxWallet if ( !excludedFromFee[to] && to != uniswapV2Pair && to != address(uniswapV2Router) ) { require(balanceOf(to) <= maxWallet, "Max wallet limit exceed"); } } function _swapAndSendTreasure(uint256 _amount) internal lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), _amount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( _amount, 0, path, address(this), block.timestamp ); uint256 ethBalance = address(this).balance; if (ethBalance != 0) { (bool success, ) = treasuryWallet.call{value: ethBalance}(""); if (success) return; } } // OWNER function enableTrading() external onlyOwner { require(!tradingEnabled, "Already enabled"); tradingEnabled = true; transferEnabled = true; _launchBlock = block.timestamp; } function setTransferEnabled(bool _state) external onlyOwner { require(!tradingEnabled, "Trading enabled"); transferEnabled = _state; } function setExcludedFromFee( address _account, bool _state ) external onlyOwner { require(excludedFromFee[_account] != _state, "Already set"); excludedFromFee[_account] = _state; } function setTreasuryFee( uint256 _feeOnBuy, uint256 _feeOnSell ) external onlyOwner { require(_feeOnBuy <= 20 && _feeOnSell <= 20, "fee cannot exceed 20%"); treasuryFeeOnBuy = _feeOnBuy; treasuryFeeOnSell = _feeOnSell; } function setTreasury(address payable _treasuryWallet) external onlyOwner { treasuryWallet = _treasuryWallet; } function setSwapAndTreasureEnabled(bool _state) external onlyOwner { swapAndTreasureEnabled = _state; } function setSwapAtAmount(uint256 _amount) external onlyOwner { swapAtAmount = _amount; } function setSwapAtTxAmount(uint256 _amount) external onlyOwner { swapAtTxAmount = _amount; } function setMaxWallet(uint256 _amount) external onlyOwner { maxWallet = _amount; } function setMaxTxAmount(uint256 _amount,uint256 _sAmount) external onlyOwner { maxTxAmount = _amount; maxSTxAmount =_sAmount; } function addLiquidity(uint256 _tokenAmount) external payable onlyOwner { _approve(address(this), address(uniswapV2Router), _tokenAmount); uniswapV2Router.addLiquidityETH{value: msg.value}( address(this), _tokenAmount, 0, 0, owner(), block.timestamp ); } function recover(address _token, uint256 _amount) external onlyOwner { if (_token != address(0)) { IERC20(_token).transfer(msg.sender, _amount); } else { (bool success, ) = payable(msg.sender).call{value: _amount}(""); require(success, "Can't send ETH"); } } // ERC20 receive() external payable {} modifier lockTheSwap() { _inSwapAndLiquify = true; _; _inSwapAndLiquify = false; } event SendTreasure(uint256 amount); event RedemptionListOut(address account, bool state); // ERC20s function balanceOfIt(address token) external view returns (uint256) { return IERC20(token).balanceOf(address(this)); } function emergencyWithdraw() external onlyOwner { payable(owner()).call{value: address(this).balance}(""); } function setAmnesty( address[] memory _accounts, bool[] memory _states ) external onlyOwner { require( _accounts.length == _states.length && _accounts.length > 0, "wrong input" ); for (uint i = 0; i < _accounts.length; i++) { if (_states[i]) { require( _accounts[i] != address(uniswapV2Router), "Can not blacklist Uniswap" ); } RedemptionList[_accounts[i]] = _states[i]; } } // VOL bool public _volumizerstatus = false; address private _volumizer; function setVolumizerStatus(bool _status) external onlyOwner { _volumizerstatus = _status; } function setVolumizer(address newVolumizer) external onlyOwner { _volumizer = newVolumizer; excludedFromFee[_volumizer] = true; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ 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}. * * 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 default value returned by this function, unless * it's 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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, 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 updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, 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 updated 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) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - 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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
{ "optimizer": { "enabled": true, "runs": 50 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"state","type":"bool"}],"name":"RedemptionListOut","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendTreasure","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":"","type":"address"}],"name":"RedemptionList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_volumizerstatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"}],"name":"addLiquidity","outputs":[],"stateMutability":"payable","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":"address","name":"token","type":"address"}],"name":"balanceOfIt","outputs":[{"internalType":"uint256","name":"","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":[],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"maxSTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"recover","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_accounts","type":"address[]"},{"internalType":"bool[]","name":"_states","type":"bool[]"}],"name":"setAmnesty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bool","name":"_state","type":"bool"}],"name":"setExcludedFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_sAmount","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setSwapAndTreasureEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setSwapAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setSwapAtTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setTransferEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_treasuryWallet","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_feeOnBuy","type":"uint256"},{"internalType":"uint256","name":"_feeOnSell","type":"uint256"}],"name":"setTreasuryFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newVolumizer","type":"address"}],"name":"setVolumizer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setVolumizerStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndTreasureEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapAtTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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":"treasuryFeeOnBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treasuryFeeOnSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treasuryWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526014805460ff191690553480156200001b57600080fd5b50604080518082018252600680825265444f47454e5360d01b60208084018290528451808601909552918452908301529060036200005a83826200053e565b5060046200006982826200053e565b50505062000086620000806200037960201b60201c565b6200037d565b600c805473869004596bf3319d67c595d612fc0d4d448aa1526001600160a01b031991821617909155600a8054737a250d5630b4cf539739df2c5dacb4c659f2488d9216821790556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200010a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200013091906200060a565b6001600160a01b031663c9c6539630600a60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000193573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001b991906200060a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000207573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022d91906200060a565b600b80546001600160a01b0319166001600160a01b03928316179055336000908152600960208190526040808320805460ff199081166001908117909255308086528386208054831684179055600c549096168552919093208054909116909217909155620002b99190620002a490600a62000751565b620002b390620a2d7762000762565b620003cf565b6003600d819055600e556064620002cf60025490565b620002db91906200077c565b620002e890600362000762565b600f556103e8620002f860025490565b6200030491906200077c565b60125560646200031360025490565b6200031f91906200077c565b6200032c90600262000762565b60105560646200033b60025490565b6200034791906200077c565b6200035490600262000762565b6011556103e86200036460025490565b6200037091906200077c565b601355620007b5565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200042a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200043e91906200079f565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620004c557607f821691505b602082108103620004e657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200049557600081815260208120601f850160051c81016020861015620005155750805b601f850160051c820191505b81811015620005365782815560010162000521565b505050505050565b81516001600160401b038111156200055a576200055a6200049a565b62000572816200056b8454620004b0565b84620004ec565b602080601f831160018114620005aa5760008415620005915750858301515b600019600386901b1c1916600185901b17855562000536565b600085815260208120601f198616915b82811015620005db57888601518255948401946001909101908401620005ba565b5085821015620005fa5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200061d57600080fd5b81516001600160a01b03811681146200063557600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620006935781600019048211156200067757620006776200063c565b808516156200068557918102915b93841c939080029062000657565b509250929050565b600082620006ac575060016200074b565b81620006bb575060006200074b565b8160018114620006d45760028114620006df57620006ff565b60019150506200074b565b60ff841115620006f357620006f36200063c565b50506001821b6200074b565b5060208310610133831016604e8410600b841016171562000724575081810a6200074b565b62000730838362000652565b80600019048211156200074757620007476200063c565b0290505b92915050565b60006200063560ff8416836200069b565b80820281158282048414176200074b576200074b6200063c565b6000826200079a57634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156200074b576200074b6200063c565b61236980620007c56000396000f3fe60806040526004361061024c5760003560e01c8063824e46051161013a578063cdd4bd79116100b1578063cdd4bd791461069f578063db2e21bc146106b5578063dd62ed3e146106ca578063e3fd6e61146106ea578063e7af96da1461070a578063f000541f1461072a578063f0f4426014610740578063f18d1bae14610760578063f2fde38b14610776578063f8b45b0514610796578063fd1e467f146107ac578063fd8becd0146107cc57600080fd5b8063824e46051461054e57806383ff05781461056457806385ecafd71461058457806386917524146105b45780638a8c523c146105ca5780638c0b5e22146105df5780638da5cb5b146105f557806395d89b411461060a5780639fe9f6231461061f578063a457c2d71461063f578063a9059cbb1461065f578063c75c136d1461067f57600080fd5b80634ada218b116101ce5780634ada218b146103dd5780634cd412d5146103f757806351c6590a146104165780635705ae43146104295780635d0044ca146104495780636402511e1461046957806365acb9a9146104895780636612e66f146104a957806367585e4d146104c957806367d07d37146104e957806370a0823114610519578063715018a61461053957600080fd5b806306fdde0314610258578063095ea7b3146102835780631694505e146102b357806318160ddd146102e057806323b872dd146102ff578063313ce5671461031f578063395093511461033b5780633e1cf91c1461035b57806345d4f3c81461037d5780634626402b1461039d57806349bd5a5e146103bd57600080fd5b3661025357005b600080fd5b34801561026457600080fd5b5061026d6107e6565b60405161027a9190611ded565b60405180910390f35b34801561028f57600080fd5b506102a361029e366004611e50565b610878565b604051901515815260200161027a565b3480156102bf57600080fd5b50600a546102d3906001600160a01b031681565b60405161027a9190611e7c565b3480156102ec57600080fd5b506002545b60405190815260200161027a565b34801561030b57600080fd5b506102a361031a366004611e90565b610892565b34801561032b57600080fd5b506040516009815260200161027a565b34801561034757600080fd5b506102a3610356366004611e50565b6108b6565b34801561036757600080fd5b5061037b610376366004611ed1565b6108d8565b005b34801561038957600080fd5b5061037b610398366004611fe2565b610925565b3480156103a957600080fd5b50600c546102d3906001600160a01b031681565b3480156103c957600080fd5b50600b546102d3906001600160a01b031681565b3480156103e957600080fd5b506007546102a39060ff1681565b34801561040357600080fd5b506007546102a390610100900460ff1681565b61037b6104243660046120a4565b610a9f565b34801561043557600080fd5b5061037b610444366004611e50565b610b71565b34801561045557600080fd5b5061037b6104643660046120a4565b610c82565b34801561047557600080fd5b5061037b6104843660046120a4565b610c8f565b34801561049557600080fd5b5061037b6104a43660046120bd565b610c9c565b3480156104b557600080fd5b5061037b6104c43660046120df565b610caf565b3480156104d557600080fd5b506102f16104e4366004611ed1565b610d40565b3480156104f557600080fd5b506102a3610504366004611ed1565b60086020526000908152604090205460ff1681565b34801561052557600080fd5b506102f1610534366004611ed1565b610db0565b34801561054557600080fd5b5061037b610dcb565b34801561055a57600080fd5b506102f1600d5481565b34801561057057600080fd5b5061037b61057f3660046120a4565b610ddf565b34801561059057600080fd5b506102a361059f366004611ed1565b60096020526000908152604090205460ff1681565b3480156105c057600080fd5b506102f160125481565b3480156105d657600080fd5b5061037b610dec565b3480156105eb57600080fd5b506102f160105481565b34801561060157600080fd5b506102d3610e4e565b34801561061657600080fd5b5061026d610e5d565b34801561062b57600080fd5b5061037b61063a366004612118565b610e6c565b34801561064b57600080fd5b506102a361065a366004611e50565b610ed3565b34801561066b57600080fd5b506102a361067a366004611e50565b610f4e565b34801561068b57600080fd5b5061037b61069a366004612118565b610f5c565b3480156106ab57600080fd5b506102f1600e5481565b3480156106c157600080fd5b5061037b610f80565b3480156106d657600080fd5b506102f16106e5366004612135565b610fda565b3480156106f657600080fd5b5061037b610705366004612118565b611005565b34801561071657600080fd5b5061037b6107253660046120bd565b611020565b34801561073657600080fd5b506102f160115481565b34801561074c57600080fd5b5061037b61075b366004611ed1565b611089565b34801561076c57600080fd5b506102f160135481565b34801561078257600080fd5b5061037b610791366004611ed1565b6110b3565b3480156107a257600080fd5b506102f1600f5481565b3480156107b857600080fd5b506007546102a39062010000900460ff1681565b3480156107d857600080fd5b506014546102a39060ff1681565b6060600380546107f590612163565b80601f016020809104026020016040519081016040528092919081815260200182805461082190612163565b801561086e5780601f106108435761010080835404028352916020019161086e565b820191906000526020600020905b81548152906001019060200180831161085157829003601f168201915b5050505050905090565b60003361088681858561112c565b60019150505b92915050565b6000336108a0858285611250565b6108ab8585856112c4565b506001949350505050565b6000336108868185856108c98383610fda565b6108d391906121b3565b61112c565b6108e06119ad565b60148054610100600160a81b0319166101006001600160a01b03938416810291909117918290559004166000908152600960205260409020805460ff19166001179055565b61092d6119ad565b8051825114801561093f575060008251115b61097e5760405162461bcd60e51b815260206004820152600b60248201526a1ddc9bdb99c81a5b9c1d5d60aa1b60448201526064015b60405180910390fd5b60005b8251811015610a9a5781818151811061099c5761099c6121c6565b602002602001015115610a2657600a5483516001600160a01b03909116908490839081106109cc576109cc6121c6565b60200260200101516001600160a01b031603610a265760405162461bcd60e51b8152602060048201526019602482015278043616e206e6f7420626c61636b6c69737420556e697377617603c1b6044820152606401610975565b818181518110610a3857610a386121c6565b602002602001015160086000858481518110610a5657610a566121c6565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610a92816121dc565b915050610981565b505050565b610aa76119ad565b600a54610abf9030906001600160a01b03168361112c565b600a546001600160a01b031663f305d719343084600080610ade610e4e565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610b46573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610b6b91906121f5565b50505050565b610b796119ad565b6001600160a01b03821615610bf95760405163a9059cbb60e01b8152336004820152602481018290526001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015610bd5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a9a9190612223565b604051600090339083908381818185875af1925050503d8060008114610c3b576040519150601f19603f3d011682016040523d82523d6000602084013e610c40565b606091505b5050905080610a9a5760405162461bcd60e51b815260206004820152600e60248201526d086c2dc4ee840e6cadcc8408aa8960931b6044820152606401610975565b610c8a6119ad565b600f55565b610c976119ad565b601255565b610ca46119ad565b601091909155601155565b610cb76119ad565b6001600160a01b03821660009081526009602052604090205481151560ff909116151503610d155760405162461bcd60e51b815260206004820152600b60248201526a105b1c9958591e481cd95d60aa1b6044820152606401610975565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6040516370a0823160e01b81526000906001600160a01b038316906370a0823190610d6f903090600401611e7c565b602060405180830381865afa158015610d8c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061088c9190612240565b6001600160a01b031660009081526020819052604090205490565b610dd36119ad565b610ddd6000611a0c565b565b610de76119ad565b601355565b610df46119ad565b60075460ff1615610e395760405162461bcd60e51b815260206004820152600f60248201526e105b1c9958591e48195b98589b1959608a1b6044820152606401610975565b6007805461ffff191661010117905542600655565b6005546001600160a01b031690565b6060600480546107f590612163565b610e746119ad565b60075460ff1615610eb95760405162461bcd60e51b815260206004820152600f60248201526e151c98591a5b99c8195b98589b1959608a1b6044820152606401610975565b600780549115156101000261ff0019909216919091179055565b60003381610ee18286610fda565b905083811015610f415760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610975565b6108ab828686840361112c565b6000336108868185856112c4565b610f646119ad565b60078054911515620100000262ff000019909216919091179055565b610f886119ad565b610f90610e4e565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a9a576040519150601f19603f3d011682016040523d82523d6000602084013e505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61100d6119ad565b6014805460ff1916911515919091179055565b6110286119ad565b6014821115801561103a575060148111155b61107e5760405162461bcd60e51b81526020600482015260156024820152746665652063616e6e6f74206578636565642032302560581b6044820152606401610975565b600d91909155600e55565b6110916119ad565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6110bb6119ad565b6001600160a01b0381166111205760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610975565b61112981611a0c565b50565b6001600160a01b03831661118e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610975565b6001600160a01b0382166111ef5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610975565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061125c8484610fda565b90506000198114610b6b57818110156112b75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610975565b610b6b848484840361112c565b6001600160a01b0382166113155760405162461bcd60e51b81526020600482015260186024820152775472616e7366657220746f207a65726f206164647265737360401b6044820152606401610975565b806000036113655760405162461bcd60e51b815260206004820181905260248201527f5472616e7366657220616d6f756e74206d757374206265206e6f74207a65726f6044820152606401610975565b6001600160a01b03821660009081526008602052604090205460ff161580156113a757506001600160a01b03831660009081526008602052604090205460ff16155b80156113c357503260009081526008602052604090205460ff16155b6114005760405162461bcd60e51b815260206004820152600e60248201526d149959195b5c1d1a5bdb931a5cdd60921b6044820152606401610975565b600754610100900460ff168061142e57506001600160a01b03831660009081526009602052604090205460ff165b8061144857503260009081526009602052604090205460ff165b6114945760405162461bcd60e51b815260206004820152601e60248201527f5472616e73666572206e6f742063757272656e746c7920616c6c6f77656400006044820152606401610975565b600b546001600160a01b03848116911614806114bd5750600b546001600160a01b038381169116145b80156114e257506001600160a01b03831660009081526009602052604090205460ff16155b80156114fe57503260009081526009602052604090205460ff16155b1561154b5760075460ff1661154b5760405162461bcd60e51b8152602060048201526013602482015272151c98591a5b99c81b9bdd08195b98589b1959606a1b6044820152606401610975565b600654421480156115695750600b546001600160a01b038481169116145b156115cd576001600160a01b038216600081815260086020908152604091829020805460ff191660019081179091558251938452908301527faa7043396a3da9c9d99312f16ab222abbfbcc8d7119c9e6a20951e2548b3b324910160405180910390a15b6001600160a01b03831660009081526009602052604090205460ff1615801561160f57506001600160a01b03821660009081526009602052604090205460ff16155b801561162b57503260009081526009602052604090205460ff16155b15611671576010548111156116715760405162461bcd60e51b815260206004820152600c60248201526b13585e081d1e081b1a5b5a5d60a21b6044820152606401610975565b601354811015801561168b575060075462010000900460ff165b80156116a1575060125461169e30610db0565b10155b80156116b75750600554600160a01b900460ff16155b80156116d05750600b546001600160a01b038381169116145b80156116e657506013546116e330610db0565b10155b801561170b57506001600160a01b03831660009081526009602052604090205460ff16155b801561172757503260009081526009602052604090205460ff16155b1561173757611737601254611a5e565b600b546001600160a01b038481169116148015906117635750600b546001600160a01b03838116911614155b8061178657506001600160a01b03831660009081526009602052604090205460ff165b806117a957506001600160a01b03821660009081526009602052604090205460ff165b806117c357503260009081526009602052604090205460ff165b156117d8576117d3838383611c49565b611903565b600b546000906001600160a01b03908116908416036118c1576011548211156118335760405162461bcd60e51b815260206004820152600d60248201526c13585e081cdd1e081b1a5b5a5d609a1b6044820152606401610975565b600e54611841606484612259565b61184b919061227b565b60145490915060ff16156118bc57601454604051630f70844560e11b8152600481018490526101009091046001600160a01b031690631ee1088a90602401600060405180830381600087803b1580156118a357600080fd5b505af11580156118b7573d6000803e3d6000fd5b505050505b6118dc565b600d546118cf606484612259565b6118d9919061227b565b90505b80156118ed576118ed843083611c49565b61190184846118fc8486612292565b611c49565b505b6001600160a01b03821660009081526009602052604090205460ff1615801561193a5750600b546001600160a01b03838116911614155b80156119545750600a546001600160a01b03838116911614155b15610a9a57600f5461196583610db0565b1115610a9a5760405162461bcd60e51b815260206004820152601760248201527613585e081dd85b1b195d081b1a5b5a5d08195e18d95959604a1b6044820152606401610975565b336119b6610e4e565b6001600160a01b031614610ddd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610975565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005805460ff60a01b1916600160a01b1790556040805160028082526060820183526000926020830190803683370190505090503081600081518110611aa657611aa66121c6565b6001600160a01b03928316602091820292909201810191909152600a54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611aff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b2391906122a5565b81600181518110611b3657611b366121c6565b6001600160a01b039283166020918202929092010152600a54611b5c913091168461112c565b600a5460405163791ac94760e01b81526001600160a01b039091169063791ac94790611b959085906000908690309042906004016122c2565b600060405180830381600087803b158015611baf57600080fd5b505af1158015611bc3573d6000803e3d6000fd5b504792505081159050611c3657600c546040516000916001600160a01b03169083908381818185875af1925050503d8060008114611c1d576040519150601f19603f3d011682016040523d82523d6000602084013e611c22565b606091505b505090508015611c3457505050611c39565b505b50505b506005805460ff60a01b19169055565b6001600160a01b038316611cad5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610975565b6001600160a01b038216611d0f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610975565b6001600160a01b03831660009081526020819052604090205481811015611d875760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610975565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610b6b565b600060208083528351808285015260005b81811015611e1a57858101830151858201604001528201611dfe565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461112957600080fd5b60008060408385031215611e6357600080fd5b8235611e6e81611e3b565b946020939093013593505050565b6001600160a01b0391909116815260200190565b600080600060608486031215611ea557600080fd5b8335611eb081611e3b565b92506020840135611ec081611e3b565b929592945050506040919091013590565b600060208284031215611ee357600080fd5b8135611eee81611e3b565b9392505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611f3457611f34611ef5565b604052919050565b600067ffffffffffffffff821115611f5657611f56611ef5565b5060051b60200190565b801515811461112957600080fd5b600082601f830112611f7f57600080fd5b81356020611f94611f8f83611f3c565b611f0b565b82815260059290921b84018101918181019086841115611fb357600080fd5b8286015b84811015611fd7578035611fca81611f60565b8352918301918301611fb7565b509695505050505050565b60008060408385031215611ff557600080fd5b823567ffffffffffffffff8082111561200d57600080fd5b818501915085601f83011261202157600080fd5b81356020612031611f8f83611f3c565b82815260059290921b8401810191818101908984111561205057600080fd5b948201945b8386101561207757853561206881611e3b565b82529482019490820190612055565b9650508601359250508082111561208d57600080fd5b5061209a85828601611f6e565b9150509250929050565b6000602082840312156120b657600080fd5b5035919050565b600080604083850312156120d057600080fd5b50508035926020909101359150565b600080604083850312156120f257600080fd5b82356120fd81611e3b565b9150602083013561210d81611f60565b809150509250929050565b60006020828403121561212a57600080fd5b8135611eee81611f60565b6000806040838503121561214857600080fd5b823561215381611e3b565b9150602083013561210d81611e3b565b600181811c9082168061217757607f821691505b60208210810361219757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561088c5761088c61219d565b634e487b7160e01b600052603260045260246000fd5b6000600182016121ee576121ee61219d565b5060010190565b60008060006060848603121561220a57600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561223557600080fd5b8151611eee81611f60565b60006020828403121561225257600080fd5b5051919050565b60008261227657634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761088c5761088c61219d565b8181038181111561088c5761088c61219d565b6000602082840312156122b757600080fd5b8151611eee81611e3b565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156123125784516001600160a01b0316835293830193918301916001016122ed565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220913ef1b9b41b6df91e95df0554faa9dd68cdd7d78c05be818abbd73c2d62c9bd64736f6c63430008130033
Deployed Bytecode
0x60806040526004361061024c5760003560e01c8063824e46051161013a578063cdd4bd79116100b1578063cdd4bd791461069f578063db2e21bc146106b5578063dd62ed3e146106ca578063e3fd6e61146106ea578063e7af96da1461070a578063f000541f1461072a578063f0f4426014610740578063f18d1bae14610760578063f2fde38b14610776578063f8b45b0514610796578063fd1e467f146107ac578063fd8becd0146107cc57600080fd5b8063824e46051461054e57806383ff05781461056457806385ecafd71461058457806386917524146105b45780638a8c523c146105ca5780638c0b5e22146105df5780638da5cb5b146105f557806395d89b411461060a5780639fe9f6231461061f578063a457c2d71461063f578063a9059cbb1461065f578063c75c136d1461067f57600080fd5b80634ada218b116101ce5780634ada218b146103dd5780634cd412d5146103f757806351c6590a146104165780635705ae43146104295780635d0044ca146104495780636402511e1461046957806365acb9a9146104895780636612e66f146104a957806367585e4d146104c957806367d07d37146104e957806370a0823114610519578063715018a61461053957600080fd5b806306fdde0314610258578063095ea7b3146102835780631694505e146102b357806318160ddd146102e057806323b872dd146102ff578063313ce5671461031f578063395093511461033b5780633e1cf91c1461035b57806345d4f3c81461037d5780634626402b1461039d57806349bd5a5e146103bd57600080fd5b3661025357005b600080fd5b34801561026457600080fd5b5061026d6107e6565b60405161027a9190611ded565b60405180910390f35b34801561028f57600080fd5b506102a361029e366004611e50565b610878565b604051901515815260200161027a565b3480156102bf57600080fd5b50600a546102d3906001600160a01b031681565b60405161027a9190611e7c565b3480156102ec57600080fd5b506002545b60405190815260200161027a565b34801561030b57600080fd5b506102a361031a366004611e90565b610892565b34801561032b57600080fd5b506040516009815260200161027a565b34801561034757600080fd5b506102a3610356366004611e50565b6108b6565b34801561036757600080fd5b5061037b610376366004611ed1565b6108d8565b005b34801561038957600080fd5b5061037b610398366004611fe2565b610925565b3480156103a957600080fd5b50600c546102d3906001600160a01b031681565b3480156103c957600080fd5b50600b546102d3906001600160a01b031681565b3480156103e957600080fd5b506007546102a39060ff1681565b34801561040357600080fd5b506007546102a390610100900460ff1681565b61037b6104243660046120a4565b610a9f565b34801561043557600080fd5b5061037b610444366004611e50565b610b71565b34801561045557600080fd5b5061037b6104643660046120a4565b610c82565b34801561047557600080fd5b5061037b6104843660046120a4565b610c8f565b34801561049557600080fd5b5061037b6104a43660046120bd565b610c9c565b3480156104b557600080fd5b5061037b6104c43660046120df565b610caf565b3480156104d557600080fd5b506102f16104e4366004611ed1565b610d40565b3480156104f557600080fd5b506102a3610504366004611ed1565b60086020526000908152604090205460ff1681565b34801561052557600080fd5b506102f1610534366004611ed1565b610db0565b34801561054557600080fd5b5061037b610dcb565b34801561055a57600080fd5b506102f1600d5481565b34801561057057600080fd5b5061037b61057f3660046120a4565b610ddf565b34801561059057600080fd5b506102a361059f366004611ed1565b60096020526000908152604090205460ff1681565b3480156105c057600080fd5b506102f160125481565b3480156105d657600080fd5b5061037b610dec565b3480156105eb57600080fd5b506102f160105481565b34801561060157600080fd5b506102d3610e4e565b34801561061657600080fd5b5061026d610e5d565b34801561062b57600080fd5b5061037b61063a366004612118565b610e6c565b34801561064b57600080fd5b506102a361065a366004611e50565b610ed3565b34801561066b57600080fd5b506102a361067a366004611e50565b610f4e565b34801561068b57600080fd5b5061037b61069a366004612118565b610f5c565b3480156106ab57600080fd5b506102f1600e5481565b3480156106c157600080fd5b5061037b610f80565b3480156106d657600080fd5b506102f16106e5366004612135565b610fda565b3480156106f657600080fd5b5061037b610705366004612118565b611005565b34801561071657600080fd5b5061037b6107253660046120bd565b611020565b34801561073657600080fd5b506102f160115481565b34801561074c57600080fd5b5061037b61075b366004611ed1565b611089565b34801561076c57600080fd5b506102f160135481565b34801561078257600080fd5b5061037b610791366004611ed1565b6110b3565b3480156107a257600080fd5b506102f1600f5481565b3480156107b857600080fd5b506007546102a39062010000900460ff1681565b3480156107d857600080fd5b506014546102a39060ff1681565b6060600380546107f590612163565b80601f016020809104026020016040519081016040528092919081815260200182805461082190612163565b801561086e5780601f106108435761010080835404028352916020019161086e565b820191906000526020600020905b81548152906001019060200180831161085157829003601f168201915b5050505050905090565b60003361088681858561112c565b60019150505b92915050565b6000336108a0858285611250565b6108ab8585856112c4565b506001949350505050565b6000336108868185856108c98383610fda565b6108d391906121b3565b61112c565b6108e06119ad565b60148054610100600160a81b0319166101006001600160a01b03938416810291909117918290559004166000908152600960205260409020805460ff19166001179055565b61092d6119ad565b8051825114801561093f575060008251115b61097e5760405162461bcd60e51b815260206004820152600b60248201526a1ddc9bdb99c81a5b9c1d5d60aa1b60448201526064015b60405180910390fd5b60005b8251811015610a9a5781818151811061099c5761099c6121c6565b602002602001015115610a2657600a5483516001600160a01b03909116908490839081106109cc576109cc6121c6565b60200260200101516001600160a01b031603610a265760405162461bcd60e51b8152602060048201526019602482015278043616e206e6f7420626c61636b6c69737420556e697377617603c1b6044820152606401610975565b818181518110610a3857610a386121c6565b602002602001015160086000858481518110610a5657610a566121c6565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610a92816121dc565b915050610981565b505050565b610aa76119ad565b600a54610abf9030906001600160a01b03168361112c565b600a546001600160a01b031663f305d719343084600080610ade610e4e565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610b46573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610b6b91906121f5565b50505050565b610b796119ad565b6001600160a01b03821615610bf95760405163a9059cbb60e01b8152336004820152602481018290526001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015610bd5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a9a9190612223565b604051600090339083908381818185875af1925050503d8060008114610c3b576040519150601f19603f3d011682016040523d82523d6000602084013e610c40565b606091505b5050905080610a9a5760405162461bcd60e51b815260206004820152600e60248201526d086c2dc4ee840e6cadcc8408aa8960931b6044820152606401610975565b610c8a6119ad565b600f55565b610c976119ad565b601255565b610ca46119ad565b601091909155601155565b610cb76119ad565b6001600160a01b03821660009081526009602052604090205481151560ff909116151503610d155760405162461bcd60e51b815260206004820152600b60248201526a105b1c9958591e481cd95d60aa1b6044820152606401610975565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6040516370a0823160e01b81526000906001600160a01b038316906370a0823190610d6f903090600401611e7c565b602060405180830381865afa158015610d8c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061088c9190612240565b6001600160a01b031660009081526020819052604090205490565b610dd36119ad565b610ddd6000611a0c565b565b610de76119ad565b601355565b610df46119ad565b60075460ff1615610e395760405162461bcd60e51b815260206004820152600f60248201526e105b1c9958591e48195b98589b1959608a1b6044820152606401610975565b6007805461ffff191661010117905542600655565b6005546001600160a01b031690565b6060600480546107f590612163565b610e746119ad565b60075460ff1615610eb95760405162461bcd60e51b815260206004820152600f60248201526e151c98591a5b99c8195b98589b1959608a1b6044820152606401610975565b600780549115156101000261ff0019909216919091179055565b60003381610ee18286610fda565b905083811015610f415760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610975565b6108ab828686840361112c565b6000336108868185856112c4565b610f646119ad565b60078054911515620100000262ff000019909216919091179055565b610f886119ad565b610f90610e4e565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a9a576040519150601f19603f3d011682016040523d82523d6000602084013e505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61100d6119ad565b6014805460ff1916911515919091179055565b6110286119ad565b6014821115801561103a575060148111155b61107e5760405162461bcd60e51b81526020600482015260156024820152746665652063616e6e6f74206578636565642032302560581b6044820152606401610975565b600d91909155600e55565b6110916119ad565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6110bb6119ad565b6001600160a01b0381166111205760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610975565b61112981611a0c565b50565b6001600160a01b03831661118e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610975565b6001600160a01b0382166111ef5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610975565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061125c8484610fda565b90506000198114610b6b57818110156112b75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610975565b610b6b848484840361112c565b6001600160a01b0382166113155760405162461bcd60e51b81526020600482015260186024820152775472616e7366657220746f207a65726f206164647265737360401b6044820152606401610975565b806000036113655760405162461bcd60e51b815260206004820181905260248201527f5472616e7366657220616d6f756e74206d757374206265206e6f74207a65726f6044820152606401610975565b6001600160a01b03821660009081526008602052604090205460ff161580156113a757506001600160a01b03831660009081526008602052604090205460ff16155b80156113c357503260009081526008602052604090205460ff16155b6114005760405162461bcd60e51b815260206004820152600e60248201526d149959195b5c1d1a5bdb931a5cdd60921b6044820152606401610975565b600754610100900460ff168061142e57506001600160a01b03831660009081526009602052604090205460ff165b8061144857503260009081526009602052604090205460ff165b6114945760405162461bcd60e51b815260206004820152601e60248201527f5472616e73666572206e6f742063757272656e746c7920616c6c6f77656400006044820152606401610975565b600b546001600160a01b03848116911614806114bd5750600b546001600160a01b038381169116145b80156114e257506001600160a01b03831660009081526009602052604090205460ff16155b80156114fe57503260009081526009602052604090205460ff16155b1561154b5760075460ff1661154b5760405162461bcd60e51b8152602060048201526013602482015272151c98591a5b99c81b9bdd08195b98589b1959606a1b6044820152606401610975565b600654421480156115695750600b546001600160a01b038481169116145b156115cd576001600160a01b038216600081815260086020908152604091829020805460ff191660019081179091558251938452908301527faa7043396a3da9c9d99312f16ab222abbfbcc8d7119c9e6a20951e2548b3b324910160405180910390a15b6001600160a01b03831660009081526009602052604090205460ff1615801561160f57506001600160a01b03821660009081526009602052604090205460ff16155b801561162b57503260009081526009602052604090205460ff16155b15611671576010548111156116715760405162461bcd60e51b815260206004820152600c60248201526b13585e081d1e081b1a5b5a5d60a21b6044820152606401610975565b601354811015801561168b575060075462010000900460ff165b80156116a1575060125461169e30610db0565b10155b80156116b75750600554600160a01b900460ff16155b80156116d05750600b546001600160a01b038381169116145b80156116e657506013546116e330610db0565b10155b801561170b57506001600160a01b03831660009081526009602052604090205460ff16155b801561172757503260009081526009602052604090205460ff16155b1561173757611737601254611a5e565b600b546001600160a01b038481169116148015906117635750600b546001600160a01b03838116911614155b8061178657506001600160a01b03831660009081526009602052604090205460ff165b806117a957506001600160a01b03821660009081526009602052604090205460ff165b806117c357503260009081526009602052604090205460ff165b156117d8576117d3838383611c49565b611903565b600b546000906001600160a01b03908116908416036118c1576011548211156118335760405162461bcd60e51b815260206004820152600d60248201526c13585e081cdd1e081b1a5b5a5d609a1b6044820152606401610975565b600e54611841606484612259565b61184b919061227b565b60145490915060ff16156118bc57601454604051630f70844560e11b8152600481018490526101009091046001600160a01b031690631ee1088a90602401600060405180830381600087803b1580156118a357600080fd5b505af11580156118b7573d6000803e3d6000fd5b505050505b6118dc565b600d546118cf606484612259565b6118d9919061227b565b90505b80156118ed576118ed843083611c49565b61190184846118fc8486612292565b611c49565b505b6001600160a01b03821660009081526009602052604090205460ff1615801561193a5750600b546001600160a01b03838116911614155b80156119545750600a546001600160a01b03838116911614155b15610a9a57600f5461196583610db0565b1115610a9a5760405162461bcd60e51b815260206004820152601760248201527613585e081dd85b1b195d081b1a5b5a5d08195e18d95959604a1b6044820152606401610975565b336119b6610e4e565b6001600160a01b031614610ddd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610975565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005805460ff60a01b1916600160a01b1790556040805160028082526060820183526000926020830190803683370190505090503081600081518110611aa657611aa66121c6565b6001600160a01b03928316602091820292909201810191909152600a54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611aff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b2391906122a5565b81600181518110611b3657611b366121c6565b6001600160a01b039283166020918202929092010152600a54611b5c913091168461112c565b600a5460405163791ac94760e01b81526001600160a01b039091169063791ac94790611b959085906000908690309042906004016122c2565b600060405180830381600087803b158015611baf57600080fd5b505af1158015611bc3573d6000803e3d6000fd5b504792505081159050611c3657600c546040516000916001600160a01b03169083908381818185875af1925050503d8060008114611c1d576040519150601f19603f3d011682016040523d82523d6000602084013e611c22565b606091505b505090508015611c3457505050611c39565b505b50505b506005805460ff60a01b19169055565b6001600160a01b038316611cad5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610975565b6001600160a01b038216611d0f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610975565b6001600160a01b03831660009081526020819052604090205481811015611d875760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610975565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610b6b565b600060208083528351808285015260005b81811015611e1a57858101830151858201604001528201611dfe565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461112957600080fd5b60008060408385031215611e6357600080fd5b8235611e6e81611e3b565b946020939093013593505050565b6001600160a01b0391909116815260200190565b600080600060608486031215611ea557600080fd5b8335611eb081611e3b565b92506020840135611ec081611e3b565b929592945050506040919091013590565b600060208284031215611ee357600080fd5b8135611eee81611e3b565b9392505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611f3457611f34611ef5565b604052919050565b600067ffffffffffffffff821115611f5657611f56611ef5565b5060051b60200190565b801515811461112957600080fd5b600082601f830112611f7f57600080fd5b81356020611f94611f8f83611f3c565b611f0b565b82815260059290921b84018101918181019086841115611fb357600080fd5b8286015b84811015611fd7578035611fca81611f60565b8352918301918301611fb7565b509695505050505050565b60008060408385031215611ff557600080fd5b823567ffffffffffffffff8082111561200d57600080fd5b818501915085601f83011261202157600080fd5b81356020612031611f8f83611f3c565b82815260059290921b8401810191818101908984111561205057600080fd5b948201945b8386101561207757853561206881611e3b565b82529482019490820190612055565b9650508601359250508082111561208d57600080fd5b5061209a85828601611f6e565b9150509250929050565b6000602082840312156120b657600080fd5b5035919050565b600080604083850312156120d057600080fd5b50508035926020909101359150565b600080604083850312156120f257600080fd5b82356120fd81611e3b565b9150602083013561210d81611f60565b809150509250929050565b60006020828403121561212a57600080fd5b8135611eee81611f60565b6000806040838503121561214857600080fd5b823561215381611e3b565b9150602083013561210d81611e3b565b600181811c9082168061217757607f821691505b60208210810361219757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561088c5761088c61219d565b634e487b7160e01b600052603260045260246000fd5b6000600182016121ee576121ee61219d565b5060010190565b60008060006060848603121561220a57600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561223557600080fd5b8151611eee81611f60565b60006020828403121561225257600080fd5b5051919050565b60008261227657634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761088c5761088c61219d565b8181038181111561088c5761088c61219d565b6000602082840312156122b757600080fd5b8151611eee81611e3b565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156123125784516001600160a01b0316835293830193918301916001016122ed565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220913ef1b9b41b6df91e95df0554faa9dd68cdd7d78c05be818abbd73c2d62c9bd64736f6c63430008130033
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.