ERC-20
Overview
Max Total Supply
1,989,081,000,000 BRIAN
Holders
51
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
19,309,960,576.447169170264994711 BRIANValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BRIAN
Compiler Version
v0.8.2+commit.661d1103
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.2; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router { function factory() external pure returns (address); function WETH() external pure returns (address); } contract BRIAN is ERC20, Ownable { IUniswapV2Router public uniswapV2Router; address public uniswapV2Pair; uint256[] public tax; address public taxWallet; mapping (address => bool) public isExcludedFromTax; mapping (address => bool) public isAutomatedMarketMakerPairs; event AutomatedMarketMakerPairUpdated(address pair, bool value); event AccountExcludedFromTax(address account, bool status); event TaxUpdated(uint256 buy, uint256 sell, uint256 p2p); event TaxWalletUpdated(address newWallet); constructor(address owner) ERC20("BRIAN", "BRIAN") { uniswapV2Router = IUniswapV2Router(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()); isExcludedFromTax[owner] = true; isAutomatedMarketMakerPairs[address(uniswapV2Pair)] = true; tax.push(0); tax.push(200); tax.push(0); taxWallet = address(0x6318BCC12e1Ef011056fB3b4c6B8A1Cb68362d1a); _mint(owner, 1989081000000 * (10 ** 18)); } receive() external payable {} function excludeFromTax(address account, bool status) external onlyOwner { require(isExcludedFromTax[account] != status, "Account is already the value of 'status'"); isExcludedFromTax[account] = status; emit AccountExcludedFromTax(account, status); } function setTaxWallet(address newWallet) external onlyOwner{ require(newWallet != address(0), "Zero address"); taxWallet = newWallet; emit TaxWalletUpdated(newWallet); } function setTax(uint256 buy, uint256 sell, uint256 p2p) external onlyOwner { require(buy <= 2500 , "Max tax limit reached for 'BUY'"); require(sell <= 2500 , "Max tax limit reached for 'SELL'"); require(p2p <= 2500 , "Max tax limit reached for 'P2P'"); tax[0] = buy; tax[1] = sell; tax[2] = p2p; emit TaxUpdated(buy, sell, p2p); } function setAutomatedMarketMakerPair(address pair, bool value) external onlyOwner { require(pair != address(0), "Zero address"); require(isAutomatedMarketMakerPairs[pair] != value, "Automated market maker pair is already set to that value"); isAutomatedMarketMakerPairs[address(pair)] = value; emit AutomatedMarketMakerPairUpdated(pair, value); } function _transfer(address sender, address recipient, uint256 amount) internal override(ERC20){ require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); if(isExcludedFromTax[sender] || isExcludedFromTax[recipient]) { super._transfer(sender, recipient, amount); } else { uint256 allTax = collectTax(amount, isAutomatedMarketMakerPairs[recipient], !isAutomatedMarketMakerPairs[sender] && !isAutomatedMarketMakerPairs[recipient]); if(allTax > 0) { super._transfer(sender, address(taxWallet), allTax); super._transfer(sender, recipient, amount - allTax); } else { super._transfer(sender, recipient, amount); } } } function collectTax(uint256 amount, bool sell, bool p2p) private view returns (uint256) { uint256 newTax = amount * (p2p ? tax[2] : sell ? tax[1] : tax[0]) / 10000; return newTax; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.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 anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 // OpenZeppelin Contracts (last updated v4.6.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 (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); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"AccountExcludedFromTax","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"pair","type":"address"},{"indexed":false,"internalType":"bool","name":"value","type":"bool"}],"name":"AutomatedMarketMakerPairUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"buy","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sell","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"p2p","type":"uint256"}],"name":"TaxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newWallet","type":"address"}],"name":"TaxWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"excludeFromTax","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":[{"internalType":"address","name":"","type":"address"}],"name":"isAutomatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buy","type":"uint256"},{"internalType":"uint256","name":"sell","type":"uint256"},{"internalType":"uint256","name":"p2p","type":"uint256"}],"name":"setTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setTaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162001a5038038062001a50833981016040819052620000349162000535565b604080518082018252600580825264212924a0a760d91b60208084018281528551808701909652928552840152815191929162000074916003916200048f565b5080516200008a9060049060208401906200048f565b505050620000a7620000a16200035160201b60201c565b62000355565b600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d17908190556040805163c45a015560e01b815290516001600160a01b03929092169163c45a015591600480820192602092909190829003018186803b1580156200011357600080fd5b505afa15801562000128573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200014e919062000535565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620001ac57600080fd5b505afa158015620001c1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e7919062000535565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200023057600080fd5b505af115801562000245573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200026b919062000535565b600780546001600160a01b039283166001600160a01b03199182161782558383166000908152600a60209081526040808320805460ff19908116600190811790925595549096168352600b9091528120805490931684179092556008805480850182558184527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee39081018490558154808601835560c8908201558154948501909155929092015560098054909116736318bcc12e1ef011056fb3b4c6b8a1cb68362d1a1790556200034a816c191b113d707b63306679000000620003a7565b50620005c7565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004025760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000416919062000565565b90915550506001600160a01b038216600090815260208190526040812080548392906200044590849062000565565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200049d906200058a565b90600052602060002090601f016020900481019282620004c157600085556200050c565b82601f10620004dc57805160ff19168380011785556200050c565b828001600101855582156200050c579182015b828111156200050c578251825591602001919060010190620004ef565b506200051a9291506200051e565b5090565b5b808211156200051a57600081556001016200051f565b60006020828403121562000547578081fd5b81516001600160a01b03811681146200055e578182fd5b9392505050565b600082198211156200058557634e487b7160e01b81526011600452602481fd5b500190565b6002810460018216806200059f57607f821691505b60208210811415620005c157634e487b7160e01b600052602260045260246000fd5b50919050565b61147980620005d76000396000f3fe60806040526004361061014f5760003560e01c8063715018a6116100b6578063a983e4c81161006f578063a983e4c8146103c3578063c6a30647146103e3578063cb4ca63114610403578063dd62ed3e14610433578063ea414b2814610453578063f2fde38b1461047357610156565b8063715018a6146103195780638da5cb5b1461033057806395d89b411461034e5780639a7a23d614610363578063a457c2d714610383578063a9059cbb146103a357610156565b8063255fe84711610108578063255fe8471461024d5780632dc0562d1461027d578063313ce5671461029d57806339509351146102b957806349bd5a5e146102d957806370a08231146102f957610156565b806306fdde031461015b578063095ea7b3146101865780631694505e146101b657806318160ddd146101ee5780631ae3d5ff1461020d57806323b872dd1461022d57610156565b3661015657005b600080fd5b34801561016757600080fd5b50610170610493565b60405161017d91906112a9565b60405180910390f35b34801561019257600080fd5b506101a66101a136600461123d565b610525565b604051901515815260200161017d565b3480156101c257600080fd5b506006546101d6906001600160a01b031681565b6040516001600160a01b03909116815260200161017d565b3480156101fa57600080fd5b506002545b60405190815260200161017d565b34801561021957600080fd5b506101ff610228366004611266565b61053d565b34801561023957600080fd5b506101a66102483660046111c8565b61055e565b34801561025957600080fd5b506101a6610268366004611175565b600b6020526000908152604090205460ff1681565b34801561028957600080fd5b506009546101d6906001600160a01b031681565b3480156102a957600080fd5b506040516012815260200161017d565b3480156102c557600080fd5b506101a66102d436600461123d565b610582565b3480156102e557600080fd5b506007546101d6906001600160a01b031681565b34801561030557600080fd5b506101ff610314366004611175565b6105a4565b34801561032557600080fd5b5061032e6105c3565b005b34801561033c57600080fd5b506005546001600160a01b03166101d6565b34801561035a57600080fd5b506101706105d7565b34801561036f57600080fd5b5061032e61037e366004611203565b6105e6565b34801561038f57600080fd5b506101a661039e36600461123d565b610731565b3480156103af57600080fd5b506101a66103be36600461123d565b6107ac565b3480156103cf57600080fd5b5061032e6103de36600461127e565b6107ba565b3480156103ef57600080fd5b5061032e6103fe366004611203565b610991565b34801561040f57600080fd5b506101a661041e366004611175565b600a6020526000908152604090205460ff1681565b34801561043f57600080fd5b506101ff61044e366004611196565b610a75565b34801561045f57600080fd5b5061032e61046e366004611175565b610aa0565b34801561047f57600080fd5b5061032e61048e366004611175565b610b41565b6060600380546104a2906113f2565b80601f01602080910402602001604051908101604052809291908181526020018280546104ce906113f2565b801561051b5780601f106104f05761010080835404028352916020019161051b565b820191906000526020600020905b8154815290600101906020018083116104fe57829003601f168201915b5050505050905090565b600033610533818585610bba565b5060019392505050565b6008818154811061054d57600080fd5b600091825260209091200154905081565b60003361056c858285610cde565b610577858585610d58565b506001949350505050565b6000336105338185856105958383610a75565b61059f9190611384565b610bba565b6001600160a01b0381166000908152602081905260409020545b919050565b6105cb610e9e565b6105d56000610ef8565b565b6060600480546104a2906113f2565b6105ee610e9e565b6001600160a01b0382166106385760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b60448201526064015b60405180910390fd5b6001600160a01b0382166000908152600b602052604090205460ff16151581151514156106cd5760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c75650000000000000000606482015260840161062f565b6001600160a01b0382166000818152600b6020908152604091829020805460ff19168515159081179091558251938452908301527fef0b71f3a695ce5a89064cc2745d0c503cf766ed985e781607660be6010b8e9091015b60405180910390a15050565b6000338161073f8286610a75565b90508381101561079f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161062f565b6105778286868403610bba565b600033610533818585610d58565b6107c2610e9e565b6109c48311156108145760405162461bcd60e51b815260206004820152601f60248201527f4d617820746178206c696d6974207265616368656420666f7220274255592700604482015260640161062f565b6109c48211156108665760405162461bcd60e51b815260206004820181905260248201527f4d617820746178206c696d6974207265616368656420666f72202753454c4c27604482015260640161062f565b6109c48111156108b85760405162461bcd60e51b815260206004820152601f60248201527f4d617820746178206c696d6974207265616368656420666f7220275032502700604482015260640161062f565b8260086000815481106108db57634e487b7160e01b600052603260045260246000fd5b906000526020600020018190555081600860018154811061090c57634e487b7160e01b600052603260045260246000fd5b906000526020600020018190555080600860028154811061093d57634e487b7160e01b600052603260045260246000fd5b600091825260209182902001919091556040805185815291820184905281018290527fad292e707e8a094bdd1cff9ec5263d8e4e538d8e6e457c032a2dbf7174ebec4b9060600160405180910390a1505050565b610999610e9e565b6001600160a01b0382166000908152600a602052604090205460ff1615158115151415610a195760405162461bcd60e51b815260206004820152602860248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015267277374617475732760c01b606482015260840161062f565b6001600160a01b0382166000818152600a6020908152604091829020805460ff19168515159081179091558251938452908301527f95bc52e5ee61639e667bc4e6a5fd4fe4c0c75dd0e2f1156946698c18834314639101610725565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610aa8610e9e565b6001600160a01b038116610aed5760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b604482015260640161062f565b600980546001600160a01b0319166001600160a01b0383169081179091556040519081527f1797049ec5d8ec17fdce2660fb55e33695fd7ebbdb65726cc6d171c0e1c312c79060200160405180910390a150565b610b49610e9e565b6001600160a01b038116610bae5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161062f565b610bb781610ef8565b50565b6001600160a01b038316610c1c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161062f565b6001600160a01b038216610c7d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161062f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610cea8484610a75565b90506000198114610d525781811015610d455760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161062f565b610d528484848403610bba565b50505050565b6001600160a01b038316610d7e5760405162461bcd60e51b815260040161062f9061133f565b6001600160a01b038216610da45760405162461bcd60e51b815260040161062f906112fc565b6001600160a01b0383166000908152600a602052604090205460ff1680610de357506001600160a01b0382166000908152600a602052604090205460ff165b15610df857610df3838383610f4a565b610e99565b6001600160a01b038083166000908152600b60205260408082205492861682528120549091610e5591849160ff9081169116158015610e5057506001600160a01b0386166000908152600b602052604090205460ff16155b61109e565b90508015610e8e57600954610e759085906001600160a01b031683610f4a565b610e898484610e8484866113db565b610f4a565b610d52565b610d52848484610f4a565b505050565b6005546001600160a01b031633146105d55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161062f565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610f705760405162461bcd60e51b815260040161062f9061133f565b6001600160a01b038216610f965760405162461bcd60e51b815260040161062f906112fc565b6001600160a01b0383166000908152602081905260409020548181101561100e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161062f565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611045908490611384565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161109191815260200190565b60405180910390a3610d52565b6000806127108361111357846110e05760086000815481106110d057634e487b7160e01b600052603260045260246000fd5b906000526020600020015461110e565b600860018154811061110257634e487b7160e01b600052603260045260246000fd5b90600052602060002001545b611141565b600860028154811061113557634e487b7160e01b600052603260045260246000fd5b90600052602060002001545b61114b90876113bc565b611155919061139c565b95945050505050565b80356001600160a01b03811681146105be57600080fd5b600060208284031215611186578081fd5b61118f8261115e565b9392505050565b600080604083850312156111a8578081fd5b6111b18361115e565b91506111bf6020840161115e565b90509250929050565b6000806000606084860312156111dc578081fd5b6111e58461115e565b92506111f36020850161115e565b9150604084013590509250925092565b60008060408385031215611215578182fd5b61121e8361115e565b915060208301358015158114611232578182fd5b809150509250929050565b6000806040838503121561124f578182fd5b6112588361115e565b946020939093013593505050565b600060208284031215611277578081fd5b5035919050565b600080600060608486031215611292578283fd5b505081359360208301359350604090920135919050565b6000602080835283518082850152825b818110156112d5578581018301518582016040015282016112b9565b818111156112e65783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b600082198211156113975761139761142d565b500190565b6000826113b757634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156113d6576113d661142d565b500290565b6000828210156113ed576113ed61142d565b500390565b60028104600182168061140657607f821691505b6020821081141561142757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220dfabc7710082e67235ba9a1bf43a1e3b1d065f4289bb0ecf8e99cf06d1df732364736f6c63430008020033000000000000000000000000fe0715343c915c138405fcc71f7af476e074bade
Deployed Bytecode
0x60806040526004361061014f5760003560e01c8063715018a6116100b6578063a983e4c81161006f578063a983e4c8146103c3578063c6a30647146103e3578063cb4ca63114610403578063dd62ed3e14610433578063ea414b2814610453578063f2fde38b1461047357610156565b8063715018a6146103195780638da5cb5b1461033057806395d89b411461034e5780639a7a23d614610363578063a457c2d714610383578063a9059cbb146103a357610156565b8063255fe84711610108578063255fe8471461024d5780632dc0562d1461027d578063313ce5671461029d57806339509351146102b957806349bd5a5e146102d957806370a08231146102f957610156565b806306fdde031461015b578063095ea7b3146101865780631694505e146101b657806318160ddd146101ee5780631ae3d5ff1461020d57806323b872dd1461022d57610156565b3661015657005b600080fd5b34801561016757600080fd5b50610170610493565b60405161017d91906112a9565b60405180910390f35b34801561019257600080fd5b506101a66101a136600461123d565b610525565b604051901515815260200161017d565b3480156101c257600080fd5b506006546101d6906001600160a01b031681565b6040516001600160a01b03909116815260200161017d565b3480156101fa57600080fd5b506002545b60405190815260200161017d565b34801561021957600080fd5b506101ff610228366004611266565b61053d565b34801561023957600080fd5b506101a66102483660046111c8565b61055e565b34801561025957600080fd5b506101a6610268366004611175565b600b6020526000908152604090205460ff1681565b34801561028957600080fd5b506009546101d6906001600160a01b031681565b3480156102a957600080fd5b506040516012815260200161017d565b3480156102c557600080fd5b506101a66102d436600461123d565b610582565b3480156102e557600080fd5b506007546101d6906001600160a01b031681565b34801561030557600080fd5b506101ff610314366004611175565b6105a4565b34801561032557600080fd5b5061032e6105c3565b005b34801561033c57600080fd5b506005546001600160a01b03166101d6565b34801561035a57600080fd5b506101706105d7565b34801561036f57600080fd5b5061032e61037e366004611203565b6105e6565b34801561038f57600080fd5b506101a661039e36600461123d565b610731565b3480156103af57600080fd5b506101a66103be36600461123d565b6107ac565b3480156103cf57600080fd5b5061032e6103de36600461127e565b6107ba565b3480156103ef57600080fd5b5061032e6103fe366004611203565b610991565b34801561040f57600080fd5b506101a661041e366004611175565b600a6020526000908152604090205460ff1681565b34801561043f57600080fd5b506101ff61044e366004611196565b610a75565b34801561045f57600080fd5b5061032e61046e366004611175565b610aa0565b34801561047f57600080fd5b5061032e61048e366004611175565b610b41565b6060600380546104a2906113f2565b80601f01602080910402602001604051908101604052809291908181526020018280546104ce906113f2565b801561051b5780601f106104f05761010080835404028352916020019161051b565b820191906000526020600020905b8154815290600101906020018083116104fe57829003601f168201915b5050505050905090565b600033610533818585610bba565b5060019392505050565b6008818154811061054d57600080fd5b600091825260209091200154905081565b60003361056c858285610cde565b610577858585610d58565b506001949350505050565b6000336105338185856105958383610a75565b61059f9190611384565b610bba565b6001600160a01b0381166000908152602081905260409020545b919050565b6105cb610e9e565b6105d56000610ef8565b565b6060600480546104a2906113f2565b6105ee610e9e565b6001600160a01b0382166106385760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b60448201526064015b60405180910390fd5b6001600160a01b0382166000908152600b602052604090205460ff16151581151514156106cd5760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c75650000000000000000606482015260840161062f565b6001600160a01b0382166000818152600b6020908152604091829020805460ff19168515159081179091558251938452908301527fef0b71f3a695ce5a89064cc2745d0c503cf766ed985e781607660be6010b8e9091015b60405180910390a15050565b6000338161073f8286610a75565b90508381101561079f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161062f565b6105778286868403610bba565b600033610533818585610d58565b6107c2610e9e565b6109c48311156108145760405162461bcd60e51b815260206004820152601f60248201527f4d617820746178206c696d6974207265616368656420666f7220274255592700604482015260640161062f565b6109c48211156108665760405162461bcd60e51b815260206004820181905260248201527f4d617820746178206c696d6974207265616368656420666f72202753454c4c27604482015260640161062f565b6109c48111156108b85760405162461bcd60e51b815260206004820152601f60248201527f4d617820746178206c696d6974207265616368656420666f7220275032502700604482015260640161062f565b8260086000815481106108db57634e487b7160e01b600052603260045260246000fd5b906000526020600020018190555081600860018154811061090c57634e487b7160e01b600052603260045260246000fd5b906000526020600020018190555080600860028154811061093d57634e487b7160e01b600052603260045260246000fd5b600091825260209182902001919091556040805185815291820184905281018290527fad292e707e8a094bdd1cff9ec5263d8e4e538d8e6e457c032a2dbf7174ebec4b9060600160405180910390a1505050565b610999610e9e565b6001600160a01b0382166000908152600a602052604090205460ff1615158115151415610a195760405162461bcd60e51b815260206004820152602860248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015267277374617475732760c01b606482015260840161062f565b6001600160a01b0382166000818152600a6020908152604091829020805460ff19168515159081179091558251938452908301527f95bc52e5ee61639e667bc4e6a5fd4fe4c0c75dd0e2f1156946698c18834314639101610725565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610aa8610e9e565b6001600160a01b038116610aed5760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b604482015260640161062f565b600980546001600160a01b0319166001600160a01b0383169081179091556040519081527f1797049ec5d8ec17fdce2660fb55e33695fd7ebbdb65726cc6d171c0e1c312c79060200160405180910390a150565b610b49610e9e565b6001600160a01b038116610bae5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161062f565b610bb781610ef8565b50565b6001600160a01b038316610c1c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161062f565b6001600160a01b038216610c7d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161062f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610cea8484610a75565b90506000198114610d525781811015610d455760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161062f565b610d528484848403610bba565b50505050565b6001600160a01b038316610d7e5760405162461bcd60e51b815260040161062f9061133f565b6001600160a01b038216610da45760405162461bcd60e51b815260040161062f906112fc565b6001600160a01b0383166000908152600a602052604090205460ff1680610de357506001600160a01b0382166000908152600a602052604090205460ff165b15610df857610df3838383610f4a565b610e99565b6001600160a01b038083166000908152600b60205260408082205492861682528120549091610e5591849160ff9081169116158015610e5057506001600160a01b0386166000908152600b602052604090205460ff16155b61109e565b90508015610e8e57600954610e759085906001600160a01b031683610f4a565b610e898484610e8484866113db565b610f4a565b610d52565b610d52848484610f4a565b505050565b6005546001600160a01b031633146105d55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161062f565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610f705760405162461bcd60e51b815260040161062f9061133f565b6001600160a01b038216610f965760405162461bcd60e51b815260040161062f906112fc565b6001600160a01b0383166000908152602081905260409020548181101561100e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161062f565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611045908490611384565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161109191815260200190565b60405180910390a3610d52565b6000806127108361111357846110e05760086000815481106110d057634e487b7160e01b600052603260045260246000fd5b906000526020600020015461110e565b600860018154811061110257634e487b7160e01b600052603260045260246000fd5b90600052602060002001545b611141565b600860028154811061113557634e487b7160e01b600052603260045260246000fd5b90600052602060002001545b61114b90876113bc565b611155919061139c565b95945050505050565b80356001600160a01b03811681146105be57600080fd5b600060208284031215611186578081fd5b61118f8261115e565b9392505050565b600080604083850312156111a8578081fd5b6111b18361115e565b91506111bf6020840161115e565b90509250929050565b6000806000606084860312156111dc578081fd5b6111e58461115e565b92506111f36020850161115e565b9150604084013590509250925092565b60008060408385031215611215578182fd5b61121e8361115e565b915060208301358015158114611232578182fd5b809150509250929050565b6000806040838503121561124f578182fd5b6112588361115e565b946020939093013593505050565b600060208284031215611277578081fd5b5035919050565b600080600060608486031215611292578283fd5b505081359360208301359350604090920135919050565b6000602080835283518082850152825b818110156112d5578581018301518582016040015282016112b9565b818111156112e65783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b600082198211156113975761139761142d565b500190565b6000826113b757634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156113d6576113d661142d565b500290565b6000828210156113ed576113ed61142d565b500390565b60028104600182168061140657607f821691505b6020821081141561142757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220dfabc7710082e67235ba9a1bf43a1e3b1d065f4289bb0ecf8e99cf06d1df732364736f6c63430008020033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000fe0715343c915c138405fcc71f7af476e074bade
-----Decoded View---------------
Arg [0] : owner (address): 0xfE0715343c915C138405FCc71f7Af476E074bADE
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000fe0715343c915c138405fcc71f7af476e074bade
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.