ERC-20
Overview
Max Total Supply
10,000,000,000 RFKC
Holders
190
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RFKC
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
Yes with 999 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; interface IUniFactory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniRouter { function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 inAmount, uint256 outAmountMin, address[] calldata route, address dest, uint256 endTimestamp ) external; function factory() external pure returns (address); function WETH() external pure returns (address); } interface IUniPair { function sync() external; } contract RFKC is ERC20, Ownable { uint256 public constant DENOMINATOR = 1e18; IUniRouter public constant router = IUniRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); address public immutable lpAddress; uint256 public purchaseTax = 0.02e18; uint256 public salesTax = 0.99e18; uint256 public burnTax = 0.01e18; bool private swapping; address public marketingAddr; uint256 public maxTxSize; uint256 public maxSwapImpact = 0.02e18; uint256 public reportCooldown = 72 * 1 hours; uint256 public prevReportTimestamp; mapping(address => bool) public feeExceptions; mapping(address => bool) public botsListed; event PollResult(uint256 pollPct, uint256 burnAmount, string rationale); constructor() ERC20("RFKC", "RFKC") { _mint(msg.sender, 10_000_000_000 * (10 ** decimals())); lpAddress = IUniFactory(router.factory()).createPair(address(this), router.WETH()); _approve(address(this), address(router), type(uint256).max); setMarketingWallet(0xccaBB90a9AF85C271d2c08895A8196Ef8eE6C5de); feeExceptions[msg.sender] = true; feeExceptions[address(this)] = true; feeExceptions[address(router)] = true; } function setMarketingWallet(address _marketingWallet) public onlyOwner { marketingAddr = _marketingWallet; feeExceptions[marketingAddr] = true; } function updateFees(uint256 newPurchaseTax, uint256 newSalesTax, uint256 newBurnTax) public onlyOwner { require(newPurchaseTax < DENOMINATOR && newSalesTax < DENOMINATOR && newBurnTax < DENOMINATOR, "Invalid fee"); purchaseTax = newPurchaseTax; salesTax = newSalesTax; burnTax = newBurnTax; } function setMaxTxSize(uint256 _maxSize) public onlyOwner { maxTxSize = _maxSize; } function setSwapImpact(uint256 _maxImpact) external onlyOwner { maxSwapImpact = _maxImpact; } function setReportCooldown(uint256 _cooldown) external onlyOwner { reportCooldown = _cooldown; } function exemptFromFees(address target) public onlyOwner { feeExceptions[target] = true; } function revokeFeeException(address target) external onlyOwner { feeExceptions[target] = false; } function addBots(address[] calldata botAddresses) external onlyOwner { for (uint256 i = 0; i < botAddresses.length; i++) { botsListed[botAddresses[i]] = true; } } function removeBots(address[] calldata botAddresses) external onlyOwner { for (uint256 i = 0; i < botAddresses.length; i++) { botsListed[botAddresses[i]] = false; } } function _transfer(address from, address to, uint256 quantity) internal override { if (swapping) { return super._transfer(from, to, quantity); } require(!botsListed[from], "Bot address"); bool isBuy = from == lpAddress && !feeExceptions[to]; bool isSell = to == lpAddress && !feeExceptions[from]; if (isBuy || isSell) { require(maxTxSize > 0, "Trading not yet enabled"); require(quantity <= maxTxSize, "Exceeds maximum transaction size"); uint256 fees = calcTradeTax(from, quantity, isBuy); quantity -= fees; } super._transfer(from, to, quantity); } function calcTradeTax(address trader, uint256 qty, bool isBuy) private returns (uint256) { uint256 burnTaxQty = qty * burnTax / DENOMINATOR; super._transfer(trader, address(0xdead), burnTaxQty); uint256 tradeTax = (isBuy ? purchaseTax : salesTax) * qty / DENOMINATOR; super._transfer(trader, address(this), tradeTax); if (!isBuy) executeSwap(); return tradeTax + burnTaxQty; } function executeSwap() private { uint256 balance = balanceOf(address(this)); uint256 lpBalance = balanceOf(lpAddress); uint256 swapSize = lpBalance * maxSwapImpact / (2 * DENOMINATOR); if (balance > swapSize) balance = swapSize; if (balance == 0) return; swapping = true; address[] memory route = new address[](2); route[0] = address(this); route[1] = router.WETH(); router.swapExactTokensForETHSupportingFeeOnTransferTokens(balance, 0, route, marketingAddr, block.timestamp); swapping = false; } function releasePollScore(uint256 pollPct, uint256 increasePct, string calldata reason) external onlyOwner { require(increasePct < 0.3e18, "Invalid increase percentage"); require(block.timestamp > prevReportTimestamp + reportCooldown, "Not yet allowed"); prevReportTimestamp = block.timestamp; uint256 lpBalance = balanceOf(lpAddress); uint256 burnAmount = lpBalance * increasePct / (DENOMINATOR + increasePct); if (burnAmount > 0) { super._transfer(lpAddress, address(0xdead), burnAmount); IUniPair(lpAddress).sync(); } emit PollResult(pollPct, burnAmount, reason); } function rescueTokens(address tokenAddr, uint256 tokenQty) external onlyOwner { IERC20(tokenAddr).transfer(owner(), tokenQty); } function withdrawETH(uint256 ethAmount) external onlyOwner { payable(owner()).transfer(ethAmount); } 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 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts 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); }
{ "optimizer": { "enabled": true, "runs": 999 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":false,"internalType":"uint256","name":"pollPct","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"burnAmount","type":"uint256"},{"indexed":false,"internalType":"string","name":"rationale","type":"string"}],"name":"PollResult","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":"DENOMINATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"botAddresses","type":"address[]"}],"name":"addBots","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":[{"internalType":"address","name":"","type":"address"}],"name":"botsListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"exemptFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"feeExceptions","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":"lpAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSwapImpact","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prevReportTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"purchaseTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"pollPct","type":"uint256"},{"internalType":"uint256","name":"increasePct","type":"uint256"},{"internalType":"string","name":"reason","type":"string"}],"name":"releasePollScore","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"botAddresses","type":"address[]"}],"name":"removeBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reportCooldown","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddr","type":"address"},{"internalType":"uint256","name":"tokenQty","type":"uint256"}],"name":"rescueTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"revokeFeeException","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"salesTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSize","type":"uint256"}],"name":"setMaxTxSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cooldown","type":"uint256"}],"name":"setReportCooldown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxImpact","type":"uint256"}],"name":"setSwapImpact","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":[{"internalType":"uint256","name":"newPurchaseTax","type":"uint256"},{"internalType":"uint256","name":"newSalesTax","type":"uint256"},{"internalType":"uint256","name":"newBurnTax","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"ethAmount","type":"uint256"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a060405266470de4df820000600655670dbd2fc137a30000600755662386f26fc1000060085566470de4df820000600b556203f480600c553480156200004557600080fd5b5060408051808201825260048082526352464b4360e01b6020808401829052845180860190955291845290830152906003620000828382620006ac565b506004620000918282620006ac565b505050620000ae620000a86200031160201b60201c565b62000315565b620000d833620000c16012600a6200088d565b620000d2906402540be400620008a5565b62000367565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200012b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001519190620008bf565b6001600160a01b031663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d99190620008bf565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000227573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024d9190620008bf565b6001600160a01b03166080526200027c30737a250d5630b4cf539739df2c5dacb4c659f2488d6000196200042e565b6200029b73ccabb90a9af85c271d2c08895a8196ef8ee6c5de62000556565b336000908152600e60205260408082208054600160ff1991821681179092553084529183208054831682179055737a250d5630b4cf539739df2c5dacb4c659f2488d9092527f37836a7135fae77e265e35732c70286035736c8b57b12590769780e067ead81c8054909116909117905562000900565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003c35760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060026000828254620003d79190620008ea565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038316620004925760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401620003ba565b6001600160a01b038216620004f55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401620003ba565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b62000560620005aa565b60098054610100600160a81b0319166101006001600160a01b03938416810291909117918290559004166000908152600e60205260409020805460ff19166001179055565b505050565b6005546001600160a01b03163314620006065760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620003ba565b565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200063357607f821691505b6020821081036200065457634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005a557600081815260208120601f850160051c81016020861015620006835750805b601f850160051c820191505b81811015620006a4578281556001016200068f565b505050505050565b81516001600160401b03811115620006c857620006c862000608565b620006e081620006d984546200061e565b846200065a565b602080601f831160018114620007185760008415620006ff5750858301515b600019600386901b1c1916600185901b178555620006a4565b600085815260208120601f198616915b82811015620007495788860151825594840194600190910190840162000728565b5085821015620007685787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620007cf578160001904821115620007b357620007b362000778565b80851615620007c157918102915b93841c939080029062000793565b509250929050565b600082620007e85750600162000887565b81620007f75750600062000887565b81600181146200081057600281146200081b576200083b565b600191505062000887565b60ff8411156200082f576200082f62000778565b50506001821b62000887565b5060208310610133831016604e8410600b841016171562000860575081810a62000887565b6200086c83836200078e565b806000190482111562000883576200088362000778565b0290505b92915050565b60006200089e60ff841683620007d7565b9392505050565b808202811582820484141762000887576200088762000778565b600060208284031215620008d257600080fd5b81516001600160a01b03811681146200089e57600080fd5b8082018082111562000887576200088762000778565b608051611db1620009466000396000818161061f01528181610cff01528181610d6a01528181610d9401528181611298015281816112f6015261172d0152611db16000f3fe6080604052600436106102a45760003560e01c806370a082311161016e578063a9059cbb116100cb578063dd62ed3e1161007f578063f2fde38b11610064578063f2fde38b14610777578063f887ea4014610797578063fbc02b9c146107bf57600080fd5b8063dd62ed3e14610711578063f14210a61461075757600080fd5b8063c68bb7ba116100b0578063c68bb7ba146106a1578063cf0c1395146106c1578063d34628cc146106f157600080fd5b8063a9059cbb14610661578063baa320211461068157600080fd5b8063918f86741161012257806395de76301161010757806395de7630146105ed5780639b4dc8cc1461060d578063a457c2d71461064157600080fd5b8063918f8674146105bc57806395d89b41146105d857600080fd5b80637162bb51116101535780637162bb51146105585780637e150d66146105885780638da5cb5b1461059e57600080fd5b806370a082311461050d578063715018a61461054357600080fd5b8063395093511161021c57806357376198116101d05780635c4ac548116101b55780635c4ac548146104b75780635d098b38146104cd5780636c3bbfd7146104ed57600080fd5b806357376198146104775780635a90a49e1461049757600080fd5b80633ff42b92116102015780633ff42b921461040e5780634abdefd51461044b57806354b81a711461046157600080fd5b806339509351146103d85780633fa814ee146103f857600080fd5b806318160ddd116102735780632242908511610258578063224290851461037c57806323b872dd1461039c578063313ce567146103bc57600080fd5b806318160ddd146103515780631d4eaead1461036657600080fd5b806306fdde03146102b0578063095ea7b3146102db5780630dc33c281461030b5780631298094a1461032d57600080fd5b366102ab57005b600080fd5b3480156102bc57600080fd5b506102c56107df565b6040516102d29190611949565b60405180910390f35b3480156102e757600080fd5b506102fb6102f63660046119ac565b610871565b60405190151581526020016102d2565b34801561031757600080fd5b5061032b6103263660046119d8565b61088b565b005b34801561033957600080fd5b50610343600b5481565b6040519081526020016102d2565b34801561035d57600080fd5b50600254610343565b34801561037257600080fd5b5061034360085481565b34801561038857600080fd5b5061032b6103973660046119f1565b610898565b3480156103a857600080fd5b506102fb6103b7366004611a1d565b610930565b3480156103c857600080fd5b50604051601281526020016102d2565b3480156103e457600080fd5b506102fb6103f33660046119ac565b610954565b34801561040457600080fd5b50610343600d5481565b34801561041a57600080fd5b506009546104339061010090046001600160a01b031681565b6040516001600160a01b0390911681526020016102d2565b34801561045757600080fd5b5061034360065481565b34801561046d57600080fd5b50610343600c5481565b34801561048357600080fd5b5061032b6104923660046119ac565b610993565b3480156104a357600080fd5b5061032b6104b2366004611a5e565b610a4a565b3480156104c357600080fd5b5061034360075481565b3480156104d957600080fd5b5061032b6104e8366004611a5e565b610a76565b3480156104f957600080fd5b5061032b610508366004611a82565b610ada565b34801561051957600080fd5b50610343610528366004611a5e565b6001600160a01b031660009081526020819052604090205490565b34801561054f57600080fd5b5061032b610b54565b34801561056457600080fd5b506102fb610573366004611a5e565b600f6020526000908152604090205460ff1681565b34801561059457600080fd5b50610343600a5481565b3480156105aa57600080fd5b506005546001600160a01b0316610433565b3480156105c857600080fd5b50610343670de0b6b3a764000081565b3480156105e457600080fd5b506102c5610b68565b3480156105f957600080fd5b5061032b6106083660046119d8565b610b77565b34801561061957600080fd5b506104337f000000000000000000000000000000000000000000000000000000000000000081565b34801561064d57600080fd5b506102fb61065c3660046119ac565b610b84565b34801561066d57600080fd5b506102fb61067c3660046119ac565b610c2e565b34801561068d57600080fd5b5061032b61069c366004611af7565b610c3c565b3480156106ad57600080fd5b5061032b6106bc3660046119d8565b610e4b565b3480156106cd57600080fd5b506102fb6106dc366004611a5e565b600e6020526000908152604090205460ff1681565b3480156106fd57600080fd5b5061032b61070c366004611a82565b610e58565b34801561071d57600080fd5b5061034361072c366004611b77565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561076357600080fd5b5061032b6107723660046119d8565b610ed2565b34801561078357600080fd5b5061032b610792366004611a5e565b610f18565b3480156107a357600080fd5b50610433737a250d5630b4cf539739df2c5dacb4c659f2488d81565b3480156107cb57600080fd5b5061032b6107da366004611a5e565b610fa8565b6060600380546107ee90611bb0565b80601f016020809104026020016040519081016040528092919081815260200182805461081a90611bb0565b80156108675780601f1061083c57610100808354040283529160200191610867565b820191906000526020600020905b81548152906001019060200180831161084a57829003601f168201915b5050505050905090565b60003361087f818585610fd1565b60019150505b92915050565b610893611129565b600c55565b6108a0611129565b670de0b6b3a7640000831080156108be5750670de0b6b3a764000082105b80156108d15750670de0b6b3a764000081105b6109225760405162461bcd60e51b815260206004820152600b60248201527f496e76616c69642066656500000000000000000000000000000000000000000060448201526064015b60405180910390fd5b600692909255600755600855565b60003361093e858285611183565b610949858585611215565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061087f908290869061098e908790611c00565b610fd1565b61099b611129565b816001600160a01b031663a9059cbb6109bc6005546001600160a01b031690565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af1158015610a21573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a459190611c13565b505050565b610a52611129565b6001600160a01b03166000908152600e60205260409020805460ff19166001179055565b610a7e611129565b600980547fffffffffffffffffffffff0000000000000000000000000000000000000000ff166101006001600160a01b03938416810291909117918290559004166000908152600e60205260409020805460ff19166001179055565b610ae2611129565b60005b81811015610a45576000600f6000858585818110610b0557610b05611c35565b9050602002016020810190610b1a9190611a5e565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610b4c81611c4b565b915050610ae5565b610b5c611129565b610b666000611431565b565b6060600480546107ee90611bb0565b610b7f611129565b600b55565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610c215760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610919565b6109498286868403610fd1565b60003361087f818585611215565b610c44611129565b670429d069189e00008310610c9b5760405162461bcd60e51b815260206004820152601b60248201527f496e76616c696420696e6372656173652070657263656e7461676500000000006044820152606401610919565b600c54600d54610cab9190611c00565b4211610cf95760405162461bcd60e51b815260206004820152600f60248201527f4e6f742079657420616c6c6f77656400000000000000000000000000000000006044820152606401610919565b42600d557f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031660009081526020819052604081205490610d4985670de0b6b3a7640000611c00565b610d538684611c64565b610d5d9190611c7b565b90508015610e0657610d927f000000000000000000000000000000000000000000000000000000000000000061dead8361149b565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610ded57600080fd5b505af1158015610e01573d6000803e3d6000fd5b505050505b7f8e17a3dd7538cf89fa81c2704c66aef1bcf5e4c6b740be17732fb53aa4a7c07586828686604051610e3b9493929190611c9d565b60405180910390a1505050505050565b610e53611129565b600a55565b610e60611129565b60005b81811015610a45576001600f6000858585818110610e8357610e83611c35565b9050602002016020810190610e989190611a5e565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610eca81611c4b565b915050610e63565b610eda611129565b6005546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610f14573d6000803e3d6000fd5b5050565b610f20611129565b6001600160a01b038116610f9c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610919565b610fa581611431565b50565b610fb0611129565b6001600160a01b03166000908152600e60205260409020805460ff19169055565b6001600160a01b03831661104c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610919565b6001600160a01b0382166110c85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610919565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610b665760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610919565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461120f57818110156112025760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610919565b61120f8484848403610fd1565b50505050565b60095460ff161561122b57610a4583838361149b565b6001600160a01b0383166000908152600f602052604090205460ff16156112945760405162461bcd60e51b815260206004820152600b60248201527f426f7420616464726573730000000000000000000000000000000000000000006044820152606401610919565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b03161480156112f057506001600160a01b0383166000908152600e602052604090205460ff16155b905060007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b031614801561134e57506001600160a01b0385166000908152600e602052604090205460ff16155b905081806113595750805b1561141f576000600a54116113b05760405162461bcd60e51b815260206004820152601760248201527f54726164696e67206e6f742079657420656e61626c65640000000000000000006044820152606401610919565b600a548311156114025760405162461bcd60e51b815260206004820181905260248201527f45786365656473206d6178696d756d207472616e73616374696f6e2073697a656044820152606401610919565b600061140f868585611688565b905061141b8185611cda565b9350505b61142a85858561149b565b5050505050565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166115175760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610919565b6001600160a01b0382166115935760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610919565b6001600160a01b038316600090815260208190526040902054818110156116225760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610919565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361120f565b600080670de0b6b3a7640000600854856116a29190611c64565b6116ac9190611c7b565b90506116bb8561dead8361149b565b6000670de0b6b3a764000085856116d4576007546116d8565b6006545b6116e29190611c64565b6116ec9190611c7b565b90506116f986308361149b565b836117065761170661171a565b6117108282611c00565b9695505050505050565b30600090815260208190526040808220547f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168352908220549091611770670de0b6b3a76400006002611c64565b600b5461177d9084611c64565b6117879190611c7b565b905080831115611795578092505b826000036117a257505050565b6009805460ff1916600117905560408051600280825260608201835260009260208301908036833701905050905030816000815181106117e4576117e4611c35565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611856573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061187a9190611ced565b8160018151811061188d5761188d611c35565b6001600160a01b0392831660209182029290920101526009546040517f791ac947000000000000000000000000000000000000000000000000000000008152737a250d5630b4cf539739df2c5dacb4c659f2488d9263791ac947926119079289926000928892610100909104909116904290600401611d0a565b600060405180830381600087803b15801561192157600080fd5b505af1158015611935573d6000803e3d6000fd5b50506009805460ff19169055505050505050565b600060208083528351808285015260005b818110156119765785810183015185820160400152820161195a565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610fa557600080fd5b600080604083850312156119bf57600080fd5b82356119ca81611997565b946020939093013593505050565b6000602082840312156119ea57600080fd5b5035919050565b600080600060608486031215611a0657600080fd5b505081359360208301359350604090920135919050565b600080600060608486031215611a3257600080fd5b8335611a3d81611997565b92506020840135611a4d81611997565b929592945050506040919091013590565b600060208284031215611a7057600080fd5b8135611a7b81611997565b9392505050565b60008060208385031215611a9557600080fd5b823567ffffffffffffffff80821115611aad57600080fd5b818501915085601f830112611ac157600080fd5b813581811115611ad057600080fd5b8660208260051b8501011115611ae557600080fd5b60209290920196919550909350505050565b60008060008060608587031215611b0d57600080fd5b8435935060208501359250604085013567ffffffffffffffff80821115611b3357600080fd5b818701915087601f830112611b4757600080fd5b813581811115611b5657600080fd5b886020828501011115611b6857600080fd5b95989497505060200194505050565b60008060408385031215611b8a57600080fd5b8235611b9581611997565b91506020830135611ba581611997565b809150509250929050565b600181811c90821680611bc457607f821691505b602082108103611be457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561088557610885611bea565b600060208284031215611c2557600080fd5b81518015158114611a7b57600080fd5b634e487b7160e01b600052603260045260246000fd5b600060018201611c5d57611c5d611bea565b5060010190565b808202811582820484141761088557610885611bea565b600082611c9857634e487b7160e01b600052601260045260246000fd5b500490565b84815283602082015260606040820152816060820152818360808301376000818301608090810191909152601f909201601f191601019392505050565b8181038181111561088557610885611bea565b600060208284031215611cff57600080fd5b8151611a7b81611997565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611d5a5784516001600160a01b031683529383019391830191600101611d35565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212205f34f418cd16d6aed99f35130249ce4250d7aaf9940f49e60e63ca616621eeee64736f6c63430008120033
Deployed Bytecode
0x6080604052600436106102a45760003560e01c806370a082311161016e578063a9059cbb116100cb578063dd62ed3e1161007f578063f2fde38b11610064578063f2fde38b14610777578063f887ea4014610797578063fbc02b9c146107bf57600080fd5b8063dd62ed3e14610711578063f14210a61461075757600080fd5b8063c68bb7ba116100b0578063c68bb7ba146106a1578063cf0c1395146106c1578063d34628cc146106f157600080fd5b8063a9059cbb14610661578063baa320211461068157600080fd5b8063918f86741161012257806395de76301161010757806395de7630146105ed5780639b4dc8cc1461060d578063a457c2d71461064157600080fd5b8063918f8674146105bc57806395d89b41146105d857600080fd5b80637162bb51116101535780637162bb51146105585780637e150d66146105885780638da5cb5b1461059e57600080fd5b806370a082311461050d578063715018a61461054357600080fd5b8063395093511161021c57806357376198116101d05780635c4ac548116101b55780635c4ac548146104b75780635d098b38146104cd5780636c3bbfd7146104ed57600080fd5b806357376198146104775780635a90a49e1461049757600080fd5b80633ff42b92116102015780633ff42b921461040e5780634abdefd51461044b57806354b81a711461046157600080fd5b806339509351146103d85780633fa814ee146103f857600080fd5b806318160ddd116102735780632242908511610258578063224290851461037c57806323b872dd1461039c578063313ce567146103bc57600080fd5b806318160ddd146103515780631d4eaead1461036657600080fd5b806306fdde03146102b0578063095ea7b3146102db5780630dc33c281461030b5780631298094a1461032d57600080fd5b366102ab57005b600080fd5b3480156102bc57600080fd5b506102c56107df565b6040516102d29190611949565b60405180910390f35b3480156102e757600080fd5b506102fb6102f63660046119ac565b610871565b60405190151581526020016102d2565b34801561031757600080fd5b5061032b6103263660046119d8565b61088b565b005b34801561033957600080fd5b50610343600b5481565b6040519081526020016102d2565b34801561035d57600080fd5b50600254610343565b34801561037257600080fd5b5061034360085481565b34801561038857600080fd5b5061032b6103973660046119f1565b610898565b3480156103a857600080fd5b506102fb6103b7366004611a1d565b610930565b3480156103c857600080fd5b50604051601281526020016102d2565b3480156103e457600080fd5b506102fb6103f33660046119ac565b610954565b34801561040457600080fd5b50610343600d5481565b34801561041a57600080fd5b506009546104339061010090046001600160a01b031681565b6040516001600160a01b0390911681526020016102d2565b34801561045757600080fd5b5061034360065481565b34801561046d57600080fd5b50610343600c5481565b34801561048357600080fd5b5061032b6104923660046119ac565b610993565b3480156104a357600080fd5b5061032b6104b2366004611a5e565b610a4a565b3480156104c357600080fd5b5061034360075481565b3480156104d957600080fd5b5061032b6104e8366004611a5e565b610a76565b3480156104f957600080fd5b5061032b610508366004611a82565b610ada565b34801561051957600080fd5b50610343610528366004611a5e565b6001600160a01b031660009081526020819052604090205490565b34801561054f57600080fd5b5061032b610b54565b34801561056457600080fd5b506102fb610573366004611a5e565b600f6020526000908152604090205460ff1681565b34801561059457600080fd5b50610343600a5481565b3480156105aa57600080fd5b506005546001600160a01b0316610433565b3480156105c857600080fd5b50610343670de0b6b3a764000081565b3480156105e457600080fd5b506102c5610b68565b3480156105f957600080fd5b5061032b6106083660046119d8565b610b77565b34801561061957600080fd5b506104337f000000000000000000000000358d170b677b327003be54e7faab4b404509589781565b34801561064d57600080fd5b506102fb61065c3660046119ac565b610b84565b34801561066d57600080fd5b506102fb61067c3660046119ac565b610c2e565b34801561068d57600080fd5b5061032b61069c366004611af7565b610c3c565b3480156106ad57600080fd5b5061032b6106bc3660046119d8565b610e4b565b3480156106cd57600080fd5b506102fb6106dc366004611a5e565b600e6020526000908152604090205460ff1681565b3480156106fd57600080fd5b5061032b61070c366004611a82565b610e58565b34801561071d57600080fd5b5061034361072c366004611b77565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561076357600080fd5b5061032b6107723660046119d8565b610ed2565b34801561078357600080fd5b5061032b610792366004611a5e565b610f18565b3480156107a357600080fd5b50610433737a250d5630b4cf539739df2c5dacb4c659f2488d81565b3480156107cb57600080fd5b5061032b6107da366004611a5e565b610fa8565b6060600380546107ee90611bb0565b80601f016020809104026020016040519081016040528092919081815260200182805461081a90611bb0565b80156108675780601f1061083c57610100808354040283529160200191610867565b820191906000526020600020905b81548152906001019060200180831161084a57829003601f168201915b5050505050905090565b60003361087f818585610fd1565b60019150505b92915050565b610893611129565b600c55565b6108a0611129565b670de0b6b3a7640000831080156108be5750670de0b6b3a764000082105b80156108d15750670de0b6b3a764000081105b6109225760405162461bcd60e51b815260206004820152600b60248201527f496e76616c69642066656500000000000000000000000000000000000000000060448201526064015b60405180910390fd5b600692909255600755600855565b60003361093e858285611183565b610949858585611215565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061087f908290869061098e908790611c00565b610fd1565b61099b611129565b816001600160a01b031663a9059cbb6109bc6005546001600160a01b031690565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af1158015610a21573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a459190611c13565b505050565b610a52611129565b6001600160a01b03166000908152600e60205260409020805460ff19166001179055565b610a7e611129565b600980547fffffffffffffffffffffff0000000000000000000000000000000000000000ff166101006001600160a01b03938416810291909117918290559004166000908152600e60205260409020805460ff19166001179055565b610ae2611129565b60005b81811015610a45576000600f6000858585818110610b0557610b05611c35565b9050602002016020810190610b1a9190611a5e565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610b4c81611c4b565b915050610ae5565b610b5c611129565b610b666000611431565b565b6060600480546107ee90611bb0565b610b7f611129565b600b55565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610c215760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610919565b6109498286868403610fd1565b60003361087f818585611215565b610c44611129565b670429d069189e00008310610c9b5760405162461bcd60e51b815260206004820152601b60248201527f496e76616c696420696e6372656173652070657263656e7461676500000000006044820152606401610919565b600c54600d54610cab9190611c00565b4211610cf95760405162461bcd60e51b815260206004820152600f60248201527f4e6f742079657420616c6c6f77656400000000000000000000000000000000006044820152606401610919565b42600d557f000000000000000000000000358d170b677b327003be54e7faab4b40450958976001600160a01b031660009081526020819052604081205490610d4985670de0b6b3a7640000611c00565b610d538684611c64565b610d5d9190611c7b565b90508015610e0657610d927f000000000000000000000000358d170b677b327003be54e7faab4b404509589761dead8361149b565b7f000000000000000000000000358d170b677b327003be54e7faab4b40450958976001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610ded57600080fd5b505af1158015610e01573d6000803e3d6000fd5b505050505b7f8e17a3dd7538cf89fa81c2704c66aef1bcf5e4c6b740be17732fb53aa4a7c07586828686604051610e3b9493929190611c9d565b60405180910390a1505050505050565b610e53611129565b600a55565b610e60611129565b60005b81811015610a45576001600f6000858585818110610e8357610e83611c35565b9050602002016020810190610e989190611a5e565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610eca81611c4b565b915050610e63565b610eda611129565b6005546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610f14573d6000803e3d6000fd5b5050565b610f20611129565b6001600160a01b038116610f9c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610919565b610fa581611431565b50565b610fb0611129565b6001600160a01b03166000908152600e60205260409020805460ff19169055565b6001600160a01b03831661104c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610919565b6001600160a01b0382166110c85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610919565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610b665760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610919565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461120f57818110156112025760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610919565b61120f8484848403610fd1565b50505050565b60095460ff161561122b57610a4583838361149b565b6001600160a01b0383166000908152600f602052604090205460ff16156112945760405162461bcd60e51b815260206004820152600b60248201527f426f7420616464726573730000000000000000000000000000000000000000006044820152606401610919565b60007f000000000000000000000000358d170b677b327003be54e7faab4b40450958976001600160a01b0316846001600160a01b03161480156112f057506001600160a01b0383166000908152600e602052604090205460ff16155b905060007f000000000000000000000000358d170b677b327003be54e7faab4b40450958976001600160a01b0316846001600160a01b031614801561134e57506001600160a01b0385166000908152600e602052604090205460ff16155b905081806113595750805b1561141f576000600a54116113b05760405162461bcd60e51b815260206004820152601760248201527f54726164696e67206e6f742079657420656e61626c65640000000000000000006044820152606401610919565b600a548311156114025760405162461bcd60e51b815260206004820181905260248201527f45786365656473206d6178696d756d207472616e73616374696f6e2073697a656044820152606401610919565b600061140f868585611688565b905061141b8185611cda565b9350505b61142a85858561149b565b5050505050565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166115175760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610919565b6001600160a01b0382166115935760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610919565b6001600160a01b038316600090815260208190526040902054818110156116225760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610919565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361120f565b600080670de0b6b3a7640000600854856116a29190611c64565b6116ac9190611c7b565b90506116bb8561dead8361149b565b6000670de0b6b3a764000085856116d4576007546116d8565b6006545b6116e29190611c64565b6116ec9190611c7b565b90506116f986308361149b565b836117065761170661171a565b6117108282611c00565b9695505050505050565b30600090815260208190526040808220547f000000000000000000000000358d170b677b327003be54e7faab4b40450958976001600160a01b03168352908220549091611770670de0b6b3a76400006002611c64565b600b5461177d9084611c64565b6117879190611c7b565b905080831115611795578092505b826000036117a257505050565b6009805460ff1916600117905560408051600280825260608201835260009260208301908036833701905050905030816000815181106117e4576117e4611c35565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611856573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061187a9190611ced565b8160018151811061188d5761188d611c35565b6001600160a01b0392831660209182029290920101526009546040517f791ac947000000000000000000000000000000000000000000000000000000008152737a250d5630b4cf539739df2c5dacb4c659f2488d9263791ac947926119079289926000928892610100909104909116904290600401611d0a565b600060405180830381600087803b15801561192157600080fd5b505af1158015611935573d6000803e3d6000fd5b50506009805460ff19169055505050505050565b600060208083528351808285015260005b818110156119765785810183015185820160400152820161195a565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610fa557600080fd5b600080604083850312156119bf57600080fd5b82356119ca81611997565b946020939093013593505050565b6000602082840312156119ea57600080fd5b5035919050565b600080600060608486031215611a0657600080fd5b505081359360208301359350604090920135919050565b600080600060608486031215611a3257600080fd5b8335611a3d81611997565b92506020840135611a4d81611997565b929592945050506040919091013590565b600060208284031215611a7057600080fd5b8135611a7b81611997565b9392505050565b60008060208385031215611a9557600080fd5b823567ffffffffffffffff80821115611aad57600080fd5b818501915085601f830112611ac157600080fd5b813581811115611ad057600080fd5b8660208260051b8501011115611ae557600080fd5b60209290920196919550909350505050565b60008060008060608587031215611b0d57600080fd5b8435935060208501359250604085013567ffffffffffffffff80821115611b3357600080fd5b818701915087601f830112611b4757600080fd5b813581811115611b5657600080fd5b886020828501011115611b6857600080fd5b95989497505060200194505050565b60008060408385031215611b8a57600080fd5b8235611b9581611997565b91506020830135611ba581611997565b809150509250929050565b600181811c90821680611bc457607f821691505b602082108103611be457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561088557610885611bea565b600060208284031215611c2557600080fd5b81518015158114611a7b57600080fd5b634e487b7160e01b600052603260045260246000fd5b600060018201611c5d57611c5d611bea565b5060010190565b808202811582820484141761088557610885611bea565b600082611c9857634e487b7160e01b600052601260045260246000fd5b500490565b84815283602082015260606040820152816060820152818360808301376000818301608090810191909152601f909201601f191601019392505050565b8181038181111561088557610885611bea565b600060208284031215611cff57600080fd5b8151611a7b81611997565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611d5a5784516001600160a01b031683529383019391830191600101611d35565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212205f34f418cd16d6aed99f35130249ce4250d7aaf9940f49e60e63ca616621eeee64736f6c63430008120033
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.