ERC-20
Overview
Max Total Supply
100,000,000 BitTAO
Holders
30
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
97,490.282568574608268812 BitTAOValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
BitTAO
Compiler Version
v0.8.23+commit.f704f362
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// Website: https://bittao.net // Docs: https://docs.bittao.net // Telegram: https://t.me/BitTAO_ETH // Twitter: https://twitter.com/BitTAO_Project // SPDX-License-Identifier: MIT pragma solidity 0.8.23; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; 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); } 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; } 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; } contract BitTAO is Ownable, ERC20 { event OpenTrading(); event SwapBack(uint256 amount); event UpdateMarketingWL(address _marketingWallet); event UpdateTaxWL(address _taxWallet); event DisableLimits(); event UpdateSwapTokenAt(uint256 amount); error NotAuthorized(); error MaxTxAmountExceeded(); error MaxWalletAmountExceeded(); IUniswapV2Router02 immutable router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); address public pair; uint256 TAX = 5; uint256 private _initialTax = 30; uint256 _totalSupply = 100_000_000 * 10 ** 18; uint256 private _maxAmount = (_totalSupply * 15) / 1000; // 1.5% uint256 private _maxWallet = _maxAmount; bool private _tradingEnabled; uint256 private _firstBlock; uint256 private _reduceTaxAt = 11; address public marketingWallet; address public taxWallet; bool public limit = true; uint256 public swapTokenAt = (_totalSupply * 4) / 1_000; mapping(address => bool) private _isExcludedFromFees; bool private _swaping = false; modifier onSwap() { _swaping = true; _; _swaping = false; } constructor( address _marketingWallet, address _taxWallet ) ERC20("BitTAO", "BitTAO") { marketingWallet = _marketingWallet; taxWallet = _taxWallet; _isExcludedFromFees[_marketingWallet] = true; _isExcludedFromFees[_taxWallet] = true; _isExcludedFromFees[address(this)] = true; _isExcludedFromFees[address(router)] = true; _isExcludedFromFees[_msgSender()] = true; _mint(_msgSender(), _totalSupply); _approve(_msgSender(), address(router), type(uint256).max); } receive() external payable {} function excludedFromFees( address _address, bool _value ) external onlyOwner { _isExcludedFromFees[_address] = _value; } function openTrading() external onlyOwner { require(pair != address(0), "Pair not created yet"); _tradingEnabled = true; _firstBlock = block.number; emit OpenTrading(); } function setSwapTokenAt(uint256 value) external onlyOwner { require( value <= _totalSupply / 50, "Value must be less than or equal to SUPPLY / 50" ); swapTokenAt = value; emit UpdateSwapTokenAt(value); } function getIsExcludedFromFees( address _address ) external view returns (bool) { return _isExcludedFromFees[_address]; } function disableLimits() external onlyOwner { require(limit, "Limits already removed"); limit = false; _maxWallet = _totalSupply; _maxAmount = _totalSupply; emit DisableLimits(); } function _transfer( address from, address to, uint256 amount ) internal override { if ( _isExcludedFromFees[from] || _isExcludedFromFees[to] || (to != pair && from != pair) || _swaping ) { super._transfer(from, to, amount); return; } require(_tradingEnabled, "Trading is not open"); if (limit) { if ((from == pair || to == pair) && amount > _maxAmount) { revert MaxTxAmountExceeded(); } if (to != pair && balanceOf(to) + amount > _maxWallet) { revert MaxWalletAmountExceeded(); } } uint256 _totalFees = (amount * TAX) / 100; if (to == pair) { _totalFees = (amount * ((block.number > _firstBlock + _reduceTaxAt) ? TAX : _initialTax)) / 100; if (balanceOf(address(this)) >= swapTokenAt) { swapBack(); } } if (from == pair) { _totalFees = (amount * ((block.number > _firstBlock + _reduceTaxAt) ? TAX : _initialTax)) / 100; } if (_totalFees > 0) { super._transfer(from, address(this), _totalFees); amount = amount - _totalFees; } super._transfer(from, to, amount); } function swapBack() public onSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = router.WETH(); _approve(address(this), address(router), swapTokenAt); router.swapExactTokensForETHSupportingFeeOnTransferTokens( swapTokenAt, 0, path, address(this), block.timestamp ); uint256 balance = address(this).balance; if (balance > 0) { uint256 marketingAmount = balance / 2; uint256 taxAmount = balance - marketingAmount; (bool sent, ) = payable(marketingWallet).call {value: marketingAmount}(""); require(sent, "Fail to send eth to marketing wallet"); (sent, ) = payable(taxWallet).call {value: taxAmount}(""); require(sent, "Fail to send eth to team tax wallet"); } emit SwapBack(swapTokenAt); } function createPair() external onlyOwner { require(pair == address(0), "cannot recreate pair"); pair = IUniswapV2Factory(router.factory()).createPair( address(this), router.WETH() ); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
{ "optimizer": { "enabled": false, "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":"_marketingWallet","type":"address"},{"internalType":"address","name":"_taxWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"MaxTxAmountExceeded","type":"error"},{"inputs":[],"name":"MaxWalletAmountExceeded","type":"error"},{"inputs":[],"name":"NotAuthorized","type":"error"},{"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":[],"name":"DisableLimits","type":"event"},{"anonymous":false,"inputs":[],"name":"OpenTrading","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":"amount","type":"uint256"}],"name":"SwapBack","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"UpdateMarketingWL","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"UpdateSwapTokenAt","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_taxWallet","type":"address"}],"name":"UpdateTaxWL","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":"createPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"excludedFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getIsExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setSwapTokenAt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapBack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokenAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a0604052737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff168152506005600755601e6008556a52b7d2dcc80cd2e40000006009556103e8600f600954620000789190620008af565b62000084919062000926565b600a55600a54600b55600b600e556001601060146101000a81548160ff0219169083151502179055506103e86004600954620000c19190620008af565b620000cd919062000926565b6011555f60135f6101000a81548160ff021916908315150217905550348015620000f5575f80fd5b5060405162003e2138038062003e2183398181016040528101906200011b9190620009c2565b6040518060400160405280600681526020017f42697454414f00000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f42697454414f0000000000000000000000000000000000000000000000000000815250620001a76200019b6200047660201b60201c565b6200047d60201b60201c565b8160049081620001b8919062000c62565b508060059081620001ca919062000c62565b50505081600f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060105f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160125f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160125f60805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160125f620003b86200047660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506200042a6200041b6200047660201b60201c565b6009546200053e60201b60201c565b6200046e6200043e6200047660201b60201c565b6080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620006a460201b60201c565b505062000f52565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620005af576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005a69062000da4565b60405180910390fd5b620005c25f83836200086f60201b60201c565b8060035f828254620005d5919062000dc4565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000685919062000e0f565b60405180910390a3620006a05f83836200087460201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000715576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200070c9062000e9e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000786576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200077d9062000f32565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000862919062000e0f565b60405180910390a3505050565b505050565b505050565b5f819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620008bb8262000879565b9150620008c88362000879565b9250828202620008d88162000879565b91508282048414831517620008f257620008f162000882565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f620009328262000879565b91506200093f8362000879565b925082620009525762000951620008f9565b5b828204905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200098c8262000961565b9050919050565b6200099e8162000980565b8114620009a9575f80fd5b50565b5f81519050620009bc8162000993565b92915050565b5f8060408385031215620009db57620009da6200095d565b5b5f620009ea85828601620009ac565b9250506020620009fd85828601620009ac565b9150509250929050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000a8357607f821691505b60208210810362000a995762000a9862000a3e565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000afd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000ac0565b62000b09868362000ac0565b95508019841693508086168417925050509392505050565b5f819050919050565b5f62000b4a62000b4462000b3e8462000879565b62000b21565b62000879565b9050919050565b5f819050919050565b62000b658362000b2a565b62000b7d62000b748262000b51565b84845462000acc565b825550505050565b5f90565b62000b9362000b85565b62000ba081848462000b5a565b505050565b5b8181101562000bc75762000bbb5f8262000b89565b60018101905062000ba6565b5050565b601f82111562000c165762000be08162000a9f565b62000beb8462000ab1565b8101602085101562000bfb578190505b62000c1362000c0a8562000ab1565b83018262000ba5565b50505b505050565b5f82821c905092915050565b5f62000c385f198460080262000c1b565b1980831691505092915050565b5f62000c52838362000c27565b9150826002028217905092915050565b62000c6d8262000a07565b67ffffffffffffffff81111562000c895762000c8862000a11565b5b62000c95825462000a6b565b62000ca282828562000bcb565b5f60209050601f83116001811462000cd8575f841562000cc3578287015190505b62000ccf858262000c45565b86555062000d3e565b601f19841662000ce88662000a9f565b5f5b8281101562000d115784890151825560018201915060208501945060208101905062000cea565b8683101562000d31578489015162000d2d601f89168262000c27565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000d8c601f8362000d46565b915062000d998262000d56565b602082019050919050565b5f6020820190508181035f83015262000dbd8162000d7e565b9050919050565b5f62000dd08262000879565b915062000ddd8362000879565b925082820190508082111562000df85762000df762000882565b5b92915050565b62000e098162000879565b82525050565b5f60208201905062000e245f83018462000dfe565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f62000e8660248362000d46565b915062000e938262000e2a565b604082019050919050565b5f6020820190508181035f83015262000eb78162000e78565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f62000f1a60228362000d46565b915062000f278262000ebe565b604082019050919050565b5f6020820190508181035f83015262000f4b8162000f0c565b9050919050565b608051612e9a62000f875f395f818161085c0152818161093b0152818161096401528181610eca0152610f730152612e9a5ff3fe608060405260043610610184575f3560e01c80637b16cea0116100d0578063a4d66daf11610089578063c9567bf911610063578063c9567bf914610569578063dd62ed3e1461057f578063f2fde38b146105bb578063f928364c146105e35761018b565b8063a4d66daf146104d9578063a8aa1b3114610503578063a9059cbb1461052d5761018b565b80637b16cea0146103cf578063864b31671461040b5780638da5cb5b1461043357806395d89b411461045d5780639e78fb4f14610487578063a457c2d71461049d5761018b565b8063313ce5671161013d57806370a082311161011757806370a0823114610329578063715018a61461036557806373bc5a361461037b57806375f0a874146103a55761018b565b8063313ce567146102ad57806339509351146102d75780636ac5eeee146103135761018b565b806306fdde031461018f578063095ea7b3146101b957806316697fc5146101f557806318160ddd1461021d57806323b872dd146102475780632dc0562d146102835761018b565b3661018b57005b5f80fd5b34801561019a575f80fd5b506101a36105f9565b6040516101b09190611f96565b60405180910390f35b3480156101c4575f80fd5b506101df60048036038101906101da9190612047565b610689565b6040516101ec919061209f565b60405180910390f35b348015610200575f80fd5b5061021b600480360381019061021691906120e2565b6106ab565b005b348015610228575f80fd5b5061023161070b565b60405161023e919061212f565b60405180910390f35b348015610252575f80fd5b5061026d60048036038101906102689190612148565b610714565b60405161027a919061209f565b60405180910390f35b34801561028e575f80fd5b50610297610742565b6040516102a491906121a7565b60405180910390f35b3480156102b8575f80fd5b506102c1610767565b6040516102ce91906121db565b60405180910390f35b3480156102e2575f80fd5b506102fd60048036038101906102f89190612047565b61076f565b60405161030a919061209f565b60405180910390f35b34801561031e575f80fd5b506103276107a5565b005b348015610334575f80fd5b5061034f600480360381019061034a91906121f4565b610c0a565b60405161035c919061212f565b60405180910390f35b348015610370575f80fd5b50610379610c50565b005b348015610386575f80fd5b5061038f610c63565b60405161039c919061212f565b60405180910390f35b3480156103b0575f80fd5b506103b9610c69565b6040516103c691906121a7565b60405180910390f35b3480156103da575f80fd5b506103f560048036038101906103f091906121f4565b610c8e565b604051610402919061209f565b60405180910390f35b348015610416575f80fd5b50610431600480360381019061042c919061221f565b610ce0565b005b34801561043e575f80fd5b50610447610d7a565b60405161045491906121a7565b60405180910390f35b348015610468575f80fd5b50610471610da1565b60405161047e9190611f96565b60405180910390f35b348015610492575f80fd5b5061049b610e31565b005b3480156104a8575f80fd5b506104c360048036038101906104be9190612047565b61109c565b6040516104d0919061209f565b60405180910390f35b3480156104e4575f80fd5b506104ed611111565b6040516104fa919061209f565b60405180910390f35b34801561050e575f80fd5b50610517611124565b60405161052491906121a7565b60405180910390f35b348015610538575f80fd5b50610553600480360381019061054e9190612047565b611149565b604051610560919061209f565b60405180910390f35b348015610574575f80fd5b5061057d61116b565b005b34801561058a575f80fd5b506105a560048036038101906105a0919061224a565b611251565b6040516105b2919061212f565b60405180910390f35b3480156105c6575f80fd5b506105e160048036038101906105dc91906121f4565b6112d3565b005b3480156105ee575f80fd5b506105f7611355565b005b606060048054610608906122b5565b80601f0160208091040260200160405190810160405280929190818152602001828054610634906122b5565b801561067f5780601f106106565761010080835404028352916020019161067f565b820191905f5260205f20905b81548152906001019060200180831161066257829003601f168201915b5050505050905090565b5f80610693611406565b90506106a081858561140d565b600191505092915050565b6106b36115d0565b8060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f600354905090565b5f8061071e611406565b905061072b85828561164e565b6107368585856116d9565b60019150509392505050565b60105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b5f80610779611406565b905061079a81858561078b8589611251565b6107959190612312565b61140d565b600191505092915050565b600160135f6101000a81548160ff0219169083151502179055505f600267ffffffffffffffff8111156107db576107da612345565b5b6040519080825280602002602001820160405280156108095781602001602082028036833780820191505090505b50905030815f815181106108205761081f612372565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108c3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108e791906123b3565b816001815181106108fb576108fa612372565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050610962307f000000000000000000000000000000000000000000000000000000000000000060115461140d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9476011545f8430426040518663ffffffff1660e01b81526004016109c59594939291906124d7565b5f604051808303815f87803b1580156109dc575f80fd5b505af11580156109ee573d5f803e3d5ffd5b505050505f4790505f811115610bb4575f600282610a0c919061255c565b90505f8183610a1b919061258c565b90505f600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051610a63906125ec565b5f6040518083038185875af1925050503d805f8114610a9d576040519150601f19603f3d011682016040523d82523d5f602084013e610aa2565b606091505b5050905080610ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610add90612670565b60405180910390fd5b60105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610b2b906125ec565b5f6040518083038185875af1925050503d805f8114610b65576040519150601f19603f3d011682016040523d82523d5f602084013e610b6a565b606091505b50508091505080610bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba7906126fe565b60405180910390fd5b5050505b7fd851aeb8e2074b285cc12da5e2fbf79e642e38f62ef8e59590790c157491ee05601154604051610be5919061212f565b60405180910390a150505f60135f6101000a81548160ff021916908315150217905550565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610c586115d0565b610c615f611bd2565b565b60115481565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b610ce86115d0565b6032600954610cf7919061255c565b811115610d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d309061278c565b60405180910390fd5b806011819055507f4cba14fd4026630e64b03f8c6a0130ca310c15a5376cf7f6735c66880bb7bceb81604051610d6f919061212f565b60405180910390a150565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610db0906122b5565b80601f0160208091040260200160405190810160405280929190818152602001828054610ddc906122b5565b8015610e275780601f10610dfe57610100808354040283529160200191610e27565b820191905f5260205f20905b815481529060010190602001808311610e0a57829003601f168201915b5050505050905090565b610e396115d0565b5f73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebf906127f4565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f31573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f5591906123b3565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fda573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ffe91906123b3565b6040518363ffffffff1660e01b815260040161101b929190612812565b6020604051808303815f875af1158015611037573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061105b91906123b3565b60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b5f806110a6611406565b90505f6110b38286611251565b9050838110156110f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ef906128a9565b60405180910390fd5b611105828686840361140d565b60019250505092915050565b601060149054906101000a900460ff1681565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f80611153611406565b90506111608185856116d9565b600191505092915050565b6111736115d0565b5f73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f990612911565b60405180910390fd5b6001600c5f6101000a81548160ff02191690831515021790555043600d819055507f51cd7cc33235a1c89f708fecec535bf7cca0f94ed05216751befb052ca83e67960405160405180910390a1565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6112db6115d0565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611349576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113409061299f565b60405180910390fd5b61135281611bd2565b50565b61135d6115d0565b601060149054906101000a900460ff166113ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a390612a07565b60405180910390fd5b5f601060146101000a81548160ff021916908315150217905550600954600b81905550600954600a819055507fe9070d302280cd857033f56893647494c1410643fe239daabee29e9292199b3d60405160405180910390a1565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361147b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147290612a95565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e090612b23565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115c3919061212f565b60405180910390a3505050565b6115d8611406565b73ffffffffffffffffffffffffffffffffffffffff166115f6610d7a565b73ffffffffffffffffffffffffffffffffffffffff161461164c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164390612b8b565b60405180910390fd5b565b5f6116598484611251565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146116d357818110156116c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bc90612bf3565b60405180910390fd5b6116d2848484840361140d565b5b50505050565b60125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611774575060125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80611825575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611824575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b8061183b575060135f9054906101000a900460ff165b156118505761184b838383611c93565b611bcd565b600c5f9054906101000a900460ff1661189e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189590612c5b565b60405180910390fd5b601060149054906101000a900460ff1615611a475760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061195a575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156119675750600a5481115b1561199e576040517f801bc44b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611a0f5750600b5481611a0384610c0a565b611a0d9190612312565b115b15611a46576040517fa9a44dff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f606460075483611a589190612c79565b611a62919061255c565b905060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b0e576064600e54600d54611aca9190612312565b4311611ad857600854611adc565b6007545b83611ae79190612c79565b611af1919061255c565b9050601154611aff30610c0a565b10611b0d57611b0c6107a5565b5b5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611b9e576064600e54600d54611b749190612312565b4311611b8257600854611b86565b6007545b83611b919190612c79565b611b9b919061255c565b90505b5f811115611bc057611bb1843083611c93565b8082611bbd919061258c565b91505b611bcb848484611c93565b505b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf890612d2a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6690612db8565b60405180910390fd5b611d7a838383611f02565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df590612e46565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ee9919061212f565b60405180910390a3611efc848484611f07565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611f43578082015181840152602081019050611f28565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611f6882611f0c565b611f728185611f16565b9350611f82818560208601611f26565b611f8b81611f4e565b840191505092915050565b5f6020820190508181035f830152611fae8184611f5e565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611fe382611fba565b9050919050565b611ff381611fd9565b8114611ffd575f80fd5b50565b5f8135905061200e81611fea565b92915050565b5f819050919050565b61202681612014565b8114612030575f80fd5b50565b5f813590506120418161201d565b92915050565b5f806040838503121561205d5761205c611fb6565b5b5f61206a85828601612000565b925050602061207b85828601612033565b9150509250929050565b5f8115159050919050565b61209981612085565b82525050565b5f6020820190506120b25f830184612090565b92915050565b6120c181612085565b81146120cb575f80fd5b50565b5f813590506120dc816120b8565b92915050565b5f80604083850312156120f8576120f7611fb6565b5b5f61210585828601612000565b9250506020612116858286016120ce565b9150509250929050565b61212981612014565b82525050565b5f6020820190506121425f830184612120565b92915050565b5f805f6060848603121561215f5761215e611fb6565b5b5f61216c86828701612000565b935050602061217d86828701612000565b925050604061218e86828701612033565b9150509250925092565b6121a181611fd9565b82525050565b5f6020820190506121ba5f830184612198565b92915050565b5f60ff82169050919050565b6121d5816121c0565b82525050565b5f6020820190506121ee5f8301846121cc565b92915050565b5f6020828403121561220957612208611fb6565b5b5f61221684828501612000565b91505092915050565b5f6020828403121561223457612233611fb6565b5b5f61224184828501612033565b91505092915050565b5f80604083850312156122605761225f611fb6565b5b5f61226d85828601612000565b925050602061227e85828601612000565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806122cc57607f821691505b6020821081036122df576122de612288565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61231c82612014565b915061232783612014565b925082820190508082111561233f5761233e6122e5565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506123ad81611fea565b92915050565b5f602082840312156123c8576123c7611fb6565b5b5f6123d58482850161239f565b91505092915050565b5f819050919050565b5f819050919050565b5f61240a612405612400846123de565b6123e7565b612014565b9050919050565b61241a816123f0565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61245281611fd9565b82525050565b5f6124638383612449565b60208301905092915050565b5f602082019050919050565b5f61248582612420565b61248f818561242a565b935061249a8361243a565b805f5b838110156124ca5781516124b18882612458565b97506124bc8361246f565b92505060018101905061249d565b5085935050505092915050565b5f60a0820190506124ea5f830188612120565b6124f76020830187612411565b8181036040830152612509818661247b565b90506125186060830185612198565b6125256080830184612120565b9695505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61256682612014565b915061257183612014565b9250826125815761258061252f565b5b828204905092915050565b5f61259682612014565b91506125a183612014565b92508282039050818111156125b9576125b86122e5565b5b92915050565b5f81905092915050565b50565b5f6125d75f836125bf565b91506125e2826125c9565b5f82019050919050565b5f6125f6826125cc565b9150819050919050565b7f4661696c20746f2073656e642065746820746f206d61726b6574696e672077615f8201527f6c6c657400000000000000000000000000000000000000000000000000000000602082015250565b5f61265a602483611f16565b915061266582612600565b604082019050919050565b5f6020820190508181035f8301526126878161264e565b9050919050565b7f4661696c20746f2073656e642065746820746f207465616d207461782077616c5f8201527f6c65740000000000000000000000000000000000000000000000000000000000602082015250565b5f6126e8602383611f16565b91506126f38261268e565b604082019050919050565b5f6020820190508181035f830152612715816126dc565b9050919050565b7f56616c7565206d757374206265206c657373207468616e206f7220657175616c5f8201527f20746f20535550504c59202f2035300000000000000000000000000000000000602082015250565b5f612776602f83611f16565b91506127818261271c565b604082019050919050565b5f6020820190508181035f8301526127a38161276a565b9050919050565b7f63616e6e6f7420726563726561746520706169720000000000000000000000005f82015250565b5f6127de601483611f16565b91506127e9826127aa565b602082019050919050565b5f6020820190508181035f83015261280b816127d2565b9050919050565b5f6040820190506128255f830185612198565b6128326020830184612198565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612893602583611f16565b915061289e82612839565b604082019050919050565b5f6020820190508181035f8301526128c081612887565b9050919050565b7f50616972206e6f742063726561746564207965740000000000000000000000005f82015250565b5f6128fb601483611f16565b9150612906826128c7565b602082019050919050565b5f6020820190508181035f830152612928816128ef565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612989602683611f16565b91506129948261292f565b604082019050919050565b5f6020820190508181035f8301526129b68161297d565b9050919050565b7f4c696d69747320616c72656164792072656d6f766564000000000000000000005f82015250565b5f6129f1601683611f16565b91506129fc826129bd565b602082019050919050565b5f6020820190508181035f830152612a1e816129e5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612a7f602483611f16565b9150612a8a82612a25565b604082019050919050565b5f6020820190508181035f830152612aac81612a73565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612b0d602283611f16565b9150612b1882612ab3565b604082019050919050565b5f6020820190508181035f830152612b3a81612b01565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612b75602083611f16565b9150612b8082612b41565b602082019050919050565b5f6020820190508181035f830152612ba281612b69565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612bdd601d83611f16565b9150612be882612ba9565b602082019050919050565b5f6020820190508181035f830152612c0a81612bd1565b9050919050565b7f54726164696e67206973206e6f74206f70656e000000000000000000000000005f82015250565b5f612c45601383611f16565b9150612c5082612c11565b602082019050919050565b5f6020820190508181035f830152612c7281612c39565b9050919050565b5f612c8382612014565b9150612c8e83612014565b9250828202612c9c81612014565b91508282048414831517612cb357612cb26122e5565b5b5092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612d14602583611f16565b9150612d1f82612cba565b604082019050919050565b5f6020820190508181035f830152612d4181612d08565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612da2602383611f16565b9150612dad82612d48565b604082019050919050565b5f6020820190508181035f830152612dcf81612d96565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612e30602683611f16565b9150612e3b82612dd6565b604082019050919050565b5f6020820190508181035f830152612e5d81612e24565b905091905056fea26469706673582212207ae901379ba9b9a0753ea770e4593a1e594593dcfb02d6fa8172702b91ad4d1464736f6c634300081700330000000000000000000000000b07ed80c0a894cb5d47148ebf298e1cde8881a2000000000000000000000000dd4aeff1cb034eead1c8e784fd4f52c5f5deb6e6
Deployed Bytecode
0x608060405260043610610184575f3560e01c80637b16cea0116100d0578063a4d66daf11610089578063c9567bf911610063578063c9567bf914610569578063dd62ed3e1461057f578063f2fde38b146105bb578063f928364c146105e35761018b565b8063a4d66daf146104d9578063a8aa1b3114610503578063a9059cbb1461052d5761018b565b80637b16cea0146103cf578063864b31671461040b5780638da5cb5b1461043357806395d89b411461045d5780639e78fb4f14610487578063a457c2d71461049d5761018b565b8063313ce5671161013d57806370a082311161011757806370a0823114610329578063715018a61461036557806373bc5a361461037b57806375f0a874146103a55761018b565b8063313ce567146102ad57806339509351146102d75780636ac5eeee146103135761018b565b806306fdde031461018f578063095ea7b3146101b957806316697fc5146101f557806318160ddd1461021d57806323b872dd146102475780632dc0562d146102835761018b565b3661018b57005b5f80fd5b34801561019a575f80fd5b506101a36105f9565b6040516101b09190611f96565b60405180910390f35b3480156101c4575f80fd5b506101df60048036038101906101da9190612047565b610689565b6040516101ec919061209f565b60405180910390f35b348015610200575f80fd5b5061021b600480360381019061021691906120e2565b6106ab565b005b348015610228575f80fd5b5061023161070b565b60405161023e919061212f565b60405180910390f35b348015610252575f80fd5b5061026d60048036038101906102689190612148565b610714565b60405161027a919061209f565b60405180910390f35b34801561028e575f80fd5b50610297610742565b6040516102a491906121a7565b60405180910390f35b3480156102b8575f80fd5b506102c1610767565b6040516102ce91906121db565b60405180910390f35b3480156102e2575f80fd5b506102fd60048036038101906102f89190612047565b61076f565b60405161030a919061209f565b60405180910390f35b34801561031e575f80fd5b506103276107a5565b005b348015610334575f80fd5b5061034f600480360381019061034a91906121f4565b610c0a565b60405161035c919061212f565b60405180910390f35b348015610370575f80fd5b50610379610c50565b005b348015610386575f80fd5b5061038f610c63565b60405161039c919061212f565b60405180910390f35b3480156103b0575f80fd5b506103b9610c69565b6040516103c691906121a7565b60405180910390f35b3480156103da575f80fd5b506103f560048036038101906103f091906121f4565b610c8e565b604051610402919061209f565b60405180910390f35b348015610416575f80fd5b50610431600480360381019061042c919061221f565b610ce0565b005b34801561043e575f80fd5b50610447610d7a565b60405161045491906121a7565b60405180910390f35b348015610468575f80fd5b50610471610da1565b60405161047e9190611f96565b60405180910390f35b348015610492575f80fd5b5061049b610e31565b005b3480156104a8575f80fd5b506104c360048036038101906104be9190612047565b61109c565b6040516104d0919061209f565b60405180910390f35b3480156104e4575f80fd5b506104ed611111565b6040516104fa919061209f565b60405180910390f35b34801561050e575f80fd5b50610517611124565b60405161052491906121a7565b60405180910390f35b348015610538575f80fd5b50610553600480360381019061054e9190612047565b611149565b604051610560919061209f565b60405180910390f35b348015610574575f80fd5b5061057d61116b565b005b34801561058a575f80fd5b506105a560048036038101906105a0919061224a565b611251565b6040516105b2919061212f565b60405180910390f35b3480156105c6575f80fd5b506105e160048036038101906105dc91906121f4565b6112d3565b005b3480156105ee575f80fd5b506105f7611355565b005b606060048054610608906122b5565b80601f0160208091040260200160405190810160405280929190818152602001828054610634906122b5565b801561067f5780601f106106565761010080835404028352916020019161067f565b820191905f5260205f20905b81548152906001019060200180831161066257829003601f168201915b5050505050905090565b5f80610693611406565b90506106a081858561140d565b600191505092915050565b6106b36115d0565b8060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f600354905090565b5f8061071e611406565b905061072b85828561164e565b6107368585856116d9565b60019150509392505050565b60105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b5f80610779611406565b905061079a81858561078b8589611251565b6107959190612312565b61140d565b600191505092915050565b600160135f6101000a81548160ff0219169083151502179055505f600267ffffffffffffffff8111156107db576107da612345565b5b6040519080825280602002602001820160405280156108095781602001602082028036833780820191505090505b50905030815f815181106108205761081f612372565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108c3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108e791906123b3565b816001815181106108fb576108fa612372565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050610962307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d60115461140d565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9476011545f8430426040518663ffffffff1660e01b81526004016109c59594939291906124d7565b5f604051808303815f87803b1580156109dc575f80fd5b505af11580156109ee573d5f803e3d5ffd5b505050505f4790505f811115610bb4575f600282610a0c919061255c565b90505f8183610a1b919061258c565b90505f600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051610a63906125ec565b5f6040518083038185875af1925050503d805f8114610a9d576040519150601f19603f3d011682016040523d82523d5f602084013e610aa2565b606091505b5050905080610ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610add90612670565b60405180910390fd5b60105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610b2b906125ec565b5f6040518083038185875af1925050503d805f8114610b65576040519150601f19603f3d011682016040523d82523d5f602084013e610b6a565b606091505b50508091505080610bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba7906126fe565b60405180910390fd5b5050505b7fd851aeb8e2074b285cc12da5e2fbf79e642e38f62ef8e59590790c157491ee05601154604051610be5919061212f565b60405180910390a150505f60135f6101000a81548160ff021916908315150217905550565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610c586115d0565b610c615f611bd2565b565b60115481565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b610ce86115d0565b6032600954610cf7919061255c565b811115610d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d309061278c565b60405180910390fd5b806011819055507f4cba14fd4026630e64b03f8c6a0130ca310c15a5376cf7f6735c66880bb7bceb81604051610d6f919061212f565b60405180910390a150565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610db0906122b5565b80601f0160208091040260200160405190810160405280929190818152602001828054610ddc906122b5565b8015610e275780601f10610dfe57610100808354040283529160200191610e27565b820191905f5260205f20905b815481529060010190602001808311610e0a57829003601f168201915b5050505050905090565b610e396115d0565b5f73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebf906127f4565b60405180910390fd5b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f31573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f5591906123b3565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fda573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ffe91906123b3565b6040518363ffffffff1660e01b815260040161101b929190612812565b6020604051808303815f875af1158015611037573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061105b91906123b3565b60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b5f806110a6611406565b90505f6110b38286611251565b9050838110156110f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ef906128a9565b60405180910390fd5b611105828686840361140d565b60019250505092915050565b601060149054906101000a900460ff1681565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f80611153611406565b90506111608185856116d9565b600191505092915050565b6111736115d0565b5f73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f990612911565b60405180910390fd5b6001600c5f6101000a81548160ff02191690831515021790555043600d819055507f51cd7cc33235a1c89f708fecec535bf7cca0f94ed05216751befb052ca83e67960405160405180910390a1565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6112db6115d0565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611349576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113409061299f565b60405180910390fd5b61135281611bd2565b50565b61135d6115d0565b601060149054906101000a900460ff166113ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a390612a07565b60405180910390fd5b5f601060146101000a81548160ff021916908315150217905550600954600b81905550600954600a819055507fe9070d302280cd857033f56893647494c1410643fe239daabee29e9292199b3d60405160405180910390a1565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361147b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147290612a95565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e090612b23565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115c3919061212f565b60405180910390a3505050565b6115d8611406565b73ffffffffffffffffffffffffffffffffffffffff166115f6610d7a565b73ffffffffffffffffffffffffffffffffffffffff161461164c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164390612b8b565b60405180910390fd5b565b5f6116598484611251565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146116d357818110156116c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bc90612bf3565b60405180910390fd5b6116d2848484840361140d565b5b50505050565b60125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611774575060125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80611825575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611824575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b8061183b575060135f9054906101000a900460ff165b156118505761184b838383611c93565b611bcd565b600c5f9054906101000a900460ff1661189e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189590612c5b565b60405180910390fd5b601060149054906101000a900460ff1615611a475760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061195a575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156119675750600a5481115b1561199e576040517f801bc44b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611a0f5750600b5481611a0384610c0a565b611a0d9190612312565b115b15611a46576040517fa9a44dff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f606460075483611a589190612c79565b611a62919061255c565b905060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b0e576064600e54600d54611aca9190612312565b4311611ad857600854611adc565b6007545b83611ae79190612c79565b611af1919061255c565b9050601154611aff30610c0a565b10611b0d57611b0c6107a5565b5b5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611b9e576064600e54600d54611b749190612312565b4311611b8257600854611b86565b6007545b83611b919190612c79565b611b9b919061255c565b90505b5f811115611bc057611bb1843083611c93565b8082611bbd919061258c565b91505b611bcb848484611c93565b505b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf890612d2a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6690612db8565b60405180910390fd5b611d7a838383611f02565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df590612e46565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ee9919061212f565b60405180910390a3611efc848484611f07565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611f43578082015181840152602081019050611f28565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611f6882611f0c565b611f728185611f16565b9350611f82818560208601611f26565b611f8b81611f4e565b840191505092915050565b5f6020820190508181035f830152611fae8184611f5e565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611fe382611fba565b9050919050565b611ff381611fd9565b8114611ffd575f80fd5b50565b5f8135905061200e81611fea565b92915050565b5f819050919050565b61202681612014565b8114612030575f80fd5b50565b5f813590506120418161201d565b92915050565b5f806040838503121561205d5761205c611fb6565b5b5f61206a85828601612000565b925050602061207b85828601612033565b9150509250929050565b5f8115159050919050565b61209981612085565b82525050565b5f6020820190506120b25f830184612090565b92915050565b6120c181612085565b81146120cb575f80fd5b50565b5f813590506120dc816120b8565b92915050565b5f80604083850312156120f8576120f7611fb6565b5b5f61210585828601612000565b9250506020612116858286016120ce565b9150509250929050565b61212981612014565b82525050565b5f6020820190506121425f830184612120565b92915050565b5f805f6060848603121561215f5761215e611fb6565b5b5f61216c86828701612000565b935050602061217d86828701612000565b925050604061218e86828701612033565b9150509250925092565b6121a181611fd9565b82525050565b5f6020820190506121ba5f830184612198565b92915050565b5f60ff82169050919050565b6121d5816121c0565b82525050565b5f6020820190506121ee5f8301846121cc565b92915050565b5f6020828403121561220957612208611fb6565b5b5f61221684828501612000565b91505092915050565b5f6020828403121561223457612233611fb6565b5b5f61224184828501612033565b91505092915050565b5f80604083850312156122605761225f611fb6565b5b5f61226d85828601612000565b925050602061227e85828601612000565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806122cc57607f821691505b6020821081036122df576122de612288565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61231c82612014565b915061232783612014565b925082820190508082111561233f5761233e6122e5565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506123ad81611fea565b92915050565b5f602082840312156123c8576123c7611fb6565b5b5f6123d58482850161239f565b91505092915050565b5f819050919050565b5f819050919050565b5f61240a612405612400846123de565b6123e7565b612014565b9050919050565b61241a816123f0565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61245281611fd9565b82525050565b5f6124638383612449565b60208301905092915050565b5f602082019050919050565b5f61248582612420565b61248f818561242a565b935061249a8361243a565b805f5b838110156124ca5781516124b18882612458565b97506124bc8361246f565b92505060018101905061249d565b5085935050505092915050565b5f60a0820190506124ea5f830188612120565b6124f76020830187612411565b8181036040830152612509818661247b565b90506125186060830185612198565b6125256080830184612120565b9695505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61256682612014565b915061257183612014565b9250826125815761258061252f565b5b828204905092915050565b5f61259682612014565b91506125a183612014565b92508282039050818111156125b9576125b86122e5565b5b92915050565b5f81905092915050565b50565b5f6125d75f836125bf565b91506125e2826125c9565b5f82019050919050565b5f6125f6826125cc565b9150819050919050565b7f4661696c20746f2073656e642065746820746f206d61726b6574696e672077615f8201527f6c6c657400000000000000000000000000000000000000000000000000000000602082015250565b5f61265a602483611f16565b915061266582612600565b604082019050919050565b5f6020820190508181035f8301526126878161264e565b9050919050565b7f4661696c20746f2073656e642065746820746f207465616d207461782077616c5f8201527f6c65740000000000000000000000000000000000000000000000000000000000602082015250565b5f6126e8602383611f16565b91506126f38261268e565b604082019050919050565b5f6020820190508181035f830152612715816126dc565b9050919050565b7f56616c7565206d757374206265206c657373207468616e206f7220657175616c5f8201527f20746f20535550504c59202f2035300000000000000000000000000000000000602082015250565b5f612776602f83611f16565b91506127818261271c565b604082019050919050565b5f6020820190508181035f8301526127a38161276a565b9050919050565b7f63616e6e6f7420726563726561746520706169720000000000000000000000005f82015250565b5f6127de601483611f16565b91506127e9826127aa565b602082019050919050565b5f6020820190508181035f83015261280b816127d2565b9050919050565b5f6040820190506128255f830185612198565b6128326020830184612198565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612893602583611f16565b915061289e82612839565b604082019050919050565b5f6020820190508181035f8301526128c081612887565b9050919050565b7f50616972206e6f742063726561746564207965740000000000000000000000005f82015250565b5f6128fb601483611f16565b9150612906826128c7565b602082019050919050565b5f6020820190508181035f830152612928816128ef565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612989602683611f16565b91506129948261292f565b604082019050919050565b5f6020820190508181035f8301526129b68161297d565b9050919050565b7f4c696d69747320616c72656164792072656d6f766564000000000000000000005f82015250565b5f6129f1601683611f16565b91506129fc826129bd565b602082019050919050565b5f6020820190508181035f830152612a1e816129e5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612a7f602483611f16565b9150612a8a82612a25565b604082019050919050565b5f6020820190508181035f830152612aac81612a73565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612b0d602283611f16565b9150612b1882612ab3565b604082019050919050565b5f6020820190508181035f830152612b3a81612b01565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612b75602083611f16565b9150612b8082612b41565b602082019050919050565b5f6020820190508181035f830152612ba281612b69565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612bdd601d83611f16565b9150612be882612ba9565b602082019050919050565b5f6020820190508181035f830152612c0a81612bd1565b9050919050565b7f54726164696e67206973206e6f74206f70656e000000000000000000000000005f82015250565b5f612c45601383611f16565b9150612c5082612c11565b602082019050919050565b5f6020820190508181035f830152612c7281612c39565b9050919050565b5f612c8382612014565b9150612c8e83612014565b9250828202612c9c81612014565b91508282048414831517612cb357612cb26122e5565b5b5092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612d14602583611f16565b9150612d1f82612cba565b604082019050919050565b5f6020820190508181035f830152612d4181612d08565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612da2602383611f16565b9150612dad82612d48565b604082019050919050565b5f6020820190508181035f830152612dcf81612d96565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612e30602683611f16565b9150612e3b82612dd6565b604082019050919050565b5f6020820190508181035f830152612e5d81612e24565b905091905056fea26469706673582212207ae901379ba9b9a0753ea770e4593a1e594593dcfb02d6fa8172702b91ad4d1464736f6c63430008170033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000b07ed80c0a894cb5d47148ebf298e1cde8881a2000000000000000000000000dd4aeff1cb034eead1c8e784fd4f52c5f5deb6e6
-----Decoded View---------------
Arg [0] : _marketingWallet (address): 0x0b07ed80C0A894cb5D47148eBf298e1cDE8881a2
Arg [1] : _taxWallet (address): 0xdd4AEFF1cb034Eead1c8e784fD4F52C5f5dEB6e6
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000b07ed80c0a894cb5d47148ebf298e1cde8881a2
Arg [1] : 000000000000000000000000dd4aeff1cb034eead1c8e784fd4f52c5f5deb6e6
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.