More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 347 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 21434993 | 38 days ago | IN | 0 ETH | 0.00028662 | ||||
Approve | 21257214 | 63 days ago | IN | 0 ETH | 0.00024119 | ||||
Approve | 21237546 | 66 days ago | IN | 0 ETH | 0.00063768 | ||||
Transfer | 21230595 | 67 days ago | IN | 0 ETH | 0.00129248 | ||||
Approve | 21220574 | 68 days ago | IN | 0 ETH | 0.0005356 | ||||
Transfer | 21196663 | 71 days ago | IN | 0 ETH | 0.00136147 | ||||
Transfer | 21195952 | 71 days ago | IN | 0 ETH | 0.00202064 | ||||
Transfer | 21195799 | 71 days ago | IN | 0 ETH | 0.00230951 | ||||
Approve | 21135869 | 80 days ago | IN | 0 ETH | 0.00071671 | ||||
Approve | 21099659 | 85 days ago | IN | 0 ETH | 0.0002337 | ||||
Approve | 21052218 | 91 days ago | IN | 0 ETH | 0.00020839 | ||||
Approve | 20984754 | 101 days ago | IN | 0 ETH | 0.00075547 | ||||
Approve | 20937171 | 107 days ago | IN | 0 ETH | 0.00072756 | ||||
Approve | 20918408 | 110 days ago | IN | 0 ETH | 0.00077295 | ||||
Approve | 20893745 | 114 days ago | IN | 0 ETH | 0.00044248 | ||||
Approve | 20889129 | 114 days ago | IN | 0 ETH | 0.00045936 | ||||
Approve | 20887959 | 114 days ago | IN | 0 ETH | 0.00028721 | ||||
Approve | 20875315 | 116 days ago | IN | 0 ETH | 0.00026505 | ||||
Approve | 20870634 | 117 days ago | IN | 0 ETH | 0.00090697 | ||||
Approve | 20869046 | 117 days ago | IN | 0 ETH | 0.00071345 | ||||
Approve | 20869041 | 117 days ago | IN | 0 ETH | 0.00071931 | ||||
Approve | 20868984 | 117 days ago | IN | 0 ETH | 0.00121752 | ||||
Approve | 20868942 | 117 days ago | IN | 0 ETH | 0.00097633 | ||||
Approve | 20868938 | 117 days ago | IN | 0 ETH | 0.00095836 | ||||
Approve | 20867668 | 117 days ago | IN | 0 ETH | 0.00035867 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
MeanderToken
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity =0.8.24; /* Meander ($MNDR) Protocol Website: https://meander.finance Twitter: https://twitter.com/MeanderETH Telegram: https://t.me/MeanderETH */ import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "./interfaces/IUniswapV2Factory.sol"; import "./interfaces/IUniswapV2Router02.sol"; import "./interfaces/IMeanderSwapManager.sol"; contract MeanderToken is ERC20Burnable, Ownable { using SafeMath for uint; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public immutable WETH; address public constant deadAddress = address(0xdead); bool private swapping; address public marketingWallet; address public rewardsWallet; IMeanderSwapManager public swapManager; uint public maxTransactionAmount; uint public swapTokensAtAmount; uint public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; uint public launchBlock; uint public delayBlocks = 20; uint public totalFees; uint public marketingFee; uint public rewardsFee; uint public tokensForMarketing; uint public tokensForRewards; // exclude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) private _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event SwapManagerUpdated( address indexed newManager, address indexed oldManager ); event MarketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event RewardsWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndCollect( uint tokensSwapped, uint wethIntoMarketing, uint wethIntoRewards ); constructor( address _router, address _marketingWallet, address _rewardsWallet ) ERC20("Meander", "MNDR") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(_router); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; WETH = _uniswapV2Router.WETH(); address pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), WETH); uniswapV2Pair = pair; excludeFromMaxTransaction(pair, true); _setAutomatedMarketMakerPair(pair, true); uint totalSupply = 175_000 * 1e18; maxTransactionAmount = totalSupply / 100; // 1% of total supply maxWallet = totalSupply / 50; // 2% of total supply swapTokensAtAmount = totalSupply / 2000; marketingFee = 20; // 20% for launch, 2% afterwards rewardsFee = 20; // 20% for launch, 1% afterwards totalFees = marketingFee + rewardsFee; marketingWallet = address(_marketingWallet); rewardsWallet = address(_rewardsWallet); // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(deadAddress, true); excludeFromFees(marketingWallet, true); excludeFromFees(rewardsWallet, true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(deadAddress, true); excludeFromMaxTransaction(marketingWallet, true); excludeFromMaxTransaction(rewardsWallet, true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } // once enabled, can never be turned off function enableTrading() external onlyOwner { require ( address(swapManager) != address(0), "Need to set swap manager" ); tradingActive = true; swapEnabled = true; launchBlock = block.number; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxWallet lower than 0.5%" ); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function updateSwapManager(address newManager) external onlyOwner { emit SwapManagerUpdated(newManager, address(swapManager)); swapManager = IMeanderSwapManager(newManager); excludeFromFees(newManager, true); excludeFromMaxTransaction(newManager, true); } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateMarketingWallet(address newMarketingWallet) external onlyOwner { emit MarketingWalletUpdated(newMarketingWallet, marketingWallet); marketingWallet = newMarketingWallet; excludeFromFees(marketingWallet, true); excludeFromMaxTransaction(marketingWallet, true); } function updateRewardsWallet(address newRewardsWallet) external onlyOwner { emit RewardsWalletUpdated(newRewardsWallet, rewardsWallet); rewardsWallet = newRewardsWallet; excludeFromFees(rewardsWallet, true); excludeFromMaxTransaction(rewardsWallet, true); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { if (totalFees != 3 && launchBlock + delayBlocks < block.number) { marketingFee = 2; rewardsFee = 1; totalFees = 3; } if ((automatedMarketMakerPairs[to] || automatedMarketMakerPairs[from]) && totalFees > 0) { fees = amount.mul(totalFees).div(100); tokensForMarketing += (fees * marketingFee) / totalFees; tokensForRewards += (fees * rewardsFee) / totalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapBack() private { uint contractBalance = balanceOf(address(this)); uint totalTokensToSwap = tokensForMarketing + tokensForRewards; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 5) { contractBalance = swapTokensAtAmount * 5; } uint amountToSwapForWeth = contractBalance; uint initialWethBalance = IERC20(WETH).balanceOf(address(this)); _approve(address(this), address(swapManager), amountToSwapForWeth); swapManager.swapToWeth(address(this), amountToSwapForWeth); uint wethDelta = IERC20(WETH).balanceOf(address(this)).sub(initialWethBalance); uint wethForMarketing = wethDelta.mul(tokensForMarketing).div(totalTokensToSwap); uint wethForRewards = wethDelta - wethForMarketing; tokensForMarketing = 0; tokensForRewards = 0; IERC20(WETH).transfer(marketingWallet, wethForMarketing); IERC20(WETH).transfer(rewardsWallet, wethForRewards); emit SwapAndCollect( amountToSwapForWeth, wethForMarketing, wethForRewards ); } function rescueTokens(address _token) external onlyOwner { require(_token != address(this), "Can not rescue own token!"); IERC20(_token).transfer(owner(), IERC20(_token).balanceOf(address(this))); } }
// 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 (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../utils/Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } }
// 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.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IMeanderSwapManager { function swapToWeth(address token, uint tokenAmount) external; function addLiquidity(address token, uint tokenAmount, uint wethAmount) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns ( uint amountA, uint amountB, uint liquidity ); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns ( uint amountToken, uint amountETH, uint liquidity ); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
{ "evmVersion": "paris", "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_router","type":"address"},{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_rewardsWallet","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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"MarketingWalletUpdated","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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"RewardsWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"wethIntoMarketing","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"wethIntoRewards","type":"uint256"}],"name":"SwapAndCollect","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newManager","type":"address"},{"indexed":true,"internalType":"address","name":"oldManager","type":"address"}],"name":"SwapManagerUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"delayBlocks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"rescueTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapManager","outputs":[{"internalType":"contract IMeanderSwapManager","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRewardsWallet","type":"address"}],"name":"updateRewardsWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newManager","type":"address"}],"name":"updateSwapManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e06040526001600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff0219169083151502179055506000600c60026101000a81548160ff0219169083151502179055506014600e553480156200006757600080fd5b50604051620055013803806200550183398181016040528101906200008d919062000b34565b6040518060400160405280600781526020017f4d65616e646572000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d4e44520000000000000000000000000000000000000000000000000000000081525081600390816200010a919062000e0a565b5080600490816200011c919062000e0a565b5050506200013f620001336200060360201b60201c565b6200060b60201b60201c565b600083905062000157816001620006d160201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001d7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001fd919062000ef1565b73ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff168152505060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200027e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a4919062000ef1565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060c0516040518363ffffffff1660e01b8152600401620002e292919062000f34565b6020604051808303816000875af115801562000302573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000328919062000ef1565b90508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff168152505062000371816001620006d160201b60201c565b620003848160016200073c60201b60201c565b600069250ec4ddca432f6000009050606481620003a2919062000fbf565b600981905550603281620003b7919062000fbf565b600b819055506107d081620003cd919062000fbf565b600a8190555060146010819055506014601181905550601154601054620003f5919062000ff7565b600f8190555084600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200049f62000491620007dd60201b60201c565b60016200080760201b60201c565b620004b23060016200080760201b60201c565b620004c761dead60016200080760201b60201c565b620004fc600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200080760201b60201c565b62000531600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200080760201b60201c565b6200055362000545620007dd60201b60201c565b6001620006d160201b60201c565b62000566306001620006d160201b60201c565b6200057b61dead6001620006d160201b60201c565b620005b0600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620006d160201b60201c565b620005e5600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620006d160201b60201c565b620005f73382620008c260201b60201c565b5050505050506200118f565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006e162000a2f60201b60201c565b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200081762000a2f60201b60201c565b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620008b691906200104f565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000934576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200092b90620010cd565b60405180910390fd5b620009486000838362000ac060201b60201c565b80600260008282546200095c919062000ff7565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a0f919062001100565b60405180910390a362000a2b6000838362000ac560201b60201c565b5050565b62000a3f6200060360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000a65620007dd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000abe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ab5906200116d565b60405180910390fd5b565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000afc8262000acf565b9050919050565b62000b0e8162000aef565b811462000b1a57600080fd5b50565b60008151905062000b2e8162000b03565b92915050565b60008060006060848603121562000b505762000b4f62000aca565b5b600062000b608682870162000b1d565b935050602062000b738682870162000b1d565b925050604062000b868682870162000b1d565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000c1257607f821691505b60208210810362000c285762000c2762000bca565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000c927fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000c53565b62000c9e868362000c53565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000ceb62000ce562000cdf8462000cb6565b62000cc0565b62000cb6565b9050919050565b6000819050919050565b62000d078362000cca565b62000d1f62000d168262000cf2565b84845462000c60565b825550505050565b600090565b62000d3662000d27565b62000d4381848462000cfc565b505050565b5b8181101562000d6b5762000d5f60008262000d2c565b60018101905062000d49565b5050565b601f82111562000dba5762000d848162000c2e565b62000d8f8462000c43565b8101602085101562000d9f578190505b62000db762000dae8562000c43565b83018262000d48565b50505b505050565b600082821c905092915050565b600062000ddf6000198460080262000dbf565b1980831691505092915050565b600062000dfa838362000dcc565b9150826002028217905092915050565b62000e158262000b90565b67ffffffffffffffff81111562000e315762000e3062000b9b565b5b62000e3d825462000bf9565b62000e4a82828562000d6f565b600060209050601f83116001811462000e82576000841562000e6d578287015190505b62000e79858262000dec565b86555062000ee9565b601f19841662000e928662000c2e565b60005b8281101562000ebc5784890151825560018201915060208501945060208101905062000e95565b8683101562000edc578489015162000ed8601f89168262000dcc565b8355505b6001600288020188555050505b505050505050565b60006020828403121562000f0a5762000f0962000aca565b5b600062000f1a8482850162000b1d565b91505092915050565b62000f2e8162000aef565b82525050565b600060408201905062000f4b600083018562000f23565b62000f5a602083018462000f23565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000fcc8262000cb6565b915062000fd98362000cb6565b92508262000fec5762000feb62000f61565b5b828204905092915050565b6000620010048262000cb6565b9150620010118362000cb6565b92508282019050808211156200102c576200102b62000f90565b5b92915050565b60008115159050919050565b620010498162001032565b82525050565b60006020820190506200106660008301846200103e565b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620010b5601f836200106c565b9150620010c2826200107d565b602082019050919050565b60006020820190508181036000830152620010e881620010a6565b9050919050565b620010fa8162000cb6565b82525050565b6000602082019050620011176000830184620010ef565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620011556020836200106c565b915062001162826200111d565b602082019050919050565b60006020820190508181036000830152620011888162001146565b9050919050565b60805160a05160c05161431f620011e26000396000818161140e01528181612bd801528181612d3601528181612e2b0152612eec015260008181610cf401526111b601526000610b96015261431f6000f3fe608060405234801561001057600080fd5b50600436106102f05760003560e01c80637571336a1161019d578063b62496f5116100e9578063d00efb2f116100a2578063e2f456051161007c578063e2f45605146108eb578063f2fde38b14610909578063f54afa7814610925578063f8b45b0514610943576102f0565b8063d00efb2f1461086d578063d257b34f1461088b578063dd62ed3e146108bb576102f0565b8063b62496f5146107ad578063bbc0c742146107dd578063c0246668146107fb578063c18bc19514610817578063c8c8ebe414610833578063cfc0d02414610851576102f0565b806395d89b4111610156578063a9059cbb11610130578063a9059cbb14610725578063aacebbe314610755578063ad5c464814610771578063ad9c0c2e1461078f576102f0565b806395d89b41146106bb5780639a7a23d6146106d9578063a457c2d7146106f5576102f0565b80637571336a1461062157806375f0a8741461063d57806379cc67901461065b5780638a8c523c146106775780638da5cb5b14610681578063924de9b71461069f576102f0565b8063395093511161025c5780635b35f9c911610215578063709d039d116101ef578063709d039d146105ab57806370a08231146105c9578063715018a6146105f9578063751039fc14610603576102f0565b80635b35f9c9146105515780636b67c4df1461056f5780636ddd17131461058d576102f0565b8063395093511461047d57806342966c68146104ad57806349bd5a5e146104c95780634a62bb65146104e75780634c36fad7146105055780634fbee19314610521576102f0565b80631f3fed8f116102ae5780631f3fed8f146103b9578063203e727e146103d757806323b872dd146103f357806327c8f835146104235780632bb14e1d14610441578063313ce5671461045f576102f0565b8062ae3bf8146102f557806306fdde0314610311578063095ea7b31461032f57806313114a9d1461035f5780631694505e1461037d57806318160ddd1461039b575b600080fd5b61030f600480360381019061030a919061309f565b610961565b005b610319610ad9565b604051610326919061315c565b60405180910390f35b610349600480360381019061034491906131b4565b610b6b565b604051610356919061320f565b60405180910390f35b610367610b8e565b6040516103749190613239565b60405180910390f35b610385610b94565b60405161039291906132b3565b60405180910390f35b6103a3610bb8565b6040516103b09190613239565b60405180910390f35b6103c1610bc2565b6040516103ce9190613239565b60405180910390f35b6103f160048036038101906103ec91906132ce565b610bc8565b005b61040d600480360381019061040891906132fb565b610c63565b60405161041a919061320f565b60405180910390f35b61042b610c92565b604051610438919061335d565b60405180910390f35b610449610c98565b6040516104569190613239565b60405180910390f35b610467610c9e565b6040516104749190613394565b60405180910390f35b610497600480360381019061049291906131b4565b610ca7565b6040516104a4919061320f565b60405180910390f35b6104c760048036038101906104c291906132ce565b610cde565b005b6104d1610cf2565b6040516104de919061335d565b60405180910390f35b6104ef610d16565b6040516104fc919061320f565b60405180910390f35b61051f600480360381019061051a919061309f565b610d29565b005b61053b6004803603810190610536919061309f565b610e07565b604051610548919061320f565b60405180910390f35b610559610e5d565b604051610566919061335d565b60405180910390f35b610577610e83565b6040516105849190613239565b60405180910390f35b610595610e89565b6040516105a2919061320f565b60405180910390f35b6105b3610e9c565b6040516105c091906133d0565b60405180910390f35b6105e360048036038101906105de919061309f565b610ec2565b6040516105f09190613239565b60405180910390f35b610601610f0a565b005b61060b610f1e565b604051610618919061320f565b60405180910390f35b61063b60048036038101906106369190613417565b610f4a565b005b610645610fad565b604051610652919061335d565b60405180910390f35b610675600480360381019061067091906131b4565b610fd3565b005b61067f610ff3565b005b6106896110cb565b604051610696919061335d565b60405180910390f35b6106b960048036038101906106b49190613457565b6110f5565b005b6106c361111a565b6040516106d0919061315c565b60405180910390f35b6106f360048036038101906106ee9190613417565b6111ac565b005b61070f600480360381019061070a91906131b4565b611250565b60405161071c919061320f565b60405180910390f35b61073f600480360381019061073a91906131b4565b6112c7565b60405161074c919061320f565b60405180910390f35b61076f600480360381019061076a919061309f565b6112ea565b005b61077961140c565b604051610786919061335d565b60405180910390f35b610797611430565b6040516107a49190613239565b60405180910390f35b6107c760048036038101906107c2919061309f565b611436565b6040516107d4919061320f565b60405180910390f35b6107e5611456565b6040516107f2919061320f565b60405180910390f35b61081560048036038101906108109190613417565b611469565b005b610831600480360381019061082c91906132ce565b61151a565b005b61083b6115b5565b6040516108489190613239565b60405180910390f35b61086b6004803603810190610866919061309f565b6115bb565b005b6108756116dd565b6040516108829190613239565b60405180910390f35b6108a560048036038101906108a091906132ce565b6116e3565b6040516108b2919061320f565b60405180910390f35b6108d560048036038101906108d09190613484565b6117c4565b6040516108e29190613239565b60405180910390f35b6108f361184b565b6040516109009190613239565b60405180910390f35b610923600480360381019061091e919061309f565b611851565b005b61092d6118d4565b60405161093a9190613239565b60405180910390f35b61094b6118da565b6040516109589190613239565b60405180910390f35b6109696118e0565b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ce90613510565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6109fb6110cb565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610a34919061335d565b602060405180830381865afa158015610a51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a759190613545565b6040518363ffffffff1660e01b8152600401610a92929190613572565b6020604051808303816000875af1158015610ab1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad591906135b0565b5050565b606060038054610ae89061360c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b149061360c565b8015610b615780601f10610b3657610100808354040283529160200191610b61565b820191906000526020600020905b815481529060010190602001808311610b4457829003601f168201915b5050505050905090565b600080610b7661195e565b9050610b83818585611966565b600191505092915050565b600f5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60125481565b610bd06118e0565b670de0b6b3a76400006103e86001610be6610bb8565b610bf0919061366c565b610bfa91906136dd565b610c0491906136dd565b811015610c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3d90613780565b60405180910390fd5b670de0b6b3a764000081610c5a919061366c565b60098190555050565b600080610c6e61195e565b9050610c7b858285611b2f565b610c86858585611bbb565b60019150509392505050565b61dead81565b60115481565b60006012905090565b600080610cb261195e565b9050610cd3818585610cc485896117c4565b610cce91906137a0565b611966565b600191505092915050565b610cef610ce961195e565b826125c1565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b600c60009054906101000a900460ff1681565b610d316118e0565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fb3fd0123f0059326c0d3771de6b52f7cc07866caff01a05b16473ae87d382bf960405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610df9816001611469565b610e04816001610f4a565b50565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b600c60029054906101000a900460ff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f126118e0565b610f1c600061278e565b565b6000610f286118e0565b6000600c60006101000a81548160ff0219169083151502179055506001905090565b610f526118e0565b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610fe582610fdf61195e565b83611b2f565b610fef82826125c1565b5050565b610ffb6118e0565b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361108c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108390613820565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff02191690831515021790555043600d81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110fd6118e0565b80600c60026101000a81548160ff02191690831515021790555050565b6060600480546111299061360c565b80601f01602080910402602001604051908101604052809291908181526020018280546111559061360c565b80156111a25780601f10611177576101008083540402835291602001916111a2565b820191906000526020600020905b81548152906001019060200180831161118557829003601f168201915b5050505050905090565b6111b46118e0565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611242576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611239906138b2565b60405180910390fd5b61124c8282612854565b5050565b60008061125b61195e565b9050600061126982866117c4565b9050838110156112ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a590613944565b60405180910390fd5b6112bb8286868403611966565b60019250505092915050565b6000806112d261195e565b90506112df818585611bbb565b600191505092915050565b6112f26118e0565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6760405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506113dc600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001611469565b611409600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001610f4a565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b600e5481565b60166020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b6114716118e0565b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161150e919061320f565b60405180910390a25050565b6115226118e0565b670de0b6b3a76400006103e86005611538610bb8565b611542919061366c565b61154c91906136dd565b61155691906136dd565b811015611598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158f906139d6565b60405180910390fd5b670de0b6b3a7640000816115ac919061366c565b600b8190555050565b60095481565b6115c36118e0565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f85710b1053f40e0d492d81001a623cd191d251fed32881e7bb80fc1b66a6e46360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506116ad600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001611469565b6116da600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001610f4a565b50565b600d5481565b60006116ed6118e0565b620186a060016116fb610bb8565b611705919061366c565b61170f91906136dd565b821015611751576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174890613a68565b60405180910390fd5b6103e8600561175e610bb8565b611768919061366c565b61177291906136dd565b8211156117b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ab90613afa565b60405180910390fd5b81600a8190555060019050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b6118596118e0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bf90613b8c565b60405180910390fd5b6118d18161278e565b50565b60135481565b600b5481565b6118e861195e565b73ffffffffffffffffffffffffffffffffffffffff166119066110cb565b73ffffffffffffffffffffffffffffffffffffffff161461195c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195390613bf8565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cc90613c8a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3b90613d1c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611b229190613239565b60405180910390a3505050565b6000611b3b84846117c4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611bb55781811015611ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9e90613d88565b60405180910390fd5b611bb48484848403611966565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2190613e1a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9090613eac565b60405180910390fd5b60008103611cb257611cad838360006128f5565b6125bc565b600c60009054906101000a900460ff16156121ad57611ccf6110cb565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611d3d5750611d0d6110cb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d765750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611db0575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611dc95750600560149054906101000a900460ff16155b156121ac57600c60019054906101000a900460ff16611ec357601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611e835750601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb990613f18565b60405180910390fd5b5b601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611f665750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561200d57600954811115611fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa790613faa565b60405180910390fd5b600b54611fbc83610ec2565b82611fc791906137a0565b1115612008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fff90614016565b60405180910390fd5b6121ab565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156120b05750601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156120ff576009548111156120fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f1906140a8565b60405180910390fd5b6121aa565b601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166121a957600b5461215c83610ec2565b8261216791906137a0565b11156121a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219f90614016565b60405180910390fd5b5b5b5b5b5b60006121b830610ec2565b90506000600a5482101590508080156121dd5750600c60029054906101000a900460ff165b80156121f65750600560149054906101000a900460ff16155b801561224c5750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122a25750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122f85750601460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561233c576001600560146101000a81548160ff021916908315150217905550612320612b6b565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123f25750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156123fc57600090505b600081156125ac576003600f5414158015612425575043600e54600d5461242391906137a0565b105b1561244357600260108190555060016011819055506003600f819055505b601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806124e45750601660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156124f257506000600f54115b156125885761251f6064612511600f5488612ff090919063ffffffff16565b61300690919063ffffffff16565b9050600f5460105482612532919061366c565b61253c91906136dd565b6012600082825461254d91906137a0565b92505081905550600f5460115482612565919061366c565b61256f91906136dd565b6013600082825461258091906137a0565b925050819055505b600081111561259d5761259c8730836128f5565b5b80856125a991906140c8565b94505b6125b78787876128f5565b505050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612630576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126279061416e565b60405180910390fd5b61263c8260008361301c565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156126c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b990614200565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516127759190613239565b60405180910390a361278983600084613021565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295b90613e1a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036129d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ca90613eac565b60405180910390fd5b6129de83838361301c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5b90614292565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612b529190613239565b60405180910390a3612b65848484613021565b50505050565b6000612b7630610ec2565b90506000601354601254612b8a91906137a0565b90506000821480612b9b5750600081145b15612ba7575050612fee565b6005600a54612bb6919061366c565b821115612bcf576005600a54612bcc919061366c565b91505b600082905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401612c2f919061335d565b602060405180830381865afa158015612c4c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c709190613545565b9050612c9f30600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611966565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fd3386b030846040518363ffffffff1660e01b8152600401612cfc929190613572565b600060405180830381600087803b158015612d1657600080fd5b505af1158015612d2a573d6000803e3d6000fd5b505050506000612ddc827f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401612d8d919061335d565b602060405180830381865afa158015612daa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612dce9190613545565b61302690919063ffffffff16565b90506000612e0785612df960125485612ff090919063ffffffff16565b61300690919063ffffffff16565b905060008183612e1791906140c8565b9050600060128190555060006013819055507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b8152600401612ea6929190613572565b6020604051808303816000875af1158015612ec5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ee991906135b0565b507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401612f67929190613572565b6020604051808303816000875af1158015612f86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612faa91906135b0565b507fdba83212127c6cfa324c781344bcc47567742c24a9d980d7e2eabc6c7aa2d7e1858383604051612fde939291906142b2565b60405180910390a1505050505050505b565b60008183612ffe919061366c565b905092915050565b6000818361301491906136dd565b905092915050565b505050565b505050565b6000818361303491906140c8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061306c82613041565b9050919050565b61307c81613061565b811461308757600080fd5b50565b60008135905061309981613073565b92915050565b6000602082840312156130b5576130b461303c565b5b60006130c38482850161308a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156131065780820151818401526020810190506130eb565b60008484015250505050565b6000601f19601f8301169050919050565b600061312e826130cc565b61313881856130d7565b93506131488185602086016130e8565b61315181613112565b840191505092915050565b600060208201905081810360008301526131768184613123565b905092915050565b6000819050919050565b6131918161317e565b811461319c57600080fd5b50565b6000813590506131ae81613188565b92915050565b600080604083850312156131cb576131ca61303c565b5b60006131d98582860161308a565b92505060206131ea8582860161319f565b9150509250929050565b60008115159050919050565b613209816131f4565b82525050565b60006020820190506132246000830184613200565b92915050565b6132338161317e565b82525050565b600060208201905061324e600083018461322a565b92915050565b6000819050919050565b600061327961327461326f84613041565b613254565b613041565b9050919050565b600061328b8261325e565b9050919050565b600061329d82613280565b9050919050565b6132ad81613292565b82525050565b60006020820190506132c860008301846132a4565b92915050565b6000602082840312156132e4576132e361303c565b5b60006132f28482850161319f565b91505092915050565b6000806000606084860312156133145761331361303c565b5b60006133228682870161308a565b93505060206133338682870161308a565b92505060406133448682870161319f565b9150509250925092565b61335781613061565b82525050565b6000602082019050613372600083018461334e565b92915050565b600060ff82169050919050565b61338e81613378565b82525050565b60006020820190506133a96000830184613385565b92915050565b60006133ba82613280565b9050919050565b6133ca816133af565b82525050565b60006020820190506133e560008301846133c1565b92915050565b6133f4816131f4565b81146133ff57600080fd5b50565b600081359050613411816133eb565b92915050565b6000806040838503121561342e5761342d61303c565b5b600061343c8582860161308a565b925050602061344d85828601613402565b9150509250929050565b60006020828403121561346d5761346c61303c565b5b600061347b84828501613402565b91505092915050565b6000806040838503121561349b5761349a61303c565b5b60006134a98582860161308a565b92505060206134ba8582860161308a565b9150509250929050565b7f43616e206e6f7420726573637565206f776e20746f6b656e2100000000000000600082015250565b60006134fa6019836130d7565b9150613505826134c4565b602082019050919050565b60006020820190508181036000830152613529816134ed565b9050919050565b60008151905061353f81613188565b92915050565b60006020828403121561355b5761355a61303c565b5b600061356984828501613530565b91505092915050565b6000604082019050613587600083018561334e565b613594602083018461322a565b9392505050565b6000815190506135aa816133eb565b92915050565b6000602082840312156135c6576135c561303c565b5b60006135d48482850161359b565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061362457607f821691505b602082108103613637576136366135dd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136778261317e565b91506136828361317e565b92508282026136908161317e565b915082820484148315176136a7576136a661363d565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006136e88261317e565b91506136f38361317e565b925082613703576137026136ae565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061376a602f836130d7565b91506137758261370e565b604082019050919050565b600060208201905081810360008301526137998161375d565b9050919050565b60006137ab8261317e565b91506137b68361317e565b92508282019050808211156137ce576137cd61363d565b5b92915050565b7f4e65656420746f207365742073776170206d616e616765720000000000000000600082015250565b600061380a6018836130d7565b9150613815826137d4565b602082019050919050565b60006020820190508181036000830152613839816137fd565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061389c6039836130d7565b91506138a782613840565b604082019050919050565b600060208201905081810360008301526138cb8161388f565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061392e6025836130d7565b9150613939826138d2565b604082019050919050565b6000602082019050818103600083015261395d81613921565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006139c06024836130d7565b91506139cb82613964565b604082019050919050565b600060208201905081810360008301526139ef816139b3565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613a526035836130d7565b9150613a5d826139f6565b604082019050919050565b60006020820190508181036000830152613a8181613a45565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613ae46034836130d7565b9150613aef82613a88565b604082019050919050565b60006020820190508181036000830152613b1381613ad7565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b766026836130d7565b9150613b8182613b1a565b604082019050919050565b60006020820190508181036000830152613ba581613b69565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613be26020836130d7565b9150613bed82613bac565b602082019050919050565b60006020820190508181036000830152613c1181613bd5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613c746024836130d7565b9150613c7f82613c18565b604082019050919050565b60006020820190508181036000830152613ca381613c67565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d066022836130d7565b9150613d1182613caa565b604082019050919050565b60006020820190508181036000830152613d3581613cf9565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613d72601d836130d7565b9150613d7d82613d3c565b602082019050919050565b60006020820190508181036000830152613da181613d65565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613e046025836130d7565b9150613e0f82613da8565b604082019050919050565b60006020820190508181036000830152613e3381613df7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613e966023836130d7565b9150613ea182613e3a565b604082019050919050565b60006020820190508181036000830152613ec581613e89565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613f026016836130d7565b9150613f0d82613ecc565b602082019050919050565b60006020820190508181036000830152613f3181613ef5565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613f946035836130d7565b9150613f9f82613f38565b604082019050919050565b60006020820190508181036000830152613fc381613f87565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006140006013836130d7565b915061400b82613fca565b602082019050919050565b6000602082019050818103600083015261402f81613ff3565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006140926036836130d7565b915061409d82614036565b604082019050919050565b600060208201905081810360008301526140c181614085565b9050919050565b60006140d38261317e565b91506140de8361317e565b92508282039050818111156140f6576140f561363d565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006141586021836130d7565b9150614163826140fc565b604082019050919050565b600060208201905081810360008301526141878161414b565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006141ea6022836130d7565b91506141f58261418e565b604082019050919050565b60006020820190508181036000830152614219816141dd565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061427c6026836130d7565b915061428782614220565b604082019050919050565b600060208201905081810360008301526142ab8161426f565b9050919050565b60006060820190506142c7600083018661322a565b6142d4602083018561322a565b6142e1604083018461322a565b94935050505056fea2646970667358221220bdfa8e8a6e9abd7631131df77e3db5316f6d6312eb4ddacd2b9d46751f60d1f464736f6c634300081800330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000b4b0337ff6c1eb1c1d6b1595190c558b8ec59663000000000000000000000000c50f80c5de28c89f6474d54e097002435c671b55
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102f05760003560e01c80637571336a1161019d578063b62496f5116100e9578063d00efb2f116100a2578063e2f456051161007c578063e2f45605146108eb578063f2fde38b14610909578063f54afa7814610925578063f8b45b0514610943576102f0565b8063d00efb2f1461086d578063d257b34f1461088b578063dd62ed3e146108bb576102f0565b8063b62496f5146107ad578063bbc0c742146107dd578063c0246668146107fb578063c18bc19514610817578063c8c8ebe414610833578063cfc0d02414610851576102f0565b806395d89b4111610156578063a9059cbb11610130578063a9059cbb14610725578063aacebbe314610755578063ad5c464814610771578063ad9c0c2e1461078f576102f0565b806395d89b41146106bb5780639a7a23d6146106d9578063a457c2d7146106f5576102f0565b80637571336a1461062157806375f0a8741461063d57806379cc67901461065b5780638a8c523c146106775780638da5cb5b14610681578063924de9b71461069f576102f0565b8063395093511161025c5780635b35f9c911610215578063709d039d116101ef578063709d039d146105ab57806370a08231146105c9578063715018a6146105f9578063751039fc14610603576102f0565b80635b35f9c9146105515780636b67c4df1461056f5780636ddd17131461058d576102f0565b8063395093511461047d57806342966c68146104ad57806349bd5a5e146104c95780634a62bb65146104e75780634c36fad7146105055780634fbee19314610521576102f0565b80631f3fed8f116102ae5780631f3fed8f146103b9578063203e727e146103d757806323b872dd146103f357806327c8f835146104235780632bb14e1d14610441578063313ce5671461045f576102f0565b8062ae3bf8146102f557806306fdde0314610311578063095ea7b31461032f57806313114a9d1461035f5780631694505e1461037d57806318160ddd1461039b575b600080fd5b61030f600480360381019061030a919061309f565b610961565b005b610319610ad9565b604051610326919061315c565b60405180910390f35b610349600480360381019061034491906131b4565b610b6b565b604051610356919061320f565b60405180910390f35b610367610b8e565b6040516103749190613239565b60405180910390f35b610385610b94565b60405161039291906132b3565b60405180910390f35b6103a3610bb8565b6040516103b09190613239565b60405180910390f35b6103c1610bc2565b6040516103ce9190613239565b60405180910390f35b6103f160048036038101906103ec91906132ce565b610bc8565b005b61040d600480360381019061040891906132fb565b610c63565b60405161041a919061320f565b60405180910390f35b61042b610c92565b604051610438919061335d565b60405180910390f35b610449610c98565b6040516104569190613239565b60405180910390f35b610467610c9e565b6040516104749190613394565b60405180910390f35b610497600480360381019061049291906131b4565b610ca7565b6040516104a4919061320f565b60405180910390f35b6104c760048036038101906104c291906132ce565b610cde565b005b6104d1610cf2565b6040516104de919061335d565b60405180910390f35b6104ef610d16565b6040516104fc919061320f565b60405180910390f35b61051f600480360381019061051a919061309f565b610d29565b005b61053b6004803603810190610536919061309f565b610e07565b604051610548919061320f565b60405180910390f35b610559610e5d565b604051610566919061335d565b60405180910390f35b610577610e83565b6040516105849190613239565b60405180910390f35b610595610e89565b6040516105a2919061320f565b60405180910390f35b6105b3610e9c565b6040516105c091906133d0565b60405180910390f35b6105e360048036038101906105de919061309f565b610ec2565b6040516105f09190613239565b60405180910390f35b610601610f0a565b005b61060b610f1e565b604051610618919061320f565b60405180910390f35b61063b60048036038101906106369190613417565b610f4a565b005b610645610fad565b604051610652919061335d565b60405180910390f35b610675600480360381019061067091906131b4565b610fd3565b005b61067f610ff3565b005b6106896110cb565b604051610696919061335d565b60405180910390f35b6106b960048036038101906106b49190613457565b6110f5565b005b6106c361111a565b6040516106d0919061315c565b60405180910390f35b6106f360048036038101906106ee9190613417565b6111ac565b005b61070f600480360381019061070a91906131b4565b611250565b60405161071c919061320f565b60405180910390f35b61073f600480360381019061073a91906131b4565b6112c7565b60405161074c919061320f565b60405180910390f35b61076f600480360381019061076a919061309f565b6112ea565b005b61077961140c565b604051610786919061335d565b60405180910390f35b610797611430565b6040516107a49190613239565b60405180910390f35b6107c760048036038101906107c2919061309f565b611436565b6040516107d4919061320f565b60405180910390f35b6107e5611456565b6040516107f2919061320f565b60405180910390f35b61081560048036038101906108109190613417565b611469565b005b610831600480360381019061082c91906132ce565b61151a565b005b61083b6115b5565b6040516108489190613239565b60405180910390f35b61086b6004803603810190610866919061309f565b6115bb565b005b6108756116dd565b6040516108829190613239565b60405180910390f35b6108a560048036038101906108a091906132ce565b6116e3565b6040516108b2919061320f565b60405180910390f35b6108d560048036038101906108d09190613484565b6117c4565b6040516108e29190613239565b60405180910390f35b6108f361184b565b6040516109009190613239565b60405180910390f35b610923600480360381019061091e919061309f565b611851565b005b61092d6118d4565b60405161093a9190613239565b60405180910390f35b61094b6118da565b6040516109589190613239565b60405180910390f35b6109696118e0565b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ce90613510565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6109fb6110cb565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610a34919061335d565b602060405180830381865afa158015610a51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a759190613545565b6040518363ffffffff1660e01b8152600401610a92929190613572565b6020604051808303816000875af1158015610ab1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad591906135b0565b5050565b606060038054610ae89061360c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b149061360c565b8015610b615780601f10610b3657610100808354040283529160200191610b61565b820191906000526020600020905b815481529060010190602001808311610b4457829003601f168201915b5050505050905090565b600080610b7661195e565b9050610b83818585611966565b600191505092915050565b600f5481565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60125481565b610bd06118e0565b670de0b6b3a76400006103e86001610be6610bb8565b610bf0919061366c565b610bfa91906136dd565b610c0491906136dd565b811015610c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3d90613780565b60405180910390fd5b670de0b6b3a764000081610c5a919061366c565b60098190555050565b600080610c6e61195e565b9050610c7b858285611b2f565b610c86858585611bbb565b60019150509392505050565b61dead81565b60115481565b60006012905090565b600080610cb261195e565b9050610cd3818585610cc485896117c4565b610cce91906137a0565b611966565b600191505092915050565b610cef610ce961195e565b826125c1565b50565b7f00000000000000000000000040a8bcb2ce42e58844b424aa8b4edf463fea65f681565b600c60009054906101000a900460ff1681565b610d316118e0565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fb3fd0123f0059326c0d3771de6b52f7cc07866caff01a05b16473ae87d382bf960405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610df9816001611469565b610e04816001610f4a565b50565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b600c60029054906101000a900460ff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f126118e0565b610f1c600061278e565b565b6000610f286118e0565b6000600c60006101000a81548160ff0219169083151502179055506001905090565b610f526118e0565b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610fe582610fdf61195e565b83611b2f565b610fef82826125c1565b5050565b610ffb6118e0565b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361108c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108390613820565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff02191690831515021790555043600d81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110fd6118e0565b80600c60026101000a81548160ff02191690831515021790555050565b6060600480546111299061360c565b80601f01602080910402602001604051908101604052809291908181526020018280546111559061360c565b80156111a25780601f10611177576101008083540402835291602001916111a2565b820191906000526020600020905b81548152906001019060200180831161118557829003601f168201915b5050505050905090565b6111b46118e0565b7f00000000000000000000000040a8bcb2ce42e58844b424aa8b4edf463fea65f673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611242576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611239906138b2565b60405180910390fd5b61124c8282612854565b5050565b60008061125b61195e565b9050600061126982866117c4565b9050838110156112ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a590613944565b60405180910390fd5b6112bb8286868403611966565b60019250505092915050565b6000806112d261195e565b90506112df818585611bbb565b600191505092915050565b6112f26118e0565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6760405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506113dc600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001611469565b611409600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001610f4a565b50565b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b600e5481565b60166020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b6114716118e0565b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161150e919061320f565b60405180910390a25050565b6115226118e0565b670de0b6b3a76400006103e86005611538610bb8565b611542919061366c565b61154c91906136dd565b61155691906136dd565b811015611598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158f906139d6565b60405180910390fd5b670de0b6b3a7640000816115ac919061366c565b600b8190555050565b60095481565b6115c36118e0565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f85710b1053f40e0d492d81001a623cd191d251fed32881e7bb80fc1b66a6e46360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506116ad600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001611469565b6116da600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001610f4a565b50565b600d5481565b60006116ed6118e0565b620186a060016116fb610bb8565b611705919061366c565b61170f91906136dd565b821015611751576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174890613a68565b60405180910390fd5b6103e8600561175e610bb8565b611768919061366c565b61177291906136dd565b8211156117b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ab90613afa565b60405180910390fd5b81600a8190555060019050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b6118596118e0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bf90613b8c565b60405180910390fd5b6118d18161278e565b50565b60135481565b600b5481565b6118e861195e565b73ffffffffffffffffffffffffffffffffffffffff166119066110cb565b73ffffffffffffffffffffffffffffffffffffffff161461195c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195390613bf8565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cc90613c8a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3b90613d1c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611b229190613239565b60405180910390a3505050565b6000611b3b84846117c4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611bb55781811015611ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9e90613d88565b60405180910390fd5b611bb48484848403611966565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2190613e1a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9090613eac565b60405180910390fd5b60008103611cb257611cad838360006128f5565b6125bc565b600c60009054906101000a900460ff16156121ad57611ccf6110cb565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611d3d5750611d0d6110cb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d765750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611db0575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611dc95750600560149054906101000a900460ff16155b156121ac57600c60019054906101000a900460ff16611ec357601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611e835750601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb990613f18565b60405180910390fd5b5b601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611f665750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561200d57600954811115611fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa790613faa565b60405180910390fd5b600b54611fbc83610ec2565b82611fc791906137a0565b1115612008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fff90614016565b60405180910390fd5b6121ab565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156120b05750601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156120ff576009548111156120fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f1906140a8565b60405180910390fd5b6121aa565b601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166121a957600b5461215c83610ec2565b8261216791906137a0565b11156121a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219f90614016565b60405180910390fd5b5b5b5b5b5b60006121b830610ec2565b90506000600a5482101590508080156121dd5750600c60029054906101000a900460ff165b80156121f65750600560149054906101000a900460ff16155b801561224c5750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122a25750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122f85750601460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561233c576001600560146101000a81548160ff021916908315150217905550612320612b6b565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123f25750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156123fc57600090505b600081156125ac576003600f5414158015612425575043600e54600d5461242391906137a0565b105b1561244357600260108190555060016011819055506003600f819055505b601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806124e45750601660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156124f257506000600f54115b156125885761251f6064612511600f5488612ff090919063ffffffff16565b61300690919063ffffffff16565b9050600f5460105482612532919061366c565b61253c91906136dd565b6012600082825461254d91906137a0565b92505081905550600f5460115482612565919061366c565b61256f91906136dd565b6013600082825461258091906137a0565b925050819055505b600081111561259d5761259c8730836128f5565b5b80856125a991906140c8565b94505b6125b78787876128f5565b505050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612630576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126279061416e565b60405180910390fd5b61263c8260008361301c565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156126c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b990614200565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516127759190613239565b60405180910390a361278983600084613021565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295b90613e1a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036129d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ca90613eac565b60405180910390fd5b6129de83838361301c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5b90614292565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612b529190613239565b60405180910390a3612b65848484613021565b50505050565b6000612b7630610ec2565b90506000601354601254612b8a91906137a0565b90506000821480612b9b5750600081145b15612ba7575050612fee565b6005600a54612bb6919061366c565b821115612bcf576005600a54612bcc919061366c565b91505b600082905060007f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401612c2f919061335d565b602060405180830381865afa158015612c4c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c709190613545565b9050612c9f30600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611966565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fd3386b030846040518363ffffffff1660e01b8152600401612cfc929190613572565b600060405180830381600087803b158015612d1657600080fd5b505af1158015612d2a573d6000803e3d6000fd5b505050506000612ddc827f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401612d8d919061335d565b602060405180830381865afa158015612daa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612dce9190613545565b61302690919063ffffffff16565b90506000612e0785612df960125485612ff090919063ffffffff16565b61300690919063ffffffff16565b905060008183612e1791906140c8565b9050600060128190555060006013819055507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b8152600401612ea6929190613572565b6020604051808303816000875af1158015612ec5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ee991906135b0565b507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401612f67929190613572565b6020604051808303816000875af1158015612f86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612faa91906135b0565b507fdba83212127c6cfa324c781344bcc47567742c24a9d980d7e2eabc6c7aa2d7e1858383604051612fde939291906142b2565b60405180910390a1505050505050505b565b60008183612ffe919061366c565b905092915050565b6000818361301491906136dd565b905092915050565b505050565b505050565b6000818361303491906140c8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061306c82613041565b9050919050565b61307c81613061565b811461308757600080fd5b50565b60008135905061309981613073565b92915050565b6000602082840312156130b5576130b461303c565b5b60006130c38482850161308a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156131065780820151818401526020810190506130eb565b60008484015250505050565b6000601f19601f8301169050919050565b600061312e826130cc565b61313881856130d7565b93506131488185602086016130e8565b61315181613112565b840191505092915050565b600060208201905081810360008301526131768184613123565b905092915050565b6000819050919050565b6131918161317e565b811461319c57600080fd5b50565b6000813590506131ae81613188565b92915050565b600080604083850312156131cb576131ca61303c565b5b60006131d98582860161308a565b92505060206131ea8582860161319f565b9150509250929050565b60008115159050919050565b613209816131f4565b82525050565b60006020820190506132246000830184613200565b92915050565b6132338161317e565b82525050565b600060208201905061324e600083018461322a565b92915050565b6000819050919050565b600061327961327461326f84613041565b613254565b613041565b9050919050565b600061328b8261325e565b9050919050565b600061329d82613280565b9050919050565b6132ad81613292565b82525050565b60006020820190506132c860008301846132a4565b92915050565b6000602082840312156132e4576132e361303c565b5b60006132f28482850161319f565b91505092915050565b6000806000606084860312156133145761331361303c565b5b60006133228682870161308a565b93505060206133338682870161308a565b92505060406133448682870161319f565b9150509250925092565b61335781613061565b82525050565b6000602082019050613372600083018461334e565b92915050565b600060ff82169050919050565b61338e81613378565b82525050565b60006020820190506133a96000830184613385565b92915050565b60006133ba82613280565b9050919050565b6133ca816133af565b82525050565b60006020820190506133e560008301846133c1565b92915050565b6133f4816131f4565b81146133ff57600080fd5b50565b600081359050613411816133eb565b92915050565b6000806040838503121561342e5761342d61303c565b5b600061343c8582860161308a565b925050602061344d85828601613402565b9150509250929050565b60006020828403121561346d5761346c61303c565b5b600061347b84828501613402565b91505092915050565b6000806040838503121561349b5761349a61303c565b5b60006134a98582860161308a565b92505060206134ba8582860161308a565b9150509250929050565b7f43616e206e6f7420726573637565206f776e20746f6b656e2100000000000000600082015250565b60006134fa6019836130d7565b9150613505826134c4565b602082019050919050565b60006020820190508181036000830152613529816134ed565b9050919050565b60008151905061353f81613188565b92915050565b60006020828403121561355b5761355a61303c565b5b600061356984828501613530565b91505092915050565b6000604082019050613587600083018561334e565b613594602083018461322a565b9392505050565b6000815190506135aa816133eb565b92915050565b6000602082840312156135c6576135c561303c565b5b60006135d48482850161359b565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061362457607f821691505b602082108103613637576136366135dd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136778261317e565b91506136828361317e565b92508282026136908161317e565b915082820484148315176136a7576136a661363d565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006136e88261317e565b91506136f38361317e565b925082613703576137026136ae565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061376a602f836130d7565b91506137758261370e565b604082019050919050565b600060208201905081810360008301526137998161375d565b9050919050565b60006137ab8261317e565b91506137b68361317e565b92508282019050808211156137ce576137cd61363d565b5b92915050565b7f4e65656420746f207365742073776170206d616e616765720000000000000000600082015250565b600061380a6018836130d7565b9150613815826137d4565b602082019050919050565b60006020820190508181036000830152613839816137fd565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061389c6039836130d7565b91506138a782613840565b604082019050919050565b600060208201905081810360008301526138cb8161388f565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061392e6025836130d7565b9150613939826138d2565b604082019050919050565b6000602082019050818103600083015261395d81613921565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006139c06024836130d7565b91506139cb82613964565b604082019050919050565b600060208201905081810360008301526139ef816139b3565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613a526035836130d7565b9150613a5d826139f6565b604082019050919050565b60006020820190508181036000830152613a8181613a45565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613ae46034836130d7565b9150613aef82613a88565b604082019050919050565b60006020820190508181036000830152613b1381613ad7565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b766026836130d7565b9150613b8182613b1a565b604082019050919050565b60006020820190508181036000830152613ba581613b69565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613be26020836130d7565b9150613bed82613bac565b602082019050919050565b60006020820190508181036000830152613c1181613bd5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613c746024836130d7565b9150613c7f82613c18565b604082019050919050565b60006020820190508181036000830152613ca381613c67565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d066022836130d7565b9150613d1182613caa565b604082019050919050565b60006020820190508181036000830152613d3581613cf9565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613d72601d836130d7565b9150613d7d82613d3c565b602082019050919050565b60006020820190508181036000830152613da181613d65565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613e046025836130d7565b9150613e0f82613da8565b604082019050919050565b60006020820190508181036000830152613e3381613df7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613e966023836130d7565b9150613ea182613e3a565b604082019050919050565b60006020820190508181036000830152613ec581613e89565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613f026016836130d7565b9150613f0d82613ecc565b602082019050919050565b60006020820190508181036000830152613f3181613ef5565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613f946035836130d7565b9150613f9f82613f38565b604082019050919050565b60006020820190508181036000830152613fc381613f87565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006140006013836130d7565b915061400b82613fca565b602082019050919050565b6000602082019050818103600083015261402f81613ff3565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006140926036836130d7565b915061409d82614036565b604082019050919050565b600060208201905081810360008301526140c181614085565b9050919050565b60006140d38261317e565b91506140de8361317e565b92508282039050818111156140f6576140f561363d565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006141586021836130d7565b9150614163826140fc565b604082019050919050565b600060208201905081810360008301526141878161414b565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006141ea6022836130d7565b91506141f58261418e565b604082019050919050565b60006020820190508181036000830152614219816141dd565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061427c6026836130d7565b915061428782614220565b604082019050919050565b600060208201905081810360008301526142ab8161426f565b9050919050565b60006060820190506142c7600083018661322a565b6142d4602083018561322a565b6142e1604083018461322a565b94935050505056fea2646970667358221220bdfa8e8a6e9abd7631131df77e3db5316f6d6312eb4ddacd2b9d46751f60d1f464736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000b4b0337ff6c1eb1c1d6b1595190c558b8ec59663000000000000000000000000c50f80c5de28c89f6474d54e097002435c671b55
-----Decoded View---------------
Arg [0] : _router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : _marketingWallet (address): 0xb4B0337ff6c1EB1C1d6b1595190C558b8EC59663
Arg [2] : _rewardsWallet (address): 0xC50F80C5dE28C89F6474d54e097002435c671b55
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 000000000000000000000000b4b0337ff6c1eb1c1d6b1595190c558b8ec59663
Arg [2] : 000000000000000000000000c50f80c5de28c89f6474d54e097002435c671b55
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.