ERC-20
Oracle
Overview
Max Total Supply
100,000,000 HILO
Holders
4,588 ( -0.022%)
Market
Price
$0.03 @ 0.000011 ETH (-5.36%)
Onchain Market Cap
$2,740,353.47
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
0 HILOValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
HILO
Compiler Version
v0.8.16+commit.07a7930e
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** Binary token price predictions in a simple Up / Down mechanism Website: hilodapp.com Medium: medium.com/@HILOtoken Twitter:twitter.com/hilotoken Email : [email protected] Telegram: https://t.me/hilotoken */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.10; pragma experimental ABIEncoderV2; ////// lib/openzeppelin-contracts/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (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; } } ////// lib/openzeppelin-contracts/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.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 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); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ 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); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (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); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * 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}. * * 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 updated 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 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 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 {} } ////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) /* pragma solidity ^0.8.0; */ // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ 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 IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function factory() external pure returns (address); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract HILO is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); address public USDC = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48; bool private swapping; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; uint256 public buyTotalFees; uint256 public buyDevFee; uint256 public buyLiquidityFee; uint256 public sellTotalFees; uint256 public sellDevFee; uint256 public sellLiquidityFee; mapping(address => bool) public bots; mapping (address => uint256) public _buyMap; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; event ExcludeFromFees(address indexed account, bool isExcluded); event devWalletUpdated( address indexed newWallet, address indexed oldWallet ); constructor() ERC20("HILO", "HILO") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), USDC); excludeFromMaxTransaction(address(uniswapV2Pair), true); uint256 _buyDevFee = 5; uint256 _buyLiquidityFee = 1; uint256 _sellDevFee = 5; uint256 _sellLiquidityFee = 1; uint256 totalSupply = 100_000_000 * 1e18; maxTransactionAmount = totalSupply * 2 / 100; // 2% from total supply maxTransactionAmountTxn maxWallet = totalSupply * 2 / 100; // 2% from total supply maxWallet swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet buyDevFee = _buyDevFee; buyLiquidityFee = _buyLiquidityFee; buyTotalFees = buyDevFee + buyLiquidityFee; sellDevFee = _sellDevFee; sellLiquidityFee = _sellLiquidityFee; sellTotalFees = sellDevFee + sellLiquidityFee; devWallet = address(0xA29401770fD71AB8FB741d77A6DAaf16eBe1484d); // set as dev wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } function blockBots(address[] memory bots_) public onlyOwner { for (uint256 i = 0; i < bots_.length; i++) { bots[bots_[i]] = true; } } function unblockBot(address notbot) public onlyOwner { bots[notbot] = false; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxWallet lower than 0.5%" ); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _devFee, uint256 _liquidityFee ) external onlyOwner { buyDevFee = _devFee; buyLiquidityFee = _liquidityFee; buyTotalFees = buyDevFee + buyLiquidityFee; require(buyTotalFees <= 6, "Must keep fees at 6% or less"); } function updateSellFees( uint256 _devFee, uint256 _liquidityFee ) external onlyOwner { sellDevFee = _devFee; sellLiquidityFee = _liquidityFee; sellTotalFees = sellDevFee + sellLiquidityFee; require(sellTotalFees <= 6, "Must keep fees at 6% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function updateDevWallet(address newDevWallet) external onlyOwner { emit devWalletUpdated(newDevWallet, devWallet); devWallet = newDevWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } require(!bots[from] && !bots[to], "Your account is blacklisted!"); // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. //when buy if ( from == uniswapV2Pair && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && to == uniswapV2Pair && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; uint256 tokensForLiquidity = 0; uint256 tokensForDev = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (to == uniswapV2Pair && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity = (fees * sellLiquidityFee) / sellTotalFees; tokensForDev = (fees * sellDevFee) / sellTotalFees; } // on buy else if (from == uniswapV2Pair && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees; tokensForDev = (fees * buyDevFee) / buyTotalFees; } if (fees> 0) { super._transfer(from, address(this), fees); } if (tokensForLiquidity > 0) { super._transfer(address(this), uniswapV2Pair, tokensForLiquidity); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForUSDC(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = USDC; _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of USDC path, devWallet, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); if (contractBalance == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } swapTokensForUSDC(contractBalance); } }
{ "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":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"inputs":[],"name":"USDC","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_buyMap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"bots_","type":"address[]"}],"name":"blockBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bots","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","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":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","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":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"notbot","type":"address"}],"name":"unblockBot","outputs":[],"stateMutability":"nonpayable","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"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600680546001600160a01b03191673a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48179055600b805462ffffff191660011790553480156200004657600080fd5b5060408051808201825260048082526348494c4f60e01b602080840182905284518086019095529184529083015290600362000083838262000630565b50600462000092828262000630565b505050620000af620000a96200032860201b60201c565b6200032c565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000d18160016200037e565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200011c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001429190620006fc565b6006546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af115801562000194573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ba9190620006fc565b6001600160a01b031660a0819052620001d59060016200037e565b6005600181816a52b7d2dcc80cd2e40000006064620001f682600262000744565b62000202919062000766565b60085560646200021482600262000744565b62000220919062000766565b600a556127106200023382600562000744565b6200023f919062000766565b600955600d859055600e84905562000258848662000789565b600c556010839055601182905562000271828462000789565b600f55600780546001600160a01b03191673a29401770fd71ab8fb741d77a6daaf16ebe1484d179055620002b9620002b16005546001600160a01b031690565b6001620003f8565b620002c6306001620003f8565b620002d561dead6001620003f8565b620002f4620002ec6005546001600160a01b031690565b60016200037e565b620003013060016200037e565b6200031061dead60016200037e565b6200031c3382620004a2565b505050505050620007a5565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620003cd5760405162461bcd60e51b8152602060048201819052602482015260008051602062002a1983398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004435760405162461bcd60e51b8152602060048201819052602482015260008051602062002a198339815191526044820152606401620003c4565b6001600160a01b038216600081815260146020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620004fa5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003c4565b80600260008282546200050e919062000789565b90915550506001600160a01b038216600090815260208190526040812080548392906200053d90849062000789565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005b757607f821691505b602082108103620005d857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200058757600081815260208120601f850160051c81016020861015620006075750805b601f850160051c820191505b81811015620006285782815560010162000613565b505050505050565b81516001600160401b038111156200064c576200064c6200058c565b62000664816200065d8454620005a2565b84620005de565b602080601f8311600181146200069c5760008415620006835750858301515b600019600386901b1c1916600185901b17855562000628565b600085815260208120601f198616915b82811015620006cd57888601518255948401946001909101908401620006ac565b5085821015620006ec5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200070f57600080fd5b81516001600160a01b03811681146200072757600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156200076157620007616200072e565b500290565b6000826200078457634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156200079f576200079f6200072e565b92915050565b60805160a05161221d620007fc60003960008181610468015281816115300152818161174101528181611851015281816118fa01526119b401526000818161036b01528181611c980152611cd7015261221d6000f3fe6080604052600436106102805760003560e01c80637f2feddc1161014f578063bfd79284116100c1578063dd62ed3e1161007a578063dd62ed3e146107cf578063e2f4560514610815578063f11a24d31461082b578063f2fde38b14610841578063f637434214610861578063f8b45b051461087757600080fd5b8063bfd7928414610713578063c024666814610743578063c18bc19514610763578063c8c8ebe414610783578063d257b34f14610799578063d85ba063146107b957600080fd5b8063924de9b711610113578063924de9b71461067357806395d89b41146106935780639c3b4fdc146106a8578063a0d82dc5146106be578063a9059cbb146106d4578063bbc0c742146106f457600080fd5b80637f2feddc146105d357806389a30271146106005780638a8c523c146106205780638da5cb5b146106355780638ea5220f1461065357600080fd5b8063313ce567116101f35780636b999053116101ac5780636b999053146105135780636ddd17131461053357806370a0823114610553578063715018a614610589578063751039fc1461059e5780637571336a146105b357600080fd5b8063313ce5671461043a57806349bd5a5e146104565780634a62bb651461048a5780634fbee193146104a457806366ca9b83146104dd5780636a486a8e146104fd57600080fd5b80631694505e116102455780631694505e1461035957806318160ddd146103a55780631816467f146103c4578063203e727e146103e457806323b872dd1461040457806327c8f8351461042457600080fd5b8062b8cf2a1461028c57806302dbd8f8146102ae57806306fdde03146102ce578063095ea7b3146102f957806310d5de531461032957600080fd5b3661028757005b600080fd5b34801561029857600080fd5b506102ac6102a7366004611d7c565b61088d565b005b3480156102ba57600080fd5b506102ac6102c9366004611e41565b61092c565b3480156102da57600080fd5b506102e36109bf565b6040516102f09190611e63565b60405180910390f35b34801561030557600080fd5b50610319610314366004611eb1565b610a51565b60405190151581526020016102f0565b34801561033557600080fd5b50610319610344366004611edb565b60156020526000908152604090205460ff1681565b34801561036557600080fd5b5061038d7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102f0565b3480156103b157600080fd5b506002545b6040519081526020016102f0565b3480156103d057600080fd5b506102ac6103df366004611edb565b610a68565b3480156103f057600080fd5b506102ac6103ff366004611ef6565b610aef565b34801561041057600080fd5b5061031961041f366004611f0f565b610bcc565b34801561043057600080fd5b5061038d61dead81565b34801561044657600080fd5b50604051601281526020016102f0565b34801561046257600080fd5b5061038d7f000000000000000000000000000000000000000000000000000000000000000081565b34801561049657600080fd5b50600b546103199060ff1681565b3480156104b057600080fd5b506103196104bf366004611edb565b6001600160a01b031660009081526014602052604090205460ff1690565b3480156104e957600080fd5b506102ac6104f8366004611e41565b610c76565b34801561050957600080fd5b506103b6600f5481565b34801561051f57600080fd5b506102ac61052e366004611edb565b610d09565b34801561053f57600080fd5b50600b546103199062010000900460ff1681565b34801561055f57600080fd5b506103b661056e366004611edb565b6001600160a01b031660009081526020819052604090205490565b34801561059557600080fd5b506102ac610d54565b3480156105aa57600080fd5b50610319610d8a565b3480156105bf57600080fd5b506102ac6105ce366004611f5b565b610dc7565b3480156105df57600080fd5b506103b66105ee366004611edb565b60136020526000908152604090205481565b34801561060c57600080fd5b5060065461038d906001600160a01b031681565b34801561062c57600080fd5b506102ac610e1c565b34801561064157600080fd5b506005546001600160a01b031661038d565b34801561065f57600080fd5b5060075461038d906001600160a01b031681565b34801561067f57600080fd5b506102ac61068e366004611f8e565b610e59565b34801561069f57600080fd5b506102e3610e9f565b3480156106b457600080fd5b506103b6600d5481565b3480156106ca57600080fd5b506103b660105481565b3480156106e057600080fd5b506103196106ef366004611eb1565b610eae565b34801561070057600080fd5b50600b5461031990610100900460ff1681565b34801561071f57600080fd5b5061031961072e366004611edb565b60126020526000908152604090205460ff1681565b34801561074f57600080fd5b506102ac61075e366004611f5b565b610ebb565b34801561076f57600080fd5b506102ac61077e366004611ef6565b610f44565b34801561078f57600080fd5b506103b660085481565b3480156107a557600080fd5b506103196107b4366004611ef6565b611015565b3480156107c557600080fd5b506103b6600c5481565b3480156107db57600080fd5b506103b66107ea366004611fa9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561082157600080fd5b506103b660095481565b34801561083757600080fd5b506103b6600e5481565b34801561084d57600080fd5b506102ac61085c366004611edb565b61116c565b34801561086d57600080fd5b506103b660115481565b34801561088357600080fd5b506103b6600a5481565b6005546001600160a01b031633146108c05760405162461bcd60e51b81526004016108b790611fd3565b60405180910390fd5b60005b8151811015610928576001601260008484815181106108e4576108e4612008565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061092081612034565b9150506108c3565b5050565b6005546001600160a01b031633146109565760405162461bcd60e51b81526004016108b790611fd3565b6010829055601181905561096a818361204d565b600f819055600610156109285760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203625206f72206c6573730000000060448201526064016108b7565b6060600380546109ce90612060565b80601f01602080910402602001604051908101604052809291908181526020018280546109fa90612060565b8015610a475780601f10610a1c57610100808354040283529160200191610a47565b820191906000526020600020905b815481529060010190602001808311610a2a57829003601f168201915b5050505050905090565b6000610a5e338484611207565b5060015b92915050565b6005546001600160a01b03163314610a925760405162461bcd60e51b81526004016108b790611fd3565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610b195760405162461bcd60e51b81526004016108b790611fd3565b670de0b6b3a76400006103e8610b2e60025490565b610b3990600161209a565b610b4391906120b9565b610b4d91906120b9565b811015610bb45760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016108b7565b610bc681670de0b6b3a764000061209a565b60085550565b6000610bd984848461132b565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c5e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016108b7565b610c6b8533858403611207565b506001949350505050565b6005546001600160a01b03163314610ca05760405162461bcd60e51b81526004016108b790611fd3565b600d829055600e819055610cb4818361204d565b600c819055600610156109285760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203625206f72206c6573730000000060448201526064016108b7565b6005546001600160a01b03163314610d335760405162461bcd60e51b81526004016108b790611fd3565b6001600160a01b03166000908152601260205260409020805460ff19169055565b6005546001600160a01b03163314610d7e5760405162461bcd60e51b81526004016108b790611fd3565b610d8860006119fc565b565b6005546000906001600160a01b03163314610db75760405162461bcd60e51b81526004016108b790611fd3565b50600b805460ff19169055600190565b6005546001600160a01b03163314610df15760405162461bcd60e51b81526004016108b790611fd3565b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610e465760405162461bcd60e51b81526004016108b790611fd3565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610e835760405162461bcd60e51b81526004016108b790611fd3565b600b8054911515620100000262ff000019909216919091179055565b6060600480546109ce90612060565b6000610a5e33848461132b565b6005546001600160a01b03163314610ee55760405162461bcd60e51b81526004016108b790611fd3565b6001600160a01b038216600081815260146020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610f6e5760405162461bcd60e51b81526004016108b790611fd3565b670de0b6b3a76400006103e8610f8360025490565b610f8e90600561209a565b610f9891906120b9565b610fa291906120b9565b811015610ffd5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016108b7565b61100f81670de0b6b3a764000061209a565b600a5550565b6005546000906001600160a01b031633146110425760405162461bcd60e51b81526004016108b790611fd3565b620186a061104f60025490565b61105a90600161209a565b61106491906120b9565b8210156110d15760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016108b7565b6103e86110dd60025490565b6110e890600561209a565b6110f291906120b9565b82111561115e5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016108b7565b50600981905560015b919050565b6005546001600160a01b031633146111965760405162461bcd60e51b81526004016108b790611fd3565b6001600160a01b0381166111fb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b7565b611204816119fc565b50565b6001600160a01b0383166112695760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108b7565b6001600160a01b0382166112ca5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108b7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166113515760405162461bcd60e51b81526004016108b7906120db565b6001600160a01b0382166113775760405162461bcd60e51b81526004016108b790612120565b806000036113905761138b83836000611a4e565b505050565b600b5460ff16156116f6576005546001600160a01b038481169116148015906113c757506005546001600160a01b03838116911614155b80156113db57506001600160a01b03821615155b80156113f257506001600160a01b03821661dead14155b80156114085750600654600160a01b900460ff16155b156116f657600b54610100900460ff166114a0576001600160a01b03831660009081526014602052604090205460ff168061145b57506001600160a01b03821660009081526014602052604090205460ff165b6114a05760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016108b7565b6001600160a01b03831660009081526012602052604090205460ff161580156114e257506001600160a01b03821660009081526012602052604090205460ff16155b61152e5760405162461bcd60e51b815260206004820152601c60248201527f596f7572206163636f756e7420697320626c61636b6c6973746564210000000060448201526064016108b7565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561158857506001600160a01b03821660009081526015602052604090205460ff16155b1561166c576008548111156115fd5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016108b7565b600a546001600160a01b038316600090815260208190526040902054611623908361204d565b11156116675760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108b7565b6116f6565b6001600160a01b03821660009081526015602052604090205460ff166116f657600a546001600160a01b0383166000908152602081905260409020546116b2908361204d565b11156116f65760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108b7565b30600090815260208190526040902054600954811080159081906117225750600b5462010000900460ff165b80156117385750600654600160a01b900460ff16155b801561177557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b801561179a57506001600160a01b03851660009081526014602052604090205460ff16155b80156117bf57506001600160a01b03841660009081526014602052604090205460ff16155b156117ed576006805460ff60a01b1916600160a01b1790556117df611ba3565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526014602052604090205460ff600160a01b90920482161591168061183b57506001600160a01b03851660009081526014602052604090205460ff165b15611844575060005b600080600083156119e6577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b031614801561189257506000600f54115b156118f8576118b760646118b1600f548a611bed90919063ffffffff16565b90611c00565b9250600f54601154846118ca919061209a565b6118d491906120b9565b9150600f54601054846118e7919061209a565b6118f191906120b9565b9050611997565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316896001600160a01b031614801561193b57506000600c54115b156119975761195a60646118b1600c548a611bed90919063ffffffff16565b9250600c54600e548461196d919061209a565b61197791906120b9565b9150600c54600d548461198a919061209a565b61199491906120b9565b90505b82156119a8576119a8893085611a4e565b81156119d9576119d9307f000000000000000000000000000000000000000000000000000000000000000084611a4e565b6119e38388612163565b96505b6119f1898989611a4e565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316611a745760405162461bcd60e51b81526004016108b7906120db565b6001600160a01b038216611a9a5760405162461bcd60e51b81526004016108b790612120565b6001600160a01b03831660009081526020819052604090205481811015611b125760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108b7565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611b4990849061204d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b9591815260200190565b60405180910390a350505050565b3060009081526020819052604081205490819003611bbe5750565b600954611bcc90601461209a565b811115611be457600954611be190601461209a565b90505b61120481611c0c565b6000611bf9828461209a565b9392505050565b6000611bf982846120b9565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611c4157611c41612008565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611c7257611c72612008565b60200260200101906001600160a01b031690816001600160a01b031681525050611cbd307f000000000000000000000000000000000000000000000000000000000000000084611207565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811692635c11d79592611d19928792600092889291909116904290600401612176565b600060405180830381600087803b158015611d3357600080fd5b505af1158015611d47573d6000803e3d6000fd5b505050505050565b634e487b7160e01b600052604160045260246000fd5b80356001600160a01b038116811461116757600080fd5b60006020808385031215611d8f57600080fd5b823567ffffffffffffffff80821115611da757600080fd5b818501915085601f830112611dbb57600080fd5b813581811115611dcd57611dcd611d4f565b8060051b604051601f19603f83011681018181108582111715611df257611df2611d4f565b604052918252848201925083810185019188831115611e1057600080fd5b938501935b82851015611e3557611e2685611d65565b84529385019392850192611e15565b98975050505050505050565b60008060408385031215611e5457600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611e9057858101830151858201604001528201611e74565b506000604082860101526040601f19601f8301168501019250505092915050565b60008060408385031215611ec457600080fd5b611ecd83611d65565b946020939093013593505050565b600060208284031215611eed57600080fd5b611bf982611d65565b600060208284031215611f0857600080fd5b5035919050565b600080600060608486031215611f2457600080fd5b611f2d84611d65565b9250611f3b60208501611d65565b9150604084013590509250925092565b8035801515811461116757600080fd5b60008060408385031215611f6e57600080fd5b611f7783611d65565b9150611f8560208401611f4b565b90509250929050565b600060208284031215611fa057600080fd5b611bf982611f4b565b60008060408385031215611fbc57600080fd5b611fc583611d65565b9150611f8560208401611d65565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016120465761204661201e565b5060010190565b80820180821115610a6257610a6261201e565b600181811c9082168061207457607f821691505b60208210810361209457634e487b7160e01b600052602260045260246000fd5b50919050565b60008160001904831182151516156120b4576120b461201e565b500290565b6000826120d657634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610a6257610a6261201e565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156121c65784516001600160a01b0316835293830193918301916001016121a1565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212205b812dcabacb622fe261dd7ef9d7eb8b509ea4bbc0049d04408f589664c1139164736f6c634300081000334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106102805760003560e01c80637f2feddc1161014f578063bfd79284116100c1578063dd62ed3e1161007a578063dd62ed3e146107cf578063e2f4560514610815578063f11a24d31461082b578063f2fde38b14610841578063f637434214610861578063f8b45b051461087757600080fd5b8063bfd7928414610713578063c024666814610743578063c18bc19514610763578063c8c8ebe414610783578063d257b34f14610799578063d85ba063146107b957600080fd5b8063924de9b711610113578063924de9b71461067357806395d89b41146106935780639c3b4fdc146106a8578063a0d82dc5146106be578063a9059cbb146106d4578063bbc0c742146106f457600080fd5b80637f2feddc146105d357806389a30271146106005780638a8c523c146106205780638da5cb5b146106355780638ea5220f1461065357600080fd5b8063313ce567116101f35780636b999053116101ac5780636b999053146105135780636ddd17131461053357806370a0823114610553578063715018a614610589578063751039fc1461059e5780637571336a146105b357600080fd5b8063313ce5671461043a57806349bd5a5e146104565780634a62bb651461048a5780634fbee193146104a457806366ca9b83146104dd5780636a486a8e146104fd57600080fd5b80631694505e116102455780631694505e1461035957806318160ddd146103a55780631816467f146103c4578063203e727e146103e457806323b872dd1461040457806327c8f8351461042457600080fd5b8062b8cf2a1461028c57806302dbd8f8146102ae57806306fdde03146102ce578063095ea7b3146102f957806310d5de531461032957600080fd5b3661028757005b600080fd5b34801561029857600080fd5b506102ac6102a7366004611d7c565b61088d565b005b3480156102ba57600080fd5b506102ac6102c9366004611e41565b61092c565b3480156102da57600080fd5b506102e36109bf565b6040516102f09190611e63565b60405180910390f35b34801561030557600080fd5b50610319610314366004611eb1565b610a51565b60405190151581526020016102f0565b34801561033557600080fd5b50610319610344366004611edb565b60156020526000908152604090205460ff1681565b34801561036557600080fd5b5061038d7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102f0565b3480156103b157600080fd5b506002545b6040519081526020016102f0565b3480156103d057600080fd5b506102ac6103df366004611edb565b610a68565b3480156103f057600080fd5b506102ac6103ff366004611ef6565b610aef565b34801561041057600080fd5b5061031961041f366004611f0f565b610bcc565b34801561043057600080fd5b5061038d61dead81565b34801561044657600080fd5b50604051601281526020016102f0565b34801561046257600080fd5b5061038d7f000000000000000000000000659e36b0700d9addb259eba18fa88173656ef05481565b34801561049657600080fd5b50600b546103199060ff1681565b3480156104b057600080fd5b506103196104bf366004611edb565b6001600160a01b031660009081526014602052604090205460ff1690565b3480156104e957600080fd5b506102ac6104f8366004611e41565b610c76565b34801561050957600080fd5b506103b6600f5481565b34801561051f57600080fd5b506102ac61052e366004611edb565b610d09565b34801561053f57600080fd5b50600b546103199062010000900460ff1681565b34801561055f57600080fd5b506103b661056e366004611edb565b6001600160a01b031660009081526020819052604090205490565b34801561059557600080fd5b506102ac610d54565b3480156105aa57600080fd5b50610319610d8a565b3480156105bf57600080fd5b506102ac6105ce366004611f5b565b610dc7565b3480156105df57600080fd5b506103b66105ee366004611edb565b60136020526000908152604090205481565b34801561060c57600080fd5b5060065461038d906001600160a01b031681565b34801561062c57600080fd5b506102ac610e1c565b34801561064157600080fd5b506005546001600160a01b031661038d565b34801561065f57600080fd5b5060075461038d906001600160a01b031681565b34801561067f57600080fd5b506102ac61068e366004611f8e565b610e59565b34801561069f57600080fd5b506102e3610e9f565b3480156106b457600080fd5b506103b6600d5481565b3480156106ca57600080fd5b506103b660105481565b3480156106e057600080fd5b506103196106ef366004611eb1565b610eae565b34801561070057600080fd5b50600b5461031990610100900460ff1681565b34801561071f57600080fd5b5061031961072e366004611edb565b60126020526000908152604090205460ff1681565b34801561074f57600080fd5b506102ac61075e366004611f5b565b610ebb565b34801561076f57600080fd5b506102ac61077e366004611ef6565b610f44565b34801561078f57600080fd5b506103b660085481565b3480156107a557600080fd5b506103196107b4366004611ef6565b611015565b3480156107c557600080fd5b506103b6600c5481565b3480156107db57600080fd5b506103b66107ea366004611fa9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561082157600080fd5b506103b660095481565b34801561083757600080fd5b506103b6600e5481565b34801561084d57600080fd5b506102ac61085c366004611edb565b61116c565b34801561086d57600080fd5b506103b660115481565b34801561088357600080fd5b506103b6600a5481565b6005546001600160a01b031633146108c05760405162461bcd60e51b81526004016108b790611fd3565b60405180910390fd5b60005b8151811015610928576001601260008484815181106108e4576108e4612008565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061092081612034565b9150506108c3565b5050565b6005546001600160a01b031633146109565760405162461bcd60e51b81526004016108b790611fd3565b6010829055601181905561096a818361204d565b600f819055600610156109285760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203625206f72206c6573730000000060448201526064016108b7565b6060600380546109ce90612060565b80601f01602080910402602001604051908101604052809291908181526020018280546109fa90612060565b8015610a475780601f10610a1c57610100808354040283529160200191610a47565b820191906000526020600020905b815481529060010190602001808311610a2a57829003601f168201915b5050505050905090565b6000610a5e338484611207565b5060015b92915050565b6005546001600160a01b03163314610a925760405162461bcd60e51b81526004016108b790611fd3565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610b195760405162461bcd60e51b81526004016108b790611fd3565b670de0b6b3a76400006103e8610b2e60025490565b610b3990600161209a565b610b4391906120b9565b610b4d91906120b9565b811015610bb45760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016108b7565b610bc681670de0b6b3a764000061209a565b60085550565b6000610bd984848461132b565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c5e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016108b7565b610c6b8533858403611207565b506001949350505050565b6005546001600160a01b03163314610ca05760405162461bcd60e51b81526004016108b790611fd3565b600d829055600e819055610cb4818361204d565b600c819055600610156109285760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203625206f72206c6573730000000060448201526064016108b7565b6005546001600160a01b03163314610d335760405162461bcd60e51b81526004016108b790611fd3565b6001600160a01b03166000908152601260205260409020805460ff19169055565b6005546001600160a01b03163314610d7e5760405162461bcd60e51b81526004016108b790611fd3565b610d8860006119fc565b565b6005546000906001600160a01b03163314610db75760405162461bcd60e51b81526004016108b790611fd3565b50600b805460ff19169055600190565b6005546001600160a01b03163314610df15760405162461bcd60e51b81526004016108b790611fd3565b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610e465760405162461bcd60e51b81526004016108b790611fd3565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610e835760405162461bcd60e51b81526004016108b790611fd3565b600b8054911515620100000262ff000019909216919091179055565b6060600480546109ce90612060565b6000610a5e33848461132b565b6005546001600160a01b03163314610ee55760405162461bcd60e51b81526004016108b790611fd3565b6001600160a01b038216600081815260146020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610f6e5760405162461bcd60e51b81526004016108b790611fd3565b670de0b6b3a76400006103e8610f8360025490565b610f8e90600561209a565b610f9891906120b9565b610fa291906120b9565b811015610ffd5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016108b7565b61100f81670de0b6b3a764000061209a565b600a5550565b6005546000906001600160a01b031633146110425760405162461bcd60e51b81526004016108b790611fd3565b620186a061104f60025490565b61105a90600161209a565b61106491906120b9565b8210156110d15760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016108b7565b6103e86110dd60025490565b6110e890600561209a565b6110f291906120b9565b82111561115e5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016108b7565b50600981905560015b919050565b6005546001600160a01b031633146111965760405162461bcd60e51b81526004016108b790611fd3565b6001600160a01b0381166111fb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b7565b611204816119fc565b50565b6001600160a01b0383166112695760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108b7565b6001600160a01b0382166112ca5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108b7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166113515760405162461bcd60e51b81526004016108b7906120db565b6001600160a01b0382166113775760405162461bcd60e51b81526004016108b790612120565b806000036113905761138b83836000611a4e565b505050565b600b5460ff16156116f6576005546001600160a01b038481169116148015906113c757506005546001600160a01b03838116911614155b80156113db57506001600160a01b03821615155b80156113f257506001600160a01b03821661dead14155b80156114085750600654600160a01b900460ff16155b156116f657600b54610100900460ff166114a0576001600160a01b03831660009081526014602052604090205460ff168061145b57506001600160a01b03821660009081526014602052604090205460ff165b6114a05760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016108b7565b6001600160a01b03831660009081526012602052604090205460ff161580156114e257506001600160a01b03821660009081526012602052604090205460ff16155b61152e5760405162461bcd60e51b815260206004820152601c60248201527f596f7572206163636f756e7420697320626c61636b6c6973746564210000000060448201526064016108b7565b7f000000000000000000000000659e36b0700d9addb259eba18fa88173656ef0546001600160a01b0316836001600160a01b031614801561158857506001600160a01b03821660009081526015602052604090205460ff16155b1561166c576008548111156115fd5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016108b7565b600a546001600160a01b038316600090815260208190526040902054611623908361204d565b11156116675760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108b7565b6116f6565b6001600160a01b03821660009081526015602052604090205460ff166116f657600a546001600160a01b0383166000908152602081905260409020546116b2908361204d565b11156116f65760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108b7565b30600090815260208190526040902054600954811080159081906117225750600b5462010000900460ff165b80156117385750600654600160a01b900460ff16155b801561177557507f000000000000000000000000659e36b0700d9addb259eba18fa88173656ef0546001600160a01b0316846001600160a01b0316145b801561179a57506001600160a01b03851660009081526014602052604090205460ff16155b80156117bf57506001600160a01b03841660009081526014602052604090205460ff16155b156117ed576006805460ff60a01b1916600160a01b1790556117df611ba3565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526014602052604090205460ff600160a01b90920482161591168061183b57506001600160a01b03851660009081526014602052604090205460ff165b15611844575060005b600080600083156119e6577f000000000000000000000000659e36b0700d9addb259eba18fa88173656ef0546001600160a01b0316886001600160a01b031614801561189257506000600f54115b156118f8576118b760646118b1600f548a611bed90919063ffffffff16565b90611c00565b9250600f54601154846118ca919061209a565b6118d491906120b9565b9150600f54601054846118e7919061209a565b6118f191906120b9565b9050611997565b7f000000000000000000000000659e36b0700d9addb259eba18fa88173656ef0546001600160a01b0316896001600160a01b031614801561193b57506000600c54115b156119975761195a60646118b1600c548a611bed90919063ffffffff16565b9250600c54600e548461196d919061209a565b61197791906120b9565b9150600c54600d548461198a919061209a565b61199491906120b9565b90505b82156119a8576119a8893085611a4e565b81156119d9576119d9307f000000000000000000000000659e36b0700d9addb259eba18fa88173656ef05484611a4e565b6119e38388612163565b96505b6119f1898989611a4e565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316611a745760405162461bcd60e51b81526004016108b7906120db565b6001600160a01b038216611a9a5760405162461bcd60e51b81526004016108b790612120565b6001600160a01b03831660009081526020819052604090205481811015611b125760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108b7565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611b4990849061204d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b9591815260200190565b60405180910390a350505050565b3060009081526020819052604081205490819003611bbe5750565b600954611bcc90601461209a565b811115611be457600954611be190601461209a565b90505b61120481611c0c565b6000611bf9828461209a565b9392505050565b6000611bf982846120b9565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611c4157611c41612008565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611c7257611c72612008565b60200260200101906001600160a01b031690816001600160a01b031681525050611cbd307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611207565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811692635c11d79592611d19928792600092889291909116904290600401612176565b600060405180830381600087803b158015611d3357600080fd5b505af1158015611d47573d6000803e3d6000fd5b505050505050565b634e487b7160e01b600052604160045260246000fd5b80356001600160a01b038116811461116757600080fd5b60006020808385031215611d8f57600080fd5b823567ffffffffffffffff80821115611da757600080fd5b818501915085601f830112611dbb57600080fd5b813581811115611dcd57611dcd611d4f565b8060051b604051601f19603f83011681018181108582111715611df257611df2611d4f565b604052918252848201925083810185019188831115611e1057600080fd5b938501935b82851015611e3557611e2685611d65565b84529385019392850192611e15565b98975050505050505050565b60008060408385031215611e5457600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611e9057858101830151858201604001528201611e74565b506000604082860101526040601f19601f8301168501019250505092915050565b60008060408385031215611ec457600080fd5b611ecd83611d65565b946020939093013593505050565b600060208284031215611eed57600080fd5b611bf982611d65565b600060208284031215611f0857600080fd5b5035919050565b600080600060608486031215611f2457600080fd5b611f2d84611d65565b9250611f3b60208501611d65565b9150604084013590509250925092565b8035801515811461116757600080fd5b60008060408385031215611f6e57600080fd5b611f7783611d65565b9150611f8560208401611f4b565b90509250929050565b600060208284031215611fa057600080fd5b611bf982611f4b565b60008060408385031215611fbc57600080fd5b611fc583611d65565b9150611f8560208401611d65565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016120465761204661201e565b5060010190565b80820180821115610a6257610a6261201e565b600181811c9082168061207457607f821691505b60208210810361209457634e487b7160e01b600052602260045260246000fd5b50919050565b60008160001904831182151516156120b4576120b461201e565b500290565b6000826120d657634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610a6257610a6261201e565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156121c65784516001600160a01b0316835293830193918301916001016121a1565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212205b812dcabacb622fe261dd7ef9d7eb8b509ea4bbc0049d04408f589664c1139164736f6c63430008100033
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.