ERC-20
Overview
Max Total Supply
10,000,000 ARTOF
Holders
73
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ARTOF
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /* Revolutionizing DeFi with AI-powered community governance Website:https://artofai.app/ Twitter:https://twitter.com/Project_ArtofAI Telegram:https://t.me/ArtOfAI_Portal Mirror:https://mirror.xyz/artofdev.eth */ pragma solidity 0.8.19; pragma experimental ABIEncoderV2; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); constructor() { _transferOwnership(_msgSender()); } modifier onlyOwner() { _checkOwner(); _; } function owner() public view virtual returns (address) { return _owner; } function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } interface IERC20 { event Transfer(address indexed from, address indexed to, uint256 value); event Approval( address indexed owner, address indexed spender, uint256 value ); function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address to, uint256 amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom( address from, address to, uint256 amount ) external returns (bool); } interface IERC20Metadata is IERC20 { function name() external view returns (string memory); function symbol() external view returns (string memory); function decimals() external view returns (uint8); } 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } function name() public view virtual override returns (string memory) { return _name; } function symbol() public view virtual override returns (string memory) { return _symbol; } function decimals() public view virtual override returns (uint8) { return 18; } function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require( fromBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[from] = fromBalance - amount; _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } 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); } 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); } function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require( currentAllowance >= amount, "ERC20: insufficient allowance" ); unchecked { _approve(owner, spender, currentAllowance - amount); } } } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } library SafeMath { 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); } } function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } 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 IUniswapV2Router01 { 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 removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); 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 ARTOF is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public marketingWallet; address public developmentWallet; address public liquidityWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public tradingActive = false; bool public swapEnabled = false; uint256 public buyTotalFees; uint256 private buyMarketingFee; uint256 private buyDevelopmentFee; uint256 private buyLiquidityFee; uint256 public sellTotalFees; uint256 private sellMarketingFee; uint256 private sellDevelopmentFee; uint256 private sellLiquidityFee; uint256 private tokensForMarketing; uint256 private tokensForDevelopment; uint256 private tokensForLiquidity; uint256 private previousFee; mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) private _isExcludedMaxTransactionAmount; mapping(address => bool) private automatedMarketMakerPairs; event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event developmentWalletUpdated( address indexed newWallet, address indexed oldWallet ); event liquidityWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor(string memory name,string memory symbol,uint256 supply) ERC20(name, symbol) { 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 totalSupply = supply * 1e18; maxTransactionAmount = (totalSupply * 2) / 100; maxWallet = (totalSupply * 2) / 100; swapTokensAtAmount = (totalSupply * 5) / 10000; buyMarketingFee = 25; buyDevelopmentFee = 0; buyLiquidityFee = 0; buyTotalFees = buyMarketingFee + buyDevelopmentFee + buyLiquidityFee; sellMarketingFee = 30; sellDevelopmentFee = 0; sellLiquidityFee = 0; sellTotalFees = sellMarketingFee + sellDevelopmentFee + sellLiquidityFee; previousFee = sellTotalFees; marketingWallet = 0xE5CE30bCF83FA97E8122812845F91f8FB01c61AC; developmentWallet = 0xE5CE30bCF83FA97E8122812845F91f8FB01c61AC; liquidityWallet = 0xE5CE30bCF83FA97E8122812845F91f8FB01c61AC; excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(deadAddress, true); excludeFromFees(marketingWallet, true); excludeFromFees(developmentWallet, true); excludeFromFees(liquidityWallet, true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(deadAddress, true); excludeFromMaxTransaction(address(uniswapV2Router), true); excludeFromMaxTransaction(marketingWallet, true); excludeFromMaxTransaction(developmentWallet, true); excludeFromMaxTransaction(liquidityWallet, true); _mint(msg.sender, totalSupply); } receive() external payable {} function burn(uint256 amount) external { _burn(msg.sender, amount); } function enableTrading() external onlyOwner{ tradingActive = true; swapEnabled = true; } function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "ERC20: Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "ERC20: Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxWalletAndTxnAmount( uint256 newTxnNum, uint256 newMaxWalletNum ) external onlyOwner { require( newTxnNum >= ((totalSupply() * 5) / 1000), "ERC20: Cannot set maxTxn lower than 0.5%" ); require( newMaxWalletNum >= ((totalSupply() * 5) / 1000), "ERC20: Cannot set maxWallet lower than 0.5%" ); maxWallet = newMaxWalletNum; maxTransactionAmount = newTxnNum; } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function updateBuyFees( uint256 _marketingFee, uint256 _developmentFee, uint256 _liquidityFee ) external onlyOwner { buyMarketingFee = _marketingFee; buyDevelopmentFee = _developmentFee; buyLiquidityFee = _liquidityFee; buyTotalFees = buyMarketingFee + buyDevelopmentFee + buyLiquidityFee; require(buyTotalFees <= 40, "ERC20: Must keep fees at 40% or less"); } function updateSellFees( uint256 _marketingFee, uint256 _developmentFee, uint256 _liquidityFee ) external onlyOwner { sellMarketingFee = _marketingFee; sellDevelopmentFee = _developmentFee; sellLiquidityFee = _liquidityFee; sellTotalFees = sellMarketingFee + sellDevelopmentFee + sellLiquidityFee; previousFee = sellTotalFees; require(sellTotalFees <= 40, "ERC20: Must keep fees at 40% or less"); } function updateMarketingWallet(address _marketingWallet) external onlyOwner { require(_marketingWallet != address(0), "ERC20: Address 0"); address oldWallet = marketingWallet; marketingWallet = _marketingWallet; emit marketingWalletUpdated(marketingWallet, oldWallet); } function updateDevelopmentWallet(address _developmentWallet) external onlyOwner { require(_developmentWallet != address(0), "ERC20: Address 0"); address oldWallet = developmentWallet; developmentWallet = _developmentWallet; emit developmentWalletUpdated(developmentWallet, oldWallet); } function updateLiquidityWallet(address _liquidityWallet) external onlyOwner { require(_liquidityWallet != address(0), "ERC20: Address 0"); address oldWallet = liquidityWallet; liquidityWallet = _liquidityWallet; emit liquidityWalletUpdated(liquidityWallet, oldWallet); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function withdrawStuckETH() public onlyOwner { bool success; (success, ) = address(msg.sender).call{value: address(this).balance}( "" ); } function withdrawStuckTokens(address tkn) public onlyOwner { require(IERC20(tkn).balanceOf(address(this)) > 0, "No tokens"); uint256 amount = IERC20(tkn).balanceOf(address(this)); IERC20(tkn).transfer(msg.sender, amount); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } 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"); if (amount == 0) { super._transfer(from, to, 0); return; } if ( from != owner() && to != owner() && to != address(0) && to != deadAddress && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "ERC20: Trading is not active." ); } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "ERC20: Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "ERC20: Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "ERC20: Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "ERC20: 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 (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; tokensForDevelopment += (fees * sellDevelopmentFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees; tokensForDevelopment += (fees * buyDevelopmentFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); sellTotalFees = previousFee; } function swapTokensForEth(uint256 tokenAmount) private { 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, path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, 0, liquidityWallet, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDevelopment; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 10) { contractBalance = swapTokensAtAmount * 10; } 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 ethForMarketing = ethBalance.mul(tokensForMarketing).div( totalTokensToSwap ); uint256 ethForDevelopment = ethBalance.mul(tokensForDevelopment).div( totalTokensToSwap ); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDevelopment; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDevelopment = 0; if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(developmentWallet).call{value: ethForDevelopment}( "" ); (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } }
{ "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":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"supply","type":"uint256"}],"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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"developmentWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"liquidityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_developmentFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_developmentWallet","type":"address"}],"name":"updateDevelopmentWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_liquidityWallet","type":"address"}],"name":"updateLiquidityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTxnNum","type":"uint256"},{"internalType":"uint256","name":"newMaxWalletNum","type":"uint256"}],"name":"updateMaxWalletAndTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_developmentFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","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":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tkn","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a06040526000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055503480156200004757600080fd5b5060405162005d8d38038062005d8d83398181016040528101906200006d919062000dc7565b82828160039081620000809190620010a2565b508060049081620000929190620010a2565b505050620000b5620000a96200073260201b60201c565b6200073a60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620000e18160016200080060201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000161573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001879190620011ee565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002159190620011ee565b6040518363ffffffff1660e01b81526004016200023492919062001231565b6020604051808303816000875af115801562000254573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200027a9190620011ee565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002ef600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200080060201b60201c565b62000324600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200086b60201b60201c565b6000670de0b6b3a7640000836200033c91906200128d565b905060646002826200034f91906200128d565b6200035b919062001307565b600a8190555060646002826200037291906200128d565b6200037e919062001307565b600c819055506127106005826200039691906200128d565b620003a2919062001307565b600b819055506019600f8190555060006010819055506000601181905550601154601054600f54620003d591906200133f565b620003e191906200133f565b600e81905550601e601381905550600060148190555060006015819055506015546014546013546200041491906200133f565b6200042091906200133f565b60128190555060125460198190555073e5ce30bcf83fa97e8122812845f91f8fb01c61ac600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073e5ce30bcf83fa97e8122812845f91f8fb01c61ac600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073e5ce30bcf83fa97e8122812845f91f8fb01c61ac600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000550620005426200090c60201b60201c565b60016200093660201b60201c565b620005633060016200093660201b60201c565b6200057861dead60016200093660201b60201c565b620005ad600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200093660201b60201c565b620005e2600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200093660201b60201c565b62000617600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200093660201b60201c565b620006396200062b6200090c60201b60201c565b60016200080060201b60201c565b6200064c3060016200080060201b60201c565b6200066161dead60016200080060201b60201c565b6200067660805160016200080060201b60201c565b620006ab600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200080060201b60201c565b620006e0600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200080060201b60201c565b62000715600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200080060201b60201c565b620007273382620009f160201b60201c565b5050505050620014d7565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200081062000b5e60201b60201c565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200094662000b5e60201b60201c565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009e5919062001397565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a63576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a5a9062001415565b60405180910390fd5b62000a776000838362000bef60201b60201c565b806002600082825462000a8b91906200133f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b3e919062001448565b60405180910390a362000b5a6000838362000bf460201b60201c565b5050565b62000b6e6200073260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000b946200090c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000bed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000be490620014b5565b60405180910390fd5b565b505050565b505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000c628262000c17565b810181811067ffffffffffffffff8211171562000c845762000c8362000c28565b5b80604052505050565b600062000c9962000bf9565b905062000ca7828262000c57565b919050565b600067ffffffffffffffff82111562000cca5762000cc962000c28565b5b62000cd58262000c17565b9050602081019050919050565b60005b8381101562000d0257808201518184015260208101905062000ce5565b60008484015250505050565b600062000d2562000d1f8462000cac565b62000c8d565b90508281526020810184848401111562000d445762000d4362000c12565b5b62000d5184828562000ce2565b509392505050565b600082601f83011262000d715762000d7062000c0d565b5b815162000d8384826020860162000d0e565b91505092915050565b6000819050919050565b62000da18162000d8c565b811462000dad57600080fd5b50565b60008151905062000dc18162000d96565b92915050565b60008060006060848603121562000de35762000de262000c03565b5b600084015167ffffffffffffffff81111562000e045762000e0362000c08565b5b62000e128682870162000d59565b935050602084015167ffffffffffffffff81111562000e365762000e3562000c08565b5b62000e448682870162000d59565b925050604062000e578682870162000db0565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000eb457607f821691505b60208210810362000eca5762000ec962000e6c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000f347fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000ef5565b62000f40868362000ef5565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000f8362000f7d62000f778462000d8c565b62000f58565b62000d8c565b9050919050565b6000819050919050565b62000f9f8362000f62565b62000fb762000fae8262000f8a565b84845462000f02565b825550505050565b600090565b62000fce62000fbf565b62000fdb81848462000f94565b505050565b5b81811015620010035762000ff760008262000fc4565b60018101905062000fe1565b5050565b601f82111562001052576200101c8162000ed0565b620010278462000ee5565b8101602085101562001037578190505b6200104f620010468562000ee5565b83018262000fe0565b50505b505050565b600082821c905092915050565b6000620010776000198460080262001057565b1980831691505092915050565b600062001092838362001064565b9150826002028217905092915050565b620010ad8262000e61565b67ffffffffffffffff811115620010c957620010c862000c28565b5b620010d5825462000e9b565b620010e282828562001007565b600060209050601f8311600181146200111a576000841562001105578287015190505b62001111858262001084565b86555062001181565b601f1984166200112a8662000ed0565b60005b8281101562001154578489015182556001820191506020850194506020810190506200112d565b8683101562001174578489015162001170601f89168262001064565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620011b68262001189565b9050919050565b620011c881620011a9565b8114620011d457600080fd5b50565b600081519050620011e881620011bd565b92915050565b60006020828403121562001207576200120662000c03565b5b60006200121784828501620011d7565b91505092915050565b6200122b81620011a9565b82525050565b600060408201905062001248600083018562001220565b62001257602083018462001220565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200129a8262000d8c565b9150620012a78362000d8c565b9250828202620012b78162000d8c565b91508282048414831517620012d157620012d06200125e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620013148262000d8c565b9150620013218362000d8c565b925082620013345762001333620012d8565b5b828204905092915050565b60006200134c8262000d8c565b9150620013598362000d8c565b92508282019050808211156200137457620013736200125e565b5b92915050565b60008115159050919050565b62001391816200137a565b82525050565b6000602082019050620013ae600083018462001386565b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620013fd601f83620013b4565b91506200140a82620013c5565b602082019050919050565b600060208201905081810360008301526200143081620013ee565b9050919050565b620014428162000d8c565b82525050565b60006020820190506200145f600083018462001437565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200149d602083620013b4565b9150620014aa8262001465565b602082019050919050565b60006020820190508181036000830152620014d0816200148e565b9050919050565b6080516148776200151660003960008181610a4001528181612fe3015281816130c4015281816130eb0152818161318701526131ae01526148776000f3fe60806040526004361061024a5760003560e01c806395d89b4111610139578063cb963728116100b6578063e2f456051161007a578063e2f45605146108a1578063e37ba8f9146108cc578063f023f573146108f5578063f2fde38b1461091e578063f5648a4f14610947578063f8b45b051461095e57610251565b8063cb963728146107a8578063d257b34f146107d1578063d46980161461080e578063d85ba06314610839578063dd62ed3e1461086457610251565b8063bbc0c742116100fd578063bbc0c742146106d5578063c024666814610700578063c04a541414610729578063c17b5b8c14610754578063c8c8ebe41461077d57610251565b806395d89b41146105de5780639618839914610609578063a457c2d714610632578063a9059cbb1461066f578063aacebbe3146106ac57610251565b80634fbee193116101c75780637571336a1161018b5780637571336a1461051f57806375f0a874146105485780638095d564146105735780638a8c523c1461059c5780638da5cb5b146105b357610251565b80634fbee193146104385780636a486a8e146104755780636ddd1713146104a057806370a08231146104cb578063715018a61461050857610251565b806327c8f8351161020e57806327c8f83514610351578063313ce5671461037c57806339509351146103a757806342966c68146103e457806349bd5a5e1461040d57610251565b806306fdde0314610256578063095ea7b3146102815780631694505e146102be57806318160ddd146102e957806323b872dd1461031457610251565b3661025157005b600080fd5b34801561026257600080fd5b5061026b610989565b604051610278919061330d565b60405180910390f35b34801561028d57600080fd5b506102a860048036038101906102a391906133c8565b610a1b565b6040516102b59190613423565b60405180910390f35b3480156102ca57600080fd5b506102d3610a3e565b6040516102e0919061349d565b60405180910390f35b3480156102f557600080fd5b506102fe610a62565b60405161030b91906134c7565b60405180910390f35b34801561032057600080fd5b5061033b600480360381019061033691906134e2565b610a6c565b6040516103489190613423565b60405180910390f35b34801561035d57600080fd5b50610366610a9b565b6040516103739190613544565b60405180910390f35b34801561038857600080fd5b50610391610aa1565b60405161039e919061357b565b60405180910390f35b3480156103b357600080fd5b506103ce60048036038101906103c991906133c8565b610aaa565b6040516103db9190613423565b60405180910390f35b3480156103f057600080fd5b5061040b60048036038101906104069190613596565b610ae1565b005b34801561041957600080fd5b50610422610aee565b60405161042f9190613544565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a91906135c3565b610b14565b60405161046c9190613423565b60405180910390f35b34801561048157600080fd5b5061048a610b6a565b60405161049791906134c7565b60405180910390f35b3480156104ac57600080fd5b506104b5610b70565b6040516104c29190613423565b60405180910390f35b3480156104d757600080fd5b506104f260048036038101906104ed91906135c3565b610b83565b6040516104ff91906134c7565b60405180910390f35b34801561051457600080fd5b5061051d610bcb565b005b34801561052b57600080fd5b506105466004803603810190610541919061361c565b610bdf565b005b34801561055457600080fd5b5061055d610c42565b60405161056a9190613544565b60405180910390f35b34801561057f57600080fd5b5061059a6004803603810190610595919061365c565b610c68565b005b3480156105a857600080fd5b506105b1610cf3565b005b3480156105bf57600080fd5b506105c8610d33565b6040516105d59190613544565b60405180910390f35b3480156105ea57600080fd5b506105f3610d5d565b604051610600919061330d565b60405180910390f35b34801561061557600080fd5b50610630600480360381019061062b91906136af565b610def565b005b34801561063e57600080fd5b50610659600480360381019061065491906133c8565b610ecf565b6040516106669190613423565b60405180910390f35b34801561067b57600080fd5b50610696600480360381019061069191906133c8565b610f46565b6040516106a39190613423565b60405180910390f35b3480156106b857600080fd5b506106d360048036038101906106ce91906135c3565b610f69565b005b3480156106e157600080fd5b506106ea6110c8565b6040516106f79190613423565b60405180910390f35b34801561070c57600080fd5b506107276004803603810190610722919061361c565b6110db565b005b34801561073557600080fd5b5061073e61118c565b60405161074b9190613544565b60405180910390f35b34801561076057600080fd5b5061077b6004803603810190610776919061365c565b6111b2565b005b34801561078957600080fd5b50610792611246565b60405161079f91906134c7565b60405180910390f35b3480156107b457600080fd5b506107cf60048036038101906107ca91906135c3565b61124c565b005b3480156107dd57600080fd5b506107f860048036038101906107f39190613596565b611411565b6040516108059190613423565b60405180910390f35b34801561081a57600080fd5b506108236114f2565b6040516108309190613544565b60405180910390f35b34801561084557600080fd5b5061084e611518565b60405161085b91906134c7565b60405180910390f35b34801561087057600080fd5b5061088b600480360381019061088691906136ef565b61151e565b60405161089891906134c7565b60405180910390f35b3480156108ad57600080fd5b506108b66115a5565b6040516108c391906134c7565b60405180910390f35b3480156108d857600080fd5b506108f360048036038101906108ee91906135c3565b6115ab565b005b34801561090157600080fd5b5061091c600480360381019061091791906135c3565b61170a565b005b34801561092a57600080fd5b50610945600480360381019061094091906135c3565b611869565b005b34801561095357600080fd5b5061095c6118ec565b005b34801561096a57600080fd5b50610973611965565b60405161098091906134c7565b60405180910390f35b6060600380546109989061375e565b80601f01602080910402602001604051908101604052809291908181526020018280546109c49061375e565b8015610a115780601f106109e657610100808354040283529160200191610a11565b820191906000526020600020905b8154815290600101906020018083116109f457829003601f168201915b5050505050905090565b600080610a2661196b565b9050610a33818585611973565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b600080610a7761196b565b9050610a84858285611b3c565b610a8f858585611bc8565b60019150509392505050565b61dead81565b60006012905090565b600080610ab561196b565b9050610ad6818585610ac7858961151e565b610ad191906137be565b611973565b600191505092915050565b610aeb338261268a565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b600d60019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bd3612857565b610bdd60006128d5565b565b610be7612857565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c70612857565b82600f819055508160108190555080601181905550601154601054600f54610c9891906137be565b610ca291906137be565b600e819055506028600e541115610cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce590613864565b60405180910390fd5b505050565b610cfb612857565b6001600d60006101000a81548160ff0219169083151502179055506001600d60016101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610d6c9061375e565b80601f0160208091040260200160405190810160405280929190818152602001828054610d989061375e565b8015610de55780601f10610dba57610100808354040283529160200191610de5565b820191906000526020600020905b815481529060010190602001808311610dc857829003601f168201915b5050505050905090565b610df7612857565b6103e86005610e04610a62565b610e0e9190613884565b610e1891906138f5565b821015610e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5190613998565b60405180910390fd5b6103e86005610e67610a62565b610e719190613884565b610e7b91906138f5565b811015610ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb490613a2a565b60405180910390fd5b80600c8190555081600a819055505050565b600080610eda61196b565b90506000610ee8828661151e565b905083811015610f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2490613abc565b60405180910390fd5b610f3a8286868403611973565b60019250505092915050565b600080610f5161196b565b9050610f5e818585611bc8565b600191505092915050565b610f71612857565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd790613b28565b60405180910390fd5b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a35050565b600d60009054906101000a900460ff1681565b6110e3612857565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516111809190613423565b60405180910390a25050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6111ba612857565b8260138190555081601481905550806015819055506015546014546013546111e291906137be565b6111ec91906137be565b60128190555060125460198190555060286012541115611241576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123890613864565b60405180910390fd5b505050565b600a5481565b611254612857565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161128f9190613544565b602060405180830381865afa1580156112ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112d09190613b5d565b11611310576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130790613bd6565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161134b9190613544565b602060405180830381865afa158015611368573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061138c9190613b5d565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016113c9929190613bf6565b6020604051808303816000875af11580156113e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061140c9190613c34565b505050565b600061141b612857565b620186a06001611429610a62565b6114339190613884565b61143d91906138f5565b82101561147f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147690613cd3565b60405180910390fd5b6103e8600561148c610a62565b6114969190613884565b6114a091906138f5565b8211156114e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d990613d65565b60405180910390fd5b81600b8190555060019050919050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b6115b3612857565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161990613b28565b60405180910390fd5b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f3e0ea4f8339b6050ff814971a9814aa39176c149fcf185975c219f33db2342db60405160405180910390a35050565b611712612857565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611781576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177890613b28565b60405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167ffaf1b77ed79f6e898c44dd8ab36b330c7b2fd39bcaab05ed6362480df870396560405160405180910390a35050565b611871612857565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d790613df7565b60405180910390fd5b6118e9816128d5565b50565b6118f4612857565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161191a90613e48565b60006040518083038185875af1925050503d8060008114611957576040519150601f19603f3d011682016040523d82523d6000602084013e61195c565b606091505b50508091505050565b600c5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d990613ecf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4890613f61565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611b2f91906134c7565b60405180910390a3505050565b6000611b48848461151e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611bc25781811015611bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bab90613fcd565b60405180910390fd5b611bc18484848403611973565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2e9061405f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9d906140f1565b60405180910390fd5b60008103611cbf57611cba8383600061299b565b612685565b611cc7610d33565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611d355750611d05610d33565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d6e5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611da8575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611dc15750600660149054906101000a900460ff16155b156121a457600d60009054906101000a900460ff16611ebb57601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611e7b5750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb19061415d565b60405180910390fd5b5b601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611f5e5750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561200557600a54811115611fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9f906141ef565b60405180910390fd5b600c54611fb483610b83565b82611fbf91906137be565b1115612000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff79061425b565b60405180910390fd5b6121a3565b601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156120a85750601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156120f757600a548111156120f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e9906142ed565b60405180910390fd5b6121a2565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166121a157600c5461215483610b83565b8261215f91906137be565b11156121a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121979061425b565b60405180910390fd5b5b5b5b5b60006121af30610b83565b90506000600b5482101590508080156121d45750600d60019054906101000a900460ff165b80156121ed5750600660149054906101000a900460ff16155b80156122435750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122995750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122ef5750601a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612333576001600660146101000a81548160ff021916908315150217905550612317612c11565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123e95750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156123f357600090505b6000811561266c57601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561245657506000601254115b1561252357612483606461247560125488612ef890919063ffffffff16565b612f0e90919063ffffffff16565b9050601254601554826124969190613884565b6124a091906138f5565b601860008282546124b191906137be565b92505081905550601254601354826124c99190613884565b6124d391906138f5565b601660008282546124e491906137be565b92505081905550601254601454826124fc9190613884565b61250691906138f5565b6017600082825461251791906137be565b92505081905550612648565b601c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561257e57506000600e54115b15612647576125ab606461259d600e5488612ef890919063ffffffff16565b612f0e90919063ffffffff16565b9050600e54601154826125be9190613884565b6125c891906138f5565b601860008282546125d991906137be565b92505081905550600e54600f54826125f19190613884565b6125fb91906138f5565b6016600082825461260c91906137be565b92505081905550600e54601054826126249190613884565b61262e91906138f5565b6017600082825461263f91906137be565b925050819055505b5b600081111561265d5761265c87308361299b565b5b8085612669919061430d565b94505b61267787878761299b565b601954601281905550505050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f0906143b3565b60405180910390fd5b61270582600083612f24565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561278b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278290614445565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161283e91906134c7565b60405180910390a361285283600084612f29565b505050565b61285f61196b565b73ffffffffffffffffffffffffffffffffffffffff1661287d610d33565b73ffffffffffffffffffffffffffffffffffffffff16146128d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ca906144b1565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a019061405f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a70906140f1565b60405180910390fd5b612a84838383612f24565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0190614543565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612bf891906134c7565b60405180910390a3612c0b848484612f29565b50505050565b6000612c1c30610b83565b90506000601754601654601854612c3391906137be565b612c3d91906137be565b9050600080831480612c4f5750600082145b15612c5c57505050612ef6565b600a600b54612c6b9190613884565b831115612c8457600a600b54612c819190613884565b92505b600060028360185486612c979190613884565b612ca191906138f5565b612cab91906138f5565b90506000612cc28286612f2e90919063ffffffff16565b90506000479050612cd282612f44565b6000612ce78247612f2e90919063ffffffff16565b90506000612d1287612d0460165485612ef890919063ffffffff16565b612f0e90919063ffffffff16565b90506000612d3d88612d2f60175486612ef890919063ffffffff16565b612f0e90919063ffffffff16565b90506000818385612d4e919061430d565b612d58919061430d565b9050600060188190555060006016819055506000601781905550600087118015612d825750600081115b15612dcf57612d918782613181565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601854604051612dc693929190614563565b60405180910390a15b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051612e1590613e48565b60006040518083038185875af1925050503d8060008114612e52576040519150601f19603f3d011682016040523d82523d6000602084013e612e57565b606091505b505080985050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612ea390613e48565b60006040518083038185875af1925050503d8060008114612ee0576040519150601f19603f3d011682016040523d82523d6000602084013e612ee5565b606091505b505080985050505050505050505050505b565b60008183612f069190613884565b905092915050565b60008183612f1c91906138f5565b905092915050565b505050565b505050565b60008183612f3c919061430d565b905092915050565b6000600267ffffffffffffffff811115612f6157612f6061459a565b5b604051908082528060200260200182016040528015612f8f5781602001602082028036833780820191505090505b5090503081600081518110612fa757612fa66145c9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561304c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613070919061460d565b81600181518110613084576130836145c9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506130e9307f000000000000000000000000000000000000000000000000000000000000000084611973565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161314b959493929190614733565b600060405180830381600087803b15801561316557600080fd5b505af1158015613179573d6000803e3d6000fd5b505050505050565b6131ac307f000000000000000000000000000000000000000000000000000000000000000084611973565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016132339695949392919061478d565b60606040518083038185885af1158015613251573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061327691906147ee565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156132b757808201518184015260208101905061329c565b60008484015250505050565b6000601f19601f8301169050919050565b60006132df8261327d565b6132e98185613288565b93506132f9818560208601613299565b613302816132c3565b840191505092915050565b6000602082019050818103600083015261332781846132d4565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061335f82613334565b9050919050565b61336f81613354565b811461337a57600080fd5b50565b60008135905061338c81613366565b92915050565b6000819050919050565b6133a581613392565b81146133b057600080fd5b50565b6000813590506133c28161339c565b92915050565b600080604083850312156133df576133de61332f565b5b60006133ed8582860161337d565b92505060206133fe858286016133b3565b9150509250929050565b60008115159050919050565b61341d81613408565b82525050565b60006020820190506134386000830184613414565b92915050565b6000819050919050565b600061346361345e61345984613334565b61343e565b613334565b9050919050565b600061347582613448565b9050919050565b60006134878261346a565b9050919050565b6134978161347c565b82525050565b60006020820190506134b2600083018461348e565b92915050565b6134c181613392565b82525050565b60006020820190506134dc60008301846134b8565b92915050565b6000806000606084860312156134fb576134fa61332f565b5b60006135098682870161337d565b935050602061351a8682870161337d565b925050604061352b868287016133b3565b9150509250925092565b61353e81613354565b82525050565b60006020820190506135596000830184613535565b92915050565b600060ff82169050919050565b6135758161355f565b82525050565b6000602082019050613590600083018461356c565b92915050565b6000602082840312156135ac576135ab61332f565b5b60006135ba848285016133b3565b91505092915050565b6000602082840312156135d9576135d861332f565b5b60006135e78482850161337d565b91505092915050565b6135f981613408565b811461360457600080fd5b50565b600081359050613616816135f0565b92915050565b600080604083850312156136335761363261332f565b5b60006136418582860161337d565b925050602061365285828601613607565b9150509250929050565b6000806000606084860312156136755761367461332f565b5b6000613683868287016133b3565b9350506020613694868287016133b3565b92505060406136a5868287016133b3565b9150509250925092565b600080604083850312156136c6576136c561332f565b5b60006136d4858286016133b3565b92505060206136e5858286016133b3565b9150509250929050565b600080604083850312156137065761370561332f565b5b60006137148582860161337d565b92505060206137258582860161337d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061377657607f821691505b6020821081036137895761378861372f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137c982613392565b91506137d483613392565b92508282019050808211156137ec576137eb61378f565b5b92915050565b7f45524332303a204d757374206b656570206665657320617420343025206f722060008201527f6c65737300000000000000000000000000000000000000000000000000000000602082015250565b600061384e602483613288565b9150613859826137f2565b604082019050919050565b6000602082019050818103600083015261387d81613841565b9050919050565b600061388f82613392565b915061389a83613392565b92508282026138a881613392565b915082820484148315176138bf576138be61378f565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061390082613392565b915061390b83613392565b92508261391b5761391a6138c6565b5b828204905092915050565b7f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460008201527f68616e20302e3525000000000000000000000000000000000000000000000000602082015250565b6000613982602883613288565b915061398d82613926565b604082019050919050565b600060208201905081810360008301526139b181613975565b9050919050565b7f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560008201527f72207468616e20302e3525000000000000000000000000000000000000000000602082015250565b6000613a14602b83613288565b9150613a1f826139b8565b604082019050919050565b60006020820190508181036000830152613a4381613a07565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613aa6602583613288565b9150613ab182613a4a565b604082019050919050565b60006020820190508181036000830152613ad581613a99565b9050919050565b7f45524332303a2041646472657373203000000000000000000000000000000000600082015250565b6000613b12601083613288565b9150613b1d82613adc565b602082019050919050565b60006020820190508181036000830152613b4181613b05565b9050919050565b600081519050613b578161339c565b92915050565b600060208284031215613b7357613b7261332f565b5b6000613b8184828501613b48565b91505092915050565b7f4e6f20746f6b656e730000000000000000000000000000000000000000000000600082015250565b6000613bc0600983613288565b9150613bcb82613b8a565b602082019050919050565b60006020820190508181036000830152613bef81613bb3565b9050919050565b6000604082019050613c0b6000830185613535565b613c1860208301846134b8565b9392505050565b600081519050613c2e816135f0565b92915050565b600060208284031215613c4a57613c4961332f565b5b6000613c5884828501613c1f565b91505092915050565b7f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760008201527f6572207468616e20302e3030312520746f74616c20737570706c792e00000000602082015250565b6000613cbd603c83613288565b9150613cc882613c61565b604082019050919050565b60006020820190508181036000830152613cec81613cb0565b9050919050565b7f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760008201527f686572207468616e20302e352520746f74616c20737570706c792e0000000000602082015250565b6000613d4f603b83613288565b9150613d5a82613cf3565b604082019050919050565b60006020820190508181036000830152613d7e81613d42565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613de1602683613288565b9150613dec82613d85565b604082019050919050565b60006020820190508181036000830152613e1081613dd4565b9050919050565b600081905092915050565b50565b6000613e32600083613e17565b9150613e3d82613e22565b600082019050919050565b6000613e5382613e25565b9150819050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613eb9602483613288565b9150613ec482613e5d565b604082019050919050565b60006020820190508181036000830152613ee881613eac565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f4b602283613288565b9150613f5682613eef565b604082019050919050565b60006020820190508181036000830152613f7a81613f3e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613fb7601d83613288565b9150613fc282613f81565b602082019050919050565b60006020820190508181036000830152613fe681613faa565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614049602583613288565b915061405482613fed565b604082019050919050565b600060208201905081810360008301526140788161403c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006140db602383613288565b91506140e68261407f565b604082019050919050565b6000602082019050818103600083015261410a816140ce565b9050919050565b7f45524332303a2054726164696e67206973206e6f74206163746976652e000000600082015250565b6000614147601d83613288565b915061415282614111565b602082019050919050565b600060208201905081810360008301526141768161413a565b9050919050565b7f45524332303a20427579207472616e7366657220616d6f756e7420657863656560008201527f647320746865206d61785472616e73616374696f6e416d6f756e742e00000000602082015250565b60006141d9603c83613288565b91506141e48261417d565b604082019050919050565b60006020820190508181036000830152614208816141cc565b9050919050565b7f45524332303a204d61782077616c6c6574206578636565646564000000000000600082015250565b6000614245601a83613288565b91506142508261420f565b602082019050919050565b6000602082019050818103600083015261427481614238565b9050919050565b7f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560008201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e000000602082015250565b60006142d7603d83613288565b91506142e28261427b565b604082019050919050565b60006020820190508181036000830152614306816142ca565b9050919050565b600061431882613392565b915061432383613392565b925082820390508181111561433b5761433a61378f565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061439d602183613288565b91506143a882614341565b604082019050919050565b600060208201905081810360008301526143cc81614390565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061442f602283613288565b915061443a826143d3565b604082019050919050565b6000602082019050818103600083015261445e81614422565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061449b602083613288565b91506144a682614465565b602082019050919050565b600060208201905081810360008301526144ca8161448e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061452d602683613288565b9150614538826144d1565b604082019050919050565b6000602082019050818103600083015261455c81614520565b9050919050565b600060608201905061457860008301866134b8565b61458560208301856134b8565b61459260408301846134b8565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061460781613366565b92915050565b6000602082840312156146235761462261332f565b5b6000614631848285016145f8565b91505092915050565b6000819050919050565b600061465f61465a6146558461463a565b61343e565b613392565b9050919050565b61466f81614644565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6146aa81613354565b82525050565b60006146bc83836146a1565b60208301905092915050565b6000602082019050919050565b60006146e082614675565b6146ea8185614680565b93506146f583614691565b8060005b8381101561472657815161470d88826146b0565b9750614718836146c8565b9250506001810190506146f9565b5085935050505092915050565b600060a08201905061474860008301886134b8565b6147556020830187614666565b818103604083015261476781866146d5565b90506147766060830185613535565b61478360808301846134b8565b9695505050505050565b600060c0820190506147a26000830189613535565b6147af60208301886134b8565b6147bc6040830187614666565b6147c96060830186614666565b6147d66080830185613535565b6147e360a08301846134b8565b979650505050505050565b6000806000606084860312156148075761480661332f565b5b600061481586828701613b48565b935050602061482686828701613b48565b925050604061483786828701613b48565b915050925092509256fea2646970667358221220e32e9c8c2bd4a5e7287b0d1e3ce17aa714c2f4cf0385293613878095b22c9a4564736f6c63430008130033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000009896800000000000000000000000000000000000000000000000000000000000000009417274204f66204149000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054152544f46000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061024a5760003560e01c806395d89b4111610139578063cb963728116100b6578063e2f456051161007a578063e2f45605146108a1578063e37ba8f9146108cc578063f023f573146108f5578063f2fde38b1461091e578063f5648a4f14610947578063f8b45b051461095e57610251565b8063cb963728146107a8578063d257b34f146107d1578063d46980161461080e578063d85ba06314610839578063dd62ed3e1461086457610251565b8063bbc0c742116100fd578063bbc0c742146106d5578063c024666814610700578063c04a541414610729578063c17b5b8c14610754578063c8c8ebe41461077d57610251565b806395d89b41146105de5780639618839914610609578063a457c2d714610632578063a9059cbb1461066f578063aacebbe3146106ac57610251565b80634fbee193116101c75780637571336a1161018b5780637571336a1461051f57806375f0a874146105485780638095d564146105735780638a8c523c1461059c5780638da5cb5b146105b357610251565b80634fbee193146104385780636a486a8e146104755780636ddd1713146104a057806370a08231146104cb578063715018a61461050857610251565b806327c8f8351161020e57806327c8f83514610351578063313ce5671461037c57806339509351146103a757806342966c68146103e457806349bd5a5e1461040d57610251565b806306fdde0314610256578063095ea7b3146102815780631694505e146102be57806318160ddd146102e957806323b872dd1461031457610251565b3661025157005b600080fd5b34801561026257600080fd5b5061026b610989565b604051610278919061330d565b60405180910390f35b34801561028d57600080fd5b506102a860048036038101906102a391906133c8565b610a1b565b6040516102b59190613423565b60405180910390f35b3480156102ca57600080fd5b506102d3610a3e565b6040516102e0919061349d565b60405180910390f35b3480156102f557600080fd5b506102fe610a62565b60405161030b91906134c7565b60405180910390f35b34801561032057600080fd5b5061033b600480360381019061033691906134e2565b610a6c565b6040516103489190613423565b60405180910390f35b34801561035d57600080fd5b50610366610a9b565b6040516103739190613544565b60405180910390f35b34801561038857600080fd5b50610391610aa1565b60405161039e919061357b565b60405180910390f35b3480156103b357600080fd5b506103ce60048036038101906103c991906133c8565b610aaa565b6040516103db9190613423565b60405180910390f35b3480156103f057600080fd5b5061040b60048036038101906104069190613596565b610ae1565b005b34801561041957600080fd5b50610422610aee565b60405161042f9190613544565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a91906135c3565b610b14565b60405161046c9190613423565b60405180910390f35b34801561048157600080fd5b5061048a610b6a565b60405161049791906134c7565b60405180910390f35b3480156104ac57600080fd5b506104b5610b70565b6040516104c29190613423565b60405180910390f35b3480156104d757600080fd5b506104f260048036038101906104ed91906135c3565b610b83565b6040516104ff91906134c7565b60405180910390f35b34801561051457600080fd5b5061051d610bcb565b005b34801561052b57600080fd5b506105466004803603810190610541919061361c565b610bdf565b005b34801561055457600080fd5b5061055d610c42565b60405161056a9190613544565b60405180910390f35b34801561057f57600080fd5b5061059a6004803603810190610595919061365c565b610c68565b005b3480156105a857600080fd5b506105b1610cf3565b005b3480156105bf57600080fd5b506105c8610d33565b6040516105d59190613544565b60405180910390f35b3480156105ea57600080fd5b506105f3610d5d565b604051610600919061330d565b60405180910390f35b34801561061557600080fd5b50610630600480360381019061062b91906136af565b610def565b005b34801561063e57600080fd5b50610659600480360381019061065491906133c8565b610ecf565b6040516106669190613423565b60405180910390f35b34801561067b57600080fd5b50610696600480360381019061069191906133c8565b610f46565b6040516106a39190613423565b60405180910390f35b3480156106b857600080fd5b506106d360048036038101906106ce91906135c3565b610f69565b005b3480156106e157600080fd5b506106ea6110c8565b6040516106f79190613423565b60405180910390f35b34801561070c57600080fd5b506107276004803603810190610722919061361c565b6110db565b005b34801561073557600080fd5b5061073e61118c565b60405161074b9190613544565b60405180910390f35b34801561076057600080fd5b5061077b6004803603810190610776919061365c565b6111b2565b005b34801561078957600080fd5b50610792611246565b60405161079f91906134c7565b60405180910390f35b3480156107b457600080fd5b506107cf60048036038101906107ca91906135c3565b61124c565b005b3480156107dd57600080fd5b506107f860048036038101906107f39190613596565b611411565b6040516108059190613423565b60405180910390f35b34801561081a57600080fd5b506108236114f2565b6040516108309190613544565b60405180910390f35b34801561084557600080fd5b5061084e611518565b60405161085b91906134c7565b60405180910390f35b34801561087057600080fd5b5061088b600480360381019061088691906136ef565b61151e565b60405161089891906134c7565b60405180910390f35b3480156108ad57600080fd5b506108b66115a5565b6040516108c391906134c7565b60405180910390f35b3480156108d857600080fd5b506108f360048036038101906108ee91906135c3565b6115ab565b005b34801561090157600080fd5b5061091c600480360381019061091791906135c3565b61170a565b005b34801561092a57600080fd5b50610945600480360381019061094091906135c3565b611869565b005b34801561095357600080fd5b5061095c6118ec565b005b34801561096a57600080fd5b50610973611965565b60405161098091906134c7565b60405180910390f35b6060600380546109989061375e565b80601f01602080910402602001604051908101604052809291908181526020018280546109c49061375e565b8015610a115780601f106109e657610100808354040283529160200191610a11565b820191906000526020600020905b8154815290600101906020018083116109f457829003601f168201915b5050505050905090565b600080610a2661196b565b9050610a33818585611973565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b600080610a7761196b565b9050610a84858285611b3c565b610a8f858585611bc8565b60019150509392505050565b61dead81565b60006012905090565b600080610ab561196b565b9050610ad6818585610ac7858961151e565b610ad191906137be565b611973565b600191505092915050565b610aeb338261268a565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b600d60019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bd3612857565b610bdd60006128d5565b565b610be7612857565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c70612857565b82600f819055508160108190555080601181905550601154601054600f54610c9891906137be565b610ca291906137be565b600e819055506028600e541115610cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce590613864565b60405180910390fd5b505050565b610cfb612857565b6001600d60006101000a81548160ff0219169083151502179055506001600d60016101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610d6c9061375e565b80601f0160208091040260200160405190810160405280929190818152602001828054610d989061375e565b8015610de55780601f10610dba57610100808354040283529160200191610de5565b820191906000526020600020905b815481529060010190602001808311610dc857829003601f168201915b5050505050905090565b610df7612857565b6103e86005610e04610a62565b610e0e9190613884565b610e1891906138f5565b821015610e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5190613998565b60405180910390fd5b6103e86005610e67610a62565b610e719190613884565b610e7b91906138f5565b811015610ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb490613a2a565b60405180910390fd5b80600c8190555081600a819055505050565b600080610eda61196b565b90506000610ee8828661151e565b905083811015610f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2490613abc565b60405180910390fd5b610f3a8286868403611973565b60019250505092915050565b600080610f5161196b565b9050610f5e818585611bc8565b600191505092915050565b610f71612857565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd790613b28565b60405180910390fd5b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a35050565b600d60009054906101000a900460ff1681565b6110e3612857565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516111809190613423565b60405180910390a25050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6111ba612857565b8260138190555081601481905550806015819055506015546014546013546111e291906137be565b6111ec91906137be565b60128190555060125460198190555060286012541115611241576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123890613864565b60405180910390fd5b505050565b600a5481565b611254612857565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161128f9190613544565b602060405180830381865afa1580156112ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112d09190613b5d565b11611310576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130790613bd6565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161134b9190613544565b602060405180830381865afa158015611368573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061138c9190613b5d565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016113c9929190613bf6565b6020604051808303816000875af11580156113e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061140c9190613c34565b505050565b600061141b612857565b620186a06001611429610a62565b6114339190613884565b61143d91906138f5565b82101561147f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147690613cd3565b60405180910390fd5b6103e8600561148c610a62565b6114969190613884565b6114a091906138f5565b8211156114e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d990613d65565b60405180910390fd5b81600b8190555060019050919050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b6115b3612857565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161990613b28565b60405180910390fd5b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f3e0ea4f8339b6050ff814971a9814aa39176c149fcf185975c219f33db2342db60405160405180910390a35050565b611712612857565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611781576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177890613b28565b60405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167ffaf1b77ed79f6e898c44dd8ab36b330c7b2fd39bcaab05ed6362480df870396560405160405180910390a35050565b611871612857565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d790613df7565b60405180910390fd5b6118e9816128d5565b50565b6118f4612857565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161191a90613e48565b60006040518083038185875af1925050503d8060008114611957576040519150601f19603f3d011682016040523d82523d6000602084013e61195c565b606091505b50508091505050565b600c5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d990613ecf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4890613f61565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611b2f91906134c7565b60405180910390a3505050565b6000611b48848461151e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611bc25781811015611bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bab90613fcd565b60405180910390fd5b611bc18484848403611973565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2e9061405f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9d906140f1565b60405180910390fd5b60008103611cbf57611cba8383600061299b565b612685565b611cc7610d33565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611d355750611d05610d33565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d6e5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611da8575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611dc15750600660149054906101000a900460ff16155b156121a457600d60009054906101000a900460ff16611ebb57601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611e7b5750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb19061415d565b60405180910390fd5b5b601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611f5e5750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561200557600a54811115611fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9f906141ef565b60405180910390fd5b600c54611fb483610b83565b82611fbf91906137be565b1115612000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff79061425b565b60405180910390fd5b6121a3565b601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156120a85750601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156120f757600a548111156120f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e9906142ed565b60405180910390fd5b6121a2565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166121a157600c5461215483610b83565b8261215f91906137be565b11156121a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121979061425b565b60405180910390fd5b5b5b5b5b60006121af30610b83565b90506000600b5482101590508080156121d45750600d60019054906101000a900460ff165b80156121ed5750600660149054906101000a900460ff16155b80156122435750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122995750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122ef5750601a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612333576001600660146101000a81548160ff021916908315150217905550612317612c11565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123e95750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156123f357600090505b6000811561266c57601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561245657506000601254115b1561252357612483606461247560125488612ef890919063ffffffff16565b612f0e90919063ffffffff16565b9050601254601554826124969190613884565b6124a091906138f5565b601860008282546124b191906137be565b92505081905550601254601354826124c99190613884565b6124d391906138f5565b601660008282546124e491906137be565b92505081905550601254601454826124fc9190613884565b61250691906138f5565b6017600082825461251791906137be565b92505081905550612648565b601c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561257e57506000600e54115b15612647576125ab606461259d600e5488612ef890919063ffffffff16565b612f0e90919063ffffffff16565b9050600e54601154826125be9190613884565b6125c891906138f5565b601860008282546125d991906137be565b92505081905550600e54600f54826125f19190613884565b6125fb91906138f5565b6016600082825461260c91906137be565b92505081905550600e54601054826126249190613884565b61262e91906138f5565b6017600082825461263f91906137be565b925050819055505b5b600081111561265d5761265c87308361299b565b5b8085612669919061430d565b94505b61267787878761299b565b601954601281905550505050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f0906143b3565b60405180910390fd5b61270582600083612f24565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561278b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278290614445565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161283e91906134c7565b60405180910390a361285283600084612f29565b505050565b61285f61196b565b73ffffffffffffffffffffffffffffffffffffffff1661287d610d33565b73ffffffffffffffffffffffffffffffffffffffff16146128d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ca906144b1565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a019061405f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a70906140f1565b60405180910390fd5b612a84838383612f24565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0190614543565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612bf891906134c7565b60405180910390a3612c0b848484612f29565b50505050565b6000612c1c30610b83565b90506000601754601654601854612c3391906137be565b612c3d91906137be565b9050600080831480612c4f5750600082145b15612c5c57505050612ef6565b600a600b54612c6b9190613884565b831115612c8457600a600b54612c819190613884565b92505b600060028360185486612c979190613884565b612ca191906138f5565b612cab91906138f5565b90506000612cc28286612f2e90919063ffffffff16565b90506000479050612cd282612f44565b6000612ce78247612f2e90919063ffffffff16565b90506000612d1287612d0460165485612ef890919063ffffffff16565b612f0e90919063ffffffff16565b90506000612d3d88612d2f60175486612ef890919063ffffffff16565b612f0e90919063ffffffff16565b90506000818385612d4e919061430d565b612d58919061430d565b9050600060188190555060006016819055506000601781905550600087118015612d825750600081115b15612dcf57612d918782613181565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601854604051612dc693929190614563565b60405180910390a15b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051612e1590613e48565b60006040518083038185875af1925050503d8060008114612e52576040519150601f19603f3d011682016040523d82523d6000602084013e612e57565b606091505b505080985050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612ea390613e48565b60006040518083038185875af1925050503d8060008114612ee0576040519150601f19603f3d011682016040523d82523d6000602084013e612ee5565b606091505b505080985050505050505050505050505b565b60008183612f069190613884565b905092915050565b60008183612f1c91906138f5565b905092915050565b505050565b505050565b60008183612f3c919061430d565b905092915050565b6000600267ffffffffffffffff811115612f6157612f6061459a565b5b604051908082528060200260200182016040528015612f8f5781602001602082028036833780820191505090505b5090503081600081518110612fa757612fa66145c9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561304c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613070919061460d565b81600181518110613084576130836145c9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506130e9307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611973565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161314b959493929190614733565b600060405180830381600087803b15801561316557600080fd5b505af1158015613179573d6000803e3d6000fd5b505050505050565b6131ac307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611973565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016132339695949392919061478d565b60606040518083038185885af1158015613251573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061327691906147ee565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156132b757808201518184015260208101905061329c565b60008484015250505050565b6000601f19601f8301169050919050565b60006132df8261327d565b6132e98185613288565b93506132f9818560208601613299565b613302816132c3565b840191505092915050565b6000602082019050818103600083015261332781846132d4565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061335f82613334565b9050919050565b61336f81613354565b811461337a57600080fd5b50565b60008135905061338c81613366565b92915050565b6000819050919050565b6133a581613392565b81146133b057600080fd5b50565b6000813590506133c28161339c565b92915050565b600080604083850312156133df576133de61332f565b5b60006133ed8582860161337d565b92505060206133fe858286016133b3565b9150509250929050565b60008115159050919050565b61341d81613408565b82525050565b60006020820190506134386000830184613414565b92915050565b6000819050919050565b600061346361345e61345984613334565b61343e565b613334565b9050919050565b600061347582613448565b9050919050565b60006134878261346a565b9050919050565b6134978161347c565b82525050565b60006020820190506134b2600083018461348e565b92915050565b6134c181613392565b82525050565b60006020820190506134dc60008301846134b8565b92915050565b6000806000606084860312156134fb576134fa61332f565b5b60006135098682870161337d565b935050602061351a8682870161337d565b925050604061352b868287016133b3565b9150509250925092565b61353e81613354565b82525050565b60006020820190506135596000830184613535565b92915050565b600060ff82169050919050565b6135758161355f565b82525050565b6000602082019050613590600083018461356c565b92915050565b6000602082840312156135ac576135ab61332f565b5b60006135ba848285016133b3565b91505092915050565b6000602082840312156135d9576135d861332f565b5b60006135e78482850161337d565b91505092915050565b6135f981613408565b811461360457600080fd5b50565b600081359050613616816135f0565b92915050565b600080604083850312156136335761363261332f565b5b60006136418582860161337d565b925050602061365285828601613607565b9150509250929050565b6000806000606084860312156136755761367461332f565b5b6000613683868287016133b3565b9350506020613694868287016133b3565b92505060406136a5868287016133b3565b9150509250925092565b600080604083850312156136c6576136c561332f565b5b60006136d4858286016133b3565b92505060206136e5858286016133b3565b9150509250929050565b600080604083850312156137065761370561332f565b5b60006137148582860161337d565b92505060206137258582860161337d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061377657607f821691505b6020821081036137895761378861372f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137c982613392565b91506137d483613392565b92508282019050808211156137ec576137eb61378f565b5b92915050565b7f45524332303a204d757374206b656570206665657320617420343025206f722060008201527f6c65737300000000000000000000000000000000000000000000000000000000602082015250565b600061384e602483613288565b9150613859826137f2565b604082019050919050565b6000602082019050818103600083015261387d81613841565b9050919050565b600061388f82613392565b915061389a83613392565b92508282026138a881613392565b915082820484148315176138bf576138be61378f565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061390082613392565b915061390b83613392565b92508261391b5761391a6138c6565b5b828204905092915050565b7f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460008201527f68616e20302e3525000000000000000000000000000000000000000000000000602082015250565b6000613982602883613288565b915061398d82613926565b604082019050919050565b600060208201905081810360008301526139b181613975565b9050919050565b7f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560008201527f72207468616e20302e3525000000000000000000000000000000000000000000602082015250565b6000613a14602b83613288565b9150613a1f826139b8565b604082019050919050565b60006020820190508181036000830152613a4381613a07565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613aa6602583613288565b9150613ab182613a4a565b604082019050919050565b60006020820190508181036000830152613ad581613a99565b9050919050565b7f45524332303a2041646472657373203000000000000000000000000000000000600082015250565b6000613b12601083613288565b9150613b1d82613adc565b602082019050919050565b60006020820190508181036000830152613b4181613b05565b9050919050565b600081519050613b578161339c565b92915050565b600060208284031215613b7357613b7261332f565b5b6000613b8184828501613b48565b91505092915050565b7f4e6f20746f6b656e730000000000000000000000000000000000000000000000600082015250565b6000613bc0600983613288565b9150613bcb82613b8a565b602082019050919050565b60006020820190508181036000830152613bef81613bb3565b9050919050565b6000604082019050613c0b6000830185613535565b613c1860208301846134b8565b9392505050565b600081519050613c2e816135f0565b92915050565b600060208284031215613c4a57613c4961332f565b5b6000613c5884828501613c1f565b91505092915050565b7f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760008201527f6572207468616e20302e3030312520746f74616c20737570706c792e00000000602082015250565b6000613cbd603c83613288565b9150613cc882613c61565b604082019050919050565b60006020820190508181036000830152613cec81613cb0565b9050919050565b7f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760008201527f686572207468616e20302e352520746f74616c20737570706c792e0000000000602082015250565b6000613d4f603b83613288565b9150613d5a82613cf3565b604082019050919050565b60006020820190508181036000830152613d7e81613d42565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613de1602683613288565b9150613dec82613d85565b604082019050919050565b60006020820190508181036000830152613e1081613dd4565b9050919050565b600081905092915050565b50565b6000613e32600083613e17565b9150613e3d82613e22565b600082019050919050565b6000613e5382613e25565b9150819050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613eb9602483613288565b9150613ec482613e5d565b604082019050919050565b60006020820190508181036000830152613ee881613eac565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f4b602283613288565b9150613f5682613eef565b604082019050919050565b60006020820190508181036000830152613f7a81613f3e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613fb7601d83613288565b9150613fc282613f81565b602082019050919050565b60006020820190508181036000830152613fe681613faa565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614049602583613288565b915061405482613fed565b604082019050919050565b600060208201905081810360008301526140788161403c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006140db602383613288565b91506140e68261407f565b604082019050919050565b6000602082019050818103600083015261410a816140ce565b9050919050565b7f45524332303a2054726164696e67206973206e6f74206163746976652e000000600082015250565b6000614147601d83613288565b915061415282614111565b602082019050919050565b600060208201905081810360008301526141768161413a565b9050919050565b7f45524332303a20427579207472616e7366657220616d6f756e7420657863656560008201527f647320746865206d61785472616e73616374696f6e416d6f756e742e00000000602082015250565b60006141d9603c83613288565b91506141e48261417d565b604082019050919050565b60006020820190508181036000830152614208816141cc565b9050919050565b7f45524332303a204d61782077616c6c6574206578636565646564000000000000600082015250565b6000614245601a83613288565b91506142508261420f565b602082019050919050565b6000602082019050818103600083015261427481614238565b9050919050565b7f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560008201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e000000602082015250565b60006142d7603d83613288565b91506142e28261427b565b604082019050919050565b60006020820190508181036000830152614306816142ca565b9050919050565b600061431882613392565b915061432383613392565b925082820390508181111561433b5761433a61378f565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061439d602183613288565b91506143a882614341565b604082019050919050565b600060208201905081810360008301526143cc81614390565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061442f602283613288565b915061443a826143d3565b604082019050919050565b6000602082019050818103600083015261445e81614422565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061449b602083613288565b91506144a682614465565b602082019050919050565b600060208201905081810360008301526144ca8161448e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061452d602683613288565b9150614538826144d1565b604082019050919050565b6000602082019050818103600083015261455c81614520565b9050919050565b600060608201905061457860008301866134b8565b61458560208301856134b8565b61459260408301846134b8565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061460781613366565b92915050565b6000602082840312156146235761462261332f565b5b6000614631848285016145f8565b91505092915050565b6000819050919050565b600061465f61465a6146558461463a565b61343e565b613392565b9050919050565b61466f81614644565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6146aa81613354565b82525050565b60006146bc83836146a1565b60208301905092915050565b6000602082019050919050565b60006146e082614675565b6146ea8185614680565b93506146f583614691565b8060005b8381101561472657815161470d88826146b0565b9750614718836146c8565b9250506001810190506146f9565b5085935050505092915050565b600060a08201905061474860008301886134b8565b6147556020830187614666565b818103604083015261476781866146d5565b90506147766060830185613535565b61478360808301846134b8565b9695505050505050565b600060c0820190506147a26000830189613535565b6147af60208301886134b8565b6147bc6040830187614666565b6147c96060830186614666565b6147d66080830185613535565b6147e360a08301846134b8565b979650505050505050565b6000806000606084860312156148075761480661332f565b5b600061481586828701613b48565b935050602061482686828701613b48565b925050604061483786828701613b48565b915050925092509256fea2646970667358221220e32e9c8c2bd4a5e7287b0d1e3ce17aa714c2f4cf0385293613878095b22c9a4564736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000009896800000000000000000000000000000000000000000000000000000000000000009417274204f66204149000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054152544f46000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Art Of AI
Arg [1] : symbol (string): ARTOF
Arg [2] : supply (uint256): 10000000
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000989680
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 417274204f662041490000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 4152544f46000000000000000000000000000000000000000000000000000000
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.