ERC-20
Overview
Max Total Supply
100,000,000 WETF
Holders
783
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
34,300.439090254820283796 WETFValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WETF
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* $WETF - DAO and Governance Token for the wETF Token Standard on Ethereum $WETF powers wETFs on the ERC-20 standard that work with algorithmic rebasing to achieve a decentralized version of ETFs, tradeable on UniSwap. Web: https://wetf.io X: https://x.com/wetfio TG: https://t.me/wrappedetf YT: https://www.youtube.com/@wrappedetf */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; interface IUniswapV2Router02 { function swapExactTokensForETHSupportingFeeOnTransferTokens(uint256 amountIn,uint256 amountOutMin,address[] calldata path,address to,uint256 deadline) external; function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline) external payable returns (uint amountToken, uint amountETH, uint liquidity); } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } contract WETF is ERC20, Ownable { uint256 private buyTax = 25; uint256 private sellTax = 30; IUniswapV2Router02 private uniswapV2Router; address public uniswapV2Pair; mapping(address => bool) public isExempt; address private immutable marketingAddress; address private immutable taxAddress; uint256 public maxTransactionAmount; uint256 public maxTxLaunch; bool private launch = false; bool private slowLaunch = true; uint256 private blockLaunch; uint256 private lastSellBlock; uint256 private sellCount; uint256 private minSwap; uint256 private maxSwap; uint256 private _buyCount= 0; bool private inSwap; modifier lockTheSwap { inSwap = true; _; inSwap = false; } constructor( address _taxAddress, address _marketingAddress, address _daoWallet // Add DAO wallet parameter ) ERC20("Wrapped ETF", "WETF") Ownable() { uint256 totalSupply = 100000000 * 10**18; // 100 million tokens with 18 decimals marketingAddress = _marketingAddress; taxAddress = _taxAddress; // Exempt key addresses from taxes isExempt[msg.sender] = true; isExempt[address(this)] = true; isExempt[_marketingAddress] = true; isExempt[_daoWallet] = true; // Exempt DAO wallet from taxes // Mint 80% of the total supply to the contract deployer (signer) _mint(msg.sender, totalSupply * 75 / 100); // Mint 20% of the total supply to the DAO wallet _mint(_daoWallet, totalSupply * 20 / 100); // Mint 5% of the total supply to the marketing address _mint(_marketingAddress, totalSupply * 5 / 100); // Uniswap setup for liquidity uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // Uniswap V2 Router uniswapV2Pair = address( IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()) ); maxTransactionAmount = totalSupply * 1 / 100; // 2% max transaction limit maxTxLaunch = totalSupply * 3 / 1000; // 0.3% during launch maxSwap = 150000 * 10**18; // Max swap 150,000 tokens minSwap = 25000 * 10**18; // Min swap 25,000 tokens } function addLiquidityV2() external onlyOwner { _approve(address(this), address(uniswapV2Router), balanceOf(address(this))); uniswapV2Router.addLiquidityETH{value: address(this).balance}( address(this), balanceOf(address(this)), 0, 0, owner(), block.timestamp ); } function getMinCASwap() public view returns (uint256){ return minSwap / 10**decimals(); } function setMaxCASwap(uint256 _maxSwap) external onlyOwner{ maxSwap = _maxSwap * 10**decimals(); } function setMinSwap(uint256 _minSwap) external onlyOwner{ minSwap = _minSwap * 10**decimals(); } function switchCaCAnSell() external onlyOwner { if (inSwap){ inSwap = false; } else { inSwap = true; } } function offSlowLaunch() external onlyOwner { slowLaunch = false; } function getMaxCASwap() public view returns (uint256){ return maxSwap / 10**decimals(); } function swapTokensEth(uint256 tokenAmount) internal lockTheSwap { _approve(address(this), address(uniswapV2Router), tokenAmount); address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, taxAddress, block.timestamp ); } // Add this mapping to track if a wallet has already bought in the first block mapping(address => bool) private hasBoughtInFirstBlock; function _transfer(address from, address to, uint256 value) internal virtual override { if (!isExempt[from] && !isExempt[to]) { require(launch, "Trading has not been launched yet."); uint256 tax = 0; // Handle the case where slowLaunch is active if (slowLaunch && blockLaunch != block.number) { require(value <= maxTxLaunch, "Transaction exceeds max launch limit."); } else { require(value <= maxTransactionAmount, "Transaction exceeds max limit."); } // Handle sell transactions if (to == uniswapV2Pair) { tax = sellTax; uint256 tokensSwap = balanceOf(address(this)); if (tokensSwap > minSwap && !inSwap) { if (block.number > lastSellBlock) { sellCount = 0; } if (sellCount < 3) { sellCount++; lastSellBlock = block.number; swapTokensEth(min(maxSwap, min(value, tokensSwap))); } } } // Handle buy transactions (from uniswap pair) else if (from == uniswapV2Pair) { tax = buyTax; // Add the first block buy restriction if (block.number == blockLaunch) { require(!hasBoughtInFirstBlock[to], "Wallet already bought in the first block."); hasBoughtInFirstBlock[to] = true; // Mark wallet as having bought in the first block _buyCount++; require(_buyCount <= 20, "Exceeds buys on the first block."); tax = 35; // Apply a special first-block tax rate } } uint256 taxAmount = value * tax / 100; uint256 amountAfterTax = value - taxAmount; if (taxAmount > 0) { super._transfer(from, address(this), taxAmount); // Send tax to contract } super._transfer(from, to, amountAfterTax); return; } super._transfer(from, to, value); } function min(uint256 a, uint256 b) private pure returns (uint256){ return (a>b)?b:a; } function setTax(uint256 newBuyTax , uint256 newSellTax) external onlyOwner { require(newBuyTax < 30 && newSellTax < 30); sellTax = newSellTax; buyTax = newBuyTax; } function setMaxTx(uint256 newMaxTx) external onlyOwner { maxTransactionAmount = newMaxTx * 10**decimals(); } function removeAllLimits() external onlyOwner { maxTransactionAmount = totalSupply(); } function exportETH() external { payable(marketingAddress).transfer(address(this).balance); } function setExcludedWallet(address wAddress, bool isExcle) external onlyOwner { isExempt[wAddress] = isExcle; } function openTrading() external onlyOwner { launch = true; blockLaunch = block.number; } receive() external payable {} }
// 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 (last updated v4.9.4) (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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "paris", "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":"_taxAddress","type":"address"},{"internalType":"address","name":"_marketingAddress","type":"address"},{"internalType":"address","name":"_daoWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"addLiquidityV2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"exportETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getMaxCASwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinCASwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"isExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxLaunch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"offSlowLaunch","outputs":[],"stateMutability":"nonpayable","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":"removeAllLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wAddress","type":"address"},{"internalType":"bool","name":"isExcle","type":"bool"}],"name":"setExcludedWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSwap","type":"uint256"}],"name":"setMaxCASwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTx","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minSwap","type":"uint256"}],"name":"setMinSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBuyTax","type":"uint256"},{"internalType":"uint256","name":"newSellTax","type":"uint256"}],"name":"setTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"switchCaCAnSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526019600655601e6007556000600d60006101000a81548160ff0219169083151502179055506001600d60016101000a81548160ff02191690831515021790555060006013553480156200005657600080fd5b5060405162003d2138038062003d2183398181016040528101906200007c9190620008f0565b6040518060400160405280600b81526020017f57726170706564204554460000000000000000000000000000000000000000008152506040518060400160405280600481526020017f57455446000000000000000000000000000000000000000000000000000000008152508160039081620000f9919062000bc6565b5080600490816200010b919062000bc6565b5050506200012e620001226200064160201b60201c565b6200064960201b60201c565b60006a52b7d2dcc80cd2e400000090508273ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508373ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000334336064604b846200031c919062000cdc565b62000328919062000d56565b6200070f60201b60201c565b620003628260646014846200034a919062000cdc565b62000356919062000d56565b6200070f60201b60201c565b6200039083606460058462000378919062000cdc565b62000384919062000d56565b6200070f60201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000453573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000479919062000d8e565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000503573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000529919062000d8e565b6040518363ffffffff1660e01b81526004016200054892919062000dd1565b6020604051808303816000875af115801562000568573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200058e919062000d8e565b600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506064600182620005df919062000cdc565b620005eb919062000d56565b600b819055506103e860038262000603919062000cdc565b6200060f919062000d56565b600c81905550691fc3842bd1f071c0000060128190555069054b40b1f852bda000006011819055505050505062000eea565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000781576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007789062000e5f565b60405180910390fd5b62000795600083836200087c60201b60201c565b8060026000828254620007a9919062000e81565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200085c919062000ecd565b60405180910390a362000878600083836200088160201b60201c565b5050565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620008b8826200088b565b9050919050565b620008ca81620008ab565b8114620008d657600080fd5b50565b600081519050620008ea81620008bf565b92915050565b6000806000606084860312156200090c576200090b62000886565b5b60006200091c86828701620008d9565b93505060206200092f86828701620008d9565b92505060406200094286828701620008d9565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620009ce57607f821691505b602082108103620009e457620009e362000986565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000a4e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a0f565b62000a5a868362000a0f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000aa762000aa162000a9b8462000a72565b62000a7c565b62000a72565b9050919050565b6000819050919050565b62000ac38362000a86565b62000adb62000ad28262000aae565b84845462000a1c565b825550505050565b600090565b62000af262000ae3565b62000aff81848462000ab8565b505050565b5b8181101562000b275762000b1b60008262000ae8565b60018101905062000b05565b5050565b601f82111562000b765762000b4081620009ea565b62000b4b84620009ff565b8101602085101562000b5b578190505b62000b7362000b6a85620009ff565b83018262000b04565b50505b505050565b600082821c905092915050565b600062000b9b6000198460080262000b7b565b1980831691505092915050565b600062000bb6838362000b88565b9150826002028217905092915050565b62000bd1826200094c565b67ffffffffffffffff81111562000bed5762000bec62000957565b5b62000bf98254620009b5565b62000c0682828562000b2b565b600060209050601f83116001811462000c3e576000841562000c29578287015190505b62000c35858262000ba8565b86555062000ca5565b601f19841662000c4e86620009ea565b60005b8281101562000c785784890151825560018201915060208501945060208101905062000c51565b8683101562000c98578489015162000c94601f89168262000b88565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ce98262000a72565b915062000cf68362000a72565b925082820262000d068162000a72565b9150828204841483151762000d205762000d1f62000cad565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d638262000a72565b915062000d708362000a72565b92508262000d835762000d8262000d27565b5b828204905092915050565b60006020828403121562000da75762000da662000886565b5b600062000db784828501620008d9565b91505092915050565b62000dcb81620008ab565b82525050565b600060408201905062000de8600083018562000dc0565b62000df7602083018462000dc0565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e47601f8362000dfe565b915062000e548262000e0f565b602082019050919050565b6000602082019050818103600083015262000e7a8162000e38565b9050919050565b600062000e8e8262000a72565b915062000e9b8362000a72565b925082820190508082111562000eb65762000eb562000cad565b5b92915050565b62000ec78162000a72565b82525050565b600060208201905062000ee4600083018462000ebc565b92915050565b60805160a051612e1162000f10600039600061195c01526000610c3b0152612e116000f3fe6080604052600436106101dc5760003560e01c806395d89b4111610102578063c8c8ebe411610095578063db05e5cb11610064578063db05e5cb14610681578063dd62ed3e14610698578063f2fde38b146106d5578063ffe270da146106fe576101e3565b8063c8c8ebe4146105ff578063c9567bf91461062a578063d579d4ed14610641578063d7acde1f14610658576101e3565b8063a9e282b8116100d1578063a9e282b814610547578063aca2cd6e14610570578063ad5dff7314610599578063bc337182146105d6576101e3565b806395d89b4114610477578063a457c2d7146104a2578063a508de62146104df578063a9059cbb1461050a576101e3565b8063395093511161017a57806370a082311161014957806370a08231146103e1578063715018a61461041e578063826ca8cc146104355780638da5cb5b1461044c576101e3565b8063395093511461032557806349bd5a5e146103625780634b203e1b1461038d578063667f6526146103b8576101e3565b8063095ea7b3116101b6578063095ea7b31461025557806318160ddd1461029257806323b872dd146102bd578063313ce567146102fa576101e3565b806306fdde03146101e8578063084cf615146102135780630949e8c81461023e576101e3565b366101e357005b600080fd5b3480156101f457600080fd5b506101fd610715565b60405161020a9190611cfd565b60405180910390f35b34801561021f57600080fd5b506102286107a7565b6040516102359190611d38565b60405180910390f35b34801561024a57600080fd5b506102536107ad565b005b34801561026157600080fd5b5061027c60048036038101906102779190611de2565b6107d2565b6040516102899190611e3d565b60405180910390f35b34801561029e57600080fd5b506102a76107f5565b6040516102b49190611d38565b60405180910390f35b3480156102c957600080fd5b506102e460048036038101906102df9190611e58565b6107ff565b6040516102f19190611e3d565b60405180910390f35b34801561030657600080fd5b5061030f61082e565b60405161031c9190611ec7565b60405180910390f35b34801561033157600080fd5b5061034c60048036038101906103479190611de2565b610837565b6040516103599190611e3d565b60405180910390f35b34801561036e57600080fd5b5061037761086e565b6040516103849190611ef1565b60405180910390f35b34801561039957600080fd5b506103a2610894565b6040516103af9190611d38565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da9190611f0c565b6108bc565b005b3480156103ed57600080fd5b5061040860048036038101906104039190611f4c565b6108ef565b6040516104159190611d38565b60405180910390f35b34801561042a57600080fd5b50610433610937565b005b34801561044157600080fd5b5061044a61094b565b005b34801561045857600080fd5b506104616109a6565b60405161046e9190611ef1565b60405180910390f35b34801561048357600080fd5b5061048c6109d0565b6040516104999190611cfd565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c49190611de2565b610a62565b6040516104d69190611e3d565b60405180910390f35b3480156104eb57600080fd5b506104f4610ad9565b6040516105019190611d38565b60405180910390f35b34801561051657600080fd5b50610531600480360381019061052c9190611de2565b610b01565b60405161053e9190611e3d565b60405180910390f35b34801561055357600080fd5b5061056e60048036038101906105699190611f79565b610b24565b005b34801561057c57600080fd5b5061059760048036038101906105929190611fd2565b610b54565b005b3480156105a557600080fd5b506105c060048036038101906105bb9190611f4c565b610bb7565b6040516105cd9190611e3d565b60405180910390f35b3480156105e257600080fd5b506105fd60048036038101906105f89190611f79565b610bd7565b005b34801561060b57600080fd5b50610614610c07565b6040516106219190611d38565b60405180910390f35b34801561063657600080fd5b5061063f610c0d565b005b34801561064d57600080fd5b50610656610c39565b005b34801561066457600080fd5b5061067f600480360381019061067a9190611f79565b610ca2565b005b34801561068d57600080fd5b50610696610cd2565b005b3480156106a457600080fd5b506106bf60048036038101906106ba9190612012565b610cea565b6040516106cc9190611d38565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f79190611f4c565b610d71565b005b34801561070a57600080fd5b50610713610df4565b005b60606003805461072490612081565b80601f016020809104026020016040519081016040528092919081815260200182805461075090612081565b801561079d5780601f106107725761010080835404028352916020019161079d565b820191906000526020600020905b81548152906001019060200180831161078057829003601f168201915b5050505050905090565b600c5481565b6107b5610eef565b6000600d60016101000a81548160ff021916908315150217905550565b6000806107dd610f6d565b90506107ea818585610f75565b600191505092915050565b6000600254905090565b60008061080a610f6d565b905061081785828561113e565b6108228585856111ca565b60019150509392505050565b60006012905090565b600080610842610f6d565b90506108638185856108548589610cea565b61085e91906120e1565b610f75565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061089e61082e565b600a6108aa9190612248565b6011546108b791906122c2565b905090565b6108c4610eef565b601e821080156108d45750601e81105b6108dd57600080fd5b80600781905550816006819055505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61093f610eef565b6109496000611675565b565b610953610eef565b601460009054906101000a900460ff1615610988576000601460006101000a81548160ff0219169083151502179055506109a4565b6001601460006101000a81548160ff0219169083151502179055505b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109df90612081565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0b90612081565b8015610a585780601f10610a2d57610100808354040283529160200191610a58565b820191906000526020600020905b815481529060010190602001808311610a3b57829003601f168201915b5050505050905090565b600080610a6d610f6d565b90506000610a7b8286610cea565b905083811015610ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab790612365565b60405180910390fd5b610acd8286868403610f75565b60019250505092915050565b6000610ae361082e565b600a610aef9190612248565b601254610afc91906122c2565b905090565b600080610b0c610f6d565b9050610b198185856111ca565b600191505092915050565b610b2c610eef565b610b3461082e565b600a610b409190612248565b81610b4b9190612385565b60118190555050565b610b5c610eef565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600a6020528060005260406000206000915054906101000a900460ff1681565b610bdf610eef565b610be761082e565b600a610bf39190612248565b81610bfe9190612385565b600b8190555050565b600b5481565b610c15610eef565b6001600d60006101000a81548160ff02191690831515021790555043600e81905550565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c9f573d6000803e3d6000fd5b50565b610caa610eef565b610cb261082e565b600a610cbe9190612248565b81610cc99190612385565b60128190555050565b610cda610eef565b610ce26107f5565b600b81905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d79610eef565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf90612439565b60405180910390fd5b610df181611675565b50565b610dfc610eef565b610e3130600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610e2c306108ef565b610f75565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610e7a306108ef565b600080610e856109a6565b426040518863ffffffff1660e01b8152600401610ea79695949392919061249e565b60606040518083038185885af1158015610ec5573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610eea9190612514565b505050565b610ef7610f6d565b73ffffffffffffffffffffffffffffffffffffffff16610f156109a6565b73ffffffffffffffffffffffffffffffffffffffff1614610f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f62906125b3565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdb90612645565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104a906126d7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111319190611d38565b60405180910390a3505050565b600061114a8484610cea565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111c457818110156111b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ad90612743565b60405180910390fd5b6111c38484848403610f75565b5b50505050565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561126e5750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561166457600d60009054906101000a900460ff166112c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b9906127d5565b60405180910390fd5b6000600d60019054906101000a900460ff1680156112e2575043600e5414155b1561133157600c5482111561132c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132390612867565b60405180910390fd5b611377565b600b54821115611376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136d906128d3565b60405180910390fd5b5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361146357600754905060006113dc306108ef565b9050601154811180156113fc5750601460009054906101000a900460ff16155b1561145d57600f544311156114145760006010819055505b6003601054101561145c5760106000815480929190611432906128f3565b919050555043600f8190555061145b611456601254611451868561173b565b61173b565b611754565b5b5b50611610565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361160f576006549050600e54430361160e57601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154a906129ad565b60405180910390fd5b6001601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550601360008154809291906115be906128f3565b919050555060146013541115611609576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160090612a19565b60405180910390fd5b602390505b5b5b6000606482846116209190612385565b61162a91906122c2565b90506000818461163a9190612a39565b90506000821115611651576116508630846119ed565b5b61165c8686836119ed565b505050611670565b61166f8383836119ed565b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081831161174a578261174c565b815b905092915050565b6001601460006101000a81548160ff02191690831515021790555061179c30600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683610f75565b6000600267ffffffffffffffff8111156117b9576117b8612a6d565b5b6040519080825280602002602001820160405280156117e75781602001602082028036833780820191505090505b50905030816000815181106117ff576117fe612a9c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ca9190612ae0565b816001815181106118de576118dd612a9c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947836000847f0000000000000000000000000000000000000000000000000000000000000000426040518663ffffffff1660e01b815260040161199c959493929190612bcb565b600060405180830381600087803b1580156119b657600080fd5b505af11580156119ca573d6000803e3d6000fd5b50505050506000601460006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5390612c97565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac290612d29565b60405180910390fd5b611ad6838383611c63565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5390612dbb565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c4a9190611d38565b60405180910390a3611c5d848484611c68565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611ca7578082015181840152602081019050611c8c565b60008484015250505050565b6000601f19601f8301169050919050565b6000611ccf82611c6d565b611cd98185611c78565b9350611ce9818560208601611c89565b611cf281611cb3565b840191505092915050565b60006020820190508181036000830152611d178184611cc4565b905092915050565b6000819050919050565b611d3281611d1f565b82525050565b6000602082019050611d4d6000830184611d29565b92915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611d8382611d58565b9050919050565b611d9381611d78565b8114611d9e57600080fd5b50565b600081359050611db081611d8a565b92915050565b611dbf81611d1f565b8114611dca57600080fd5b50565b600081359050611ddc81611db6565b92915050565b60008060408385031215611df957611df8611d53565b5b6000611e0785828601611da1565b9250506020611e1885828601611dcd565b9150509250929050565b60008115159050919050565b611e3781611e22565b82525050565b6000602082019050611e526000830184611e2e565b92915050565b600080600060608486031215611e7157611e70611d53565b5b6000611e7f86828701611da1565b9350506020611e9086828701611da1565b9250506040611ea186828701611dcd565b9150509250925092565b600060ff82169050919050565b611ec181611eab565b82525050565b6000602082019050611edc6000830184611eb8565b92915050565b611eeb81611d78565b82525050565b6000602082019050611f066000830184611ee2565b92915050565b60008060408385031215611f2357611f22611d53565b5b6000611f3185828601611dcd565b9250506020611f4285828601611dcd565b9150509250929050565b600060208284031215611f6257611f61611d53565b5b6000611f7084828501611da1565b91505092915050565b600060208284031215611f8f57611f8e611d53565b5b6000611f9d84828501611dcd565b91505092915050565b611faf81611e22565b8114611fba57600080fd5b50565b600081359050611fcc81611fa6565b92915050565b60008060408385031215611fe957611fe8611d53565b5b6000611ff785828601611da1565b925050602061200885828601611fbd565b9150509250929050565b6000806040838503121561202957612028611d53565b5b600061203785828601611da1565b925050602061204885828601611da1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061209957607f821691505b6020821081036120ac576120ab612052565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006120ec82611d1f565b91506120f783611d1f565b925082820190508082111561210f5761210e6120b2565b5b92915050565b60008160011c9050919050565b6000808291508390505b600185111561216c57808604811115612148576121476120b2565b5b60018516156121575780820291505b808102905061216585612115565b945061212c565b94509492505050565b6000826121855760019050612241565b816121935760009050612241565b81600181146121a957600281146121b3576121e2565b6001915050612241565b60ff8411156121c5576121c46120b2565b5b8360020a9150848211156121dc576121db6120b2565b5b50612241565b5060208310610133831016604e8410600b84101617156122175782820a905083811115612212576122116120b2565b5b612241565b6122248484846001612122565b9250905081840481111561223b5761223a6120b2565b5b81810290505b9392505050565b600061225382611d1f565b915061225e83611eab565b925061228b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612175565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006122cd82611d1f565b91506122d883611d1f565b9250826122e8576122e7612293565b5b828204905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061234f602583611c78565b915061235a826122f3565b604082019050919050565b6000602082019050818103600083015261237e81612342565b9050919050565b600061239082611d1f565b915061239b83611d1f565b92508282026123a981611d1f565b915082820484148315176123c0576123bf6120b2565b5b5092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612423602683611c78565b915061242e826123c7565b604082019050919050565b6000602082019050818103600083015261245281612416565b9050919050565b6000819050919050565b6000819050919050565b600061248861248361247e84612459565b612463565b611d1f565b9050919050565b6124988161246d565b82525050565b600060c0820190506124b36000830189611ee2565b6124c06020830188611d29565b6124cd604083018761248f565b6124da606083018661248f565b6124e76080830185611ee2565b6124f460a0830184611d29565b979650505050505050565b60008151905061250e81611db6565b92915050565b60008060006060848603121561252d5761252c611d53565b5b600061253b868287016124ff565b935050602061254c868287016124ff565b925050604061255d868287016124ff565b9150509250925092565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061259d602083611c78565b91506125a882612567565b602082019050919050565b600060208201905081810360008301526125cc81612590565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061262f602483611c78565b915061263a826125d3565b604082019050919050565b6000602082019050818103600083015261265e81612622565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006126c1602283611c78565b91506126cc82612665565b604082019050919050565b600060208201905081810360008301526126f0816126b4565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061272d601d83611c78565b9150612738826126f7565b602082019050919050565b6000602082019050818103600083015261275c81612720565b9050919050565b7f54726164696e6720686173206e6f74206265656e206c61756e6368656420796560008201527f742e000000000000000000000000000000000000000000000000000000000000602082015250565b60006127bf602283611c78565b91506127ca82612763565b604082019050919050565b600060208201905081810360008301526127ee816127b2565b9050919050565b7f5472616e73616374696f6e2065786365656473206d6178206c61756e6368206c60008201527f696d69742e000000000000000000000000000000000000000000000000000000602082015250565b6000612851602583611c78565b915061285c826127f5565b604082019050919050565b6000602082019050818103600083015261288081612844565b9050919050565b7f5472616e73616374696f6e2065786365656473206d6178206c696d69742e0000600082015250565b60006128bd601e83611c78565b91506128c882612887565b602082019050919050565b600060208201905081810360008301526128ec816128b0565b9050919050565b60006128fe82611d1f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036129305761292f6120b2565b5b600182019050919050565b7f57616c6c657420616c726561647920626f7567687420696e207468652066697260008201527f737420626c6f636b2e0000000000000000000000000000000000000000000000602082015250565b6000612997602983611c78565b91506129a28261293b565b604082019050919050565b600060208201905081810360008301526129c68161298a565b9050919050565b7f457863656564732062757973206f6e2074686520666972737420626c6f636b2e600082015250565b6000612a03602083611c78565b9150612a0e826129cd565b602082019050919050565b60006020820190508181036000830152612a32816129f6565b9050919050565b6000612a4482611d1f565b9150612a4f83611d1f565b9250828203905081811115612a6757612a666120b2565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612ada81611d8a565b92915050565b600060208284031215612af657612af5611d53565b5b6000612b0484828501612acb565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612b4281611d78565b82525050565b6000612b548383612b39565b60208301905092915050565b6000602082019050919050565b6000612b7882612b0d565b612b828185612b18565b9350612b8d83612b29565b8060005b83811015612bbe578151612ba58882612b48565b9750612bb083612b60565b925050600181019050612b91565b5085935050505092915050565b600060a082019050612be06000830188611d29565b612bed602083018761248f565b8181036040830152612bff8186612b6d565b9050612c0e6060830185611ee2565b612c1b6080830184611d29565b9695505050505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612c81602583611c78565b9150612c8c82612c25565b604082019050919050565b60006020820190508181036000830152612cb081612c74565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612d13602383611c78565b9150612d1e82612cb7565b604082019050919050565b60006020820190508181036000830152612d4281612d06565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612da5602683611c78565b9150612db082612d49565b604082019050919050565b60006020820190508181036000830152612dd481612d98565b905091905056fea26469706673582212201823cd5ce2e08f95133a0e88aca2863db9974e1cf150612922e23c512a6270b364736f6c6343000814003300000000000000000000000034ff07ad5ce1400c4651e97a39bc3898857e11f6000000000000000000000000b318025456a7fe7105777b81051caef44b8c1d670000000000000000000000005f242164b66c7d955b2b1fa2674896a0a8a237cb
Deployed Bytecode
0x6080604052600436106101dc5760003560e01c806395d89b4111610102578063c8c8ebe411610095578063db05e5cb11610064578063db05e5cb14610681578063dd62ed3e14610698578063f2fde38b146106d5578063ffe270da146106fe576101e3565b8063c8c8ebe4146105ff578063c9567bf91461062a578063d579d4ed14610641578063d7acde1f14610658576101e3565b8063a9e282b8116100d1578063a9e282b814610547578063aca2cd6e14610570578063ad5dff7314610599578063bc337182146105d6576101e3565b806395d89b4114610477578063a457c2d7146104a2578063a508de62146104df578063a9059cbb1461050a576101e3565b8063395093511161017a57806370a082311161014957806370a08231146103e1578063715018a61461041e578063826ca8cc146104355780638da5cb5b1461044c576101e3565b8063395093511461032557806349bd5a5e146103625780634b203e1b1461038d578063667f6526146103b8576101e3565b8063095ea7b3116101b6578063095ea7b31461025557806318160ddd1461029257806323b872dd146102bd578063313ce567146102fa576101e3565b806306fdde03146101e8578063084cf615146102135780630949e8c81461023e576101e3565b366101e357005b600080fd5b3480156101f457600080fd5b506101fd610715565b60405161020a9190611cfd565b60405180910390f35b34801561021f57600080fd5b506102286107a7565b6040516102359190611d38565b60405180910390f35b34801561024a57600080fd5b506102536107ad565b005b34801561026157600080fd5b5061027c60048036038101906102779190611de2565b6107d2565b6040516102899190611e3d565b60405180910390f35b34801561029e57600080fd5b506102a76107f5565b6040516102b49190611d38565b60405180910390f35b3480156102c957600080fd5b506102e460048036038101906102df9190611e58565b6107ff565b6040516102f19190611e3d565b60405180910390f35b34801561030657600080fd5b5061030f61082e565b60405161031c9190611ec7565b60405180910390f35b34801561033157600080fd5b5061034c60048036038101906103479190611de2565b610837565b6040516103599190611e3d565b60405180910390f35b34801561036e57600080fd5b5061037761086e565b6040516103849190611ef1565b60405180910390f35b34801561039957600080fd5b506103a2610894565b6040516103af9190611d38565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da9190611f0c565b6108bc565b005b3480156103ed57600080fd5b5061040860048036038101906104039190611f4c565b6108ef565b6040516104159190611d38565b60405180910390f35b34801561042a57600080fd5b50610433610937565b005b34801561044157600080fd5b5061044a61094b565b005b34801561045857600080fd5b506104616109a6565b60405161046e9190611ef1565b60405180910390f35b34801561048357600080fd5b5061048c6109d0565b6040516104999190611cfd565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c49190611de2565b610a62565b6040516104d69190611e3d565b60405180910390f35b3480156104eb57600080fd5b506104f4610ad9565b6040516105019190611d38565b60405180910390f35b34801561051657600080fd5b50610531600480360381019061052c9190611de2565b610b01565b60405161053e9190611e3d565b60405180910390f35b34801561055357600080fd5b5061056e60048036038101906105699190611f79565b610b24565b005b34801561057c57600080fd5b5061059760048036038101906105929190611fd2565b610b54565b005b3480156105a557600080fd5b506105c060048036038101906105bb9190611f4c565b610bb7565b6040516105cd9190611e3d565b60405180910390f35b3480156105e257600080fd5b506105fd60048036038101906105f89190611f79565b610bd7565b005b34801561060b57600080fd5b50610614610c07565b6040516106219190611d38565b60405180910390f35b34801561063657600080fd5b5061063f610c0d565b005b34801561064d57600080fd5b50610656610c39565b005b34801561066457600080fd5b5061067f600480360381019061067a9190611f79565b610ca2565b005b34801561068d57600080fd5b50610696610cd2565b005b3480156106a457600080fd5b506106bf60048036038101906106ba9190612012565b610cea565b6040516106cc9190611d38565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f79190611f4c565b610d71565b005b34801561070a57600080fd5b50610713610df4565b005b60606003805461072490612081565b80601f016020809104026020016040519081016040528092919081815260200182805461075090612081565b801561079d5780601f106107725761010080835404028352916020019161079d565b820191906000526020600020905b81548152906001019060200180831161078057829003601f168201915b5050505050905090565b600c5481565b6107b5610eef565b6000600d60016101000a81548160ff021916908315150217905550565b6000806107dd610f6d565b90506107ea818585610f75565b600191505092915050565b6000600254905090565b60008061080a610f6d565b905061081785828561113e565b6108228585856111ca565b60019150509392505050565b60006012905090565b600080610842610f6d565b90506108638185856108548589610cea565b61085e91906120e1565b610f75565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061089e61082e565b600a6108aa9190612248565b6011546108b791906122c2565b905090565b6108c4610eef565b601e821080156108d45750601e81105b6108dd57600080fd5b80600781905550816006819055505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61093f610eef565b6109496000611675565b565b610953610eef565b601460009054906101000a900460ff1615610988576000601460006101000a81548160ff0219169083151502179055506109a4565b6001601460006101000a81548160ff0219169083151502179055505b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109df90612081565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0b90612081565b8015610a585780601f10610a2d57610100808354040283529160200191610a58565b820191906000526020600020905b815481529060010190602001808311610a3b57829003601f168201915b5050505050905090565b600080610a6d610f6d565b90506000610a7b8286610cea565b905083811015610ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab790612365565b60405180910390fd5b610acd8286868403610f75565b60019250505092915050565b6000610ae361082e565b600a610aef9190612248565b601254610afc91906122c2565b905090565b600080610b0c610f6d565b9050610b198185856111ca565b600191505092915050565b610b2c610eef565b610b3461082e565b600a610b409190612248565b81610b4b9190612385565b60118190555050565b610b5c610eef565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600a6020528060005260406000206000915054906101000a900460ff1681565b610bdf610eef565b610be761082e565b600a610bf39190612248565b81610bfe9190612385565b600b8190555050565b600b5481565b610c15610eef565b6001600d60006101000a81548160ff02191690831515021790555043600e81905550565b7f000000000000000000000000b318025456a7fe7105777b81051caef44b8c1d6773ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c9f573d6000803e3d6000fd5b50565b610caa610eef565b610cb261082e565b600a610cbe9190612248565b81610cc99190612385565b60128190555050565b610cda610eef565b610ce26107f5565b600b81905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d79610eef565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf90612439565b60405180910390fd5b610df181611675565b50565b610dfc610eef565b610e3130600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610e2c306108ef565b610f75565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610e7a306108ef565b600080610e856109a6565b426040518863ffffffff1660e01b8152600401610ea79695949392919061249e565b60606040518083038185885af1158015610ec5573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610eea9190612514565b505050565b610ef7610f6d565b73ffffffffffffffffffffffffffffffffffffffff16610f156109a6565b73ffffffffffffffffffffffffffffffffffffffff1614610f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f62906125b3565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdb90612645565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104a906126d7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111319190611d38565b60405180910390a3505050565b600061114a8484610cea565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111c457818110156111b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ad90612743565b60405180910390fd5b6111c38484848403610f75565b5b50505050565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561126e5750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561166457600d60009054906101000a900460ff166112c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b9906127d5565b60405180910390fd5b6000600d60019054906101000a900460ff1680156112e2575043600e5414155b1561133157600c5482111561132c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132390612867565b60405180910390fd5b611377565b600b54821115611376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136d906128d3565b60405180910390fd5b5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361146357600754905060006113dc306108ef565b9050601154811180156113fc5750601460009054906101000a900460ff16155b1561145d57600f544311156114145760006010819055505b6003601054101561145c5760106000815480929190611432906128f3565b919050555043600f8190555061145b611456601254611451868561173b565b61173b565b611754565b5b5b50611610565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361160f576006549050600e54430361160e57601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154a906129ad565b60405180910390fd5b6001601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550601360008154809291906115be906128f3565b919050555060146013541115611609576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160090612a19565b60405180910390fd5b602390505b5b5b6000606482846116209190612385565b61162a91906122c2565b90506000818461163a9190612a39565b90506000821115611651576116508630846119ed565b5b61165c8686836119ed565b505050611670565b61166f8383836119ed565b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081831161174a578261174c565b815b905092915050565b6001601460006101000a81548160ff02191690831515021790555061179c30600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683610f75565b6000600267ffffffffffffffff8111156117b9576117b8612a6d565b5b6040519080825280602002602001820160405280156117e75781602001602082028036833780820191505090505b50905030816000815181106117ff576117fe612a9c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ca9190612ae0565b816001815181106118de576118dd612a9c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947836000847f00000000000000000000000034ff07ad5ce1400c4651e97a39bc3898857e11f6426040518663ffffffff1660e01b815260040161199c959493929190612bcb565b600060405180830381600087803b1580156119b657600080fd5b505af11580156119ca573d6000803e3d6000fd5b50505050506000601460006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5390612c97565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac290612d29565b60405180910390fd5b611ad6838383611c63565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5390612dbb565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c4a9190611d38565b60405180910390a3611c5d848484611c68565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611ca7578082015181840152602081019050611c8c565b60008484015250505050565b6000601f19601f8301169050919050565b6000611ccf82611c6d565b611cd98185611c78565b9350611ce9818560208601611c89565b611cf281611cb3565b840191505092915050565b60006020820190508181036000830152611d178184611cc4565b905092915050565b6000819050919050565b611d3281611d1f565b82525050565b6000602082019050611d4d6000830184611d29565b92915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611d8382611d58565b9050919050565b611d9381611d78565b8114611d9e57600080fd5b50565b600081359050611db081611d8a565b92915050565b611dbf81611d1f565b8114611dca57600080fd5b50565b600081359050611ddc81611db6565b92915050565b60008060408385031215611df957611df8611d53565b5b6000611e0785828601611da1565b9250506020611e1885828601611dcd565b9150509250929050565b60008115159050919050565b611e3781611e22565b82525050565b6000602082019050611e526000830184611e2e565b92915050565b600080600060608486031215611e7157611e70611d53565b5b6000611e7f86828701611da1565b9350506020611e9086828701611da1565b9250506040611ea186828701611dcd565b9150509250925092565b600060ff82169050919050565b611ec181611eab565b82525050565b6000602082019050611edc6000830184611eb8565b92915050565b611eeb81611d78565b82525050565b6000602082019050611f066000830184611ee2565b92915050565b60008060408385031215611f2357611f22611d53565b5b6000611f3185828601611dcd565b9250506020611f4285828601611dcd565b9150509250929050565b600060208284031215611f6257611f61611d53565b5b6000611f7084828501611da1565b91505092915050565b600060208284031215611f8f57611f8e611d53565b5b6000611f9d84828501611dcd565b91505092915050565b611faf81611e22565b8114611fba57600080fd5b50565b600081359050611fcc81611fa6565b92915050565b60008060408385031215611fe957611fe8611d53565b5b6000611ff785828601611da1565b925050602061200885828601611fbd565b9150509250929050565b6000806040838503121561202957612028611d53565b5b600061203785828601611da1565b925050602061204885828601611da1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061209957607f821691505b6020821081036120ac576120ab612052565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006120ec82611d1f565b91506120f783611d1f565b925082820190508082111561210f5761210e6120b2565b5b92915050565b60008160011c9050919050565b6000808291508390505b600185111561216c57808604811115612148576121476120b2565b5b60018516156121575780820291505b808102905061216585612115565b945061212c565b94509492505050565b6000826121855760019050612241565b816121935760009050612241565b81600181146121a957600281146121b3576121e2565b6001915050612241565b60ff8411156121c5576121c46120b2565b5b8360020a9150848211156121dc576121db6120b2565b5b50612241565b5060208310610133831016604e8410600b84101617156122175782820a905083811115612212576122116120b2565b5b612241565b6122248484846001612122565b9250905081840481111561223b5761223a6120b2565b5b81810290505b9392505050565b600061225382611d1f565b915061225e83611eab565b925061228b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612175565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006122cd82611d1f565b91506122d883611d1f565b9250826122e8576122e7612293565b5b828204905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061234f602583611c78565b915061235a826122f3565b604082019050919050565b6000602082019050818103600083015261237e81612342565b9050919050565b600061239082611d1f565b915061239b83611d1f565b92508282026123a981611d1f565b915082820484148315176123c0576123bf6120b2565b5b5092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612423602683611c78565b915061242e826123c7565b604082019050919050565b6000602082019050818103600083015261245281612416565b9050919050565b6000819050919050565b6000819050919050565b600061248861248361247e84612459565b612463565b611d1f565b9050919050565b6124988161246d565b82525050565b600060c0820190506124b36000830189611ee2565b6124c06020830188611d29565b6124cd604083018761248f565b6124da606083018661248f565b6124e76080830185611ee2565b6124f460a0830184611d29565b979650505050505050565b60008151905061250e81611db6565b92915050565b60008060006060848603121561252d5761252c611d53565b5b600061253b868287016124ff565b935050602061254c868287016124ff565b925050604061255d868287016124ff565b9150509250925092565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061259d602083611c78565b91506125a882612567565b602082019050919050565b600060208201905081810360008301526125cc81612590565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061262f602483611c78565b915061263a826125d3565b604082019050919050565b6000602082019050818103600083015261265e81612622565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006126c1602283611c78565b91506126cc82612665565b604082019050919050565b600060208201905081810360008301526126f0816126b4565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061272d601d83611c78565b9150612738826126f7565b602082019050919050565b6000602082019050818103600083015261275c81612720565b9050919050565b7f54726164696e6720686173206e6f74206265656e206c61756e6368656420796560008201527f742e000000000000000000000000000000000000000000000000000000000000602082015250565b60006127bf602283611c78565b91506127ca82612763565b604082019050919050565b600060208201905081810360008301526127ee816127b2565b9050919050565b7f5472616e73616374696f6e2065786365656473206d6178206c61756e6368206c60008201527f696d69742e000000000000000000000000000000000000000000000000000000602082015250565b6000612851602583611c78565b915061285c826127f5565b604082019050919050565b6000602082019050818103600083015261288081612844565b9050919050565b7f5472616e73616374696f6e2065786365656473206d6178206c696d69742e0000600082015250565b60006128bd601e83611c78565b91506128c882612887565b602082019050919050565b600060208201905081810360008301526128ec816128b0565b9050919050565b60006128fe82611d1f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036129305761292f6120b2565b5b600182019050919050565b7f57616c6c657420616c726561647920626f7567687420696e207468652066697260008201527f737420626c6f636b2e0000000000000000000000000000000000000000000000602082015250565b6000612997602983611c78565b91506129a28261293b565b604082019050919050565b600060208201905081810360008301526129c68161298a565b9050919050565b7f457863656564732062757973206f6e2074686520666972737420626c6f636b2e600082015250565b6000612a03602083611c78565b9150612a0e826129cd565b602082019050919050565b60006020820190508181036000830152612a32816129f6565b9050919050565b6000612a4482611d1f565b9150612a4f83611d1f565b9250828203905081811115612a6757612a666120b2565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612ada81611d8a565b92915050565b600060208284031215612af657612af5611d53565b5b6000612b0484828501612acb565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612b4281611d78565b82525050565b6000612b548383612b39565b60208301905092915050565b6000602082019050919050565b6000612b7882612b0d565b612b828185612b18565b9350612b8d83612b29565b8060005b83811015612bbe578151612ba58882612b48565b9750612bb083612b60565b925050600181019050612b91565b5085935050505092915050565b600060a082019050612be06000830188611d29565b612bed602083018761248f565b8181036040830152612bff8186612b6d565b9050612c0e6060830185611ee2565b612c1b6080830184611d29565b9695505050505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612c81602583611c78565b9150612c8c82612c25565b604082019050919050565b60006020820190508181036000830152612cb081612c74565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612d13602383611c78565b9150612d1e82612cb7565b604082019050919050565b60006020820190508181036000830152612d4281612d06565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612da5602683611c78565b9150612db082612d49565b604082019050919050565b60006020820190508181036000830152612dd481612d98565b905091905056fea26469706673582212201823cd5ce2e08f95133a0e88aca2863db9974e1cf150612922e23c512a6270b364736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000034ff07ad5ce1400c4651e97a39bc3898857e11f6000000000000000000000000b318025456a7fe7105777b81051caef44b8c1d670000000000000000000000005f242164b66c7d955b2b1fa2674896a0a8a237cb
-----Decoded View---------------
Arg [0] : _taxAddress (address): 0x34fF07AD5Ce1400C4651e97A39BC3898857e11f6
Arg [1] : _marketingAddress (address): 0xb318025456A7Fe7105777b81051CAEF44B8c1D67
Arg [2] : _daoWallet (address): 0x5f242164b66C7D955B2b1FA2674896A0a8A237cB
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 00000000000000000000000034ff07ad5ce1400c4651e97a39bc3898857e11f6
Arg [1] : 000000000000000000000000b318025456a7fe7105777b81051caef44b8c1d67
Arg [2] : 0000000000000000000000005f242164b66c7d955b2b1fa2674896a0a8a237cb
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.