ERC-20
Overview
Max Total Supply
1,000,000,000 MZU
Holders
94
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
510,249.27469788 MZUValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Mazeru
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* Website: https://www.mazeru.app/ Twitter: https://twitter.com/Mazerumixer Telegram: https://t.me/MazeruMixer */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "./interfaces/IUniswapV2Factory.sol"; import "./interfaces/IUniswapV2Router02.sol"; contract Mazeru is Context, IERC20, IERC20Metadata, Ownable { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; string private constant _name = "Mazeru"; string private constant _symbol = "MZU"; IUniswapV2Router02 public _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); address public uniswapV2Pair; address payable private _taxWallet = payable(0x55528370Cc8e969F5073284Bf191f2F8dD55c889); mapping(address => bool) private _isExcludedFromFee; uint8 private constant _decimals = 9; uint32 public buyTax = 50000; uint32 public sellTax = 200000; uint256 private _totalSupply = 10 ** 9 * 10 ** _decimals; uint256 public maxTrxnAmount = _totalSupply.mul(2).div(100); uint256 public maxWalletSize = _totalSupply.mul(2).div(100); bool private inSwap; modifier lockTheSwap() { inSwap = true; _; inSwap = false; } constructor() { uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair( address(this), _uniswapV2Router.WETH() ); _balances[owner()] = _totalSupply; _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; emit Transfer(address(0), _msgSender(), _totalSupply); } function name() public pure returns (string memory) { return _name; } function symbol() public pure returns (string memory) { return _symbol; } function decimals() public pure returns (uint8) { return _decimals; } function totalSupply() public view returns (uint256) { return _totalSupply; } function balanceOf(address account) public view returns (uint256) { return _balances[account]; } function transfer(address to, uint256 amount) public returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } function transferFrom(address from, address to, uint256 amount) public returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } function setBuyCommisioPercent(uint32 buyTaxPercent) external onlyOwner { require(buyTaxPercent <= 50000, "Buy tax restricted by 5%"); buyTax = buyTaxPercent; } function setSellCommisioPercent(uint32 sellTaxPercent) external onlyOwner { require(sellTaxPercent <= 50000, "Sell tax restricted by 5%"); sellTax = sellTaxPercent; } function ChangeWallletRestrictions(uint8 percent) external onlyOwner { uint256 localtotalSupply = _totalSupply; maxTrxnAmount = localtotalSupply.mul(percent).div(100); maxWalletSize = localtotalSupply.mul(percent).div(100); } function redeemAllRestriction() external onlyOwner { buyTax = 0; sellTax = 0; _transferOwnership(address(0)); } function _transfer(address from, address to, uint256 amount) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); address uniswapV2PairLocal = uniswapV2Pair; IUniswapV2Router02 uniswapV2Router = _uniswapV2Router; uint256 lMaxTrxnAmunt = maxTrxnAmount; uint256 lMaxWalletSize = maxWalletSize; uint32 lbuyTax = buyTax; uint32 lsellTax = sellTax; uint256 taxWalletBalance = _balances[address(this)]; bool isSelling; uint256 taxAmount; // Buy condition if (lbuyTax > 0 && from == uniswapV2PairLocal && !_isExcludedFromFee[to]) { require(amount <= lMaxTrxnAmunt, "Exceeds the maxTrxnAmount."); require(balanceOf(to) + amount <= lMaxWalletSize, "Exceeds the maxWalletSize."); taxAmount = amount.mul(lbuyTax).div(uint256(1e6)); } // Sell Condition else if (!inSwap && lsellTax > 0 && to == uniswapV2PairLocal && !_isExcludedFromFee[from]) { taxAmount = amount.mul(lsellTax).div(uint256(1e6)); isSelling = true; } if (taxAmount > 0) { amount = amount.sub(taxAmount); taxWalletBalance = taxWalletBalance.add(taxAmount); _balances[address(this)] = taxWalletBalance; } if (isSelling && taxWalletBalance > 0) { swapTokensForEth(taxWalletBalance, address(uniswapV2Router)); uint256 currentETHBalance = address(this).balance; if (currentETHBalance > 0) { sendCommisionsToTeam(currentETHBalance); } } uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance.sub(amount); _balances[to] += amount; } emit Transfer(from, to, amount); } function _burn(address account, uint256 amount) private { require(account != address(0), "ERC20: burn from the zero address"); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance.sub(amount); // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); } function _approve(address owner, address spender, uint256 amount) private { 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 _spendAllowance(address owner, address spender, uint256 amount) private { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } function swapTokensForEth(uint256 tokenAmount, address uniswapV2RouterAddress) private lockTheSwap { IUniswapV2Router02 uniswapV2Router = IUniswapV2Router02(uniswapV2RouterAddress); 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 sendCommisionsToTeam(uint256 amount) private { _taxWallet.transfer(amount); } receive() external payable {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "./IUniswapV2Router01.sol"; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; 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) (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 (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 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 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; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable returns (uint[] memory amounts); function swapTokensForExactETH( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactTokensForETH( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapETHForExactTokens( uint amountOut, address[] calldata path, address to, uint deadline ) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
// 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); }
{ "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":"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":"uint8","name":"percent","type":"uint8"}],"name":"ChangeWallletRestrictions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTrxnAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"redeemAllRestriction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"buyTaxPercent","type":"uint32"}],"name":"setBuyCommisioPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"sellTaxPercent","type":"uint32"}],"name":"setSellCommisioPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052600380546001600160a01b0319908116737a250d5630b4cf539739df2c5dacb4c659f2488d17909155600580549091167355528370cc8e969f5073284bf191f2f8dd55c8891790556007805466030d400000c3506001600160401b0319909116179055620000756009600a620004c8565b6200008590633b9aca00620004d9565b6008819055620000a6906064906200009f90600262000340565b9062000357565b600955600854620000c1906064906200009f90600262000340565b600a55348015620000d157600080fd5b50620000dd3362000365565b600360009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000131573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001579190620004f3565b6001600160a01b031663c9c6539630600360009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e09190620004f3565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200022e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002549190620004f3565b600480546001600160a01b0319166001600160a01b0392831617905560085460008054909216825260016020819052604083209190915590600690620002a26000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526006909252902080549091166001179055620002ea3390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6008546040516200033291815260200190565b60405180910390a362000548565b60006200034e8284620004d9565b90505b92915050565b60006200034e828462000525565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200040c578160001904821115620003f057620003f0620003b5565b80851615620003fe57918102915b93841c9390800290620003d0565b509250929050565b600082620004255750600162000351565b81620004345750600062000351565b81600181146200044d5760028114620004585762000478565b600191505062000351565b60ff8411156200046c576200046c620003b5565b50506001821b62000351565b5060208310610133831016604e8410600b84101617156200049d575081810a62000351565b620004a98383620003cb565b8060001904821115620004c057620004c0620003b5565b029392505050565b60006200034e60ff84168362000414565b8082028115828204841417620003515762000351620003b5565b6000602082840312156200050657600080fd5b81516001600160a01b03811681146200051e57600080fd5b9392505050565b6000826200054357634e487b7160e01b600052601260045260246000fd5b500490565b6112ca80620005586000396000f3fe60806040526004361061014f5760003560e01c806370a08231116100b6578063a457c2d71161006f578063a457c2d7146103f4578063a9059cbb14610414578063cbe8021914610434578063cc1776d314610449578063dd62ed3e1461046e578063f2fde38b1461048e57600080fd5b806370a0823114610329578063715018a61461035f5780638da5cb5b146103745780638f3fa8601461039257806395d89b41146103a85780639fb672dd146103d457600080fd5b806349bd5a5e1161010857806349bd5a5e146102475780634f7041a51461027f578063583e0568146102b1578063587a7e57146102d1578063613f98b7146102e75780636b45159a1461030957600080fd5b806306fdde031461015b578063095ea7b31461019c57806318160ddd146101cc57806323b872dd146101eb578063313ce5671461020b578063395093511461022757600080fd5b3661015657005b600080fd5b34801561016757600080fd5b506040805180820190915260068152654d617a65727560d01b60208201525b604051610193919061100c565b60405180910390f35b3480156101a857600080fd5b506101bc6101b736600461106f565b6104ae565b6040519015158152602001610193565b3480156101d857600080fd5b506008545b604051908152602001610193565b3480156101f757600080fd5b506101bc61020636600461109b565b6104c8565b34801561021757600080fd5b5060405160098152602001610193565b34801561023357600080fd5b506101bc61024236600461106f565b6104ec565b34801561025357600080fd5b50600454610267906001600160a01b031681565b6040516001600160a01b039091168152602001610193565b34801561028b57600080fd5b5060075461029c9063ffffffff1681565b60405163ffffffff9091168152602001610193565b3480156102bd57600080fd5b50600354610267906001600160a01b031681565b3480156102dd57600080fd5b506101dd60095481565b3480156102f357600080fd5b506103076103023660046110dc565b61050e565b005b34801561031557600080fd5b506103076103243660046110dc565b61058f565b34801561033557600080fd5b506101dd610344366004611102565b6001600160a01b031660009081526001602052604090205490565b34801561036b57600080fd5b50610307610617565b34801561038057600080fd5b506000546001600160a01b0316610267565b34801561039e57600080fd5b506101dd600a5481565b3480156103b457600080fd5b506040805180820190915260038152624d5a5560e81b6020820152610186565b3480156103e057600080fd5b506103076103ef36600461111f565b61062b565b34801561040057600080fd5b506101bc61040f36600461106f565b61066a565b34801561042057600080fd5b506101bc61042f36600461106f565b6106e5565b34801561044057600080fd5b506103076106f3565b34801561045557600080fd5b5060075461029c90640100000000900463ffffffff1681565b34801561047a57600080fd5b506101dd610489366004611142565b610716565b34801561049a57600080fd5b506103076104a9366004611102565b610741565b6000336104bc8185856107ba565b60019150505b92915050565b6000336104d68582856108de565b6104e1858585610958565b506001949350505050565b6000336104bc8185856104ff8383610716565b6105099190611191565b6107ba565b610516610d70565b61c3508163ffffffff1611156105735760405162461bcd60e51b815260206004820152601860248201527f427579207461782072657374726963746564206279203525000000000000000060448201526064015b60405180910390fd5b6007805463ffffffff191663ffffffff92909216919091179055565b610597610d70565b61c3508163ffffffff1611156105ef5760405162461bcd60e51b815260206004820152601960248201527f53656c6c20746178207265737472696374656420627920352500000000000000604482015260640161056a565b6007805463ffffffff9092166401000000000267ffffffff0000000019909216919091179055565b61061f610d70565b6106296000610dca565b565b610633610d70565b60085461064e60646106488360ff8616610e1a565b90610e2d565b60095561066360646106488360ff8616610e1a565b600a555050565b600033816106788286610716565b9050838110156106d85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161056a565b6104e182868684036107ba565b6000336104bc818585610958565b6106fb610d70565b6007805467ffffffffffffffff191690556106296000610dca565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610749610d70565b6001600160a01b0381166107ae5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161056a565b6107b781610dca565b50565b6001600160a01b03831661081c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161056a565b6001600160a01b03821661087d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161056a565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006108ea8484610716565b9050600019811461095257818110156109455760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161056a565b61095284848484036107ba565b50505050565b6001600160a01b0383166109bc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161056a565b6001600160a01b038216610a1e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161056a565b600454600354600954600a54600754306000908152600160205260408120546001600160a01b03968716969095169463ffffffff8084169364010000000090041691808415801590610a815750886001600160a01b03168c6001600160a01b0316145b8015610aa657506001600160a01b038b1660009081526006602052604090205460ff16155b15610b9557868a1115610afb5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d61785472786e416d6f756e742e000000000000604482015260640161056a565b858a610b1c8d6001600160a01b031660009081526001602052604090205490565b610b269190611191565b1115610b745760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e000000000000604482015260640161056a565b610b8e620f42406106488c63ffffffff808a1690610e1a16565b9050610c16565b600b5460ff16158015610bae575060008463ffffffff16115b8015610bcb5750886001600160a01b03168b6001600160a01b0316145b8015610bf057506001600160a01b038c1660009081526006602052604090205460ff16155b15610c1657610c0f620f42406106488c63ffffffff80891690610e1a16565b9050600191505b8015610c4757610c268a82610e39565b9950610c328382610e45565b30600090815260016020526040902081905592505b818015610c545750600083115b15610c7557610c638389610e51565b478015610c7357610c7381610fce565b505b6001600160a01b038c166000908152600160205260409020548a811015610ced5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161056a565b610cf7818c610e39565b6001600160a01b03808f1660008181526001602052604080822094909455918f168083529183902080548f01905591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610d59908f815260200190565b60405180910390a350505050505050505050505050565b6000546001600160a01b031633146106295760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161056a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610e2682846111a4565b9392505050565b6000610e2682846111bb565b6000610e2682846111dd565b6000610e268284611191565b600b805460ff19166001179055604080516002808252606082018352839260009291906020830190803683370190505090503081600081518110610e9757610e976111f0565b60200260200101906001600160a01b031690816001600160a01b031681525050816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ef5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f199190611206565b81600181518110610f2c57610f2c6111f0565b60200260200101906001600160a01b031690816001600160a01b031681525050610f573083866107ba565b60405163791ac94760e01b81526001600160a01b0383169063791ac94790610f8c908790600090869030904290600401611223565b600060405180830381600087803b158015610fa657600080fd5b505af1158015610fba573d6000803e3d6000fd5b5050600b805460ff19169055505050505050565b6005546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611008573d6000803e3d6000fd5b5050565b600060208083528351808285015260005b818110156110395785810183015185820160400152820161101d565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146107b757600080fd5b6000806040838503121561108257600080fd5b823561108d8161105a565b946020939093013593505050565b6000806000606084860312156110b057600080fd5b83356110bb8161105a565b925060208401356110cb8161105a565b929592945050506040919091013590565b6000602082840312156110ee57600080fd5b813563ffffffff81168114610e2657600080fd5b60006020828403121561111457600080fd5b8135610e268161105a565b60006020828403121561113157600080fd5b813560ff81168114610e2657600080fd5b6000806040838503121561115557600080fd5b82356111608161105a565b915060208301356111708161105a565b809150509250929050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104c2576104c261117b565b80820281158282048414176104c2576104c261117b565b6000826111d857634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156104c2576104c261117b565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561121857600080fd5b8151610e268161105a565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156112735784516001600160a01b03168352938301939183019160010161124e565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212209ba3bc51844500bf4ee6cf09c76be1d0396792dff1fa38686d67aa0bf16c6f7164736f6c63430008130033
Deployed Bytecode
0x60806040526004361061014f5760003560e01c806370a08231116100b6578063a457c2d71161006f578063a457c2d7146103f4578063a9059cbb14610414578063cbe8021914610434578063cc1776d314610449578063dd62ed3e1461046e578063f2fde38b1461048e57600080fd5b806370a0823114610329578063715018a61461035f5780638da5cb5b146103745780638f3fa8601461039257806395d89b41146103a85780639fb672dd146103d457600080fd5b806349bd5a5e1161010857806349bd5a5e146102475780634f7041a51461027f578063583e0568146102b1578063587a7e57146102d1578063613f98b7146102e75780636b45159a1461030957600080fd5b806306fdde031461015b578063095ea7b31461019c57806318160ddd146101cc57806323b872dd146101eb578063313ce5671461020b578063395093511461022757600080fd5b3661015657005b600080fd5b34801561016757600080fd5b506040805180820190915260068152654d617a65727560d01b60208201525b604051610193919061100c565b60405180910390f35b3480156101a857600080fd5b506101bc6101b736600461106f565b6104ae565b6040519015158152602001610193565b3480156101d857600080fd5b506008545b604051908152602001610193565b3480156101f757600080fd5b506101bc61020636600461109b565b6104c8565b34801561021757600080fd5b5060405160098152602001610193565b34801561023357600080fd5b506101bc61024236600461106f565b6104ec565b34801561025357600080fd5b50600454610267906001600160a01b031681565b6040516001600160a01b039091168152602001610193565b34801561028b57600080fd5b5060075461029c9063ffffffff1681565b60405163ffffffff9091168152602001610193565b3480156102bd57600080fd5b50600354610267906001600160a01b031681565b3480156102dd57600080fd5b506101dd60095481565b3480156102f357600080fd5b506103076103023660046110dc565b61050e565b005b34801561031557600080fd5b506103076103243660046110dc565b61058f565b34801561033557600080fd5b506101dd610344366004611102565b6001600160a01b031660009081526001602052604090205490565b34801561036b57600080fd5b50610307610617565b34801561038057600080fd5b506000546001600160a01b0316610267565b34801561039e57600080fd5b506101dd600a5481565b3480156103b457600080fd5b506040805180820190915260038152624d5a5560e81b6020820152610186565b3480156103e057600080fd5b506103076103ef36600461111f565b61062b565b34801561040057600080fd5b506101bc61040f36600461106f565b61066a565b34801561042057600080fd5b506101bc61042f36600461106f565b6106e5565b34801561044057600080fd5b506103076106f3565b34801561045557600080fd5b5060075461029c90640100000000900463ffffffff1681565b34801561047a57600080fd5b506101dd610489366004611142565b610716565b34801561049a57600080fd5b506103076104a9366004611102565b610741565b6000336104bc8185856107ba565b60019150505b92915050565b6000336104d68582856108de565b6104e1858585610958565b506001949350505050565b6000336104bc8185856104ff8383610716565b6105099190611191565b6107ba565b610516610d70565b61c3508163ffffffff1611156105735760405162461bcd60e51b815260206004820152601860248201527f427579207461782072657374726963746564206279203525000000000000000060448201526064015b60405180910390fd5b6007805463ffffffff191663ffffffff92909216919091179055565b610597610d70565b61c3508163ffffffff1611156105ef5760405162461bcd60e51b815260206004820152601960248201527f53656c6c20746178207265737472696374656420627920352500000000000000604482015260640161056a565b6007805463ffffffff9092166401000000000267ffffffff0000000019909216919091179055565b61061f610d70565b6106296000610dca565b565b610633610d70565b60085461064e60646106488360ff8616610e1a565b90610e2d565b60095561066360646106488360ff8616610e1a565b600a555050565b600033816106788286610716565b9050838110156106d85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161056a565b6104e182868684036107ba565b6000336104bc818585610958565b6106fb610d70565b6007805467ffffffffffffffff191690556106296000610dca565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610749610d70565b6001600160a01b0381166107ae5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161056a565b6107b781610dca565b50565b6001600160a01b03831661081c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161056a565b6001600160a01b03821661087d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161056a565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006108ea8484610716565b9050600019811461095257818110156109455760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161056a565b61095284848484036107ba565b50505050565b6001600160a01b0383166109bc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161056a565b6001600160a01b038216610a1e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161056a565b600454600354600954600a54600754306000908152600160205260408120546001600160a01b03968716969095169463ffffffff8084169364010000000090041691808415801590610a815750886001600160a01b03168c6001600160a01b0316145b8015610aa657506001600160a01b038b1660009081526006602052604090205460ff16155b15610b9557868a1115610afb5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d61785472786e416d6f756e742e000000000000604482015260640161056a565b858a610b1c8d6001600160a01b031660009081526001602052604090205490565b610b269190611191565b1115610b745760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e000000000000604482015260640161056a565b610b8e620f42406106488c63ffffffff808a1690610e1a16565b9050610c16565b600b5460ff16158015610bae575060008463ffffffff16115b8015610bcb5750886001600160a01b03168b6001600160a01b0316145b8015610bf057506001600160a01b038c1660009081526006602052604090205460ff16155b15610c1657610c0f620f42406106488c63ffffffff80891690610e1a16565b9050600191505b8015610c4757610c268a82610e39565b9950610c328382610e45565b30600090815260016020526040902081905592505b818015610c545750600083115b15610c7557610c638389610e51565b478015610c7357610c7381610fce565b505b6001600160a01b038c166000908152600160205260409020548a811015610ced5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161056a565b610cf7818c610e39565b6001600160a01b03808f1660008181526001602052604080822094909455918f168083529183902080548f01905591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610d59908f815260200190565b60405180910390a350505050505050505050505050565b6000546001600160a01b031633146106295760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161056a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610e2682846111a4565b9392505050565b6000610e2682846111bb565b6000610e2682846111dd565b6000610e268284611191565b600b805460ff19166001179055604080516002808252606082018352839260009291906020830190803683370190505090503081600081518110610e9757610e976111f0565b60200260200101906001600160a01b031690816001600160a01b031681525050816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ef5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f199190611206565b81600181518110610f2c57610f2c6111f0565b60200260200101906001600160a01b031690816001600160a01b031681525050610f573083866107ba565b60405163791ac94760e01b81526001600160a01b0383169063791ac94790610f8c908790600090869030904290600401611223565b600060405180830381600087803b158015610fa657600080fd5b505af1158015610fba573d6000803e3d6000fd5b5050600b805460ff19169055505050505050565b6005546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611008573d6000803e3d6000fd5b5050565b600060208083528351808285015260005b818110156110395785810183015185820160400152820161101d565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146107b757600080fd5b6000806040838503121561108257600080fd5b823561108d8161105a565b946020939093013593505050565b6000806000606084860312156110b057600080fd5b83356110bb8161105a565b925060208401356110cb8161105a565b929592945050506040919091013590565b6000602082840312156110ee57600080fd5b813563ffffffff81168114610e2657600080fd5b60006020828403121561111457600080fd5b8135610e268161105a565b60006020828403121561113157600080fd5b813560ff81168114610e2657600080fd5b6000806040838503121561115557600080fd5b82356111608161105a565b915060208301356111708161105a565b809150509250929050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104c2576104c261117b565b80820281158282048414176104c2576104c261117b565b6000826111d857634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156104c2576104c261117b565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561121857600080fd5b8151610e268161105a565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156112735784516001600160a01b03168352938301939183019160010161124e565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212209ba3bc51844500bf4ee6cf09c76be1d0396792dff1fa38686d67aa0bf16c6f7164736f6c63430008130033
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.