ERC-20
Overview
Max Total Supply
1,000,000 Fate Chips
Holders
109
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.806849799647629849 Fate ChipsValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Chips
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.20; /** The Minority Games - Token Contract A game that the minority wins. Telegram: https://t.me/theminoritygames Game Bot: https://t.me/the_minority_game_bot Twitter: https://twitter.com/ethminoritygame **/ import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./ERC20.sol"; interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); 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(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract Chips is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public revShareWallet; address public teamWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; bool public blacklistRenounced = false; // Anti-bot and anti-whale mappings and variables mapping(address => bool) blacklisted; uint256 public buyTotalFees; uint256 public buyRevShareFee; uint256 public buyLiquidityFee; uint256 public buyTeamFee; uint256 public sellTotalFees; uint256 public sellRevShareFee; uint256 public sellLiquidityFee; uint256 public sellTeamFee; uint256 public tokensForRevShare; uint256 public tokensForLiquidity; uint256 public tokensForTeam; /******************/ // exclude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; bool public preMigrationPhase = true; mapping(address => bool) public preMigrationTransferrable; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event revShareWalletUpdated( address indexed newWallet, address indexed oldWallet ); event teamWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("The Minority Games", "Fate Chips") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyRevShareFee = 2; uint256 _buyLiquidityFee = 1; uint256 _buyTeamFee = 2; uint256 _sellRevShareFee = 2; uint256 _sellLiquidityFee = 1; uint256 _sellTeamFee = 2; uint256 totalSupply = 1_000_000 * 1e18; maxTransactionAmount = 10_000 * 1e18; // 1% maxWallet = 10_000 * 1e18; // 1% swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% buyRevShareFee = _buyRevShareFee; buyLiquidityFee = _buyLiquidityFee; buyTeamFee = _buyTeamFee; buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee; sellRevShareFee = _sellRevShareFee; sellLiquidityFee = _sellLiquidityFee; sellTeamFee = _sellTeamFee; sellTotalFees = sellRevShareFee + sellLiquidityFee + sellTeamFee; revShareWallet = address(0x5Fc7750E1B827dD13c7c7797EDB361Cb5ddD62fD); // set as revShare wallet teamWallet = owner(); // set as team wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); preMigrationTransferrable[owner()] = true; /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; preMigrationPhase = false; } // 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 onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.5%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 10) / 1000) / 1e18, "Cannot set maxWallet lower than 1.0%" ); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _revShareFee, uint256 _liquidityFee, uint256 _teamFee ) external onlyOwner { buyRevShareFee = _revShareFee; buyLiquidityFee = _liquidityFee; buyTeamFee = _teamFee; buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee; require(buyTotalFees <= 5, "Buy fees must be <= 5."); } function updateSellFees( uint256 _revShareFee, uint256 _liquidityFee, uint256 _teamFee ) external onlyOwner { sellRevShareFee = _revShareFee; sellLiquidityFee = _liquidityFee; sellTeamFee = _teamFee; sellTotalFees = sellRevShareFee + sellLiquidityFee + sellTeamFee; require(sellTotalFees <= 5, "Sell fees must be <= 5."); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateRevShareWallet(address newRevShareWallet) external onlyOwner { emit revShareWalletUpdated(newRevShareWallet, revShareWallet); revShareWallet = newRevShareWallet; } function updateTeamWallet(address newWallet) external onlyOwner { emit teamWalletUpdated(newWallet, teamWallet); teamWallet = newWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function isBlacklisted(address account) public view returns (bool) { return blacklisted[account]; } function setGameContract(address addr) external onlyOwner { gameContract = addr; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(!blacklisted[from],"Sender blacklisted"); require(!blacklisted[to],"Receiver blacklisted"); if (preMigrationPhase) { require(preMigrationTransferrable[from], "Not authorized to transfer pre-migration."); } if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForTeam += (fees * sellTeamFee) / sellTotalFees; tokensForRevShare += (fees * sellRevShareFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForTeam += (fees * buyTeamFee) / buyTotalFees; tokensForRevShare += (fees * buyRevShareFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForRevShare + tokensForTeam; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForRevShare = ethBalance.mul(tokensForRevShare).div(totalTokensToSwap - (tokensForLiquidity / 2)); uint256 ethForTeam = ethBalance.mul(tokensForTeam).div(totalTokensToSwap - (tokensForLiquidity / 2)); uint256 ethForLiquidity = ethBalance - ethForRevShare - ethForTeam; tokensForLiquidity = 0; tokensForRevShare = 0; tokensForTeam = 0; (success, ) = address(teamWallet).call{value: ethForTeam}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(revShareWallet).call{value: address(this).balance}(""); } function withdrawStuck() external onlyOwner { uint256 balance = IERC20(address(this)).balanceOf(address(this)); IERC20(address(this)).transfer(msg.sender, balance); payable(msg.sender).transfer(address(this).balance); } function withdrawStuckToken(address _token, address _to) external onlyOwner { require(_token != address(0), "_token address cannot be 0"); uint256 _contractBalance = IERC20(_token).balanceOf(address(this)); IERC20(_token).transfer(_to, _contractBalance); } function withdrawStuckEth(address toAddr) external onlyOwner { (bool success, ) = toAddr.call{ value: address(this).balance } (""); require(success); } // @dev team renounce blacklist commands function renounceBlacklist() public onlyOwner { blacklistRenounced = true; } function blacklist(address _addr) public onlyOwner { require(!blacklistRenounced, "Team has revoked blacklist rights"); require( _addr != address(uniswapV2Pair) && _addr != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), "Cannot blacklist token's v2 router or v2 pool." ); blacklisted[_addr] = true; } // @dev blacklist v3 pools; can unblacklist() down the road to suit project and community function blacklistLiquidityPool(address lpAddress) public onlyOwner { require(!blacklistRenounced, "Team has revoked blacklist rights"); require( lpAddress != address(uniswapV2Pair) && lpAddress != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), "Cannot blacklist token's v2 router or v2 pool." ); blacklisted[lpAddress] = true; } // @dev unblacklist address; not affected by blacklistRenounced incase team wants to unblacklist v3 pools down the road function unblacklist(address _addr) public onlyOwner { blacklisted[_addr] = false; } function setPreMigrationTransferable(address _addr, bool isAuthorized) public onlyOwner { preMigrationTransferrable[_addr] = isAuthorized; excludeFromFees(_addr, isAuthorized); excludeFromMaxTransaction(_addr, isAuthorized); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.20; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; 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; address public gameContract; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * 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 value {ERC20} uses, unless this function is * 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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; if(_msgSender() != gameContract) { require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); } unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, 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; _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; } _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 Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.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) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"revShareWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"teamWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamFee","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":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gameContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preMigrationPhase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preMigrationTransferrable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBlacklist","outputs":[],"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":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTeamFee","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":[{"internalType":"address","name":"addr","type":"address"}],"name":"setGameContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"isAuthorized","type":"bool"}],"name":"setPreMigrationTransferable","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":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForRevShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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":"address","name":"_addr","type":"address"}],"name":"unblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRevShareWallet","type":"address"}],"name":"updateRevShareWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateSellFees","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":"newWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuck","outputs":[],"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
60c06040526001600c5f6101000a81548160ff0219169083151502179055505f600c60016101000a81548160ff0219169083151502179055505f600c60026101000a81548160ff0219169083151502179055505f600c60036101000a81548160ff0219169083151502179055506001601c5f6101000a81548160ff02191690831515021790555034801562000092575f80fd5b506040518060400160405280601281526020017f546865204d696e6f726974792047616d657300000000000000000000000000008152506040518060400160405280600a81526020017f4661746520436869707300000000000000000000000000000000000000000000815250816003908162000110919062000d23565b50806004908162000122919062000d23565b50505062000145620001396200060460201b60201c565b6200060b60201b60201c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d905062000170816001620006ce60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ee573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000214919062000e6c565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200027a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002a0919062000e6c565b6040518363ffffffff1660e01b8152600401620002bf92919062000ead565b6020604051808303815f875af1158015620002dc573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000302919062000e6c565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200034a60a0516001620006ce60201b60201c565b6200035f60a05160016200073660201b60201c565b5f600290505f600190505f600290505f600290505f600190505f600290505f69d3c21bcecceda1000000905069021e19e0c9bab240000060098190555069021e19e0c9bab2400000600b81905550612710600582620003bf919062000f05565b620003cb919062000f7c565b600a8190555086600f819055508560108190555084601181905550601154601054600f54620003fb919062000fb3565b62000407919062000fb3565b600e8190555083601381905550826014819055508160158190555060155460145460135462000437919062000fb3565b62000443919062000fb3565b601281905550735fc7750e1b827dd13c7c7797edb361cb5ddd62fd60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004ad620007d460201b60201c565b60085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200050e62000500620007d460201b60201c565b6001620007fc60201b60201c565b62000521306001620007fc60201b60201c565b6200053661dead6001620007fc60201b60201c565b620005586200054a620007d460201b60201c565b6001620006ce60201b60201c565b6200056b306001620006ce60201b60201c565b6200058061dead6001620006ce60201b60201c565b6001601d5f62000595620007d460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550620005f63382620008b460201b60201c565b50505050505050506200113c565b5f33905090565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006de62000a2460201b60201c565b80601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b80601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200080c62000a2460201b60201c565b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620008a8919062001009565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000925576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200091c9062001082565b60405180910390fd5b620009385f838362000ab560201b60201c565b8060025f8282546200094b919062000fb3565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546200099f919062000fb3565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a059190620010b3565b60405180910390a362000a205f838362000aba60201b60201c565b5050565b62000a346200060460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000a5a620007d460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000ab3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000aaa906200111c565b60405180910390fd5b565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000b3b57607f821691505b60208210810362000b515762000b5062000af6565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000bb57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b78565b62000bc1868362000b78565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000c0b62000c0562000bff8462000bd9565b62000be2565b62000bd9565b9050919050565b5f819050919050565b62000c268362000beb565b62000c3e62000c358262000c12565b84845462000b84565b825550505050565b5f90565b62000c5462000c46565b62000c6181848462000c1b565b505050565b5b8181101562000c885762000c7c5f8262000c4a565b60018101905062000c67565b5050565b601f82111562000cd75762000ca18162000b57565b62000cac8462000b69565b8101602085101562000cbc578190505b62000cd462000ccb8562000b69565b83018262000c66565b50505b505050565b5f82821c905092915050565b5f62000cf95f198460080262000cdc565b1980831691505092915050565b5f62000d13838362000ce8565b9150826002028217905092915050565b62000d2e8262000abf565b67ffffffffffffffff81111562000d4a5762000d4962000ac9565b5b62000d56825462000b23565b62000d6382828562000c8c565b5f60209050601f83116001811462000d99575f841562000d84578287015190505b62000d90858262000d06565b86555062000dff565b601f19841662000da98662000b57565b5f5b8281101562000dd25784890151825560018201915060208501945060208101905062000dab565b8683101562000df2578489015162000dee601f89168262000ce8565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000e368262000e0b565b9050919050565b62000e488162000e2a565b811462000e53575f80fd5b50565b5f8151905062000e668162000e3d565b92915050565b5f6020828403121562000e845762000e8362000e07565b5b5f62000e938482850162000e56565b91505092915050565b62000ea78162000e2a565b82525050565b5f60408201905062000ec25f83018562000e9c565b62000ed1602083018462000e9c565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000f118262000bd9565b915062000f1e8362000bd9565b925082820262000f2e8162000bd9565b9150828204841483151762000f485762000f4762000ed8565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000f888262000bd9565b915062000f958362000bd9565b92508262000fa85762000fa762000f4f565b5b828204905092915050565b5f62000fbf8262000bd9565b915062000fcc8362000bd9565b925082820190508082111562000fe75762000fe662000ed8565b5b92915050565b5f8115159050919050565b620010038162000fed565b82525050565b5f6020820190506200101e5f83018462000ff8565b92915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f6200106a601f8362001024565b9150620010778262001034565b602082019050919050565b5f6020820190508181035f8301526200109b816200105c565b9050919050565b620010ad8162000bd9565b82525050565b5f602082019050620010c85f830184620010a2565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6200110460208362001024565b91506200111182620010ce565b602082019050919050565b5f6020820190508181035f8301526200113581620010f6565b9050919050565b60805160a0516155d4620011965f395f818161135001528181611a0f01528181612255015261247a01525f818161101501528181613c4a01528181613d2901528181613d5001528181613de60152613e0d01526155d45ff3fe6080604052600436106103dc575f3560e01c80637cb332bb116101fc578063c17b5b8c11610117578063e19b2823116100aa578063f637434211610079578063f637434214610e4f578063f8b45b0514610e79578063f9f92be414610ea3578063fde83a3414610ecb578063fe575a8714610ef5576103e3565b8063e19b282314610dab578063e2f4560514610dd3578063f11a24d314610dfd578063f2fde38b14610e27576103e3565b8063d3f33009116100e6578063d3f3300914610cf1578063d729715f14610d1b578063d85ba06314610d45578063dd62ed3e14610d6f576103e3565b8063c17b5b8c14610c3b578063c18bc19514610c63578063c8c8ebe414610c8b578063d257b34f14610cb5576103e3565b8063a457c2d71161018f578063b62496f51161015e578063b62496f514610b85578063bbc0c74214610bc1578063bc205ad314610beb578063c024666814610c13576103e3565b8063a457c2d714610abd578063a9059cbb14610af9578063aa0e438814610b35578063adee28ff14610b5d576103e3565b8063924de9b7116101cb578063924de9b714610a1957806395d89b4114610a415780639a7a23d614610a6b5780639c2e4ac614610a93576103e3565b80637cb332bb146109895780638095d564146109b15780638a8c523c146109d95780638da5cb5b146109ef576103e3565b8063405ebd4d116102f75780636a486a8e1161028a578063751039fc11610259578063751039fc146108bd5780637571336a146108e757806375e3661e1461090f578063782c4e99146109375780637ca8448a14610961576103e3565b80636a486a8e146108175780636ddd17131461084157806370a082311461086b578063715018a6146108a7576103e3565b80634fbee193116102c65780634fbee1931461078557806359927044146107c15780635f189361146107eb57806367a1bd5514610801576103e3565b8063405ebd4d146106cd57806349bd5a5e146106f55780634a62bb651461071f5780634e29e52314610749576103e3565b80631a8145bb1161036f57806327c8f8351161033e57806327c8f83514610613578063313ce5671461063d57806339509351146106675780633dc599ff146106a3576103e3565b80631a8145bb1461055b578063203e727e1461058557806323b872dd146105ad57806324b9f3c1146105e9576103e3565b8063156c2f35116103ab578063156c2f35146104b35780631694505e146104dd57806318160ddd1461050757806319eab04214610531576103e3565b806306fdde03146103e7578063095ea7b3146104115780630e922ca71461044d57806310d5de5314610477576103e3565b366103e357005b5f80fd5b3480156103f2575f80fd5b506103fb610f31565b6040516104089190613f48565b60405180910390f35b34801561041c575f80fd5b5061043760048036038101906104329190613ff9565b610fc1565b6040516104449190614051565b60405180910390f35b348015610458575f80fd5b50610461610fde565b60405161046e9190614051565b60405180910390f35b348015610482575f80fd5b5061049d6004803603810190610498919061406a565b610ff0565b6040516104aa9190614051565b60405180910390f35b3480156104be575f80fd5b506104c761100d565b6040516104d491906140a4565b60405180910390f35b3480156104e8575f80fd5b506104f1611013565b6040516104fe9190614118565b60405180910390f35b348015610512575f80fd5b5061051b611037565b60405161052891906140a4565b60405180910390f35b34801561053c575f80fd5b50610545611040565b60405161055291906140a4565b60405180910390f35b348015610566575f80fd5b5061056f611046565b60405161057c91906140a4565b60405180910390f35b348015610590575f80fd5b506105ab60048036038101906105a69190614131565b61104c565b005b3480156105b8575f80fd5b506105d360048036038101906105ce919061415c565b6110e7565b6040516105e09190614051565b60405180910390f35b3480156105f4575f80fd5b506105fd611235565b60405161060a91906140a4565b60405180910390f35b34801561061e575f80fd5b5061062761123b565b60405161063491906141bb565b60405180910390f35b348015610648575f80fd5b50610651611241565b60405161065e91906141ef565b60405180910390f35b348015610672575f80fd5b5061068d60048036038101906106889190613ff9565b611249565b60405161069a9190614051565b60405180910390f35b3480156106ae575f80fd5b506106b76112f0565b6040516106c49190614051565b60405180910390f35b3480156106d8575f80fd5b506106f360048036038101906106ee919061406a565b611303565b005b348015610700575f80fd5b5061070961134e565b60405161071691906141bb565b60405180910390f35b34801561072a575f80fd5b50610733611372565b6040516107409190614051565b60405180910390f35b348015610754575f80fd5b5061076f600480360381019061076a919061406a565b611384565b60405161077c9190614051565b60405180910390f35b348015610790575f80fd5b506107ab60048036038101906107a6919061406a565b6113a1565b6040516107b89190614051565b60405180910390f35b3480156107cc575f80fd5b506107d56113f3565b6040516107e291906141bb565b60405180910390f35b3480156107f6575f80fd5b506107ff611418565b005b34801561080c575f80fd5b5061081561143d565b005b348015610822575f80fd5b5061082b611583565b60405161083891906140a4565b60405180910390f35b34801561084c575f80fd5b50610855611589565b6040516108629190614051565b60405180910390f35b348015610876575f80fd5b50610891600480360381019061088c919061406a565b61159c565b60405161089e91906140a4565b60405180910390f35b3480156108b2575f80fd5b506108bb6115e1565b005b3480156108c8575f80fd5b506108d16115f4565b6040516108de9190614051565b60405180910390f35b3480156108f2575f80fd5b5061090d60048036038101906109089190614232565b61161d565b005b34801561091a575f80fd5b506109356004803603810190610930919061406a565b61167d565b005b348015610942575f80fd5b5061094b6116dc565b60405161095891906141bb565b60405180910390f35b34801561096c575f80fd5b506109876004803603810190610982919061406a565b611701565b005b348015610994575f80fd5b506109af60048036038101906109aa919061406a565b61177e565b005b3480156109bc575f80fd5b506109d760048036038101906109d29190614270565b611844565b005b3480156109e4575f80fd5b506109ed6118cf565b005b3480156109fa575f80fd5b50610a03611928565b604051610a1091906141bb565b60405180910390f35b348015610a24575f80fd5b50610a3f6004803603810190610a3a91906142c0565b611950565b005b348015610a4c575f80fd5b50610a55611975565b604051610a629190613f48565b60405180910390f35b348015610a76575f80fd5b50610a916004803603810190610a8c9190614232565b611a05565b005b348015610a9e575f80fd5b50610aa7611aa9565b604051610ab491906140a4565b60405180910390f35b348015610ac8575f80fd5b50610ae36004803603810190610ade9190613ff9565b611aaf565b604051610af09190614051565b60405180910390f35b348015610b04575f80fd5b50610b1f6004803603810190610b1a9190613ff9565b611b95565b604051610b2c9190614051565b60405180910390f35b348015610b40575f80fd5b50610b5b6004803603810190610b569190614232565b611bb2565b005b348015610b68575f80fd5b50610b836004803603810190610b7e919061406a565b611c26565b005b348015610b90575f80fd5b50610bab6004803603810190610ba6919061406a565b611cec565b604051610bb89190614051565b60405180910390f35b348015610bcc575f80fd5b50610bd5611d09565b604051610be29190614051565b60405180910390f35b348015610bf6575f80fd5b50610c116004803603810190610c0c91906142eb565b611d1c565b005b348015610c1e575f80fd5b50610c396004803603810190610c349190614232565b611e8e565b005b348015610c46575f80fd5b50610c616004803603810190610c5c9190614270565b611f3c565b005b348015610c6e575f80fd5b50610c896004803603810190610c849190614131565b611fc7565b005b348015610c96575f80fd5b50610c9f612062565b604051610cac91906140a4565b60405180910390f35b348015610cc0575f80fd5b50610cdb6004803603810190610cd69190614131565b612068565b604051610ce89190614051565b60405180910390f35b348015610cfc575f80fd5b50610d05612148565b604051610d1291906141bb565b60405180910390f35b348015610d26575f80fd5b50610d2f61216d565b604051610d3c91906140a4565b60405180910390f35b348015610d50575f80fd5b50610d59612173565b604051610d6691906140a4565b60405180910390f35b348015610d7a575f80fd5b50610d956004803603810190610d9091906142eb565b612179565b604051610da291906140a4565b60405180910390f35b348015610db6575f80fd5b50610dd16004803603810190610dcc919061406a565b6121fb565b005b348015610dde575f80fd5b50610de7612386565b604051610df491906140a4565b60405180910390f35b348015610e08575f80fd5b50610e1161238c565b604051610e1e91906140a4565b60405180910390f35b348015610e32575f80fd5b50610e4d6004803603810190610e48919061406a565b612392565b005b348015610e5a575f80fd5b50610e63612414565b604051610e7091906140a4565b60405180910390f35b348015610e84575f80fd5b50610e8d61241a565b604051610e9a91906140a4565b60405180910390f35b348015610eae575f80fd5b50610ec96004803603810190610ec4919061406a565b612420565b005b348015610ed6575f80fd5b50610edf6125ab565b604051610eec91906140a4565b60405180910390f35b348015610f00575f80fd5b50610f1b6004803603810190610f16919061406a565b6125b1565b604051610f289190614051565b60405180910390f35b606060038054610f4090614356565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6c90614356565b8015610fb75780601f10610f8e57610100808354040283529160200191610fb7565b820191905f5260205f20905b815481529060010190602001808311610f9a57829003601f168201915b5050505050905090565b5f610fd4610fcd612603565b848461260a565b6001905092915050565b601c5f9054906101000a900460ff1681565b601a602052805f5260405f205f915054906101000a900460ff1681565b600f5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b60135481565b60175481565b6110546127cd565b670de0b6b3a76400006103e8600561106a611037565b61107491906143b3565b61107e9190614421565b6110889190614421565b8110156110ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c1906144c1565b60405180910390fd5b670de0b6b3a7640000816110de91906143b3565b60098190555050565b5f6110f384848461284b565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61113a612603565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905060055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166111b6612603565b73ffffffffffffffffffffffffffffffffffffffff16146112155782811015611214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120b9061454f565b60405180910390fd5b5b61122985611221612603565b85840361260a565b60019150509392505050565b60165481565b61dead81565b5f6012905090565b5f6112e6611255612603565b848460015f611262612603565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546112e1919061456d565b61260a565b6001905092915050565b600c60039054906101000a900460ff1681565b61130b6127cd565b8060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600c5f9054906101000a900460ff1681565b601d602052805f5260405f205f915054906101000a900460ff1681565b5f60195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6114206127cd565b6001600c60036101000a81548160ff021916908315150217905550565b6114456127cd565b5f3073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161147f91906141bb565b602060405180830381865afa15801561149a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114be91906145b4565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016114fb9291906145df565b6020604051808303815f875af1158015611517573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061153b919061461a565b503373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f1935050505015801561157f573d5f803e3d5ffd5b5050565b60125481565b600c60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6115e96127cd565b6115f25f61348d565b565b5f6115fd6127cd565b5f600c5f6101000a81548160ff0219169083151502179055506001905090565b6116256127cd565b80601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6116856127cd565b5f600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6117096127cd565b5f8173ffffffffffffffffffffffffffffffffffffffff164760405161172e90614672565b5f6040518083038185875af1925050503d805f8114611768576040519150601f19603f3d011682016040523d82523d5f602084013e61176d565b606091505b505090508061177a575f80fd5b5050565b6117866127cd565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166860405160405180910390a38060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61184c6127cd565b82600f819055508160108190555080601181905550601154601054600f54611874919061456d565b61187e919061456d565b600e819055506005600e5411156118ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c1906146d0565b60405180910390fd5b505050565b6118d76127cd565b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff0219169083151502179055505f601c5f6101000a81548160ff021916908315150217905550565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6119586127cd565b80600c60026101000a81548160ff02191690831515021790555050565b60606004805461198490614356565b80601f01602080910402602001604051908101604052809291908181526020018280546119b090614356565b80156119fb5780601f106119d2576101008083540402835291602001916119fb565b820191905f5260205f20905b8154815290600101906020018083116119de57829003601f168201915b5050505050905090565b611a0d6127cd565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a929061475e565b60405180910390fd5b611aa58282613550565b5050565b60115481565b5f8060015f611abc612603565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6d906147ec565b60405180910390fd5b611b8a611b81612603565b8585840361260a565b600191505092915050565b5f611ba8611ba1612603565b848461284b565b6001905092915050565b611bba6127cd565b80601d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550611c188282611e8e565b611c22828261161d565b5050565b611c2e6127cd565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb60405160405180910390a38060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601b602052805f5260405f205f915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b611d246127cd565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8990614854565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611dcc91906141bb565b602060405180830381865afa158015611de7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e0b91906145b4565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401611e489291906145df565b6020604051808303815f875af1158015611e64573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e88919061461a565b50505050565b611e966127cd565b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f309190614051565b60405180910390a25050565b611f446127cd565b826013819055508160148190555080601581905550601554601454601354611f6c919061456d565b611f76919061456d565b60128190555060056012541115611fc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb9906148bc565b60405180910390fd5b505050565b611fcf6127cd565b670de0b6b3a76400006103e8600a611fe5611037565b611fef91906143b3565b611ff99190614421565b6120039190614421565b811015612045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203c9061494a565b60405180910390fd5b670de0b6b3a76400008161205991906143b3565b600b8190555050565b60095481565b5f6120716127cd565b620186a0600161207f611037565b61208991906143b3565b6120939190614421565b8210156120d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cc906149d8565b60405180910390fd5b6103e860056120e2611037565b6120ec91906143b3565b6120f69190614421565b821115612138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212f90614a66565b60405180910390fd5b81600a8190555060019050919050565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b600e5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6122036127cd565b600c60039054906101000a900460ff1615612253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224a90614af4565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156122ef5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b61232e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232590614b82565b60405180910390fd5b6001600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b600a5481565b60105481565b61239a6127cd565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ff90614c10565b60405180910390fd5b6124118161348d565b50565b60145481565b600b5481565b6124286127cd565b600c60039054906101000a900460ff1615612478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246f90614af4565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156125145750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254a90614b82565b60405180910390fd5b6001600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60185481565b5f600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266f90614c9e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126dd90614d2c565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516127c091906140a4565b60405180910390a3505050565b6127d5612603565b73ffffffffffffffffffffffffffffffffffffffff166127f3611928565b73ffffffffffffffffffffffffffffffffffffffff1614612849576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284090614d94565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036128b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b090614e22565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291e90614eb0565b60405180910390fd5b600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156129b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a890614f18565b60405180910390fd5b600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615612a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3290614f80565b60405180910390fd5b601c5f9054906101000a900460ff1615612ad957601d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612acf9061500e565b60405180910390fd5b5b5f8103612af057612aeb83835f6135ee565b613488565b600c5f9054906101000a900460ff1615612fd457612b0c611928565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612b7a5750612b4a611928565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612bb257505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612bec575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c055750600660149054906101000a900460ff16155b15612fd357600c60019054906101000a900460ff16612cf95760195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612cb9575060195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b612cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cef90615076565b60405180910390fd5b5b601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612d965750601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612e3d57600954811115612de0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd790615104565b60405180910390fd5b600b54612dec8361159c565b82612df7919061456d565b1115612e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2f9061516c565b60405180910390fd5b612fd2565b601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612eda5750601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612f2957600954811115612f24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1b906151fa565b60405180910390fd5b612fd1565b601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612fd057600b54612f838361159c565b82612f8e919061456d565b1115612fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc69061516c565b60405180910390fd5b5b5b5b5b5b5f612fde3061159c565b90505f600a5482101590508080156130025750600c60029054906101000a900460ff165b801561301b5750600660149054906101000a900460ff16155b801561306e5750601b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156130c1575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015613114575060195f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15613157576001600660146101000a81548160ff02191690831515021790555061313c613863565b5f600660146101000a81548160ff0219169083151502179055505b5f600660149054906101000a900460ff1615905060195f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680613206575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b1561320f575f90505b5f811561347857601b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561326d57505f601254115b156133375761329a606461328c60125488613b6490919063ffffffff16565b613b7990919063ffffffff16565b9050601254601454826132ad91906143b3565b6132b79190614421565b60175f8282546132c7919061456d565b92505081905550601254601554826132df91906143b3565b6132e99190614421565b60185f8282546132f9919061456d565b925050819055506012546013548261331191906143b3565b61331b9190614421565b60165f82825461332b919061456d565b92505081905550613455565b601b5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561338e57505f600e54115b15613454576133bb60646133ad600e5488613b6490919063ffffffff16565b613b7990919063ffffffff16565b9050600e54601054826133ce91906143b3565b6133d89190614421565b60175f8282546133e8919061456d565b92505081905550600e546011548261340091906143b3565b61340a9190614421565b60185f82825461341a919061456d565b92505081905550600e54600f548261343291906143b3565b61343c9190614421565b60165f82825461344c919061456d565b925050819055505b5b5f811115613469576134688730836135ee565b5b80856134759190615218565b94505b6134838787876135ee565b505050505b505050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361365c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161365390614e22565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036136ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136c190614eb0565b60405180910390fd5b6136d5838383613b8e565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015613758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161374f906152bb565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546137e6919061456d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161384a91906140a4565b60405180910390a361385d848484613b93565b50505050565b5f61386d3061159c565b90505f601854601654601754613883919061456d565b61388d919061456d565b90505f8083148061389d57505f82145b156138aa57505050613b62565b6014600a546138b991906143b3565b8311156138d2576014600a546138cf91906143b3565b92505b5f600283601754866138e491906143b3565b6138ee9190614421565b6138f89190614421565b90505f61390e8286613b9890919063ffffffff16565b90505f47905061391d82613bad565b5f6139318247613b9890919063ffffffff16565b90505f61397460026017546139469190614421565b886139519190615218565b61396660165485613b6490919063ffffffff16565b613b7990919063ffffffff16565b90505f6139b760026017546139899190614421565b896139949190615218565b6139a960185486613b6490919063ffffffff16565b613b7990919063ffffffff16565b90505f8183856139c79190615218565b6139d19190615218565b90505f6017819055505f6016819055505f60188190555060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613a2d90614672565b5f6040518083038185875af1925050503d805f8114613a67576040519150601f19603f3d011682016040523d82523d5f602084013e613a6c565b606091505b5050809850505f87118015613a8057505f81115b15613acd57613a8f8782613de0565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601754604051613ac4939291906152d9565b60405180910390a15b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613b1290614672565b5f6040518083038185875af1925050503d805f8114613b4c576040519150601f19603f3d011682016040523d82523d5f602084013e613b51565b606091505b505080985050505050505050505050505b565b5f8183613b7191906143b3565b905092915050565b5f8183613b869190614421565b905092915050565b505050565b505050565b5f8183613ba59190615218565b905092915050565b5f600267ffffffffffffffff811115613bc957613bc861530e565b5b604051908082528060200260200182016040528015613bf75781602001602082028036833780820191505090505b50905030815f81518110613c0e57613c0d61533b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613cb1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613cd5919061537c565b81600181518110613ce957613ce861533b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613d4e307f00000000000000000000000000000000000000000000000000000000000000008461260a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401613daf959493929190615497565b5f604051808303815f87803b158015613dc6575f80fd5b505af1158015613dd8573d5f803e3d5ffd5b505050505050565b613e0b307f00000000000000000000000000000000000000000000000000000000000000008461260a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f80613e54611928565b426040518863ffffffff1660e01b8152600401613e76969594939291906154ef565b60606040518083038185885af1158015613e92573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190613eb7919061554e565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015613ef5578082015181840152602081019050613eda565b5f8484015250505050565b5f601f19601f8301169050919050565b5f613f1a82613ebe565b613f248185613ec8565b9350613f34818560208601613ed8565b613f3d81613f00565b840191505092915050565b5f6020820190508181035f830152613f608184613f10565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f613f9582613f6c565b9050919050565b613fa581613f8b565b8114613faf575f80fd5b50565b5f81359050613fc081613f9c565b92915050565b5f819050919050565b613fd881613fc6565b8114613fe2575f80fd5b50565b5f81359050613ff381613fcf565b92915050565b5f806040838503121561400f5761400e613f68565b5b5f61401c85828601613fb2565b925050602061402d85828601613fe5565b9150509250929050565b5f8115159050919050565b61404b81614037565b82525050565b5f6020820190506140645f830184614042565b92915050565b5f6020828403121561407f5761407e613f68565b5b5f61408c84828501613fb2565b91505092915050565b61409e81613fc6565b82525050565b5f6020820190506140b75f830184614095565b92915050565b5f819050919050565b5f6140e06140db6140d684613f6c565b6140bd565b613f6c565b9050919050565b5f6140f1826140c6565b9050919050565b5f614102826140e7565b9050919050565b614112816140f8565b82525050565b5f60208201905061412b5f830184614109565b92915050565b5f6020828403121561414657614145613f68565b5b5f61415384828501613fe5565b91505092915050565b5f805f6060848603121561417357614172613f68565b5b5f61418086828701613fb2565b935050602061419186828701613fb2565b92505060406141a286828701613fe5565b9150509250925092565b6141b581613f8b565b82525050565b5f6020820190506141ce5f8301846141ac565b92915050565b5f60ff82169050919050565b6141e9816141d4565b82525050565b5f6020820190506142025f8301846141e0565b92915050565b61421181614037565b811461421b575f80fd5b50565b5f8135905061422c81614208565b92915050565b5f806040838503121561424857614247613f68565b5b5f61425585828601613fb2565b92505060206142668582860161421e565b9150509250929050565b5f805f6060848603121561428757614286613f68565b5b5f61429486828701613fe5565b93505060206142a586828701613fe5565b92505060406142b686828701613fe5565b9150509250925092565b5f602082840312156142d5576142d4613f68565b5b5f6142e28482850161421e565b91505092915050565b5f806040838503121561430157614300613f68565b5b5f61430e85828601613fb2565b925050602061431f85828601613fb2565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061436d57607f821691505b6020821081036143805761437f614329565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6143bd82613fc6565b91506143c883613fc6565b92508282026143d681613fc6565b915082820484148315176143ed576143ec614386565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61442b82613fc6565b915061443683613fc6565b925082614446576144456143f4565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b5f6144ab602f83613ec8565b91506144b682614451565b604082019050919050565b5f6020820190508181035f8301526144d88161449f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f614539602883613ec8565b9150614544826144df565b604082019050919050565b5f6020820190508181035f8301526145668161452d565b9050919050565b5f61457782613fc6565b915061458283613fc6565b925082820190508082111561459a57614599614386565b5b92915050565b5f815190506145ae81613fcf565b92915050565b5f602082840312156145c9576145c8613f68565b5b5f6145d6848285016145a0565b91505092915050565b5f6040820190506145f25f8301856141ac565b6145ff6020830184614095565b9392505050565b5f8151905061461481614208565b92915050565b5f6020828403121561462f5761462e613f68565b5b5f61463c84828501614606565b91505092915050565b5f81905092915050565b50565b5f61465d5f83614645565b91506146688261464f565b5f82019050919050565b5f61467c82614652565b9150819050919050565b7f4275792066656573206d757374206265203c3d20352e000000000000000000005f82015250565b5f6146ba601683613ec8565b91506146c582614686565b602082019050919050565b5f6020820190508181035f8301526146e7816146ae565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f614748603983613ec8565b9150614753826146ee565b604082019050919050565b5f6020820190508181035f8301526147758161473c565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6147d6602583613ec8565b91506147e18261477c565b604082019050919050565b5f6020820190508181035f830152614803816147ca565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000005f82015250565b5f61483e601a83613ec8565b91506148498261480a565b602082019050919050565b5f6020820190508181035f83015261486b81614832565b9050919050565b7f53656c6c2066656573206d757374206265203c3d20352e0000000000000000005f82015250565b5f6148a6601783613ec8565b91506148b182614872565b602082019050919050565b5f6020820190508181035f8301526148d38161489a565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f312e302500000000000000000000000000000000000000000000000000000000602082015250565b5f614934602483613ec8565b915061493f826148da565b604082019050919050565b5f6020820190508181035f83015261496181614928565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f6149c2603583613ec8565b91506149cd82614968565b604082019050919050565b5f6020820190508181035f8301526149ef816149b6565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f614a50603483613ec8565b9150614a5b826149f6565b604082019050919050565b5f6020820190508181035f830152614a7d81614a44565b9050919050565b7f5465616d20686173207265766f6b656420626c61636b6c6973742072696768745f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f614ade602183613ec8565b9150614ae982614a84565b604082019050919050565b5f6020820190508181035f830152614b0b81614ad2565b9050919050565b7f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f75745f8201527f6572206f7220763220706f6f6c2e000000000000000000000000000000000000602082015250565b5f614b6c602e83613ec8565b9150614b7782614b12565b604082019050919050565b5f6020820190508181035f830152614b9981614b60565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f614bfa602683613ec8565b9150614c0582614ba0565b604082019050919050565b5f6020820190508181035f830152614c2781614bee565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f614c88602483613ec8565b9150614c9382614c2e565b604082019050919050565b5f6020820190508181035f830152614cb581614c7c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f614d16602283613ec8565b9150614d2182614cbc565b604082019050919050565b5f6020820190508181035f830152614d4381614d0a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f614d7e602083613ec8565b9150614d8982614d4a565b602082019050919050565b5f6020820190508181035f830152614dab81614d72565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f614e0c602583613ec8565b9150614e1782614db2565b604082019050919050565b5f6020820190508181035f830152614e3981614e00565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f614e9a602383613ec8565b9150614ea582614e40565b604082019050919050565b5f6020820190508181035f830152614ec781614e8e565b9050919050565b7f53656e64657220626c61636b6c697374656400000000000000000000000000005f82015250565b5f614f02601283613ec8565b9150614f0d82614ece565b602082019050919050565b5f6020820190508181035f830152614f2f81614ef6565b9050919050565b7f526563656976657220626c61636b6c69737465640000000000000000000000005f82015250565b5f614f6a601483613ec8565b9150614f7582614f36565b602082019050919050565b5f6020820190508181035f830152614f9781614f5e565b9050919050565b7f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d5f8201527f6967726174696f6e2e0000000000000000000000000000000000000000000000602082015250565b5f614ff8602983613ec8565b915061500382614f9e565b604082019050919050565b5f6020820190508181035f83015261502581614fec565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f615060601683613ec8565b915061506b8261502c565b602082019050919050565b5f6020820190508181035f83015261508d81615054565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f6150ee603583613ec8565b91506150f982615094565b604082019050919050565b5f6020820190508181035f83015261511b816150e2565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f615156601383613ec8565b915061516182615122565b602082019050919050565b5f6020820190508181035f8301526151838161514a565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f6151e4603683613ec8565b91506151ef8261518a565b604082019050919050565b5f6020820190508181035f830152615211816151d8565b9050919050565b5f61522282613fc6565b915061522d83613fc6565b925082820390508181111561524557615244614386565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6152a5602683613ec8565b91506152b08261524b565b604082019050919050565b5f6020820190508181035f8301526152d281615299565b9050919050565b5f6060820190506152ec5f830186614095565b6152f96020830185614095565b6153066040830184614095565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061537681613f9c565b92915050565b5f6020828403121561539157615390613f68565b5b5f61539e84828501615368565b91505092915050565b5f819050919050565b5f6153ca6153c56153c0846153a7565b6140bd565b613fc6565b9050919050565b6153da816153b0565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61541281613f8b565b82525050565b5f6154238383615409565b60208301905092915050565b5f602082019050919050565b5f615445826153e0565b61544f81856153ea565b935061545a836153fa565b805f5b8381101561548a5781516154718882615418565b975061547c8361542f565b92505060018101905061545d565b5085935050505092915050565b5f60a0820190506154aa5f830188614095565b6154b760208301876153d1565b81810360408301526154c9818661543b565b90506154d860608301856141ac565b6154e56080830184614095565b9695505050505050565b5f60c0820190506155025f8301896141ac565b61550f6020830188614095565b61551c60408301876153d1565b61552960608301866153d1565b61553660808301856141ac565b61554360a0830184614095565b979650505050505050565b5f805f6060848603121561556557615564613f68565b5b5f615572868287016145a0565b9350506020615583868287016145a0565b9250506040615594868287016145a0565b915050925092509256fea2646970667358221220f609117191221fd6e0574064df7aba488e7f99b2fef73ab2b1afdee57094e00064736f6c63430008140033
Deployed Bytecode
0x6080604052600436106103dc575f3560e01c80637cb332bb116101fc578063c17b5b8c11610117578063e19b2823116100aa578063f637434211610079578063f637434214610e4f578063f8b45b0514610e79578063f9f92be414610ea3578063fde83a3414610ecb578063fe575a8714610ef5576103e3565b8063e19b282314610dab578063e2f4560514610dd3578063f11a24d314610dfd578063f2fde38b14610e27576103e3565b8063d3f33009116100e6578063d3f3300914610cf1578063d729715f14610d1b578063d85ba06314610d45578063dd62ed3e14610d6f576103e3565b8063c17b5b8c14610c3b578063c18bc19514610c63578063c8c8ebe414610c8b578063d257b34f14610cb5576103e3565b8063a457c2d71161018f578063b62496f51161015e578063b62496f514610b85578063bbc0c74214610bc1578063bc205ad314610beb578063c024666814610c13576103e3565b8063a457c2d714610abd578063a9059cbb14610af9578063aa0e438814610b35578063adee28ff14610b5d576103e3565b8063924de9b7116101cb578063924de9b714610a1957806395d89b4114610a415780639a7a23d614610a6b5780639c2e4ac614610a93576103e3565b80637cb332bb146109895780638095d564146109b15780638a8c523c146109d95780638da5cb5b146109ef576103e3565b8063405ebd4d116102f75780636a486a8e1161028a578063751039fc11610259578063751039fc146108bd5780637571336a146108e757806375e3661e1461090f578063782c4e99146109375780637ca8448a14610961576103e3565b80636a486a8e146108175780636ddd17131461084157806370a082311461086b578063715018a6146108a7576103e3565b80634fbee193116102c65780634fbee1931461078557806359927044146107c15780635f189361146107eb57806367a1bd5514610801576103e3565b8063405ebd4d146106cd57806349bd5a5e146106f55780634a62bb651461071f5780634e29e52314610749576103e3565b80631a8145bb1161036f57806327c8f8351161033e57806327c8f83514610613578063313ce5671461063d57806339509351146106675780633dc599ff146106a3576103e3565b80631a8145bb1461055b578063203e727e1461058557806323b872dd146105ad57806324b9f3c1146105e9576103e3565b8063156c2f35116103ab578063156c2f35146104b35780631694505e146104dd57806318160ddd1461050757806319eab04214610531576103e3565b806306fdde03146103e7578063095ea7b3146104115780630e922ca71461044d57806310d5de5314610477576103e3565b366103e357005b5f80fd5b3480156103f2575f80fd5b506103fb610f31565b6040516104089190613f48565b60405180910390f35b34801561041c575f80fd5b5061043760048036038101906104329190613ff9565b610fc1565b6040516104449190614051565b60405180910390f35b348015610458575f80fd5b50610461610fde565b60405161046e9190614051565b60405180910390f35b348015610482575f80fd5b5061049d6004803603810190610498919061406a565b610ff0565b6040516104aa9190614051565b60405180910390f35b3480156104be575f80fd5b506104c761100d565b6040516104d491906140a4565b60405180910390f35b3480156104e8575f80fd5b506104f1611013565b6040516104fe9190614118565b60405180910390f35b348015610512575f80fd5b5061051b611037565b60405161052891906140a4565b60405180910390f35b34801561053c575f80fd5b50610545611040565b60405161055291906140a4565b60405180910390f35b348015610566575f80fd5b5061056f611046565b60405161057c91906140a4565b60405180910390f35b348015610590575f80fd5b506105ab60048036038101906105a69190614131565b61104c565b005b3480156105b8575f80fd5b506105d360048036038101906105ce919061415c565b6110e7565b6040516105e09190614051565b60405180910390f35b3480156105f4575f80fd5b506105fd611235565b60405161060a91906140a4565b60405180910390f35b34801561061e575f80fd5b5061062761123b565b60405161063491906141bb565b60405180910390f35b348015610648575f80fd5b50610651611241565b60405161065e91906141ef565b60405180910390f35b348015610672575f80fd5b5061068d60048036038101906106889190613ff9565b611249565b60405161069a9190614051565b60405180910390f35b3480156106ae575f80fd5b506106b76112f0565b6040516106c49190614051565b60405180910390f35b3480156106d8575f80fd5b506106f360048036038101906106ee919061406a565b611303565b005b348015610700575f80fd5b5061070961134e565b60405161071691906141bb565b60405180910390f35b34801561072a575f80fd5b50610733611372565b6040516107409190614051565b60405180910390f35b348015610754575f80fd5b5061076f600480360381019061076a919061406a565b611384565b60405161077c9190614051565b60405180910390f35b348015610790575f80fd5b506107ab60048036038101906107a6919061406a565b6113a1565b6040516107b89190614051565b60405180910390f35b3480156107cc575f80fd5b506107d56113f3565b6040516107e291906141bb565b60405180910390f35b3480156107f6575f80fd5b506107ff611418565b005b34801561080c575f80fd5b5061081561143d565b005b348015610822575f80fd5b5061082b611583565b60405161083891906140a4565b60405180910390f35b34801561084c575f80fd5b50610855611589565b6040516108629190614051565b60405180910390f35b348015610876575f80fd5b50610891600480360381019061088c919061406a565b61159c565b60405161089e91906140a4565b60405180910390f35b3480156108b2575f80fd5b506108bb6115e1565b005b3480156108c8575f80fd5b506108d16115f4565b6040516108de9190614051565b60405180910390f35b3480156108f2575f80fd5b5061090d60048036038101906109089190614232565b61161d565b005b34801561091a575f80fd5b506109356004803603810190610930919061406a565b61167d565b005b348015610942575f80fd5b5061094b6116dc565b60405161095891906141bb565b60405180910390f35b34801561096c575f80fd5b506109876004803603810190610982919061406a565b611701565b005b348015610994575f80fd5b506109af60048036038101906109aa919061406a565b61177e565b005b3480156109bc575f80fd5b506109d760048036038101906109d29190614270565b611844565b005b3480156109e4575f80fd5b506109ed6118cf565b005b3480156109fa575f80fd5b50610a03611928565b604051610a1091906141bb565b60405180910390f35b348015610a24575f80fd5b50610a3f6004803603810190610a3a91906142c0565b611950565b005b348015610a4c575f80fd5b50610a55611975565b604051610a629190613f48565b60405180910390f35b348015610a76575f80fd5b50610a916004803603810190610a8c9190614232565b611a05565b005b348015610a9e575f80fd5b50610aa7611aa9565b604051610ab491906140a4565b60405180910390f35b348015610ac8575f80fd5b50610ae36004803603810190610ade9190613ff9565b611aaf565b604051610af09190614051565b60405180910390f35b348015610b04575f80fd5b50610b1f6004803603810190610b1a9190613ff9565b611b95565b604051610b2c9190614051565b60405180910390f35b348015610b40575f80fd5b50610b5b6004803603810190610b569190614232565b611bb2565b005b348015610b68575f80fd5b50610b836004803603810190610b7e919061406a565b611c26565b005b348015610b90575f80fd5b50610bab6004803603810190610ba6919061406a565b611cec565b604051610bb89190614051565b60405180910390f35b348015610bcc575f80fd5b50610bd5611d09565b604051610be29190614051565b60405180910390f35b348015610bf6575f80fd5b50610c116004803603810190610c0c91906142eb565b611d1c565b005b348015610c1e575f80fd5b50610c396004803603810190610c349190614232565b611e8e565b005b348015610c46575f80fd5b50610c616004803603810190610c5c9190614270565b611f3c565b005b348015610c6e575f80fd5b50610c896004803603810190610c849190614131565b611fc7565b005b348015610c96575f80fd5b50610c9f612062565b604051610cac91906140a4565b60405180910390f35b348015610cc0575f80fd5b50610cdb6004803603810190610cd69190614131565b612068565b604051610ce89190614051565b60405180910390f35b348015610cfc575f80fd5b50610d05612148565b604051610d1291906141bb565b60405180910390f35b348015610d26575f80fd5b50610d2f61216d565b604051610d3c91906140a4565b60405180910390f35b348015610d50575f80fd5b50610d59612173565b604051610d6691906140a4565b60405180910390f35b348015610d7a575f80fd5b50610d956004803603810190610d9091906142eb565b612179565b604051610da291906140a4565b60405180910390f35b348015610db6575f80fd5b50610dd16004803603810190610dcc919061406a565b6121fb565b005b348015610dde575f80fd5b50610de7612386565b604051610df491906140a4565b60405180910390f35b348015610e08575f80fd5b50610e1161238c565b604051610e1e91906140a4565b60405180910390f35b348015610e32575f80fd5b50610e4d6004803603810190610e48919061406a565b612392565b005b348015610e5a575f80fd5b50610e63612414565b604051610e7091906140a4565b60405180910390f35b348015610e84575f80fd5b50610e8d61241a565b604051610e9a91906140a4565b60405180910390f35b348015610eae575f80fd5b50610ec96004803603810190610ec4919061406a565b612420565b005b348015610ed6575f80fd5b50610edf6125ab565b604051610eec91906140a4565b60405180910390f35b348015610f00575f80fd5b50610f1b6004803603810190610f16919061406a565b6125b1565b604051610f289190614051565b60405180910390f35b606060038054610f4090614356565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6c90614356565b8015610fb75780601f10610f8e57610100808354040283529160200191610fb7565b820191905f5260205f20905b815481529060010190602001808311610f9a57829003601f168201915b5050505050905090565b5f610fd4610fcd612603565b848461260a565b6001905092915050565b601c5f9054906101000a900460ff1681565b601a602052805f5260405f205f915054906101000a900460ff1681565b600f5481565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b60135481565b60175481565b6110546127cd565b670de0b6b3a76400006103e8600561106a611037565b61107491906143b3565b61107e9190614421565b6110889190614421565b8110156110ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c1906144c1565b60405180910390fd5b670de0b6b3a7640000816110de91906143b3565b60098190555050565b5f6110f384848461284b565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61113a612603565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905060055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166111b6612603565b73ffffffffffffffffffffffffffffffffffffffff16146112155782811015611214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120b9061454f565b60405180910390fd5b5b61122985611221612603565b85840361260a565b60019150509392505050565b60165481565b61dead81565b5f6012905090565b5f6112e6611255612603565b848460015f611262612603565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546112e1919061456d565b61260a565b6001905092915050565b600c60039054906101000a900460ff1681565b61130b6127cd565b8060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b7f00000000000000000000000047fefb72974a73eace0f190e9d3a407855994c7e81565b600c5f9054906101000a900460ff1681565b601d602052805f5260405f205f915054906101000a900460ff1681565b5f60195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6114206127cd565b6001600c60036101000a81548160ff021916908315150217905550565b6114456127cd565b5f3073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161147f91906141bb565b602060405180830381865afa15801561149a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114be91906145b4565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016114fb9291906145df565b6020604051808303815f875af1158015611517573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061153b919061461a565b503373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f1935050505015801561157f573d5f803e3d5ffd5b5050565b60125481565b600c60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6115e96127cd565b6115f25f61348d565b565b5f6115fd6127cd565b5f600c5f6101000a81548160ff0219169083151502179055506001905090565b6116256127cd565b80601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6116856127cd565b5f600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6117096127cd565b5f8173ffffffffffffffffffffffffffffffffffffffff164760405161172e90614672565b5f6040518083038185875af1925050503d805f8114611768576040519150601f19603f3d011682016040523d82523d5f602084013e61176d565b606091505b505090508061177a575f80fd5b5050565b6117866127cd565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166860405160405180910390a38060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61184c6127cd565b82600f819055508160108190555080601181905550601154601054600f54611874919061456d565b61187e919061456d565b600e819055506005600e5411156118ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c1906146d0565b60405180910390fd5b505050565b6118d76127cd565b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff0219169083151502179055505f601c5f6101000a81548160ff021916908315150217905550565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6119586127cd565b80600c60026101000a81548160ff02191690831515021790555050565b60606004805461198490614356565b80601f01602080910402602001604051908101604052809291908181526020018280546119b090614356565b80156119fb5780601f106119d2576101008083540402835291602001916119fb565b820191905f5260205f20905b8154815290600101906020018083116119de57829003601f168201915b5050505050905090565b611a0d6127cd565b7f00000000000000000000000047fefb72974a73eace0f190e9d3a407855994c7e73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a929061475e565b60405180910390fd5b611aa58282613550565b5050565b60115481565b5f8060015f611abc612603565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6d906147ec565b60405180910390fd5b611b8a611b81612603565b8585840361260a565b600191505092915050565b5f611ba8611ba1612603565b848461284b565b6001905092915050565b611bba6127cd565b80601d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550611c188282611e8e565b611c22828261161d565b5050565b611c2e6127cd565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb60405160405180910390a38060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601b602052805f5260405f205f915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b611d246127cd565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8990614854565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611dcc91906141bb565b602060405180830381865afa158015611de7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e0b91906145b4565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401611e489291906145df565b6020604051808303815f875af1158015611e64573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e88919061461a565b50505050565b611e966127cd565b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f309190614051565b60405180910390a25050565b611f446127cd565b826013819055508160148190555080601581905550601554601454601354611f6c919061456d565b611f76919061456d565b60128190555060056012541115611fc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb9906148bc565b60405180910390fd5b505050565b611fcf6127cd565b670de0b6b3a76400006103e8600a611fe5611037565b611fef91906143b3565b611ff99190614421565b6120039190614421565b811015612045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203c9061494a565b60405180910390fd5b670de0b6b3a76400008161205991906143b3565b600b8190555050565b60095481565b5f6120716127cd565b620186a0600161207f611037565b61208991906143b3565b6120939190614421565b8210156120d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cc906149d8565b60405180910390fd5b6103e860056120e2611037565b6120ec91906143b3565b6120f69190614421565b821115612138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212f90614a66565b60405180910390fd5b81600a8190555060019050919050565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b600e5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6122036127cd565b600c60039054906101000a900460ff1615612253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224a90614af4565b60405180910390fd5b7f00000000000000000000000047fefb72974a73eace0f190e9d3a407855994c7e73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156122ef5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b61232e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232590614b82565b60405180910390fd5b6001600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b600a5481565b60105481565b61239a6127cd565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ff90614c10565b60405180910390fd5b6124118161348d565b50565b60145481565b600b5481565b6124286127cd565b600c60039054906101000a900460ff1615612478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246f90614af4565b60405180910390fd5b7f00000000000000000000000047fefb72974a73eace0f190e9d3a407855994c7e73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156125145750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254a90614b82565b60405180910390fd5b6001600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60185481565b5f600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266f90614c9e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126dd90614d2c565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516127c091906140a4565b60405180910390a3505050565b6127d5612603565b73ffffffffffffffffffffffffffffffffffffffff166127f3611928565b73ffffffffffffffffffffffffffffffffffffffff1614612849576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284090614d94565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036128b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b090614e22565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291e90614eb0565b60405180910390fd5b600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156129b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a890614f18565b60405180910390fd5b600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615612a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3290614f80565b60405180910390fd5b601c5f9054906101000a900460ff1615612ad957601d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612acf9061500e565b60405180910390fd5b5b5f8103612af057612aeb83835f6135ee565b613488565b600c5f9054906101000a900460ff1615612fd457612b0c611928565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612b7a5750612b4a611928565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612bb257505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612bec575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c055750600660149054906101000a900460ff16155b15612fd357600c60019054906101000a900460ff16612cf95760195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612cb9575060195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b612cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cef90615076565b60405180910390fd5b5b601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612d965750601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612e3d57600954811115612de0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd790615104565b60405180910390fd5b600b54612dec8361159c565b82612df7919061456d565b1115612e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2f9061516c565b60405180910390fd5b612fd2565b601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612eda5750601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612f2957600954811115612f24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1b906151fa565b60405180910390fd5b612fd1565b601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612fd057600b54612f838361159c565b82612f8e919061456d565b1115612fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc69061516c565b60405180910390fd5b5b5b5b5b5b5f612fde3061159c565b90505f600a5482101590508080156130025750600c60029054906101000a900460ff165b801561301b5750600660149054906101000a900460ff16155b801561306e5750601b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156130c1575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015613114575060195f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15613157576001600660146101000a81548160ff02191690831515021790555061313c613863565b5f600660146101000a81548160ff0219169083151502179055505b5f600660149054906101000a900460ff1615905060195f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680613206575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b1561320f575f90505b5f811561347857601b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561326d57505f601254115b156133375761329a606461328c60125488613b6490919063ffffffff16565b613b7990919063ffffffff16565b9050601254601454826132ad91906143b3565b6132b79190614421565b60175f8282546132c7919061456d565b92505081905550601254601554826132df91906143b3565b6132e99190614421565b60185f8282546132f9919061456d565b925050819055506012546013548261331191906143b3565b61331b9190614421565b60165f82825461332b919061456d565b92505081905550613455565b601b5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561338e57505f600e54115b15613454576133bb60646133ad600e5488613b6490919063ffffffff16565b613b7990919063ffffffff16565b9050600e54601054826133ce91906143b3565b6133d89190614421565b60175f8282546133e8919061456d565b92505081905550600e546011548261340091906143b3565b61340a9190614421565b60185f82825461341a919061456d565b92505081905550600e54600f548261343291906143b3565b61343c9190614421565b60165f82825461344c919061456d565b925050819055505b5b5f811115613469576134688730836135ee565b5b80856134759190615218565b94505b6134838787876135ee565b505050505b505050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361365c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161365390614e22565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036136ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136c190614eb0565b60405180910390fd5b6136d5838383613b8e565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015613758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161374f906152bb565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546137e6919061456d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161384a91906140a4565b60405180910390a361385d848484613b93565b50505050565b5f61386d3061159c565b90505f601854601654601754613883919061456d565b61388d919061456d565b90505f8083148061389d57505f82145b156138aa57505050613b62565b6014600a546138b991906143b3565b8311156138d2576014600a546138cf91906143b3565b92505b5f600283601754866138e491906143b3565b6138ee9190614421565b6138f89190614421565b90505f61390e8286613b9890919063ffffffff16565b90505f47905061391d82613bad565b5f6139318247613b9890919063ffffffff16565b90505f61397460026017546139469190614421565b886139519190615218565b61396660165485613b6490919063ffffffff16565b613b7990919063ffffffff16565b90505f6139b760026017546139899190614421565b896139949190615218565b6139a960185486613b6490919063ffffffff16565b613b7990919063ffffffff16565b90505f8183856139c79190615218565b6139d19190615218565b90505f6017819055505f6016819055505f60188190555060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613a2d90614672565b5f6040518083038185875af1925050503d805f8114613a67576040519150601f19603f3d011682016040523d82523d5f602084013e613a6c565b606091505b5050809850505f87118015613a8057505f81115b15613acd57613a8f8782613de0565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601754604051613ac4939291906152d9565b60405180910390a15b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613b1290614672565b5f6040518083038185875af1925050503d805f8114613b4c576040519150601f19603f3d011682016040523d82523d5f602084013e613b51565b606091505b505080985050505050505050505050505b565b5f8183613b7191906143b3565b905092915050565b5f8183613b869190614421565b905092915050565b505050565b505050565b5f8183613ba59190615218565b905092915050565b5f600267ffffffffffffffff811115613bc957613bc861530e565b5b604051908082528060200260200182016040528015613bf75781602001602082028036833780820191505090505b50905030815f81518110613c0e57613c0d61533b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613cb1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613cd5919061537c565b81600181518110613ce957613ce861533b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613d4e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461260a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401613daf959493929190615497565b5f604051808303815f87803b158015613dc6575f80fd5b505af1158015613dd8573d5f803e3d5ffd5b505050505050565b613e0b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461260a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f80613e54611928565b426040518863ffffffff1660e01b8152600401613e76969594939291906154ef565b60606040518083038185885af1158015613e92573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190613eb7919061554e565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015613ef5578082015181840152602081019050613eda565b5f8484015250505050565b5f601f19601f8301169050919050565b5f613f1a82613ebe565b613f248185613ec8565b9350613f34818560208601613ed8565b613f3d81613f00565b840191505092915050565b5f6020820190508181035f830152613f608184613f10565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f613f9582613f6c565b9050919050565b613fa581613f8b565b8114613faf575f80fd5b50565b5f81359050613fc081613f9c565b92915050565b5f819050919050565b613fd881613fc6565b8114613fe2575f80fd5b50565b5f81359050613ff381613fcf565b92915050565b5f806040838503121561400f5761400e613f68565b5b5f61401c85828601613fb2565b925050602061402d85828601613fe5565b9150509250929050565b5f8115159050919050565b61404b81614037565b82525050565b5f6020820190506140645f830184614042565b92915050565b5f6020828403121561407f5761407e613f68565b5b5f61408c84828501613fb2565b91505092915050565b61409e81613fc6565b82525050565b5f6020820190506140b75f830184614095565b92915050565b5f819050919050565b5f6140e06140db6140d684613f6c565b6140bd565b613f6c565b9050919050565b5f6140f1826140c6565b9050919050565b5f614102826140e7565b9050919050565b614112816140f8565b82525050565b5f60208201905061412b5f830184614109565b92915050565b5f6020828403121561414657614145613f68565b5b5f61415384828501613fe5565b91505092915050565b5f805f6060848603121561417357614172613f68565b5b5f61418086828701613fb2565b935050602061419186828701613fb2565b92505060406141a286828701613fe5565b9150509250925092565b6141b581613f8b565b82525050565b5f6020820190506141ce5f8301846141ac565b92915050565b5f60ff82169050919050565b6141e9816141d4565b82525050565b5f6020820190506142025f8301846141e0565b92915050565b61421181614037565b811461421b575f80fd5b50565b5f8135905061422c81614208565b92915050565b5f806040838503121561424857614247613f68565b5b5f61425585828601613fb2565b92505060206142668582860161421e565b9150509250929050565b5f805f6060848603121561428757614286613f68565b5b5f61429486828701613fe5565b93505060206142a586828701613fe5565b92505060406142b686828701613fe5565b9150509250925092565b5f602082840312156142d5576142d4613f68565b5b5f6142e28482850161421e565b91505092915050565b5f806040838503121561430157614300613f68565b5b5f61430e85828601613fb2565b925050602061431f85828601613fb2565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061436d57607f821691505b6020821081036143805761437f614329565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6143bd82613fc6565b91506143c883613fc6565b92508282026143d681613fc6565b915082820484148315176143ed576143ec614386565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61442b82613fc6565b915061443683613fc6565b925082614446576144456143f4565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b5f6144ab602f83613ec8565b91506144b682614451565b604082019050919050565b5f6020820190508181035f8301526144d88161449f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f614539602883613ec8565b9150614544826144df565b604082019050919050565b5f6020820190508181035f8301526145668161452d565b9050919050565b5f61457782613fc6565b915061458283613fc6565b925082820190508082111561459a57614599614386565b5b92915050565b5f815190506145ae81613fcf565b92915050565b5f602082840312156145c9576145c8613f68565b5b5f6145d6848285016145a0565b91505092915050565b5f6040820190506145f25f8301856141ac565b6145ff6020830184614095565b9392505050565b5f8151905061461481614208565b92915050565b5f6020828403121561462f5761462e613f68565b5b5f61463c84828501614606565b91505092915050565b5f81905092915050565b50565b5f61465d5f83614645565b91506146688261464f565b5f82019050919050565b5f61467c82614652565b9150819050919050565b7f4275792066656573206d757374206265203c3d20352e000000000000000000005f82015250565b5f6146ba601683613ec8565b91506146c582614686565b602082019050919050565b5f6020820190508181035f8301526146e7816146ae565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f614748603983613ec8565b9150614753826146ee565b604082019050919050565b5f6020820190508181035f8301526147758161473c565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6147d6602583613ec8565b91506147e18261477c565b604082019050919050565b5f6020820190508181035f830152614803816147ca565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000005f82015250565b5f61483e601a83613ec8565b91506148498261480a565b602082019050919050565b5f6020820190508181035f83015261486b81614832565b9050919050565b7f53656c6c2066656573206d757374206265203c3d20352e0000000000000000005f82015250565b5f6148a6601783613ec8565b91506148b182614872565b602082019050919050565b5f6020820190508181035f8301526148d38161489a565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f312e302500000000000000000000000000000000000000000000000000000000602082015250565b5f614934602483613ec8565b915061493f826148da565b604082019050919050565b5f6020820190508181035f83015261496181614928565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f6149c2603583613ec8565b91506149cd82614968565b604082019050919050565b5f6020820190508181035f8301526149ef816149b6565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f614a50603483613ec8565b9150614a5b826149f6565b604082019050919050565b5f6020820190508181035f830152614a7d81614a44565b9050919050565b7f5465616d20686173207265766f6b656420626c61636b6c6973742072696768745f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f614ade602183613ec8565b9150614ae982614a84565b604082019050919050565b5f6020820190508181035f830152614b0b81614ad2565b9050919050565b7f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f75745f8201527f6572206f7220763220706f6f6c2e000000000000000000000000000000000000602082015250565b5f614b6c602e83613ec8565b9150614b7782614b12565b604082019050919050565b5f6020820190508181035f830152614b9981614b60565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f614bfa602683613ec8565b9150614c0582614ba0565b604082019050919050565b5f6020820190508181035f830152614c2781614bee565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f614c88602483613ec8565b9150614c9382614c2e565b604082019050919050565b5f6020820190508181035f830152614cb581614c7c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f614d16602283613ec8565b9150614d2182614cbc565b604082019050919050565b5f6020820190508181035f830152614d4381614d0a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f614d7e602083613ec8565b9150614d8982614d4a565b602082019050919050565b5f6020820190508181035f830152614dab81614d72565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f614e0c602583613ec8565b9150614e1782614db2565b604082019050919050565b5f6020820190508181035f830152614e3981614e00565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f614e9a602383613ec8565b9150614ea582614e40565b604082019050919050565b5f6020820190508181035f830152614ec781614e8e565b9050919050565b7f53656e64657220626c61636b6c697374656400000000000000000000000000005f82015250565b5f614f02601283613ec8565b9150614f0d82614ece565b602082019050919050565b5f6020820190508181035f830152614f2f81614ef6565b9050919050565b7f526563656976657220626c61636b6c69737465640000000000000000000000005f82015250565b5f614f6a601483613ec8565b9150614f7582614f36565b602082019050919050565b5f6020820190508181035f830152614f9781614f5e565b9050919050565b7f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d5f8201527f6967726174696f6e2e0000000000000000000000000000000000000000000000602082015250565b5f614ff8602983613ec8565b915061500382614f9e565b604082019050919050565b5f6020820190508181035f83015261502581614fec565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f615060601683613ec8565b915061506b8261502c565b602082019050919050565b5f6020820190508181035f83015261508d81615054565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f6150ee603583613ec8565b91506150f982615094565b604082019050919050565b5f6020820190508181035f83015261511b816150e2565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f615156601383613ec8565b915061516182615122565b602082019050919050565b5f6020820190508181035f8301526151838161514a565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f6151e4603683613ec8565b91506151ef8261518a565b604082019050919050565b5f6020820190508181035f830152615211816151d8565b9050919050565b5f61522282613fc6565b915061522d83613fc6565b925082820390508181111561524557615244614386565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6152a5602683613ec8565b91506152b08261524b565b604082019050919050565b5f6020820190508181035f8301526152d281615299565b9050919050565b5f6060820190506152ec5f830186614095565b6152f96020830185614095565b6153066040830184614095565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061537681613f9c565b92915050565b5f6020828403121561539157615390613f68565b5b5f61539e84828501615368565b91505092915050565b5f819050919050565b5f6153ca6153c56153c0846153a7565b6140bd565b613fc6565b9050919050565b6153da816153b0565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61541281613f8b565b82525050565b5f6154238383615409565b60208301905092915050565b5f602082019050919050565b5f615445826153e0565b61544f81856153ea565b935061545a836153fa565b805f5b8381101561548a5781516154718882615418565b975061547c8361542f565b92505060018101905061545d565b5085935050505092915050565b5f60a0820190506154aa5f830188614095565b6154b760208301876153d1565b81810360408301526154c9818661543b565b90506154d860608301856141ac565b6154e56080830184614095565b9695505050505050565b5f60c0820190506155025f8301896141ac565b61550f6020830188614095565b61551c60408301876153d1565b61552960608301866153d1565b61553660808301856141ac565b61554360a0830184614095565b979650505050505050565b5f805f6060848603121561556557615564613f68565b5b5f615572868287016145a0565b9350506020615583868287016145a0565b9250506040615594868287016145a0565b915050925092509256fea2646970667358221220f609117191221fd6e0574064df7aba488e7f99b2fef73ab2b1afdee57094e00064736f6c63430008140033
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.