Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
100,000 LIQAI
Holders
111
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:
IntelLiquid
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
Yes with 999 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* LIQAI, where our mission extends beyond providing tools; we're reshaping how developers, blockchain technology, and investors interact. By simplifying smart contract technology, $LIQAI breaks down many barriers to adoption. With our Market Maker Tools, we're ushering in a new era of blockchain innovation, transcending traditional liquidity management to propel projects into vibrant market engagement and expansion. Website: https://liqai.io x (Twitter): https://twitter.com/intelliquid Telegram: https://t.me/liqaiportal Whitepaper: https://gitbook.liqai.io */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./IUniswapV2Factory.sol"; import "./IUniswapV2Pair.sol"; import "./IUniswapV2Router02.sol"; import "./ERC20.sol"; contract IntelLiquid is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; bool private swapping; address private devWallet; uint256 public maxTransaction; uint256 public maxWallet; uint256 public swapTokensAtAmount; bool public limitsInEffect = true; bool public tradingEnabled = false; bool public swapEnabled = false; uint256 public launchBlockNumber; uint256 public buyFees; uint256 public sellFees; uint256 public divisor = 10_000; uint256 private _maxSwapableTokens; uint256 private _swapToEthAfterBuys = 30; uint256 private _removeLimitsAt = 60; uint256 private _buysCount = 0; mapping(address => bool) public _isExcludedFromFees; mapping(address => bool) public _isExcludedmaxTransaction; mapping(address => bool) public automatedMarketMakerPairs; constructor(address _devWallet) ERC20("IntelLiquid", "LIQAI", 9) { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); automatedMarketMakerPairs[address(uniswapV2Pair)] = true; uint256 totalSupply = 100_000 * 10 ** decimals(); maxTransaction = (totalSupply * 150) / divisor; maxWallet = (totalSupply * 200) / divisor; swapTokensAtAmount = (totalSupply * 50) / divisor; _maxSwapableTokens = (totalSupply * 100) / divisor; buyFees = 2_900; sellFees = 2_900; devWallet = _devWallet; uniswapV2Router = _uniswapV2Router; _isExcludedFromFees[owner()] = true; _isExcludedFromFees[address(this)] = true; _isExcludedFromFees[address(0xdead)] = true; _isExcludedmaxTransaction[address(_uniswapV2Router)] = true; _isExcludedmaxTransaction[address(uniswapV2Pair)] = true; _isExcludedmaxTransaction[owner()] = true; _isExcludedmaxTransaction[address(this)] = true; _isExcludedmaxTransaction[address(0xdead)] = true; _mint(msg.sender, totalSupply); } receive() external payable {} function enableTrading() external onlyOwner { require(!tradingEnabled, "Token launched"); tradingEnabled = true; launchBlockNumber = block.number; swapEnabled = true; } function removeLimits() internal returns (bool) { limitsInEffect = false; buyFees = 500; sellFees = 500; return true; } function setBuyFees(uint256 _buyFees) public onlyOwner { require(_buyFees + sellFees <= 1500, "Fees exceed 15%"); buyFees = _buyFees; } function setSellFees(uint256 _sellFees) public onlyOwner { require(buyFees + _sellFees <= 1500, "Fees exceed 15%"); sellFees = _sellFees; } function setMinSwapTokens(uint256 _swapTokensAtAmount) public onlyOwner { swapTokensAtAmount = _swapTokensAtAmount; } 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 (!tradingEnabled) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } if ( automatedMarketMakerPairs[from] && !_isExcludedmaxTransaction[to] ) { require( amount <= maxTransaction, "Buy transfer amount exceeds the maxTransaction." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } else if ( automatedMarketMakerPairs[to] && !_isExcludedmaxTransaction[from] ) { require( amount <= maxTransaction, "Sell transfer amount exceeds the maxTransaction." ); } else if (!_isExcludedmaxTransaction[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] && _buysCount > _swapToEthAfterBuys ) { swapping = true; swapBack(min(contractTokenBalance, _maxSwapableTokens)); swapping = false; } bool takeFee = !swapping; if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellFees > 0) { fees = amount.mul(sellFees).div(divisor); } // on buy else if (automatedMarketMakerPairs[from] && buyFees > 0) { fees = amount.mul(buyFees).div(divisor); _buysCount++; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); if (_buysCount >= _removeLimitsAt && limitsInEffect) { removeLimits(); } } function swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function swapBack(uint256 amount) private { bool success; if (amount == 0) { return; } uint256 amountToSwapForETH = amount; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance; (success, ) = address(devWallet).call{value: ethBalance}(""); } function min(uint256 a, uint256 b) private pure returns (uint256) { return (a > b) ? b : a; } function manualSwap() external { require(_msgSender() == devWallet); uint256 tokenBalance = balanceOf(address(this)); if(tokenBalance > 0){ swapBack(tokenBalance); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; 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; uint8 private _decimals; constructor(string memory name_, string memory symbol_, uint8 decimals_) { _name = name_; _symbol = symbol_; _decimals = decimals_; } function name() public view virtual override returns (string memory) { return _name; } function symbol() public view virtual override returns (string memory) { return _symbol; } function decimals() public view virtual override returns (uint8) { return _decimals; } function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } function balanceOf( address account ) public view virtual override returns (uint256) { return _balances[account]; } function transfer( address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance( address owner, address spender ) public view virtual override returns (uint256) { return _allowances[owner][spender]; } function approve( address spender, uint256 amount ) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } 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; } function increaseAllowance( address spender, uint256 addedValue ) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender] + addedValue ); return true; } function decreaseAllowance( address spender, uint256 subtractedValue ) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } 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); } 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); } function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } 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); } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; }
// SPDX-License-Identifier: GPL-3.0 pragma solidity >=0.8.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; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == _ENTERED; } }
// 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) (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 subtraction 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; } } }
// 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; } }
{ "optimizer": { "enabled": true, "runs": 999 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_devWallet","type":"address"}],"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":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":"_isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedmaxTransaction","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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFees","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":"divisor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launchBlockNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTransaction","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFees","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_swapTokensAtAmount","type":"uint256"}],"name":"setMinSwapTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellFees","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","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":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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
60c0604052600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d179055600b805462ffffff19166001179055612710600f55601e601155603c60125560006013553480156200005b57600080fd5b5060405162002562380380620025628339810160408190526200007e9162000600565b6040518060400160405280600b81526020016a125b9d195b131a5c5d5a5960aa1b815250604051806040016040528060058152602001644c4951414960d81b81525060098260039081620000d39190620006d6565b506004620000e28382620006d6565b506005805460ff191660ff92909216919091179055506200010c9050620001063390565b620004b9565b6006546040805163c45a015560e01b815290516001600160a01b0390921691829163c45a01559160048083019260209291908290030181865afa15801562000158573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200017e919062000600565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001cc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f2919062000600565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000240573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000266919062000600565b6001600160a01b031660a08190526000908152601660205260408120805460ff191660011790556200029a60055460ff1690565b620002a790600a620008b7565b620002b690620186a0620008c8565b600f54909150620002c9826096620008c8565b620002d59190620008e2565b600855600f54620002e88260c8620008c8565b620002f49190620008e2565b600955600f5462000307826032620008c8565b620003139190620008e2565b600a55600f5462000326826064620008c8565b620003329190620008e2565b601055610b54600d819055600e55600780546001600160a01b0319166001600160a01b038581169190911790915582166080526001601460006200038360055461010090046001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152601484528281208054861660019081179091557f8b9e18c5e04efe171d1e4f682ad90d753958a5ffe56db5290b0236c8e0b6db0080548716821790558783168252601594859052838220805487168217905560a0519092168152918220805490941681179093556200043360055461010090046001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526015909252812080548316600190811790915561dead9091527f7ed1dca03d96f947ab02d66053f47073699eb6287021936c92f54972932767e58054909216179055620004b0338262000513565b5050506200091b565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200056e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000582919062000905565b90915550506001600160a01b03821660009081526020819052604081208054839290620005b190849062000905565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b6000602082840312156200061357600080fd5b81516001600160a01b03811681146200062b57600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200065d57607f821691505b6020821081036200067e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005fb57600081815260208120601f850160051c81016020861015620006ad5750805b601f850160051c820191505b81811015620006ce57828155600101620006b9565b505050505050565b81516001600160401b03811115620006f257620006f262000632565b6200070a8162000703845462000648565b8462000684565b602080601f831160018114620007425760008415620007295750858301515b600019600386901b1c1916600185901b178555620006ce565b600085815260208120601f198616915b82811015620007735788860151825594840194600190910190840162000752565b5085821015620007925787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620007f9578160001904821115620007dd57620007dd620007a2565b80851615620007eb57918102915b93841c9390800290620007bd565b509250929050565b6000826200081257506001620008b1565b816200082157506000620008b1565b81600181146200083a5760028114620008455762000865565b6001915050620008b1565b60ff841115620008595762000859620007a2565b50506001821b620008b1565b5060208310610133831016604e8410600b84101617156200088a575081810a620008b1565b620008968383620007b8565b8060001904821115620008ad57620008ad620007a2565b0290505b92915050565b60006200062b60ff84168362000801565b8082028115828204841417620008b157620008b1620007a2565b6000826200090057634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620008b157620008b1620007a2565b60805160a051611c0c6200095660003960006103940152600081816102b1015281816117a90152818161186201526118b70152611c0c6000f3fe6080604052600436106102385760003560e01c80638da5cb5b11610138578063dd888005116100b0578063e2f456051161007f578063f2fde38b11610064578063f2fde38b146106a2578063f887ea40146106c2578063f8b45b05146106e257600080fd5b8063e2f4560514610676578063e4748b9e1461068c57600080fd5b8063dd888005146105e0578063e0bf7fd114610600578063e0f3ccf514610630578063e1bc33941461064657600080fd5b8063a9059cbb11610107578063c3f70b52116100ec578063c3f70b5214610564578063dcf7aef31461057a578063dd62ed3e1461059a57600080fd5b8063a9059cbb14610514578063b62496f51461053457600080fd5b80638da5cb5b1461049c57806395927c25146104bf57806395d89b41146104df578063a457c2d7146104f457600080fd5b806349bd5a5e116101cb5780636ddd17131161019a578063715018a61161017f578063715018a61461045c57806384e92c00146104715780638a8c523c1461048757600080fd5b80636ddd17131461040657806370a082311461042657600080fd5b806349bd5a5e146103825780634a62bb65146103b65780634ada218b146103d057806351bc3c85146103ef57600080fd5b80631f2dc5ef116102075780631f2dc5ef1461030a57806323b872dd14610320578063313ce56714610340578063395093511461036257600080fd5b806306fdde0314610244578063095ea7b31461026f5780631694505e1461029f57806318160ddd146102eb57600080fd5b3661023f57005b600080fd5b34801561025057600080fd5b506102596106f8565b604051610266919061192b565b60405180910390f35b34801561027b57600080fd5b5061028f61028a36600461198e565b61078a565b6040519015158152602001610266565b3480156102ab57600080fd5b506102d37f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610266565b3480156102f757600080fd5b506002545b604051908152602001610266565b34801561031657600080fd5b506102fc600f5481565b34801561032c57600080fd5b5061028f61033b3660046119ba565b6107a1565b34801561034c57600080fd5b5060055460405160ff9091168152602001610266565b34801561036e57600080fd5b5061028f61037d36600461198e565b610865565b34801561038e57600080fd5b506102d37f000000000000000000000000000000000000000000000000000000000000000081565b3480156103c257600080fd5b50600b5461028f9060ff1681565b3480156103dc57600080fd5b50600b5461028f90610100900460ff1681565b3480156103fb57600080fd5b506104046108a1565b005b34801561041257600080fd5b50600b5461028f9062010000900460ff1681565b34801561043257600080fd5b506102fc6104413660046119fb565b6001600160a01b031660009081526020819052604090205490565b34801561046857600080fd5b506104046108e3565b34801561047d57600080fd5b506102fc600c5481565b34801561049357600080fd5b506104046108f7565b3480156104a857600080fd5b5060055461010090046001600160a01b03166102d3565b3480156104cb57600080fd5b506104046104da366004611a18565b61096e565b3480156104eb57600080fd5b506102596109da565b34801561050057600080fd5b5061028f61050f36600461198e565b6109e9565b34801561052057600080fd5b5061028f61052f36600461198e565b610a9a565b34801561054057600080fd5b5061028f61054f3660046119fb565b60166020526000908152604090205460ff1681565b34801561057057600080fd5b506102fc60085481565b34801561058657600080fd5b50610404610595366004611a18565b610aa7565b3480156105a657600080fd5b506102fc6105b5366004611a31565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156105ec57600080fd5b506104046105fb366004611a18565b610b13565b34801561060c57600080fd5b5061028f61061b3660046119fb565b60146020526000908152604090205460ff1681565b34801561063c57600080fd5b506102fc600e5481565b34801561065257600080fd5b5061028f6106613660046119fb565b60156020526000908152604090205460ff1681565b34801561068257600080fd5b506102fc600a5481565b34801561069857600080fd5b506102fc600d5481565b3480156106ae57600080fd5b506104046106bd3660046119fb565b610b20565b3480156106ce57600080fd5b506006546102d3906001600160a01b031681565b3480156106ee57600080fd5b506102fc60095481565b60606003805461070790611a6a565b80601f016020809104026020016040519081016040528092919081815260200182805461073390611a6a565b80156107805780601f1061075557610100808354040283529160200191610780565b820191906000526020600020905b81548152906001019060200180831161076357829003601f168201915b5050505050905090565b6000610797338484610bad565b5060015b92915050565b60006107ae848484610d05565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561084d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61085a8533858403610bad565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161079791859061089c908690611aba565b610bad565b6007546001600160a01b0316336001600160a01b0316146108c157600080fd5b3060009081526020819052604090205480156108e0576108e081611406565b50565b6108eb61146b565b6108f560006114cb565b565b6108ff61146b565b600b54610100900460ff16156109575760405162461bcd60e51b815260206004820152600e60248201527f546f6b656e206c61756e636865640000000000000000000000000000000000006044820152606401610844565b600b805443600c5562ffff00191662010100179055565b61097661146b565b6105dc81600d546109879190611aba565b11156109d55760405162461bcd60e51b815260206004820152600f60248201527f46656573206578636565642031352500000000000000000000000000000000006044820152606401610844565b600e55565b60606004805461070790611a6a565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610a835760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610844565b610a903385858403610bad565b5060019392505050565b6000610797338484610d05565b610aaf61146b565b6105dc600e5482610ac09190611aba565b1115610b0e5760405162461bcd60e51b815260206004820152600f60248201527f46656573206578636565642031352500000000000000000000000000000000006044820152606401610844565b600d55565b610b1b61146b565b600a55565b610b2861146b565b6001600160a01b038116610ba45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610844565b6108e0816114cb565b6001600160a01b038316610c285760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610844565b6001600160a01b038216610ca45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610844565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610d695760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610844565b6001600160a01b038216610dcb5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610844565b80600003610de457610ddf8383600061153c565b505050565b600b5460ff161561118e576005546001600160a01b038481166101009092041614801590610e2557506005546001600160a01b038381166101009092041614155b8015610e3957506001600160a01b03821615155b8015610e5057506001600160a01b03821661dead14155b8015610e665750600654600160a01b900460ff16155b1561118e57600b54610100900460ff16610f05576001600160a01b03831660009081526014602052604090205460ff1680610eb957506001600160a01b03821660009081526014602052604090205460ff165b610f055760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401610844565b6001600160a01b03831660009081526016602052604090205460ff168015610f4657506001600160a01b03821660009081526015602052604090205460ff16155b1561103c57600854811115610fc35760405162461bcd60e51b815260206004820152602f60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e2e00000000000000000000000000000000006064820152608401610844565b6009546001600160a01b038316600090815260208190526040902054610fe99083611aba565b11156110375760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610844565b61118e565b6001600160a01b03821660009081526016602052604090205460ff16801561107d57506001600160a01b03831660009081526015602052604090205460ff16155b156110fa576008548111156110375760405162461bcd60e51b815260206004820152603060248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e2e000000000000000000000000000000006064820152608401610844565b6001600160a01b03821660009081526015602052604090205460ff1661118e576009546001600160a01b0383166000908152602081905260409020546111409083611aba565b111561118e5760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610844565b30600090815260208190526040902054600a54811080159081906111ba5750600b5462010000900460ff165b80156111d05750600654600160a01b900460ff16155b80156111f557506001600160a01b03851660009081526016602052604090205460ff16155b801561121a57506001600160a01b03851660009081526014602052604090205460ff16155b801561123f57506001600160a01b03841660009081526014602052604090205460ff16155b801561124e5750601154601354115b1561128b576006805460ff60a01b1916600160a01b17905560105461127d90611278908490611722565b611406565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526014602052604090205460ff600160a01b9092048216159116806112d957506001600160a01b03851660009081526014602052604090205460ff165b156112e2575060005b600081156113c1576001600160a01b03861660009081526016602052604090205460ff16801561131457506000600e54115b156113415761133a600f54611334600e548861173a90919063ffffffff16565b90611746565b90506113a3565b6001600160a01b03871660009081526016602052604090205460ff16801561136b57506000600d54115b156113a35761138b600f54611334600d548861173a90919063ffffffff16565b60138054919250600061139d83611acd565b91905055505b80156113b4576113b487308361153c565b6113be8186611ae6565b94505b6113cc87878761153c565b601254601354101580156113e25750600b5460ff165b156113fd57600b805460ff191690556101f4600d819055600e555b50505050505050565b600081600003611414575050565b8161141e81611752565b60075460405147916001600160a01b0316908290600081818185875af1925050503d80600081146113fd576040519150601f19603f3d011682016040523d82523d6000602084013e6113fd565b6005546001600160a01b036101009091041633146108f55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610844565b600580546001600160a01b038381166101008181027fffffffffffffffffffffff0000000000000000000000000000000000000000ff85161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166115a05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610844565b6001600160a01b0382166116025760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610844565b6001600160a01b038316600090815260208190526040902054818110156116915760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610844565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906116c8908490611aba565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161171491815260200190565b60405180910390a350505050565b60008183116117315782611733565b815b9392505050565b60006117338284611af9565b60006117338284611b10565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061178757611787611b32565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611805573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118299190611b48565b8160018151811061183c5761183c611b32565b60200260200101906001600160a01b031690816001600160a01b031681525050611887307f000000000000000000000000000000000000000000000000000000000000000084610bad565b6040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906118f5908590600090869030904290600401611b65565b600060405180830381600087803b15801561190f57600080fd5b505af1158015611923573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b818110156119585785810183015185820160400152820161193c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146108e057600080fd5b600080604083850312156119a157600080fd5b82356119ac81611979565b946020939093013593505050565b6000806000606084860312156119cf57600080fd5b83356119da81611979565b925060208401356119ea81611979565b929592945050506040919091013590565b600060208284031215611a0d57600080fd5b813561173381611979565b600060208284031215611a2a57600080fd5b5035919050565b60008060408385031215611a4457600080fd5b8235611a4f81611979565b91506020830135611a5f81611979565b809150509250929050565b600181811c90821680611a7e57607f821691505b602082108103611a9e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561079b5761079b611aa4565b600060018201611adf57611adf611aa4565b5060010190565b8181038181111561079b5761079b611aa4565b808202811582820484141761079b5761079b611aa4565b600082611b2d57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611b5a57600080fd5b815161173381611979565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611bb55784516001600160a01b031683529383019391830191600101611b90565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212206f9f89b8273b731882cea5033d08dc18089f96d79b388a3a3e2696138fa5444064736f6c63430008130033000000000000000000000000ad69ba2aef86cec433e39a1a32f20b1a98d699e1
Deployed Bytecode
0x6080604052600436106102385760003560e01c80638da5cb5b11610138578063dd888005116100b0578063e2f456051161007f578063f2fde38b11610064578063f2fde38b146106a2578063f887ea40146106c2578063f8b45b05146106e257600080fd5b8063e2f4560514610676578063e4748b9e1461068c57600080fd5b8063dd888005146105e0578063e0bf7fd114610600578063e0f3ccf514610630578063e1bc33941461064657600080fd5b8063a9059cbb11610107578063c3f70b52116100ec578063c3f70b5214610564578063dcf7aef31461057a578063dd62ed3e1461059a57600080fd5b8063a9059cbb14610514578063b62496f51461053457600080fd5b80638da5cb5b1461049c57806395927c25146104bf57806395d89b41146104df578063a457c2d7146104f457600080fd5b806349bd5a5e116101cb5780636ddd17131161019a578063715018a61161017f578063715018a61461045c57806384e92c00146104715780638a8c523c1461048757600080fd5b80636ddd17131461040657806370a082311461042657600080fd5b806349bd5a5e146103825780634a62bb65146103b65780634ada218b146103d057806351bc3c85146103ef57600080fd5b80631f2dc5ef116102075780631f2dc5ef1461030a57806323b872dd14610320578063313ce56714610340578063395093511461036257600080fd5b806306fdde0314610244578063095ea7b31461026f5780631694505e1461029f57806318160ddd146102eb57600080fd5b3661023f57005b600080fd5b34801561025057600080fd5b506102596106f8565b604051610266919061192b565b60405180910390f35b34801561027b57600080fd5b5061028f61028a36600461198e565b61078a565b6040519015158152602001610266565b3480156102ab57600080fd5b506102d37f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610266565b3480156102f757600080fd5b506002545b604051908152602001610266565b34801561031657600080fd5b506102fc600f5481565b34801561032c57600080fd5b5061028f61033b3660046119ba565b6107a1565b34801561034c57600080fd5b5060055460405160ff9091168152602001610266565b34801561036e57600080fd5b5061028f61037d36600461198e565b610865565b34801561038e57600080fd5b506102d37f00000000000000000000000006cd6e09b33e0be83a84dca967d4526876d5905381565b3480156103c257600080fd5b50600b5461028f9060ff1681565b3480156103dc57600080fd5b50600b5461028f90610100900460ff1681565b3480156103fb57600080fd5b506104046108a1565b005b34801561041257600080fd5b50600b5461028f9062010000900460ff1681565b34801561043257600080fd5b506102fc6104413660046119fb565b6001600160a01b031660009081526020819052604090205490565b34801561046857600080fd5b506104046108e3565b34801561047d57600080fd5b506102fc600c5481565b34801561049357600080fd5b506104046108f7565b3480156104a857600080fd5b5060055461010090046001600160a01b03166102d3565b3480156104cb57600080fd5b506104046104da366004611a18565b61096e565b3480156104eb57600080fd5b506102596109da565b34801561050057600080fd5b5061028f61050f36600461198e565b6109e9565b34801561052057600080fd5b5061028f61052f36600461198e565b610a9a565b34801561054057600080fd5b5061028f61054f3660046119fb565b60166020526000908152604090205460ff1681565b34801561057057600080fd5b506102fc60085481565b34801561058657600080fd5b50610404610595366004611a18565b610aa7565b3480156105a657600080fd5b506102fc6105b5366004611a31565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156105ec57600080fd5b506104046105fb366004611a18565b610b13565b34801561060c57600080fd5b5061028f61061b3660046119fb565b60146020526000908152604090205460ff1681565b34801561063c57600080fd5b506102fc600e5481565b34801561065257600080fd5b5061028f6106613660046119fb565b60156020526000908152604090205460ff1681565b34801561068257600080fd5b506102fc600a5481565b34801561069857600080fd5b506102fc600d5481565b3480156106ae57600080fd5b506104046106bd3660046119fb565b610b20565b3480156106ce57600080fd5b506006546102d3906001600160a01b031681565b3480156106ee57600080fd5b506102fc60095481565b60606003805461070790611a6a565b80601f016020809104026020016040519081016040528092919081815260200182805461073390611a6a565b80156107805780601f1061075557610100808354040283529160200191610780565b820191906000526020600020905b81548152906001019060200180831161076357829003601f168201915b5050505050905090565b6000610797338484610bad565b5060015b92915050565b60006107ae848484610d05565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561084d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61085a8533858403610bad565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161079791859061089c908690611aba565b610bad565b6007546001600160a01b0316336001600160a01b0316146108c157600080fd5b3060009081526020819052604090205480156108e0576108e081611406565b50565b6108eb61146b565b6108f560006114cb565b565b6108ff61146b565b600b54610100900460ff16156109575760405162461bcd60e51b815260206004820152600e60248201527f546f6b656e206c61756e636865640000000000000000000000000000000000006044820152606401610844565b600b805443600c5562ffff00191662010100179055565b61097661146b565b6105dc81600d546109879190611aba565b11156109d55760405162461bcd60e51b815260206004820152600f60248201527f46656573206578636565642031352500000000000000000000000000000000006044820152606401610844565b600e55565b60606004805461070790611a6a565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610a835760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610844565b610a903385858403610bad565b5060019392505050565b6000610797338484610d05565b610aaf61146b565b6105dc600e5482610ac09190611aba565b1115610b0e5760405162461bcd60e51b815260206004820152600f60248201527f46656573206578636565642031352500000000000000000000000000000000006044820152606401610844565b600d55565b610b1b61146b565b600a55565b610b2861146b565b6001600160a01b038116610ba45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610844565b6108e0816114cb565b6001600160a01b038316610c285760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610844565b6001600160a01b038216610ca45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610844565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610d695760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610844565b6001600160a01b038216610dcb5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610844565b80600003610de457610ddf8383600061153c565b505050565b600b5460ff161561118e576005546001600160a01b038481166101009092041614801590610e2557506005546001600160a01b038381166101009092041614155b8015610e3957506001600160a01b03821615155b8015610e5057506001600160a01b03821661dead14155b8015610e665750600654600160a01b900460ff16155b1561118e57600b54610100900460ff16610f05576001600160a01b03831660009081526014602052604090205460ff1680610eb957506001600160a01b03821660009081526014602052604090205460ff165b610f055760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401610844565b6001600160a01b03831660009081526016602052604090205460ff168015610f4657506001600160a01b03821660009081526015602052604090205460ff16155b1561103c57600854811115610fc35760405162461bcd60e51b815260206004820152602f60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e2e00000000000000000000000000000000006064820152608401610844565b6009546001600160a01b038316600090815260208190526040902054610fe99083611aba565b11156110375760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610844565b61118e565b6001600160a01b03821660009081526016602052604090205460ff16801561107d57506001600160a01b03831660009081526015602052604090205460ff16155b156110fa576008548111156110375760405162461bcd60e51b815260206004820152603060248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e2e000000000000000000000000000000006064820152608401610844565b6001600160a01b03821660009081526015602052604090205460ff1661118e576009546001600160a01b0383166000908152602081905260409020546111409083611aba565b111561118e5760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610844565b30600090815260208190526040902054600a54811080159081906111ba5750600b5462010000900460ff165b80156111d05750600654600160a01b900460ff16155b80156111f557506001600160a01b03851660009081526016602052604090205460ff16155b801561121a57506001600160a01b03851660009081526014602052604090205460ff16155b801561123f57506001600160a01b03841660009081526014602052604090205460ff16155b801561124e5750601154601354115b1561128b576006805460ff60a01b1916600160a01b17905560105461127d90611278908490611722565b611406565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526014602052604090205460ff600160a01b9092048216159116806112d957506001600160a01b03851660009081526014602052604090205460ff165b156112e2575060005b600081156113c1576001600160a01b03861660009081526016602052604090205460ff16801561131457506000600e54115b156113415761133a600f54611334600e548861173a90919063ffffffff16565b90611746565b90506113a3565b6001600160a01b03871660009081526016602052604090205460ff16801561136b57506000600d54115b156113a35761138b600f54611334600d548861173a90919063ffffffff16565b60138054919250600061139d83611acd565b91905055505b80156113b4576113b487308361153c565b6113be8186611ae6565b94505b6113cc87878761153c565b601254601354101580156113e25750600b5460ff165b156113fd57600b805460ff191690556101f4600d819055600e555b50505050505050565b600081600003611414575050565b8161141e81611752565b60075460405147916001600160a01b0316908290600081818185875af1925050503d80600081146113fd576040519150601f19603f3d011682016040523d82523d6000602084013e6113fd565b6005546001600160a01b036101009091041633146108f55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610844565b600580546001600160a01b038381166101008181027fffffffffffffffffffffff0000000000000000000000000000000000000000ff85161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166115a05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610844565b6001600160a01b0382166116025760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610844565b6001600160a01b038316600090815260208190526040902054818110156116915760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610844565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906116c8908490611aba565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161171491815260200190565b60405180910390a350505050565b60008183116117315782611733565b815b9392505050565b60006117338284611af9565b60006117338284611b10565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061178757611787611b32565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611805573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118299190611b48565b8160018151811061183c5761183c611b32565b60200260200101906001600160a01b031690816001600160a01b031681525050611887307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610bad565b6040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906118f5908590600090869030904290600401611b65565b600060405180830381600087803b15801561190f57600080fd5b505af1158015611923573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b818110156119585785810183015185820160400152820161193c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146108e057600080fd5b600080604083850312156119a157600080fd5b82356119ac81611979565b946020939093013593505050565b6000806000606084860312156119cf57600080fd5b83356119da81611979565b925060208401356119ea81611979565b929592945050506040919091013590565b600060208284031215611a0d57600080fd5b813561173381611979565b600060208284031215611a2a57600080fd5b5035919050565b60008060408385031215611a4457600080fd5b8235611a4f81611979565b91506020830135611a5f81611979565b809150509250929050565b600181811c90821680611a7e57607f821691505b602082108103611a9e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561079b5761079b611aa4565b600060018201611adf57611adf611aa4565b5060010190565b8181038181111561079b5761079b611aa4565b808202811582820484141761079b5761079b611aa4565b600082611b2d57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611b5a57600080fd5b815161173381611979565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611bb55784516001600160a01b031683529383019391830191600101611b90565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212206f9f89b8273b731882cea5033d08dc18089f96d79b388a3a3e2696138fa5444064736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000ad69ba2aef86cec433e39a1a32f20b1a98d699e1
-----Decoded View---------------
Arg [0] : _devWallet (address): 0xaD69BA2aeF86ceC433e39A1A32F20B1a98D699e1
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000ad69ba2aef86cec433e39a1a32f20b1a98d699e1
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.