Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
100,000,000 LOTTO
Holders
203
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 6 Decimals)
Balance
836,000 LOTTOValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GenesisToken
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GenesisBot.xyz pragma solidity ^0.8.19; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; contract GenesisToken is ERC20, Ownable { struct InitParams { string name; string symbol; uint8 decimals; uint256 totalSupply; uint256 maxTradingAmount; uint256 maxWalletAmount; uint256 swapTokensAtAmount; uint256 buyTotalFees; uint256 sellTotalFees; uint256 burnFee; uint256 liquidityFee; uint256 devFee; uint256 revshareFee; address devWallet; address revshareWallet; uint256 liquidityAmount; } uint16 public boostedFees = 20; // High fees for first 20 transactions uint8 private _decimals; IUniswapV2Router02 public immutable swapV2Router; //ITurnstile public immutable turnstile; address public swapV2Pair; address public constant DEAD_ADDRESS = address(0xdead); bool public swapEnabled = false; bool private swapping; address public revShareWallet; address public devWallet; uint256 public maxTradingAmount; uint256 public swapTokensAtAmount; uint256 public maxWalletAmount; bool public limitsInEffect = true; bool public tradingActive = false; uint256 constant PERCENTAGE_BASE = 10000; // uint256 constant GEN_FEE = 30; // fee for GEN Bot: 0.3% address constant GEN_WALLET = 0x91FEad7F2B2172e75FfCf4cAdFF5049c9270EE41; uint256 public buyTotalFees; // buy fee uint256 public sellTotalFees; // sell fee // Tax distribution uint256 public burnFee; uint256 public liquidityFee; uint256 public devFee; uint256 public revshareFee; uint256 public tokensForGen; uint256 public totalFees; uint256 public totalTaxTokens; /******************/ // exclude from fees and max transaction amount mapping(address => bool) public excludeFromLimits; // 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; // Trading start at uint256 block0; uint256 constant NO_SMC_TRADE_BLOCKS = 3; event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); modifier onlyDev() { require(msg.sender == devWallet); _; } constructor( address routerAddress, InitParams memory params ) payable ERC20(params.name, params.symbol) { // amm swap init IUniswapV2Router02 router = IUniswapV2Router02(routerAddress); swapV2Router = router; // Token parameters _decimals = params.decimals; uint256 totalSupply_ = params.totalSupply * (10 ** _decimals); swapTokensAtAmount = (totalSupply_ * params.swapTokensAtAmount) / PERCENTAGE_BASE; // 0.05% maxTradingAmount = (totalSupply_ * params.maxTradingAmount) / PERCENTAGE_BASE; // 0.1% maxWalletAmount = (totalSupply_ * params.maxWalletAmount) / PERCENTAGE_BASE; // 1% // Fee distribute: burn: 1, dev: 4 // tax distribution burnFee = params.burnFee; liquidityFee = params.liquidityFee; devFee = params.devFee; revshareFee = params.revshareFee; totalFees = burnFee + liquidityFee + devFee + revshareFee; // update revshare wallet revShareWallet = params.revshareWallet == address(0) ? msg.sender : params.revshareWallet; // 5% fee for buy/sell require( params.buyTotalFees <= 500 && params.sellTotalFees <= 500, "Buy/sell fees must be <= 5%" ); buyTotalFees = params.buyTotalFees; sellTotalFees = params.sellTotalFees; if (buyTotalFees < GEN_FEE) buyTotalFees += GEN_FEE; if (sellTotalFees < GEN_FEE) sellTotalFees += GEN_FEE; devWallet = params.devWallet == address(0) ? msg.sender : params.devWallet; // exclude from paying fees or having max transaction amount excludeFromLimits[owner()] = true; excludeFromLimits[address(this)] = true; excludeFromLimits[DEAD_ADDRESS] = true; /* mint & add liquidity */ // add liquidity require(params.liquidityAmount <= PERCENTAGE_BASE); uint256 liquidityAmount = (totalSupply_ * params.liquidityAmount) / PERCENTAGE_BASE; _mint(address(this), liquidityAmount); // mint left if (liquidityAmount < totalSupply_) { _mint(msg.sender, totalSupply_ - liquidityAmount); } // Approve infinite spending by DEX, to sell tokens collected via tax. _approve(address(this), address(swapV2Router), type(uint256).max); } function decimals() public view override returns (uint8) { return _decimals; } receive() external payable {} // 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( uint256 newAmount ) external onlyDev 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; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyDev { swapEnabled = enabled; } function setAutomatedMarketMakerPair( address pair, bool value ) public onlyDev { require( pair != swapV2Pair, "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 _transfer( address from, address to, uint256 amount ) internal virtual 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; } // only limit for trading if ( limitsInEffect && !excludeFromLimits[from] && !excludeFromLimits[to] ) { if ( !tradingActive && (automatedMarketMakerPairs[from] || automatedMarketMakerPairs[to]) ) { require( excludeFromLimits[from] || excludeFromLimits[to], "Trading is not active." ); } if (automatedMarketMakerPairs[from]) { //when buy require( amount <= maxTradingAmount, "Buy transfer amount exceeds the maxTradingAmount." ); require( amount + balanceOf(to) <= maxWalletAmount, "Max wallet exceeded" ); if (block0 + NO_SMC_TRADE_BLOCKS > block.number) { require(!isContract(to)); } } else if (automatedMarketMakerPairs[to]) { //when sell require( amount <= maxTradingAmount, "Sell transfer amount exceeds the maxTradingAmount." ); } } // uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = totalTaxTokens >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !excludeFromLimits[from] && !excludeFromLimits[to] ) { swapping = true; swapBack(); swapping = false; } // only take free for trading bool takeFee = !swapping && (automatedMarketMakerPairs[to] || automatedMarketMakerPairs[from]); if (excludeFromLimits[from] || excludeFromLimits[to]) { takeFee = false; } // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { (uint256 fees, uint256 geenFees) = _getFees(from, to, amount); if (fees > 0) { super._transfer(from, address(this), fees); tokensForGen += geenFees; amount -= fees; totalTaxTokens += fees; } } super._transfer(from, to, amount); } function _getFees( address _from, address _to, uint256 _amount ) internal returns (uint256 fees, uint256 genFees) { uint256 tradingFees_; if (automatedMarketMakerPairs[_to]) { tradingFees_ = sellTotalFees; } // on buy else if (automatedMarketMakerPairs[_from]) { tradingFees_ = buyTotalFees; } if (tradingFees_ < GEN_FEE) tradingFees_ = GEN_FEE; uint256 boostedFees_ = 0; if (boostedFees > 0) { boostedFees_ = (PERCENTAGE_BASE * boostedFees) / 100; boostedFees -= 1; } fees = (_amount * (tradingFees_ + boostedFees_)) / PERCENTAGE_BASE; genFees = (fees * GEN_FEE) / tradingFees_; } function swapTokensForEth(uint256 tokenAmount) internal { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = swapV2Router.WETH(); // make the swap swapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) internal { // add the liquidity swapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } function createPairAndAddLP() public payable onlyOwner { // create pair This:ETH if (swapV2Pair == address(0)) { IUniswapV2Factory factory = IUniswapV2Factory( swapV2Router.factory() ); swapV2Pair = factory.createPair(address(this), swapV2Router.WETH()); } _setAutomatedMarketMakerPair(address(swapV2Pair), true); addLiquidity(balanceOf(address(this)), address(this).balance); } function enableTrading() public payable onlyOwner { require(!tradingActive, "Trading is already open"); // enable trading tradingActive = true; swapEnabled = true; // block zero block0 = block.number; } function openTrading() external payable onlyOwner { createPairAndAddLP(); enableTrading(); } function swapBack() internal virtual { uint256 contractBalance = balanceOf(address(this)); uint256 tokenToSwap_ = contractBalance; uint256 tokensForGen_ = tokensForGen; if (tokenToSwap_ > swapTokensAtAmount * 20) { tokenToSwap_ = swapTokensAtAmount * 20; tokensForGen_ = (tokensForGen * tokenToSwap_) / contractBalance; } if (tokenToSwap_ == 0) return; uint256 tokensForFees_ = tokenToSwap_ - tokensForGen_; // split tokens for benificiers uint256 tokensBurn_; uint256 tokensLiquid_; uint256 tokensRevshare_; uint256 tokensDev_; if (totalFees > 0) { tokensBurn_ = (tokensForFees_ * burnFee) / totalFees; tokensLiquid_ = (tokensForFees_ * liquidityFee) / totalFees; tokensRevshare_ = (tokensForFees_ * revshareFee) / totalFees; tokensDev_ = (tokensForFees_ * devFee) / totalFees; tokensForFees_ = tokensBurn_ + tokensLiquid_ + tokensRevshare_ + tokensDev_; } tokensForGen_ = tokenToSwap_ - tokensForFees_; uint256 tokensForAddLiquidity = tokensLiquid_ / 2; // swap all token except for Tokens to Add Liquidity and Burnt uint256 totalTokensToSwap = tokenToSwap_ - tokensForAddLiquidity - tokensBurn_; if (tokensBurn_ > 0) { // transfer to dead super._transfer(address(this), DEAD_ADDRESS, tokensBurn_); } if (totalTokensToSwap > 0) { uint256 initEthBalance = address(this).balance; swapTokensForEth(totalTokensToSwap); uint256 ethBalance = address(this).balance - initEthBalance; uint256 ethForGen = (ethBalance * tokensForGen_) / totalTokensToSwap; uint256 ethForRevshare = (ethBalance * tokensRevshare_) / totalTokensToSwap; uint256 ethForAddLiquidity = (ethBalance * (tokensLiquid_ - tokensForAddLiquidity)) / totalTokensToSwap; // send eth to benificiers bool success; if (ethForGen > 0) { (success, ) = address(GEN_WALLET).call{value: ethForGen}(""); } if (ethForRevshare > 0) { (success, ) = address(revShareWallet).call{ value: ethForRevshare }(""); } if (tokensForAddLiquidity > 0 && ethForAddLiquidity > 0) { addLiquidity(tokensForAddLiquidity, ethForAddLiquidity); } if (address(this).balance > 0) { (success, ) = address(devWallet).call{ value: address(this).balance }(""); } } // reset token for GEN tokensForGen = tokensForGen > tokensForGen_ ? tokensForGen - tokensForGen_ : 0; totalTaxTokens = 0; } function withdrawStuckToken(address _token, address _to) external onlyDev { require(_token != address(0), "_token address cannot be 0"); ERC20 token = ERC20(_token); token.transfer(_to, token.balanceOf(address(this))); } function withdrawStuckEth(address toAddr) external onlyDev { (bool success, ) = toAddr.call{value: address(this).balance}(""); require(success); } /************************************************************************/ function isContract(address account) private view returns (bool) { uint256 size; assembly { size := extcodesize(account) } return size > 0; } // /** Not allow transfer owner */ // function transferOwnership(address) public pure override { // revert("Not Allow Transfer Ownership."); // } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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 v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
pragma solidity >=0.5.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; }
pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
{ "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":"routerAddress","type":"address"},{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"},{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"uint256","name":"maxTradingAmount","type":"uint256"},{"internalType":"uint256","name":"maxWalletAmount","type":"uint256"},{"internalType":"uint256","name":"swapTokensAtAmount","type":"uint256"},{"internalType":"uint256","name":"buyTotalFees","type":"uint256"},{"internalType":"uint256","name":"sellTotalFees","type":"uint256"},{"internalType":"uint256","name":"burnFee","type":"uint256"},{"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"internalType":"uint256","name":"devFee","type":"uint256"},{"internalType":"uint256","name":"revshareFee","type":"uint256"},{"internalType":"address","name":"devWallet","type":"address"},{"internalType":"address","name":"revshareWallet","type":"address"},{"internalType":"uint256","name":"liquidityAmount","type":"uint256"}],"internalType":"struct GenesisToken.InitParams","name":"params","type":"tuple"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEAD_ADDRESS","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":[],"name":"boostedFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"createPairAndAddLP","outputs":[],"stateMutability":"payable","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":"devFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludeFromLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTradingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","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":"openTrading","outputs":[],"stateMutability":"payable","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":[],"name":"revShareWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revshareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForGen","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":"totalTaxTokens","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":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a06040526014600560146101000a81548161ffff021916908361ffff1602179055506000600660146101000a81548160ff0219169083151502179055506001600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff02191690831515021790555060405162005ba538038062005ba5833981810160405281019062000098919062000e8e565b806000015181602001518160039081620000b3919062001135565b508060049081620000c5919062001135565b505050620000e8620000dc620005f660201b60201c565b620005fe60201b60201c565b60008290508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508160400151600560166101000a81548160ff021916908360ff1602179055506000600560169054906101000a900460ff16600a6200016091906200139f565b8360600151620001719190620013f0565b90506127108360c0015182620001889190620013f0565b6200019491906200146a565b600a81905550612710836080015182620001af9190620013f0565b620001bb91906200146a565b6009819055506127108360a0015182620001d69190620013f0565b620001e291906200146a565b600b81905550826101200151600f81905550826101400151601081905550826101600151601181905550826101800151601281905550601254601154601054600f54620002309190620014a2565b6200023c9190620014a2565b620002489190620014a2565b601481905550600073ffffffffffffffffffffffffffffffffffffffff16836101c0015173ffffffffffffffffffffffffffffffffffffffff16146200029457826101c0015162000296565b335b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506101f48360e0015111158015620002f457506101f483610100015111155b62000336576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200032d906200153e565b60405180910390fd5b8260e00151600d81905550826101000151600e81905550601e600d5410156200037657601e600d60008282546200036e9190620014a2565b925050819055505b601e600e5410156200039f57601e600e6000828254620003979190620014a2565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff16836101a0015173ffffffffffffffffffffffffffffffffffffffff1614620003e557826101a00151620003e7565b335b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601660006200043d620006c460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016016600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612710836101e0015111156200055557600080fd5b6000612710846101e00151836200056d9190620013f0565b6200057991906200146a565b90506200058d3082620006ee60201b60201c565b81811015620005b657620005b5338284620005a9919062001560565b620006ee60201b60201c565b5b620005eb306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200085b60201b60201c565b50505050506200176b565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000760576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075790620015eb565b60405180910390fd5b620007746000838362000a2c60201b60201c565b8060026000828254620007889190620014a2565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200083b91906200161e565b60405180910390a3620008576000838362000a3160201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620008cd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008c490620016b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200093f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009369062001749565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000a1f91906200161e565b60405180910390a3505050565b505050565b505050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a778262000a4a565b9050919050565b62000a898162000a6a565b811462000a9557600080fd5b50565b60008151905062000aa98162000a7e565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000aff8262000ab4565b810181811067ffffffffffffffff8211171562000b215762000b2062000ac5565b5b80604052505050565b600062000b3662000a36565b905062000b44828262000af4565b919050565b600080fd5b600080fd5b600080fd5b600067ffffffffffffffff82111562000b765762000b7562000ac5565b5b62000b818262000ab4565b9050602081019050919050565b60005b8381101562000bae57808201518184015260208101905062000b91565b60008484015250505050565b600062000bd162000bcb8462000b58565b62000b2a565b90508281526020810184848401111562000bf05762000bef62000b53565b5b62000bfd84828562000b8e565b509392505050565b600082601f83011262000c1d5762000c1c62000b4e565b5b815162000c2f84826020860162000bba565b91505092915050565b600060ff82169050919050565b62000c508162000c38565b811462000c5c57600080fd5b50565b60008151905062000c708162000c45565b92915050565b6000819050919050565b62000c8b8162000c76565b811462000c9757600080fd5b50565b60008151905062000cab8162000c80565b92915050565b6000610200828403121562000ccb5762000cca62000aaf565b5b62000cd861020062000b2a565b9050600082015167ffffffffffffffff81111562000cfb5762000cfa62000b49565b5b62000d098482850162000c05565b600083015250602082015167ffffffffffffffff81111562000d305762000d2f62000b49565b5b62000d3e8482850162000c05565b602083015250604062000d548482850162000c5f565b604083015250606062000d6a8482850162000c9a565b606083015250608062000d808482850162000c9a565b60808301525060a062000d968482850162000c9a565b60a08301525060c062000dac8482850162000c9a565b60c08301525060e062000dc28482850162000c9a565b60e08301525061010062000dd98482850162000c9a565b6101008301525061012062000df18482850162000c9a565b6101208301525061014062000e098482850162000c9a565b6101408301525061016062000e218482850162000c9a565b6101608301525061018062000e398482850162000c9a565b610180830152506101a062000e518482850162000a98565b6101a0830152506101c062000e698482850162000a98565b6101c0830152506101e062000e818482850162000c9a565b6101e08301525092915050565b6000806040838503121562000ea85762000ea762000a40565b5b600062000eb88582860162000a98565b925050602083015167ffffffffffffffff81111562000edc5762000edb62000a45565b5b62000eea8582860162000cb1565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f4757607f821691505b60208210810362000f5d5762000f5c62000eff565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000fc77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000f88565b62000fd3868362000f88565b95508019841693508086168417925050509392505050565b6000819050919050565b600062001016620010106200100a8462000c76565b62000feb565b62000c76565b9050919050565b6000819050919050565b620010328362000ff5565b6200104a62001041826200101d565b84845462000f95565b825550505050565b600090565b6200106162001052565b6200106e81848462001027565b505050565b5b8181101562001096576200108a60008262001057565b60018101905062001074565b5050565b601f821115620010e557620010af8162000f63565b620010ba8462000f78565b81016020851015620010ca578190505b620010e2620010d98562000f78565b83018262001073565b50505b505050565b600082821c905092915050565b60006200110a60001984600802620010ea565b1980831691505092915050565b6000620011258383620010f7565b9150826002028217905092915050565b620011408262000ef4565b67ffffffffffffffff8111156200115c576200115b62000ac5565b5b62001168825462000f2e565b620011758282856200109a565b600060209050601f831160018114620011ad576000841562001198578287015190505b620011a4858262001117565b86555062001214565b601f198416620011bd8662000f63565b60005b82811015620011e757848901518255600182019150602085019450602081019050620011c0565b8683101562001207578489015162001203601f891682620010f7565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620012aa578086048111156200128257620012816200121c565b5b6001851615620012925780820291505b8081029050620012a2856200124b565b945062001262565b94509492505050565b600082620012c5576001905062001398565b81620012d5576000905062001398565b8160018114620012ee5760028114620012f9576200132f565b600191505062001398565b60ff8411156200130e576200130d6200121c565b5b8360020a9150848211156200132857620013276200121c565b5b5062001398565b5060208310610133831016604e8410600b8410161715620013695782820a9050838111156200136357620013626200121c565b5b62001398565b62001378848484600162001258565b925090508184048111156200139257620013916200121c565b5b81810290505b9392505050565b6000620013ac8262000c76565b9150620013b98362000c38565b9250620013e87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620012b3565b905092915050565b6000620013fd8262000c76565b91506200140a8362000c76565b92508282026200141a8162000c76565b915082820484148315176200143457620014336200121c565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620014778262000c76565b9150620014848362000c76565b9250826200149757620014966200143b565b5b828204905092915050565b6000620014af8262000c76565b9150620014bc8362000c76565b9250828201905080821115620014d757620014d66200121c565b5b92915050565b600082825260208201905092915050565b7f4275792f73656c6c2066656573206d757374206265203c3d2035250000000000600082015250565b600062001526601b83620014dd565b91506200153382620014ee565b602082019050919050565b60006020820190508181036000830152620015598162001517565b9050919050565b60006200156d8262000c76565b91506200157a8362000c76565b92508282039050818111156200159557620015946200121c565b5b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620015d3601f83620014dd565b9150620015e0826200159b565b602082019050919050565b600060208201905081810360008301526200160681620015c4565b9050919050565b620016188162000c76565b82525050565b60006020820190506200163560008301846200160d565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600062001699602483620014dd565b9150620016a6826200163b565b604082019050919050565b60006020820190508181036000830152620016cc816200168a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062001731602283620014dd565b91506200173e82620016d3565b604082019050919050565b60006020820190508181036000830152620017648162001722565b9050919050565b6080516143fb620017aa60003960008181610b7001528181610c4801528181610cf60152818161247f01528181612edc0152612fb901526143fb6000f3fe6080604052600436106102815760003560e01c80638ea5220f1161014f578063b62496f5116100c1578063d85ba0631161007a578063d85ba06314610956578063dd62ed3e14610981578063df376d0b146109be578063e2f45605146109fb578063f2fde38b14610a26578063fce589d814610a4f57610288565b8063b62496f514610853578063bbc0c74214610890578063bc205ad3146108bb578063c9567bf9146108e4578063d257b34f146108ee578063d55d53a71461092b57610288565b80639a7a23d6116101135780639a7a23d61461072f5780639ee708ff14610758578063a457c2d714610783578063a9059cbb146107c0578063aa4bde28146107fd578063ad05a7b51461082857610288565b80638ea5220f1461065a578063924de9b71461068557806395d89b41146106ae57806396ea32da146106d957806398118cb41461070457610288565b80634e6fd6c4116101f3578063751039fc116101ac578063751039fc1461057b578063782c4e99146105a65780637ca8448a146105d157806381efb72d146105fa5780638a8c523c146106255780638da5cb5b1461062f57610288565b80634e6fd6c41461047b5780636827e764146104a65780636a486a8e146104d15780636ddd1713146104fc57806370a0823114610527578063715018a61461056457610288565b806327dce8471161024557806327dce84714610388578063313ce567146103b357806339509351146103de57806344f8ffd21461041b578063470caeb5146104465780634a62bb651461045057610288565b806306fdde031461028d578063095ea7b3146102b857806313114a9d146102f557806318160ddd1461032057806323b872dd1461034b57610288565b3661028857005b600080fd5b34801561029957600080fd5b506102a2610a7a565b6040516102af91906130df565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da919061319a565b610b0c565b6040516102ec91906131f5565b60405180910390f35b34801561030157600080fd5b5061030a610b2f565b604051610317919061321f565b60405180910390f35b34801561032c57600080fd5b50610335610b35565b604051610342919061321f565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d919061323a565b610b3f565b60405161037f91906131f5565b60405180910390f35b34801561039457600080fd5b5061039d610b6e565b6040516103aa91906132ec565b60405180910390f35b3480156103bf57600080fd5b506103c8610b92565b6040516103d59190613323565b60405180910390f35b3480156103ea57600080fd5b506104056004803603810190610400919061319a565b610ba9565b60405161041291906131f5565b60405180910390f35b34801561042757600080fd5b50610430610be0565b60405161043d919061321f565b60405180910390f35b61044e610be6565b005b34801561045c57600080fd5b50610465610e66565b60405161047291906131f5565b60405180910390f35b34801561048757600080fd5b50610490610e79565b60405161049d919061334d565b60405180910390f35b3480156104b257600080fd5b506104bb610e7f565b6040516104c8919061321f565b60405180910390f35b3480156104dd57600080fd5b506104e6610e85565b6040516104f3919061321f565b60405180910390f35b34801561050857600080fd5b50610511610e8b565b60405161051e91906131f5565b60405180910390f35b34801561053357600080fd5b5061054e60048036038101906105499190613368565b610e9e565b60405161055b919061321f565b60405180910390f35b34801561057057600080fd5b50610579610ee6565b005b34801561058757600080fd5b50610590610efa565b60405161059d91906131f5565b60405180910390f35b3480156105b257600080fd5b506105bb610f26565b6040516105c8919061334d565b60405180910390f35b3480156105dd57600080fd5b506105f860048036038101906105f39190613368565b610f4c565b005b34801561060657600080fd5b5061060f611020565b60405161061c919061334d565b60405180910390f35b61062d611046565b005b34801561063b57600080fd5b506106446110dd565b604051610651919061334d565b60405180910390f35b34801561066657600080fd5b5061066f611107565b60405161067c919061334d565b60405180910390f35b34801561069157600080fd5b506106ac60048036038101906106a791906133c1565b61112d565b005b3480156106ba57600080fd5b506106c36111a4565b6040516106d091906130df565b60405180910390f35b3480156106e557600080fd5b506106ee611236565b6040516106fb919061321f565b60405180910390f35b34801561071057600080fd5b5061071961123c565b604051610726919061321f565b60405180910390f35b34801561073b57600080fd5b50610756600480360381019061075191906133ee565b611242565b005b34801561076457600080fd5b5061076d61133a565b60405161077a919061321f565b60405180910390f35b34801561078f57600080fd5b506107aa60048036038101906107a5919061319a565b611340565b6040516107b791906131f5565b60405180910390f35b3480156107cc57600080fd5b506107e760048036038101906107e2919061319a565b6113b7565b6040516107f491906131f5565b60405180910390f35b34801561080957600080fd5b506108126113da565b60405161081f919061321f565b60405180910390f35b34801561083457600080fd5b5061083d6113e0565b60405161084a919061321f565b60405180910390f35b34801561085f57600080fd5b5061087a60048036038101906108759190613368565b6113e6565b60405161088791906131f5565b60405180910390f35b34801561089c57600080fd5b506108a5611406565b6040516108b291906131f5565b60405180910390f35b3480156108c757600080fd5b506108e260048036038101906108dd919061342e565b611419565b005b6108ec6115e4565b005b3480156108fa57600080fd5b506109156004803603810190610910919061346e565b6115fe565b60405161092291906131f5565b60405180910390f35b34801561093757600080fd5b50610940611731565b60405161094d91906134b8565b60405180910390f35b34801561096257600080fd5b5061096b611745565b604051610978919061321f565b60405180910390f35b34801561098d57600080fd5b506109a860048036038101906109a3919061342e565b61174b565b6040516109b5919061321f565b60405180910390f35b3480156109ca57600080fd5b506109e560048036038101906109e09190613368565b6117d2565b6040516109f291906131f5565b60405180910390f35b348015610a0757600080fd5b50610a106117f2565b604051610a1d919061321f565b60405180910390f35b348015610a3257600080fd5b50610a4d6004803603810190610a489190613368565b6117f8565b005b348015610a5b57600080fd5b50610a6461187b565b604051610a71919061321f565b60405180910390f35b606060038054610a8990613502565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab590613502565b8015610b025780601f10610ad757610100808354040283529160200191610b02565b820191906000526020600020905b815481529060010190602001808311610ae557829003601f168201915b5050505050905090565b600080610b17611881565b9050610b24818585611889565b600191505092915050565b60145481565b6000600254905090565b600080610b4a611881565b9050610b57858285611a52565b610b62858585611ade565b60019150509392505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600560169054906101000a900460ff16905090565b600080610bb4611881565b9050610bd5818585610bc6858961174b565b610bd09190613562565b611889565b600191505092915050565b60155481565b610bee61235e565b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610e255760007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cb1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cd591906135ab565b90508073ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d5f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d8391906135ab565b6040518363ffffffff1660e01b8152600401610da09291906135d8565b6020604051808303816000875af1158015610dbf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610de391906135ab565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505b610e52600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016123dc565b610e64610e5e30610e9e565b4761247d565b565b600c60009054906101000a900460ff1681565b61dead81565b60115481565b600e5481565b600660149054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610eee61235e565b610ef86000612533565b565b6000610f0461235e565b6000600c60006101000a81548160ff0219169083151502179055506001905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610fa657600080fd5b60008173ffffffffffffffffffffffffffffffffffffffff1647604051610fcc90613632565b60006040518083038185875af1925050503d8060008114611009576040519150601f19603f3d011682016040523d82523d6000602084013e61100e565b606091505b505090508061101c57600080fd5b5050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61104e61235e565b600c60019054906101000a900460ff161561109e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109590613693565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600660146101000a81548160ff02191690831515021790555043601881905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461118757600080fd5b80600660146101000a81548160ff02191690831515021790555050565b6060600480546111b390613502565b80601f01602080910402602001604051908101604052809291908181526020018280546111df90613502565b801561122c5780601f106112015761010080835404028352916020019161122c565b820191906000526020600020905b81548152906001019060200180831161120f57829003601f168201915b5050505050905090565b60095481565b60105481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461129c57600080fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361132c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132390613725565b60405180910390fd5b61133682826123dc565b5050565b60135481565b60008061134b611881565b90506000611359828661174b565b90508381101561139e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611395906137b7565b60405180910390fd5b6113ab8286868403611889565b60019250505092915050565b6000806113c2611881565b90506113cf818585611ade565b600191505092915050565b600b5481565b60125481565b60176020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461147357600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d990613823565b60405180910390fd5b60008290508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb838373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161153d919061334d565b602060405180830381865afa15801561155a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061157e9190613858565b6040518363ffffffff1660e01b815260040161159b929190613885565b6020604051808303816000875af11580156115ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115de91906138c3565b50505050565b6115ec61235e565b6115f4610be6565b6115fc611046565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461165a57600080fd5b620186a06001611668610b35565b61167291906138f0565b61167c9190613961565b8210156116be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b590613a04565b60405180910390fd5b6103e860056116cb610b35565b6116d591906138f0565b6116df9190613961565b821115611721576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171890613a96565b60405180910390fd5b81600a8190555060019050919050565b600560149054906101000a900461ffff1681565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b600a5481565b61180061235e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361186f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186690613b28565b60405180910390fd5b61187881612533565b50565b600f5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ef90613bba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195e90613c4c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611a45919061321f565b60405180910390a3505050565b6000611a5e848461174b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611ad85781811015611aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac190613cb8565b60405180910390fd5b611ad78484848403611889565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4490613d4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb390613ddc565b60405180910390fd5b60008103611bd557611bd0838360006125f9565b612359565b600c60009054906101000a900460ff168015611c3b5750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611c915750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611fee57600c60019054906101000a900460ff16158015611d505750601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611d4f5750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b5b15611e3657601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611df65750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2c90613e48565b60405180910390fd5b5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f5457600954811115611ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec490613eda565b60405180910390fd5b600b54611ed983610e9e565b82611ee49190613562565b1115611f25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1c90613f46565b60405180910390fd5b436003601854611f359190613562565b1115611f4f57611f448261286f565b15611f4e57600080fd5b5b611fed565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611fec57600954811115611feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe290613fd8565b60405180910390fd5b5b5b5b6000600a54601554101590508080156120135750600660149054906101000a900460ff165b801561202c5750600660159054906101000a900460ff16155b80156120825750601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156120d85750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561212e5750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612172576001600660156101000a81548160ff021916908315150217905550612156612882565b6000600660156101000a81548160ff0219169083151502179055505b6000600660159054906101000a900460ff1615801561222e5750601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061222d5750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b5b9050601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806122d15750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156122db57600090505b801561234b576000806122ef878787612c98565b915091506000821115612348576123078730846125f9565b80601360008282546123199190613562565b92505081905550818561232c9190613ff8565b945081601560008282546123409190613562565b925050819055505b50505b6123568585856125f9565b50505b505050565b612366611881565b73ffffffffffffffffffffffffffffffffffffffff166123846110dd565b73ffffffffffffffffffffffffffffffffffffffff16146123da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d190614078565b60405180910390fd5b565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806124c76110dd565b426040518863ffffffff1660e01b81526004016124e9969594939291906140d3565b60606040518083038185885af1158015612507573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061252c9190614134565b5050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612668576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265f90613d4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ce90613ddc565b60405180910390fd5b6126e2838383612e33565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612768576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275f906141f9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612856919061321f565b60405180910390a3612869848484612e38565b50505050565b600080823b905060008111915050919050565b600061288d30610e9e565b90506000819050600060135490506014600a546128aa91906138f0565b8211156128de576014600a546128c091906138f0565b915082826013546128d191906138f0565b6128db9190613961565b90505b600082036128ee57505050612c96565b600081836128fc9190613ff8565b9050600080600080600060145411156129a857601454600f548661292091906138f0565b61292a9190613961565b93506014546010548661293d91906138f0565b6129479190613961565b92506014546012548661295a91906138f0565b6129649190613961565b91506014546011548661297791906138f0565b6129819190613961565b9050808284866129919190613562565b61299b9190613562565b6129a59190613562565b94505b84876129b49190613ff8565b955060006002846129c59190613961565b9050600085828a6129d69190613ff8565b6129e09190613ff8565b905060008611156129f9576129f83061dead886125f9565b5b6000811115612c5e576000479050612a1082612e3d565b60008147612a1e9190613ff8565b90506000838b83612a2f91906138f0565b612a399190613961565b90506000848884612a4a91906138f0565b612a549190613961565b9050600085878b612a659190613ff8565b85612a7091906138f0565b612a7a9190613961565b9050600080841115612b07577391fead7f2b2172e75ffcf4cadff5049c9270ee4173ffffffffffffffffffffffffffffffffffffffff1684604051612abe90613632565b60006040518083038185875af1925050503d8060008114612afb576040519150601f19603f3d011682016040523d82523d6000602084013e612b00565b606091505b5050809150505b6000831115612b9f57600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051612b5690613632565b60006040518083038185875af1925050503d8060008114612b93576040519150601f19603f3d011682016040523d82523d6000602084013e612b98565b606091505b5050809150505b600088118015612baf5750600082115b15612bbf57612bbe888361247d565b5b6000471115612c5757600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612c0e90613632565b60006040518083038185875af1925050503d8060008114612c4b576040519150601f19603f3d011682016040523d82523d6000602084013e612c50565b606091505b5050809150505b5050505050505b8760135411612c6e576000612c7d565b87601354612c7c9190613ff8565b5b6013819055506000601581905550505050505050505050505b565b6000806000601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612cf957600e549050612d52565b601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612d5157600d5490505b5b601e811015612d6057601e90505b600080600560149054906101000a900461ffff1661ffff161115612de9576064600560149054906101000a900461ffff1661ffff16612710612da291906138f0565b612dac9190613961565b90506001600560148282829054906101000a900461ffff16612dce9190614219565b92506101000a81548161ffff021916908361ffff1602179055505b6127108183612df89190613562565b86612e0391906138f0565b612e0d9190613961565b935081601e85612e1d91906138f0565b612e279190613961565b92505050935093915050565b505050565b505050565b6000600267ffffffffffffffff811115612e5a57612e5961424f565b5b604051908082528060200260200182016040528015612e885781602001602082028036833780820191505090505b5090503081600081518110612ea057612e9f61427e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612f45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f6991906135ab565b81600181518110612f7d57612f7c61427e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161301995949392919061436b565b600060405180830381600087803b15801561303357600080fd5b505af1158015613047573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561308957808201518184015260208101905061306e565b60008484015250505050565b6000601f19601f8301169050919050565b60006130b18261304f565b6130bb818561305a565b93506130cb81856020860161306b565b6130d481613095565b840191505092915050565b600060208201905081810360008301526130f981846130a6565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061313182613106565b9050919050565b61314181613126565b811461314c57600080fd5b50565b60008135905061315e81613138565b92915050565b6000819050919050565b61317781613164565b811461318257600080fd5b50565b6000813590506131948161316e565b92915050565b600080604083850312156131b1576131b0613101565b5b60006131bf8582860161314f565b92505060206131d085828601613185565b9150509250929050565b60008115159050919050565b6131ef816131da565b82525050565b600060208201905061320a60008301846131e6565b92915050565b61321981613164565b82525050565b60006020820190506132346000830184613210565b92915050565b60008060006060848603121561325357613252613101565b5b60006132618682870161314f565b93505060206132728682870161314f565b925050604061328386828701613185565b9150509250925092565b6000819050919050565b60006132b26132ad6132a884613106565b61328d565b613106565b9050919050565b60006132c482613297565b9050919050565b60006132d6826132b9565b9050919050565b6132e6816132cb565b82525050565b600060208201905061330160008301846132dd565b92915050565b600060ff82169050919050565b61331d81613307565b82525050565b60006020820190506133386000830184613314565b92915050565b61334781613126565b82525050565b6000602082019050613362600083018461333e565b92915050565b60006020828403121561337e5761337d613101565b5b600061338c8482850161314f565b91505092915050565b61339e816131da565b81146133a957600080fd5b50565b6000813590506133bb81613395565b92915050565b6000602082840312156133d7576133d6613101565b5b60006133e5848285016133ac565b91505092915050565b6000806040838503121561340557613404613101565b5b60006134138582860161314f565b9250506020613424858286016133ac565b9150509250929050565b6000806040838503121561344557613444613101565b5b60006134538582860161314f565b92505060206134648582860161314f565b9150509250929050565b60006020828403121561348457613483613101565b5b600061349284828501613185565b91505092915050565b600061ffff82169050919050565b6134b28161349b565b82525050565b60006020820190506134cd60008301846134a9565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061351a57607f821691505b60208210810361352d5761352c6134d3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061356d82613164565b915061357883613164565b92508282019050808211156135905761358f613533565b5b92915050565b6000815190506135a581613138565b92915050565b6000602082840312156135c1576135c0613101565b5b60006135cf84828501613596565b91505092915050565b60006040820190506135ed600083018561333e565b6135fa602083018461333e565b9392505050565b600081905092915050565b50565b600061361c600083613601565b91506136278261360c565b600082019050919050565b600061363d8261360f565b9150819050919050565b7f54726164696e6720697320616c7265616479206f70656e000000000000000000600082015250565b600061367d60178361305a565b915061368882613647565b602082019050919050565b600060208201905081810360008301526136ac81613670565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061370f60398361305a565b915061371a826136b3565b604082019050919050565b6000602082019050818103600083015261373e81613702565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006137a160258361305a565b91506137ac82613745565b604082019050919050565b600060208201905081810360008301526137d081613794565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000600082015250565b600061380d601a8361305a565b9150613818826137d7565b602082019050919050565b6000602082019050818103600083015261383c81613800565b9050919050565b6000815190506138528161316e565b92915050565b60006020828403121561386e5761386d613101565b5b600061387c84828501613843565b91505092915050565b600060408201905061389a600083018561333e565b6138a76020830184613210565b9392505050565b6000815190506138bd81613395565b92915050565b6000602082840312156138d9576138d8613101565b5b60006138e7848285016138ae565b91505092915050565b60006138fb82613164565b915061390683613164565b925082820261391481613164565b9150828204841483151761392b5761392a613533565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061396c82613164565b915061397783613164565b92508261398757613986613932565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006139ee60358361305a565b91506139f982613992565b604082019050919050565b60006020820190508181036000830152613a1d816139e1565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613a8060348361305a565b9150613a8b82613a24565b604082019050919050565b60006020820190508181036000830152613aaf81613a73565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b1260268361305a565b9150613b1d82613ab6565b604082019050919050565b60006020820190508181036000830152613b4181613b05565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613ba460248361305a565b9150613baf82613b48565b604082019050919050565b60006020820190508181036000830152613bd381613b97565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c3660228361305a565b9150613c4182613bda565b604082019050919050565b60006020820190508181036000830152613c6581613c29565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613ca2601d8361305a565b9150613cad82613c6c565b602082019050919050565b60006020820190508181036000830152613cd181613c95565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613d3460258361305a565b9150613d3f82613cd8565b604082019050919050565b60006020820190508181036000830152613d6381613d27565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613dc660238361305a565b9150613dd182613d6a565b604082019050919050565b60006020820190508181036000830152613df581613db9565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613e3260168361305a565b9150613e3d82613dfc565b602082019050919050565b60006020820190508181036000830152613e6181613e25565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d617854726164696e67416d6f756e742e000000000000000000000000000000602082015250565b6000613ec460318361305a565b9150613ecf82613e68565b604082019050919050565b60006020820190508181036000830152613ef381613eb7565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613f3060138361305a565b9150613f3b82613efa565b602082019050919050565b60006020820190508181036000830152613f5f81613f23565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d617854726164696e67416d6f756e742e0000000000000000000000000000602082015250565b6000613fc260328361305a565b9150613fcd82613f66565b604082019050919050565b60006020820190508181036000830152613ff181613fb5565b9050919050565b600061400382613164565b915061400e83613164565b925082820390508181111561402657614025613533565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061406260208361305a565b915061406d8261402c565b602082019050919050565b6000602082019050818103600083015261409181614055565b9050919050565b6000819050919050565b60006140bd6140b86140b384614098565b61328d565b613164565b9050919050565b6140cd816140a2565b82525050565b600060c0820190506140e8600083018961333e565b6140f56020830188613210565b61410260408301876140c4565b61410f60608301866140c4565b61411c608083018561333e565b61412960a0830184613210565b979650505050505050565b60008060006060848603121561414d5761414c613101565b5b600061415b86828701613843565b935050602061416c86828701613843565b925050604061417d86828701613843565b9150509250925092565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006141e360268361305a565b91506141ee82614187565b604082019050919050565b60006020820190508181036000830152614212816141d6565b9050919050565b60006142248261349b565b915061422f8361349b565b9250828203905061ffff81111561424957614248613533565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6142e281613126565b82525050565b60006142f483836142d9565b60208301905092915050565b6000602082019050919050565b6000614318826142ad565b61432281856142b8565b935061432d836142c9565b8060005b8381101561435e57815161434588826142e8565b975061435083614300565b925050600181019050614331565b5085935050505092915050565b600060a0820190506143806000830188613210565b61438d60208301876140c4565b818103604083015261439f818661430d565b90506143ae606083018561333e565b6143bb6080830184613210565b969550505050505056fea264697066735822122009d7257a5490a8581f95dc60dd82173a7bbe61b0c3190112daf284ba8be4bec364736f6c634300081300330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000005f5e100000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000000c8000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000001f400000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004b000000000000000000000000000000000000000000000000000000000000009600000000000000000000000000000000000000000000000000000000000001130000000000000000000000007ca22da9673582201b4ff99e39dd7a174703e3be00000000000000000000000061c429d58a980828e304319bfedd1dcfdfed4e84000000000000000000000000000000000000000000000000000000000000232800000000000000000000000000000000000000000000000000000000000000054c4f54544f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054c4f54544f000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102815760003560e01c80638ea5220f1161014f578063b62496f5116100c1578063d85ba0631161007a578063d85ba06314610956578063dd62ed3e14610981578063df376d0b146109be578063e2f45605146109fb578063f2fde38b14610a26578063fce589d814610a4f57610288565b8063b62496f514610853578063bbc0c74214610890578063bc205ad3146108bb578063c9567bf9146108e4578063d257b34f146108ee578063d55d53a71461092b57610288565b80639a7a23d6116101135780639a7a23d61461072f5780639ee708ff14610758578063a457c2d714610783578063a9059cbb146107c0578063aa4bde28146107fd578063ad05a7b51461082857610288565b80638ea5220f1461065a578063924de9b71461068557806395d89b41146106ae57806396ea32da146106d957806398118cb41461070457610288565b80634e6fd6c4116101f3578063751039fc116101ac578063751039fc1461057b578063782c4e99146105a65780637ca8448a146105d157806381efb72d146105fa5780638a8c523c146106255780638da5cb5b1461062f57610288565b80634e6fd6c41461047b5780636827e764146104a65780636a486a8e146104d15780636ddd1713146104fc57806370a0823114610527578063715018a61461056457610288565b806327dce8471161024557806327dce84714610388578063313ce567146103b357806339509351146103de57806344f8ffd21461041b578063470caeb5146104465780634a62bb651461045057610288565b806306fdde031461028d578063095ea7b3146102b857806313114a9d146102f557806318160ddd1461032057806323b872dd1461034b57610288565b3661028857005b600080fd5b34801561029957600080fd5b506102a2610a7a565b6040516102af91906130df565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da919061319a565b610b0c565b6040516102ec91906131f5565b60405180910390f35b34801561030157600080fd5b5061030a610b2f565b604051610317919061321f565b60405180910390f35b34801561032c57600080fd5b50610335610b35565b604051610342919061321f565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d919061323a565b610b3f565b60405161037f91906131f5565b60405180910390f35b34801561039457600080fd5b5061039d610b6e565b6040516103aa91906132ec565b60405180910390f35b3480156103bf57600080fd5b506103c8610b92565b6040516103d59190613323565b60405180910390f35b3480156103ea57600080fd5b506104056004803603810190610400919061319a565b610ba9565b60405161041291906131f5565b60405180910390f35b34801561042757600080fd5b50610430610be0565b60405161043d919061321f565b60405180910390f35b61044e610be6565b005b34801561045c57600080fd5b50610465610e66565b60405161047291906131f5565b60405180910390f35b34801561048757600080fd5b50610490610e79565b60405161049d919061334d565b60405180910390f35b3480156104b257600080fd5b506104bb610e7f565b6040516104c8919061321f565b60405180910390f35b3480156104dd57600080fd5b506104e6610e85565b6040516104f3919061321f565b60405180910390f35b34801561050857600080fd5b50610511610e8b565b60405161051e91906131f5565b60405180910390f35b34801561053357600080fd5b5061054e60048036038101906105499190613368565b610e9e565b60405161055b919061321f565b60405180910390f35b34801561057057600080fd5b50610579610ee6565b005b34801561058757600080fd5b50610590610efa565b60405161059d91906131f5565b60405180910390f35b3480156105b257600080fd5b506105bb610f26565b6040516105c8919061334d565b60405180910390f35b3480156105dd57600080fd5b506105f860048036038101906105f39190613368565b610f4c565b005b34801561060657600080fd5b5061060f611020565b60405161061c919061334d565b60405180910390f35b61062d611046565b005b34801561063b57600080fd5b506106446110dd565b604051610651919061334d565b60405180910390f35b34801561066657600080fd5b5061066f611107565b60405161067c919061334d565b60405180910390f35b34801561069157600080fd5b506106ac60048036038101906106a791906133c1565b61112d565b005b3480156106ba57600080fd5b506106c36111a4565b6040516106d091906130df565b60405180910390f35b3480156106e557600080fd5b506106ee611236565b6040516106fb919061321f565b60405180910390f35b34801561071057600080fd5b5061071961123c565b604051610726919061321f565b60405180910390f35b34801561073b57600080fd5b50610756600480360381019061075191906133ee565b611242565b005b34801561076457600080fd5b5061076d61133a565b60405161077a919061321f565b60405180910390f35b34801561078f57600080fd5b506107aa60048036038101906107a5919061319a565b611340565b6040516107b791906131f5565b60405180910390f35b3480156107cc57600080fd5b506107e760048036038101906107e2919061319a565b6113b7565b6040516107f491906131f5565b60405180910390f35b34801561080957600080fd5b506108126113da565b60405161081f919061321f565b60405180910390f35b34801561083457600080fd5b5061083d6113e0565b60405161084a919061321f565b60405180910390f35b34801561085f57600080fd5b5061087a60048036038101906108759190613368565b6113e6565b60405161088791906131f5565b60405180910390f35b34801561089c57600080fd5b506108a5611406565b6040516108b291906131f5565b60405180910390f35b3480156108c757600080fd5b506108e260048036038101906108dd919061342e565b611419565b005b6108ec6115e4565b005b3480156108fa57600080fd5b506109156004803603810190610910919061346e565b6115fe565b60405161092291906131f5565b60405180910390f35b34801561093757600080fd5b50610940611731565b60405161094d91906134b8565b60405180910390f35b34801561096257600080fd5b5061096b611745565b604051610978919061321f565b60405180910390f35b34801561098d57600080fd5b506109a860048036038101906109a3919061342e565b61174b565b6040516109b5919061321f565b60405180910390f35b3480156109ca57600080fd5b506109e560048036038101906109e09190613368565b6117d2565b6040516109f291906131f5565b60405180910390f35b348015610a0757600080fd5b50610a106117f2565b604051610a1d919061321f565b60405180910390f35b348015610a3257600080fd5b50610a4d6004803603810190610a489190613368565b6117f8565b005b348015610a5b57600080fd5b50610a6461187b565b604051610a71919061321f565b60405180910390f35b606060038054610a8990613502565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab590613502565b8015610b025780601f10610ad757610100808354040283529160200191610b02565b820191906000526020600020905b815481529060010190602001808311610ae557829003601f168201915b5050505050905090565b600080610b17611881565b9050610b24818585611889565b600191505092915050565b60145481565b6000600254905090565b600080610b4a611881565b9050610b57858285611a52565b610b62858585611ade565b60019150509392505050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600560169054906101000a900460ff16905090565b600080610bb4611881565b9050610bd5818585610bc6858961174b565b610bd09190613562565b611889565b600191505092915050565b60155481565b610bee61235e565b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610e255760007f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cb1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cd591906135ab565b90508073ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d5f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d8391906135ab565b6040518363ffffffff1660e01b8152600401610da09291906135d8565b6020604051808303816000875af1158015610dbf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610de391906135ab565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505b610e52600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016123dc565b610e64610e5e30610e9e565b4761247d565b565b600c60009054906101000a900460ff1681565b61dead81565b60115481565b600e5481565b600660149054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610eee61235e565b610ef86000612533565b565b6000610f0461235e565b6000600c60006101000a81548160ff0219169083151502179055506001905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610fa657600080fd5b60008173ffffffffffffffffffffffffffffffffffffffff1647604051610fcc90613632565b60006040518083038185875af1925050503d8060008114611009576040519150601f19603f3d011682016040523d82523d6000602084013e61100e565b606091505b505090508061101c57600080fd5b5050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61104e61235e565b600c60019054906101000a900460ff161561109e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109590613693565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600660146101000a81548160ff02191690831515021790555043601881905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461118757600080fd5b80600660146101000a81548160ff02191690831515021790555050565b6060600480546111b390613502565b80601f01602080910402602001604051908101604052809291908181526020018280546111df90613502565b801561122c5780601f106112015761010080835404028352916020019161122c565b820191906000526020600020905b81548152906001019060200180831161120f57829003601f168201915b5050505050905090565b60095481565b60105481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461129c57600080fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361132c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132390613725565b60405180910390fd5b61133682826123dc565b5050565b60135481565b60008061134b611881565b90506000611359828661174b565b90508381101561139e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611395906137b7565b60405180910390fd5b6113ab8286868403611889565b60019250505092915050565b6000806113c2611881565b90506113cf818585611ade565b600191505092915050565b600b5481565b60125481565b60176020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461147357600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d990613823565b60405180910390fd5b60008290508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb838373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161153d919061334d565b602060405180830381865afa15801561155a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061157e9190613858565b6040518363ffffffff1660e01b815260040161159b929190613885565b6020604051808303816000875af11580156115ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115de91906138c3565b50505050565b6115ec61235e565b6115f4610be6565b6115fc611046565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461165a57600080fd5b620186a06001611668610b35565b61167291906138f0565b61167c9190613961565b8210156116be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b590613a04565b60405180910390fd5b6103e860056116cb610b35565b6116d591906138f0565b6116df9190613961565b821115611721576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171890613a96565b60405180910390fd5b81600a8190555060019050919050565b600560149054906101000a900461ffff1681565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b600a5481565b61180061235e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361186f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186690613b28565b60405180910390fd5b61187881612533565b50565b600f5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ef90613bba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195e90613c4c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611a45919061321f565b60405180910390a3505050565b6000611a5e848461174b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611ad85781811015611aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac190613cb8565b60405180910390fd5b611ad78484848403611889565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4490613d4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb390613ddc565b60405180910390fd5b60008103611bd557611bd0838360006125f9565b612359565b600c60009054906101000a900460ff168015611c3b5750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611c915750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611fee57600c60019054906101000a900460ff16158015611d505750601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611d4f5750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b5b15611e3657601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611df65750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2c90613e48565b60405180910390fd5b5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f5457600954811115611ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec490613eda565b60405180910390fd5b600b54611ed983610e9e565b82611ee49190613562565b1115611f25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1c90613f46565b60405180910390fd5b436003601854611f359190613562565b1115611f4f57611f448261286f565b15611f4e57600080fd5b5b611fed565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611fec57600954811115611feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe290613fd8565b60405180910390fd5b5b5b5b6000600a54601554101590508080156120135750600660149054906101000a900460ff165b801561202c5750600660159054906101000a900460ff16155b80156120825750601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156120d85750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561212e5750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612172576001600660156101000a81548160ff021916908315150217905550612156612882565b6000600660156101000a81548160ff0219169083151502179055505b6000600660159054906101000a900460ff1615801561222e5750601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061222d5750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b5b9050601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806122d15750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156122db57600090505b801561234b576000806122ef878787612c98565b915091506000821115612348576123078730846125f9565b80601360008282546123199190613562565b92505081905550818561232c9190613ff8565b945081601560008282546123409190613562565b925050819055505b50505b6123568585856125f9565b50505b505050565b612366611881565b73ffffffffffffffffffffffffffffffffffffffff166123846110dd565b73ffffffffffffffffffffffffffffffffffffffff16146123da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d190614078565b60405180910390fd5b565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806124c76110dd565b426040518863ffffffff1660e01b81526004016124e9969594939291906140d3565b60606040518083038185885af1158015612507573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061252c9190614134565b5050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612668576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265f90613d4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ce90613ddc565b60405180910390fd5b6126e2838383612e33565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612768576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275f906141f9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612856919061321f565b60405180910390a3612869848484612e38565b50505050565b600080823b905060008111915050919050565b600061288d30610e9e565b90506000819050600060135490506014600a546128aa91906138f0565b8211156128de576014600a546128c091906138f0565b915082826013546128d191906138f0565b6128db9190613961565b90505b600082036128ee57505050612c96565b600081836128fc9190613ff8565b9050600080600080600060145411156129a857601454600f548661292091906138f0565b61292a9190613961565b93506014546010548661293d91906138f0565b6129479190613961565b92506014546012548661295a91906138f0565b6129649190613961565b91506014546011548661297791906138f0565b6129819190613961565b9050808284866129919190613562565b61299b9190613562565b6129a59190613562565b94505b84876129b49190613ff8565b955060006002846129c59190613961565b9050600085828a6129d69190613ff8565b6129e09190613ff8565b905060008611156129f9576129f83061dead886125f9565b5b6000811115612c5e576000479050612a1082612e3d565b60008147612a1e9190613ff8565b90506000838b83612a2f91906138f0565b612a399190613961565b90506000848884612a4a91906138f0565b612a549190613961565b9050600085878b612a659190613ff8565b85612a7091906138f0565b612a7a9190613961565b9050600080841115612b07577391fead7f2b2172e75ffcf4cadff5049c9270ee4173ffffffffffffffffffffffffffffffffffffffff1684604051612abe90613632565b60006040518083038185875af1925050503d8060008114612afb576040519150601f19603f3d011682016040523d82523d6000602084013e612b00565b606091505b5050809150505b6000831115612b9f57600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051612b5690613632565b60006040518083038185875af1925050503d8060008114612b93576040519150601f19603f3d011682016040523d82523d6000602084013e612b98565b606091505b5050809150505b600088118015612baf5750600082115b15612bbf57612bbe888361247d565b5b6000471115612c5757600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612c0e90613632565b60006040518083038185875af1925050503d8060008114612c4b576040519150601f19603f3d011682016040523d82523d6000602084013e612c50565b606091505b5050809150505b5050505050505b8760135411612c6e576000612c7d565b87601354612c7c9190613ff8565b5b6013819055506000601581905550505050505050505050505b565b6000806000601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612cf957600e549050612d52565b601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612d5157600d5490505b5b601e811015612d6057601e90505b600080600560149054906101000a900461ffff1661ffff161115612de9576064600560149054906101000a900461ffff1661ffff16612710612da291906138f0565b612dac9190613961565b90506001600560148282829054906101000a900461ffff16612dce9190614219565b92506101000a81548161ffff021916908361ffff1602179055505b6127108183612df89190613562565b86612e0391906138f0565b612e0d9190613961565b935081601e85612e1d91906138f0565b612e279190613961565b92505050935093915050565b505050565b505050565b6000600267ffffffffffffffff811115612e5a57612e5961424f565b5b604051908082528060200260200182016040528015612e885781602001602082028036833780820191505090505b5090503081600081518110612ea057612e9f61427e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612f45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f6991906135ab565b81600181518110612f7d57612f7c61427e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161301995949392919061436b565b600060405180830381600087803b15801561303357600080fd5b505af1158015613047573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561308957808201518184015260208101905061306e565b60008484015250505050565b6000601f19601f8301169050919050565b60006130b18261304f565b6130bb818561305a565b93506130cb81856020860161306b565b6130d481613095565b840191505092915050565b600060208201905081810360008301526130f981846130a6565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061313182613106565b9050919050565b61314181613126565b811461314c57600080fd5b50565b60008135905061315e81613138565b92915050565b6000819050919050565b61317781613164565b811461318257600080fd5b50565b6000813590506131948161316e565b92915050565b600080604083850312156131b1576131b0613101565b5b60006131bf8582860161314f565b92505060206131d085828601613185565b9150509250929050565b60008115159050919050565b6131ef816131da565b82525050565b600060208201905061320a60008301846131e6565b92915050565b61321981613164565b82525050565b60006020820190506132346000830184613210565b92915050565b60008060006060848603121561325357613252613101565b5b60006132618682870161314f565b93505060206132728682870161314f565b925050604061328386828701613185565b9150509250925092565b6000819050919050565b60006132b26132ad6132a884613106565b61328d565b613106565b9050919050565b60006132c482613297565b9050919050565b60006132d6826132b9565b9050919050565b6132e6816132cb565b82525050565b600060208201905061330160008301846132dd565b92915050565b600060ff82169050919050565b61331d81613307565b82525050565b60006020820190506133386000830184613314565b92915050565b61334781613126565b82525050565b6000602082019050613362600083018461333e565b92915050565b60006020828403121561337e5761337d613101565b5b600061338c8482850161314f565b91505092915050565b61339e816131da565b81146133a957600080fd5b50565b6000813590506133bb81613395565b92915050565b6000602082840312156133d7576133d6613101565b5b60006133e5848285016133ac565b91505092915050565b6000806040838503121561340557613404613101565b5b60006134138582860161314f565b9250506020613424858286016133ac565b9150509250929050565b6000806040838503121561344557613444613101565b5b60006134538582860161314f565b92505060206134648582860161314f565b9150509250929050565b60006020828403121561348457613483613101565b5b600061349284828501613185565b91505092915050565b600061ffff82169050919050565b6134b28161349b565b82525050565b60006020820190506134cd60008301846134a9565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061351a57607f821691505b60208210810361352d5761352c6134d3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061356d82613164565b915061357883613164565b92508282019050808211156135905761358f613533565b5b92915050565b6000815190506135a581613138565b92915050565b6000602082840312156135c1576135c0613101565b5b60006135cf84828501613596565b91505092915050565b60006040820190506135ed600083018561333e565b6135fa602083018461333e565b9392505050565b600081905092915050565b50565b600061361c600083613601565b91506136278261360c565b600082019050919050565b600061363d8261360f565b9150819050919050565b7f54726164696e6720697320616c7265616479206f70656e000000000000000000600082015250565b600061367d60178361305a565b915061368882613647565b602082019050919050565b600060208201905081810360008301526136ac81613670565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061370f60398361305a565b915061371a826136b3565b604082019050919050565b6000602082019050818103600083015261373e81613702565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006137a160258361305a565b91506137ac82613745565b604082019050919050565b600060208201905081810360008301526137d081613794565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000600082015250565b600061380d601a8361305a565b9150613818826137d7565b602082019050919050565b6000602082019050818103600083015261383c81613800565b9050919050565b6000815190506138528161316e565b92915050565b60006020828403121561386e5761386d613101565b5b600061387c84828501613843565b91505092915050565b600060408201905061389a600083018561333e565b6138a76020830184613210565b9392505050565b6000815190506138bd81613395565b92915050565b6000602082840312156138d9576138d8613101565b5b60006138e7848285016138ae565b91505092915050565b60006138fb82613164565b915061390683613164565b925082820261391481613164565b9150828204841483151761392b5761392a613533565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061396c82613164565b915061397783613164565b92508261398757613986613932565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006139ee60358361305a565b91506139f982613992565b604082019050919050565b60006020820190508181036000830152613a1d816139e1565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613a8060348361305a565b9150613a8b82613a24565b604082019050919050565b60006020820190508181036000830152613aaf81613a73565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b1260268361305a565b9150613b1d82613ab6565b604082019050919050565b60006020820190508181036000830152613b4181613b05565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613ba460248361305a565b9150613baf82613b48565b604082019050919050565b60006020820190508181036000830152613bd381613b97565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c3660228361305a565b9150613c4182613bda565b604082019050919050565b60006020820190508181036000830152613c6581613c29565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613ca2601d8361305a565b9150613cad82613c6c565b602082019050919050565b60006020820190508181036000830152613cd181613c95565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613d3460258361305a565b9150613d3f82613cd8565b604082019050919050565b60006020820190508181036000830152613d6381613d27565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613dc660238361305a565b9150613dd182613d6a565b604082019050919050565b60006020820190508181036000830152613df581613db9565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613e3260168361305a565b9150613e3d82613dfc565b602082019050919050565b60006020820190508181036000830152613e6181613e25565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d617854726164696e67416d6f756e742e000000000000000000000000000000602082015250565b6000613ec460318361305a565b9150613ecf82613e68565b604082019050919050565b60006020820190508181036000830152613ef381613eb7565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613f3060138361305a565b9150613f3b82613efa565b602082019050919050565b60006020820190508181036000830152613f5f81613f23565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d617854726164696e67416d6f756e742e0000000000000000000000000000602082015250565b6000613fc260328361305a565b9150613fcd82613f66565b604082019050919050565b60006020820190508181036000830152613ff181613fb5565b9050919050565b600061400382613164565b915061400e83613164565b925082820390508181111561402657614025613533565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061406260208361305a565b915061406d8261402c565b602082019050919050565b6000602082019050818103600083015261409181614055565b9050919050565b6000819050919050565b60006140bd6140b86140b384614098565b61328d565b613164565b9050919050565b6140cd816140a2565b82525050565b600060c0820190506140e8600083018961333e565b6140f56020830188613210565b61410260408301876140c4565b61410f60608301866140c4565b61411c608083018561333e565b61412960a0830184613210565b979650505050505050565b60008060006060848603121561414d5761414c613101565b5b600061415b86828701613843565b935050602061416c86828701613843565b925050604061417d86828701613843565b9150509250925092565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006141e360268361305a565b91506141ee82614187565b604082019050919050565b60006020820190508181036000830152614212816141d6565b9050919050565b60006142248261349b565b915061422f8361349b565b9250828203905061ffff81111561424957614248613533565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6142e281613126565b82525050565b60006142f483836142d9565b60208301905092915050565b6000602082019050919050565b6000614318826142ad565b61432281856142b8565b935061432d836142c9565b8060005b8381101561435e57815161434588826142e8565b975061435083614300565b925050600181019050614331565b5085935050505092915050565b600060a0820190506143806000830188613210565b61438d60208301876140c4565b818103604083015261439f818661430d565b90506143ae606083018561333e565b6143bb6080830184613210565b969550505050505056fea264697066735822122009d7257a5490a8581f95dc60dd82173a7bbe61b0c3190112daf284ba8be4bec364736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000005f5e100000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000000c8000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000001f400000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004b000000000000000000000000000000000000000000000000000000000000009600000000000000000000000000000000000000000000000000000000000001130000000000000000000000007ca22da9673582201b4ff99e39dd7a174703e3be00000000000000000000000061c429d58a980828e304319bfedd1dcfdfed4e84000000000000000000000000000000000000000000000000000000000000232800000000000000000000000000000000000000000000000000000000000000054c4f54544f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054c4f54544f000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : routerAddress (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : params (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
-----Encoded View---------------
22 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000200
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000240
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 0000000000000000000000000000000000000000000000000000000005f5e100
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [7] : 00000000000000000000000000000000000000000000000000000000000000c8
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [9] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [10] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [12] : 000000000000000000000000000000000000000000000000000000000000004b
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000096
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000113
Arg [15] : 0000000000000000000000007ca22da9673582201b4ff99e39dd7a174703e3be
Arg [16] : 00000000000000000000000061c429d58a980828e304319bfedd1dcfdfed4e84
Arg [17] : 0000000000000000000000000000000000000000000000000000000000002328
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [19] : 4c4f54544f000000000000000000000000000000000000000000000000000000
Arg [20] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [21] : 4c4f54544f000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.