ERC-20
Liquidity
Overview
Max Total Supply
100,000,000 LINQ
Holders
2,821 (0.00%)
Market
Price
$0.00 @ 0.000001 ETH (-25.89%)
Onchain Market Cap
$179,477.00
Circulating Supply Market Cap
$179,578.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
2,362.507027337968846274 LINQValue
$4.24 ( ~0.00140000089495996 Eth) [0.0024%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Linq
Compiler Version
v0.8.15+commit.e14f2714
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /* A New Paradigm. Telegram: https://t.me/LINQ_GROUP Website: https://www.linqgroup.io/ X: https://twitter.com/linq_group Linktree: https://linktr.ee/linqgroup */ pragma solidity =0.8.15; import "LPDiv.sol"; contract Linq is ERC20, Ownable { IUniswapRouter public router; address public pair; bool private swapping; bool public swapEnabled = true; bool public claimEnabled; bool public tradingEnabled; LinqDividendTracker public dividendTracker; address public devWallet; uint256 public swapTokensAtAmount; uint256 public maxBuyAmount; uint256 public maxSellAmount; uint256 public maxWallet; struct Taxes { uint256 liquidity; uint256 dev; } Taxes public buyTaxes = Taxes(2, 2); Taxes public sellTaxes = Taxes(2, 2); uint256 public totalBuyTax = 4; uint256 public totalSellTax = 4; mapping(address => bool) public _isBot; mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public automatedMarketMakerPairs; mapping(address => bool) private _isExcludedFromMaxWallet; /////////////// // Events // /////////////// event ExcludeFromFees(address indexed account, bool isExcluded); event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event GasForProcessingUpdated( uint256 indexed newValue, uint256 indexed oldValue ); event SendDividends(uint256 tokensSwapped, uint256 amount); event ProcessedDividendTracker( uint256 iterations, uint256 claims, uint256 lastProcessedIndex, bool indexed automatic, uint256 gas, address indexed processor ); constructor(address _developerwallet) ERC20("Linq", "LINQ") { dividendTracker = new LinqDividendTracker(); setDevWallet(_developerwallet); IUniswapRouter _router = IUniswapRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); address _pair = IFactory(_router.factory()).createPair( address(this), _router.WETH() ); router = _router; pair = _pair; setSwapTokensAtAmount(300000); // updateMaxWalletAmount(2000000); setMaxBuyAndSell(2000000, 2000000); _setAutomatedMarketMakerPair(_pair, true); dividendTracker.updateLP_Token(pair); dividendTracker.excludeFromDividends(address(dividendTracker), true); dividendTracker.excludeFromDividends(address(this), true); dividendTracker.excludeFromDividends(owner(), true); dividendTracker.excludeFromDividends(address(0xdead), true); dividendTracker.excludeFromDividends(address(_router), true); excludeFromMaxWallet(address(_pair), true); excludeFromMaxWallet(address(this), true); excludeFromMaxWallet(address(_router), true); excludeFromFees(owner(), true); excludeFromFees(address(this), true); _mint(owner(), 100000000 * (10**18)); } receive() external payable {} function updateDividendTracker(address newAddress) public onlyOwner { LinqDividendTracker newDividendTracker = LinqDividendTracker( payable(newAddress) ); newDividendTracker.excludeFromDividends( address(newDividendTracker), true ); newDividendTracker.excludeFromDividends(address(this), true); newDividendTracker.excludeFromDividends(owner(), true); newDividendTracker.excludeFromDividends(address(router), true); dividendTracker = newDividendTracker; } /// @notice Manual claim the dividends function claim() external { require(claimEnabled, "Claim not enabled"); dividendTracker.processAccount(payable(msg.sender)); } function updateMaxWalletAmount(uint256 newNum) public onlyOwner { require(newNum >= 1000000, "Cannot set maxWallet lower than 1%"); maxWallet = newNum * 10**18; } function setMaxBuyAndSell(uint256 maxBuy, uint256 maxSell) public onlyOwner { require(maxBuy >= 1000000, "Cannot set maxbuy lower than 1% "); require(maxSell >= 500000, "Cannot set maxsell lower than 0.5% "); maxBuyAmount = maxBuy * 10**18; maxSellAmount = maxSell * 10**18; } function setSwapTokensAtAmount(uint256 amount) public onlyOwner { swapTokensAtAmount = amount * 10**18; } function excludeFromMaxWallet(address account, bool excluded) public onlyOwner { _isExcludedFromMaxWallet[account] = excluded; } /// @notice Withdraw tokens sent by mistake. /// @param tokenAddress The address of the token to withdraw function rescueETH20Tokens(address tokenAddress) external onlyOwner { IERC20(tokenAddress).transfer( owner(), IERC20(tokenAddress).balanceOf(address(this)) ); } /// @notice Send remaining ETH to dev /// @dev It will send all ETH to dev function forceSend() external onlyOwner { uint256 ETHbalance = address(this).balance; (bool success, ) = payable(devWallet).call{value: ETHbalance}(""); require(success); } function trackerRescueETH20Tokens(address tokenAddress) external onlyOwner { dividendTracker.trackerRescueETH20Tokens(msg.sender, tokenAddress); } function updateRouter(address newRouter) external onlyOwner { router = IUniswapRouter(newRouter); } ///////////////////////////////// // Exclude / Include functions // ///////////////////////////////// function excludeFromFees(address account, bool excluded) public onlyOwner { require( _isExcludedFromFees[account] != excluded, "Account is already the value of 'excluded'" ); _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } /// @dev "true" to exlcude, "false" to include function excludeFromDividends(address account, bool value) public onlyOwner { dividendTracker.excludeFromDividends(account, value); } function setDevWallet(address newWallet) public onlyOwner { devWallet = newWallet; } function setBuyTaxes(uint256 _liquidity, uint256 _dev) external onlyOwner { require(_liquidity + _dev <= 20, "Fee must be <= 20%"); buyTaxes = Taxes(_liquidity, _dev); totalBuyTax = _liquidity + _dev; } function setSellTaxes(uint256 _liquidity, uint256 _dev) external onlyOwner { require(_liquidity + _dev <= 20, "Fee must be <= 20%"); sellTaxes = Taxes(_liquidity, _dev); totalSellTax = _liquidity + _dev; } /// @notice Enable or disable internal swaps /// @dev Set "true" to enable internal swaps for liquidity, treasury and dividends function setSwapEnabled(bool _enabled) external onlyOwner { swapEnabled = _enabled; } function activateTrading() external onlyOwner { require(!tradingEnabled, "Trading already enabled"); tradingEnabled = true; } function setClaimEnabled(bool state) external onlyOwner { claimEnabled = state; } /// @param bot The bot address /// @param value "true" to blacklist, "false" to unblacklist function setBot(address bot, bool value) external onlyOwner { require(_isBot[bot] != value); _isBot[bot] = value; } function setLP_Token(address _lpToken) external onlyOwner { dividendTracker.updateLP_Token(_lpToken); } /// @dev Set new pairs created due to listing in new DEX function setAutomatedMarketMakerPair(address newPair, bool value) external onlyOwner { _setAutomatedMarketMakerPair(newPair, value); } function _setAutomatedMarketMakerPair(address newPair, bool value) private { require( automatedMarketMakerPairs[newPair] != value, "Automated market maker pair is already set to that value" ); automatedMarketMakerPairs[newPair] = value; if (value) { dividendTracker.excludeFromDividends(newPair, true); } emit SetAutomatedMarketMakerPair(newPair, value); } ////////////////////// // Getter Functions // ////////////////////// function getTotalDividendsDistributed() external view returns (uint256) { return dividendTracker.totalDividendsDistributed(); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function withdrawableDividendOf(address account) public view returns (uint256) { return dividendTracker.withdrawableDividendOf(account); } function dividendTokenBalanceOf(address account) public view returns (uint256) { return dividendTracker.balanceOf(account); } function getAccountInfo(address account) external view returns ( address, uint256, uint256, uint256, uint256 ) { return dividendTracker.getAccount(account); } //////////////////////// // Transfer Functions // //////////////////////// 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 ( !_isExcludedFromFees[from] && !_isExcludedFromFees[to] && !swapping ) { require(tradingEnabled, "Trading not active"); if (automatedMarketMakerPairs[to]) { require( amount <= maxSellAmount, "You are exceeding maxSellAmount" ); } else if (automatedMarketMakerPairs[from]) require( amount <= maxBuyAmount, "You are exceeding maxBuyAmount" ); if (!_isExcludedFromMaxWallet[to]) { require( amount + balanceOf(to) <= maxWallet, "Unable to exceed Max Wallet" ); } } if (amount == 0) { super._transfer(from, to, 0); return; } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && !swapping && swapEnabled && automatedMarketMakerPairs[to] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; if (totalSellTax > 0) { swapAndLiquify(swapTokensAtAmount); } swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } if (!automatedMarketMakerPairs[to] && !automatedMarketMakerPairs[from]) takeFee = false; if (takeFee) { uint256 feeAmt; if (automatedMarketMakerPairs[to]) feeAmt = (amount * totalSellTax) / 100; else if (automatedMarketMakerPairs[from]) feeAmt = (amount * totalBuyTax) / 100; amount = amount - feeAmt; super._transfer(from, address(this), feeAmt); } super._transfer(from, to, amount); try dividendTracker.setBalance(from, balanceOf(from)) {} catch {} try dividendTracker.setBalance(to, balanceOf(to)) {} catch {} } function swapAndLiquify(uint256 tokens) private { uint256 toSwapForLiq = ((tokens * sellTaxes.liquidity) / totalSellTax) / 2; uint256 tokensToAddLiquidityWith = ((tokens * sellTaxes.liquidity) / totalSellTax) / 2; uint256 toSwapForDev = (tokens * sellTaxes.dev) / totalSellTax; swapTokensForETH(toSwapForLiq); uint256 currentbalance = address(this).balance; if (currentbalance > 0) { // Add liquidity to uni addLiquidity(tokensToAddLiquidityWith, currentbalance); } swapTokensForETH(toSwapForDev); uint256 EthTaxBalance = address(this).balance; // Send ETH to dev uint256 devAmt = EthTaxBalance; if (devAmt > 0) { (bool success, ) = payable(devWallet).call{value: devAmt}(""); require(success, "Failed to send ETH to dev wallet"); } uint256 lpBalance = IERC20(pair).balanceOf(address(this)); //Send LP to dividends uint256 dividends = lpBalance; if (dividends > 0) { bool success = IERC20(pair).transfer( address(dividendTracker), dividends ); if (success) { dividendTracker.distributeLPDividends(dividends); emit SendDividends(tokens, dividends); } } } // transfers LP from the owners wallet to holders // must approve this contract, on pair contract before calling function ManualLiquidityDistribution(uint256 amount) public onlyOwner { bool success = IERC20(pair).transferFrom( msg.sender, address(dividendTracker), amount ); if (success) { dividendTracker.distributeLPDividends(amount); } } function swapTokensForETH(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = router.WETH(); _approve(address(this), address(router), tokenAmount); // make the swap router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(router), tokenAmount); // add the liquidity router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable address(this), block.timestamp ); } } contract LinqDividendTracker is Ownable, DividendPayingToken { struct AccountInfo { address account; uint256 withdrawableDividends; uint256 totalDividends; uint256 lastClaimTime; } mapping(address => bool) public excludedFromDividends; mapping(address => uint256) public lastClaimTimes; event ExcludeFromDividends(address indexed account, bool value); event Claim(address indexed account, uint256 amount); constructor() DividendPayingToken("Linq_Dividend_Tracker", "Linq_Dividend_Tracker") {} function trackerRescueETH20Tokens(address recipient, address tokenAddress) external onlyOwner { IERC20(tokenAddress).transfer( recipient, IERC20(tokenAddress).balanceOf(address(this)) ); } function updateLP_Token(address _lpToken) external onlyOwner { LP_Token = _lpToken; } function _transfer( address, address, uint256 ) internal pure override { require(false, "Linq_Dividend_Tracker: No transfers allowed"); } function excludeFromDividends(address account, bool value) external onlyOwner { require(excludedFromDividends[account] != value); excludedFromDividends[account] = value; if (value == true) { _setBalance(account, 0); } else { _setBalance(account, balanceOf(account)); } emit ExcludeFromDividends(account, value); } function getAccount(address account) public view returns ( address, uint256, uint256, uint256, uint256 ) { AccountInfo memory info; info.account = account; info.withdrawableDividends = withdrawableDividendOf(account); info.totalDividends = accumulativeDividendOf(account); info.lastClaimTime = lastClaimTimes[account]; return ( info.account, info.withdrawableDividends, info.totalDividends, info.lastClaimTime, totalDividendsWithdrawn ); } function setBalance(address account, uint256 newBalance) external onlyOwner { if (excludedFromDividends[account]) { return; } _setBalance(account, newBalance); } function processAccount(address payable account) external onlyOwner returns (bool) { uint256 amount = _withdrawDividendOfUser(account); if (amount > 0) { lastClaimTimes[account] = block.timestamp; emit Claim(account, amount); return true; } return false; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.10; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "./SafeMath.sol"; import "./ILPDiv.sol"; import "@openzeppelin/contracts/interfaces/IERC20.sol"; interface IPair { function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function token0() external view returns (address); } interface IFactory{ function createPair(address tokenA, address tokenB) external returns (address pair); function getPair(address tokenA, address tokenB) external view returns (address pair); } interface IUniswapRouter { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external; } contract DividendPayingToken is ERC20, DividendPayingTokenInterface, Ownable { using SafeMath for uint256; using SafeMathUint for uint256; using SafeMathInt for int256; address public LP_Token; // With `magnitude`, we can properly distribute dividends even if the amount of received ether is small. // For more discussion about choosing the value of `magnitude`, // see https://github.com/ethereum/EIPs/issues/1726#issuecomment-472352728 uint256 constant internal magnitude = 2**128; uint256 internal magnifiedDividendPerShare; // About dividendCorrection: // If the token balance of a `_user` is never changed, the dividend of `_user` can be computed with: // `dividendOf(_user) = dividendPerShare * balanceOf(_user)`. // When `balanceOf(_user)` is changed (via minting/burning/transferring tokens), // `dividendOf(_user)` should not be changed, // but the computed value of `dividendPerShare * balanceOf(_user)` is changed. // To keep the `dividendOf(_user)` unchanged, we add a correction term: // `dividendOf(_user) = dividendPerShare * balanceOf(_user) + dividendCorrectionOf(_user)`, // where `dividendCorrectionOf(_user)` is updated whenever `balanceOf(_user)` is changed: // `dividendCorrectionOf(_user) = dividendPerShare * (old balanceOf(_user)) - (new balanceOf(_user))`. // So now `dividendOf(_user)` returns the same value before and after `balanceOf(_user)` is changed. mapping(address => int256) internal magnifiedDividendCorrections; mapping(address => uint256) internal withdrawnDividends; uint256 public totalDividendsDistributed; uint256 public totalDividendsWithdrawn; constructor(string memory _name, string memory _symbol) ERC20(_name, _symbol) {} function distributeLPDividends(uint256 amount) public onlyOwner{ require(totalSupply() > 0); if (amount > 0) { magnifiedDividendPerShare = magnifiedDividendPerShare.add( (amount).mul(magnitude) / totalSupply() ); emit DividendsDistributed(msg.sender, amount); totalDividendsDistributed = totalDividendsDistributed.add(amount); } } /// @notice Withdraws the ether distributed to the sender. /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0. function withdrawDividend() public virtual override { _withdrawDividendOfUser(payable(msg.sender)); } /// @notice Withdraws the ether distributed to the sender. /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0. function _withdrawDividendOfUser(address payable user) internal returns (uint256) { uint256 _withdrawableDividend = withdrawableDividendOf(user); if (_withdrawableDividend > 0) { withdrawnDividends[user] = withdrawnDividends[user].add(_withdrawableDividend); totalDividendsWithdrawn += _withdrawableDividend; emit DividendWithdrawn(user, _withdrawableDividend); bool success = IERC20(LP_Token).transfer(user, _withdrawableDividend); if(!success) { withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend); totalDividendsWithdrawn -= _withdrawableDividend; return 0; } return _withdrawableDividend; } return 0; } /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function dividendOf(address _owner) public view override returns(uint256) { return withdrawableDividendOf(_owner); } /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function withdrawableDividendOf(address _owner) public view override returns(uint256) { return accumulativeDividendOf(_owner).sub(withdrawnDividends[_owner]); } /// @notice View the amount of dividend in wei that an address has withdrawn. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has withdrawn. function withdrawnDividendOf(address _owner) public view override returns(uint256) { return withdrawnDividends[_owner]; } /// @notice View the amount of dividend in wei that an address has earned in total. /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner) /// = (magnifiedDividendPerShare * balanceOf(_owner) + magnifiedDividendCorrections[_owner]) / magnitude /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has earned in total. function accumulativeDividendOf(address _owner) public view override returns(uint256) { return magnifiedDividendPerShare.mul(balanceOf(_owner)).toInt256Safe() .add(magnifiedDividendCorrections[_owner]).toUint256Safe() / magnitude; } /// @dev Internal function that transfer tokens from one address to another. /// Update magnifiedDividendCorrections to keep dividends unchanged. /// @param from The address to transfer from. /// @param to The address to transfer to. /// @param value The amount to be transferred. function _transfer(address from, address to, uint256 value) internal virtual override { require(false); int256 _magCorrection = magnifiedDividendPerShare.mul(value).toInt256Safe(); magnifiedDividendCorrections[from] = magnifiedDividendCorrections[from].add(_magCorrection); magnifiedDividendCorrections[to] = magnifiedDividendCorrections[to].sub(_magCorrection); } /// @dev Internal function that mints tokens to an account. /// Update magnifiedDividendCorrections to keep dividends unchanged. /// @param account The account that will receive the created tokens. /// @param value The amount that will be created. function _mint(address account, uint256 value) internal override { super._mint(account, value); magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account] .sub( (magnifiedDividendPerShare.mul(value)).toInt256Safe() ); } /// @dev Internal function that burns an amount of the token of a given account. /// Update magnifiedDividendCorrections to keep dividends unchanged. /// @param account The account whose tokens will be burnt. /// @param value The amount that will be burnt. function _burn(address account, uint256 value) internal override { super._burn(account, value); magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account] .add( (magnifiedDividendPerShare.mul(value)).toInt256Safe() ); } function _setBalance(address account, uint256 newBalance) internal { uint256 currentBalance = balanceOf(account); if(newBalance > currentBalance) { uint256 mintAmount = newBalance.sub(currentBalance); _mint(account, mintAmount); } else if(newBalance < currentBalance) { uint256 burnAmount = currentBalance.sub(newBalance); _burn(account, burnAmount); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol) pragma solidity ^0.8.0; import "../token/ERC20/IERC20.sol";
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; interface DividendPayingTokenInterface { /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function dividendOf(address _owner) external view returns(uint256); /// @notice Withdraws the ether distributed to the sender. /// @dev SHOULD transfer `dividendOf(msg.sender)` wei to `msg.sender`, and `dividendOf(msg.sender)` SHOULD be 0 after the transfer. /// MUST emit a `DividendWithdrawn` event if the amount of ether transferred is greater than 0. function withdrawDividend() external; /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function withdrawableDividendOf(address _owner) external view returns(uint256); /// @notice View the amount of dividend in wei that an address has withdrawn. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has withdrawn. function withdrawnDividendOf(address _owner) external view returns(uint256); /// @notice View the amount of dividend in wei that an address has earned in total. /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner) /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has earned in total. function accumulativeDividendOf(address _owner) external view returns(uint256); /// @dev This event MUST emit when ether is distributed to token holders. /// @param from The address which sends ether to this contract. /// @param weiAmount The amount of distributed ether in wei. event DividendsDistributed( address indexed from, uint256 weiAmount ); /// @dev This event MUST emit when an address withdraws their dividend. /// @param to The address which withdraws ether from this contract. /// @param weiAmount The amount of withdrawn ether in wei. event DividendWithdrawn( address indexed to, uint256 weiAmount ); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @title SafeMathInt * @dev Math operations for int256 with overflow safety checks. */ library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); /** * @dev Multiplies two int256 variables and fails on overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { int256 c = a * b; // Detect overflow when multiplying MIN_INT256 with -1 require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256)); require((b == 0) || (c / b == a)); return c; } /** * @dev Division of two int256 variables and fails on overflow. */ function div(int256 a, int256 b) internal pure returns (int256) { // Prevent overflow when dividing MIN_INT256 by -1 require(b != -1 || a != MIN_INT256); // Solidity already throws when dividing by 0. return a / b; } /** * @dev Subtracts two int256 variables and fails on overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } /** * @dev Adds two int256 variables and fails on overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } /** * @dev Converts to absolute value, and fails on overflow. */ function abs(int256 a) internal pure returns (int256) { require(a != MIN_INT256); return a < 0 ? -a : a; } function toUint256Safe(int256 a) internal pure returns (uint256) { require(a >= 0); return uint256(a); } } /** * @title SafeMathUint * @dev Math operations with safety checks that revert on error */ library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
{ "optimizer": { "enabled": 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":"address","name":"_developerwallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"GasForProcessingUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"iterations","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claims","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lastProcessedIndex","type":"uint256"},{"indexed":true,"internalType":"bool","name":"automatic","type":"bool"},{"indexed":false,"internalType":"uint256","name":"gas","type":"uint256"},{"indexed":true,"internalType":"address","name":"processor","type":"address"}],"name":"ProcessedDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendDividends","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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ManualLiquidityDistribution","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activateTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTaxes","outputs":[{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"dev","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"dividendTokenBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract LinqDividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromDividends","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":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","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":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"rescueETH20Tokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"dev","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newPair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"bot","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidity","type":"uint256"},{"internalType":"uint256","name":"_dev","type":"uint256"}],"name":"setBuyTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setClaimEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_lpToken","type":"address"}],"name":"setLP_Token","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxBuy","type":"uint256"},{"internalType":"uint256","name":"maxSell","type":"uint256"}],"name":"setMaxBuyAndSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidity","type":"uint256"},{"internalType":"uint256","name":"_dev","type":"uint256"}],"name":"setSellTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBuyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"trackerRescueETH20Tokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"updateRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526001600760156101000a81548160ff0219169083151502179055506040518060400160405280600281526020016002815250600e600082015181600001556020820151816001015550506040518060400160405280600281526020016002815250601060008201518160000155602082015181600101555050600460125560046013553480156200009457600080fd5b506040516200a24e3803806200a24e8339818101604052810190620000ba919062001188565b6040518060400160405280600481526020017f4c696e71000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4c494e5100000000000000000000000000000000000000000000000000000000815250816003908162000137919062001434565b50806004908162000149919062001434565b5050506200016c62000160620008aa60201b60201c565b620008b260201b60201c565b6040516200017a9062001110565b604051809103906000f08015801562000197573d6000803e3d6000fd5b50600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001e9816200097860201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000250573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000276919062001188565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002de573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000304919062001188565b6040518363ffffffff1660e01b8152600401620003239291906200152c565b6020604051808303816000875af115801562000343573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000369919062001188565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000401620493e0620009cc60201b60201c565b62000415621e8480620009fb60201b60201c565b6200042a621e84808062000a7360201b60201c565b6200043d81600162000b5160201b60201c565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166344b6bd9e600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401620004bc919062001559565b600060405180830381600087803b158015620004d757600080fd5b505af1158015620004ec573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a0600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016040518363ffffffff1660e01b81526004016200057292919062001593565b600060405180830381600087803b1580156200058d57600080fd5b505af1158015620005a2573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a03060016040518363ffffffff1660e01b81526004016200060692919062001593565b600060405180830381600087803b1580156200062157600080fd5b505af115801562000636573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a06200068862000d2360201b60201c565b60016040518363ffffffff1660e01b8152600401620006a992919062001593565b600060405180830381600087803b158015620006c457600080fd5b505af1158015620006d9573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a061dead60016040518363ffffffff1660e01b81526004016200073f92919062001593565b600060405180830381600087803b1580156200075a57600080fd5b505af11580156200076f573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a08360016040518363ffffffff1660e01b8152600401620007d392919062001593565b600060405180830381600087803b158015620007ee57600080fd5b505af115801562000803573d6000803e3d6000fd5b505050506200081a81600162000d4d60201b60201c565b6200082d30600162000d4d60201b60201c565b6200084082600162000d4d60201b60201c565b620008626200085462000d2360201b60201c565b600162000db860201b60201c565b6200087530600162000db860201b60201c565b620008a16200088962000d2360201b60201c565b6a52b7d2dcc80cd2e400000062000f0860201b60201c565b50505062001abf565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620009886200107560201b60201c565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b620009dc6200107560201b60201c565b670de0b6b3a764000081620009f29190620015ef565b600a8190555050565b62000a0b6200107560201b60201c565b620f424081101562000a54576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a4b90620016d7565b60405180910390fd5b670de0b6b3a76400008162000a6a9190620015ef565b600d8190555050565b62000a836200107560201b60201c565b620f424082101562000acc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ac39062001749565b60405180910390fd5b6207a12081101562000b15576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b0c90620017e1565b60405180910390fd5b670de0b6b3a76400008262000b2b9190620015ef565b600b81905550670de0b6b3a76400008162000b479190620015ef565b600c819055505050565b801515601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150362000be6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000bdd9062001879565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550801562000cd957600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a08360016040518363ffffffff1660e01b815260040162000ca492919062001593565b600060405180830381600087803b15801562000cbf57600080fd5b505af115801562000cd4573d6000803e3d6000fd5b505050505b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000d5d6200107560201b60201c565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b62000dc86200107560201b60201c565b801515601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150362000e5d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000e549062001911565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000efc919062001933565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000f7a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000f7190620019a0565b60405180910390fd5b62000f8e600083836200110660201b60201c565b806002600082825462000fa29190620019c2565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162001055919062001a30565b60405180910390a362001071600083836200110b60201b60201c565b5050565b62001085620008aa60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620010ab62000d2360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462001104576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620010fb9062001a9d565b60405180910390fd5b565b505050565b505050565b6133e88062006e6683390190565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620011508262001123565b9050919050565b620011628162001143565b81146200116e57600080fd5b50565b600081519050620011828162001157565b92915050565b600060208284031215620011a157620011a06200111e565b5b6000620011b18482850162001171565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200123c57607f821691505b602082108103620012525762001251620011f4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620012bc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200127d565b620012c886836200127d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620013156200130f6200130984620012e0565b620012ea565b620012e0565b9050919050565b6000819050919050565b6200133183620012f4565b6200134962001340826200131c565b8484546200128a565b825550505050565b600090565b6200136062001351565b6200136d81848462001326565b505050565b5b8181101562001395576200138960008262001356565b60018101905062001373565b5050565b601f821115620013e457620013ae8162001258565b620013b9846200126d565b81016020851015620013c9578190505b620013e1620013d8856200126d565b83018262001372565b50505b505050565b600082821c905092915050565b60006200140960001984600802620013e9565b1980831691505092915050565b6000620014248383620013f6565b9150826002028217905092915050565b6200143f82620011ba565b67ffffffffffffffff8111156200145b576200145a620011c5565b5b62001467825462001223565b6200147482828562001399565b600060209050601f831160018114620014ac576000841562001497578287015190505b620014a3858262001416565b86555062001513565b601f198416620014bc8662001258565b60005b82811015620014e657848901518255600182019150602085019450602081019050620014bf565b8683101562001506578489015162001502601f891682620013f6565b8355505b6001600288020188555050505b505050505050565b620015268162001143565b82525050565b60006040820190506200154360008301856200151b565b6200155260208301846200151b565b9392505050565b60006020820190506200157060008301846200151b565b92915050565b60008115159050919050565b6200158d8162001576565b82525050565b6000604082019050620015aa60008301856200151b565b620015b9602083018462001582565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620015fc82620012e0565b91506200160983620012e0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620016455762001644620015c0565b5b828202905092915050565b600082825260208201905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b6000620016bf60228362001650565b9150620016cc8262001661565b604082019050919050565b60006020820190508181036000830152620016f281620016b0565b9050919050565b7f43616e6e6f7420736574206d6178627579206c6f776572207468616e20312520600082015250565b60006200173160208362001650565b91506200173e82620016f9565b602082019050919050565b60006020820190508181036000830152620017648162001722565b9050919050565b7f43616e6e6f7420736574206d617873656c6c206c6f776572207468616e20302e60008201527f3525200000000000000000000000000000000000000000000000000000000000602082015250565b6000620017c960238362001650565b9150620017d6826200176b565b604082019050919050565b60006020820190508181036000830152620017fc81620017ba565b9050919050565b7f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160008201527f6c72656164792073657420746f20746861742076616c75650000000000000000602082015250565b60006200186160388362001650565b91506200186e8262001803565b604082019050919050565b60006020820190508181036000830152620018948162001852565b9050919050565b7f4163636f756e7420697320616c7265616479207468652076616c7565206f662060008201527f276578636c756465642700000000000000000000000000000000000000000000602082015250565b6000620018f9602a8362001650565b915062001906826200189b565b604082019050919050565b600060208201905081810360008301526200192c81620018ea565b9050919050565b60006020820190506200194a600083018462001582565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001988601f8362001650565b9150620019958262001950565b602082019050919050565b60006020820190508181036000830152620019bb8162001979565b9050919050565b6000620019cf82620012e0565b9150620019dc83620012e0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562001a145762001a13620015c0565b5b828201905092915050565b62001a2a81620012e0565b82525050565b600060208201905062001a47600083018462001a1f565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062001a8560208362001650565b915062001a928262001a4d565b602082019050919050565b6000602082019050818103600083015262001ab88162001a76565b9050919050565b6153978062001acf6000396000f3fe6080604052600436106103855760003560e01c806388bdd9be116101d1578063abb8105211610102578063d2fcc001116100a0578063f2fde38b1161006f578063f2fde38b14610d1c578063f66895a314610d45578063f887ea4014610d71578063f8b45b0514610d9c5761038c565b8063d2fcc00114610c62578063dd62ed3e14610c8b578063e01af92c14610cc8578063e2f4560514610cf15761038c565b8063bdf1436d116100dc578063bdf1436d14610bbe578063c024666814610be7578063c18bc19514610c10578063c851cc3214610c395761038c565b8063abb8105214610b1b578063afa4f3b214610b58578063b62496f514610b815761038c565b80639a7a23d61161016f578063a8aa1b3111610149578063a8aa1b3114610a4d578063a8b9d24014610a78578063a9059cbb14610ab5578063aa35822c14610af25761038c565b80639a7a23d6146109be578063a11a1682146109e7578063a457c2d714610a105761038c565b80638da5cb5b116101ab5780638da5cb5b146109145780638ea5220f1461093f57806392929a091461096a57806395d89b41146109935761038c565b806388bdd9be1461089757806388e765ff146108c05780638c9684f9146108eb5761038c565b8063313ce567116102b657806366d602ae11610254578063715018a611610223578063715018a6146107ea57806379b447bd146108015780637b510fe81461082a578063864701a51461086b5761038c565b806366d602ae1461071a5780636843cd84146107455780636ddd17131461078257806370a08231146107ad5761038c565b806346469afb1161029057806346469afb146106705780634ada218b1461069b5780634e71d92d146106c65780634fbee193146106dd5761038c565b8063313ce567146105df578063342aa8b51461060a57806339509351146106335761038c565b80631bff7898116103235780632866ed21116102fd5780632866ed21146105355780632c1f5216146105605780632e1ab9041461058b57806330bb4cff146105b45761038c565b80631bff7898146104a45780631f53ac02146104cf57806323b872dd146104f85761038c565b80630a78097d1161035f5780630a78097d146104225780630bd05b691461044b57806312b77e8a1461046257806318160ddd146104795761038c565b80630483f7a01461039157806306fdde03146103ba578063095ea7b3146103e55761038c565b3661038c57005b600080fd5b34801561039d57600080fd5b506103b860048036038101906103b39190613d18565b610dc7565b005b3480156103c657600080fd5b506103cf610e62565b6040516103dc9190613df1565b60405180910390f35b3480156103f157600080fd5b5061040c60048036038101906104079190613e49565b610ef4565b6040516104199190613e98565b60405180910390f35b34801561042e57600080fd5b5061044960048036038101906104449190613eb3565b610f17565b005b34801561045757600080fd5b50610460611021565b005b34801561046e57600080fd5b50610477611096565b005b34801561048557600080fd5b5061048e61113f565b60405161049b9190613eef565b60405180910390f35b3480156104b057600080fd5b506104b9611149565b6040516104c69190613eef565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f19190613eb3565b61114f565b005b34801561050457600080fd5b5061051f600480360381019061051a9190613f0a565b61119b565b60405161052c9190613e98565b60405180910390f35b34801561054157600080fd5b5061054a6111ca565b6040516105579190613e98565b60405180910390f35b34801561056c57600080fd5b506105756111dd565b6040516105829190613fbc565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad9190613eb3565b611203565b005b3480156105c057600080fd5b506105c961129b565b6040516105d69190613eef565b60405180910390f35b3480156105eb57600080fd5b506105f4611333565b6040516106019190613ff3565b60405180910390f35b34801561061657600080fd5b50610631600480360381019061062c9190613d18565b61133c565b005b34801561063f57600080fd5b5061065a60048036038101906106559190613e49565b6113fb565b6040516106679190613e98565b60405180910390f35b34801561067c57600080fd5b50610685611432565b6040516106929190613eef565b60405180910390f35b3480156106a757600080fd5b506106b0611438565b6040516106bd9190613e98565b60405180910390f35b3480156106d257600080fd5b506106db61144b565b005b3480156106e957600080fd5b5061070460048036038101906106ff9190613eb3565b61153b565b6040516107119190613e98565b60405180910390f35b34801561072657600080fd5b5061072f611591565b60405161073c9190613eef565b60405180910390f35b34801561075157600080fd5b5061076c60048036038101906107679190613eb3565b611597565b6040516107799190613eef565b60405180910390f35b34801561078e57600080fd5b5061079761163c565b6040516107a49190613e98565b60405180910390f35b3480156107b957600080fd5b506107d460048036038101906107cf9190613eb3565b61164f565b6040516107e19190613eef565b60405180910390f35b3480156107f657600080fd5b506107ff611697565b005b34801561080d57600080fd5b506108286004803603810190610823919061400e565b6116ab565b005b34801561083657600080fd5b50610851600480360381019061084c9190613eb3565b611777565b60405161086295949392919061405d565b60405180910390f35b34801561087757600080fd5b5061088061182e565b60405161088e9291906140b0565b60405180910390f35b3480156108a357600080fd5b506108be60048036038101906108b99190613eb3565b611840565b005b3480156108cc57600080fd5b506108d5611a73565b6040516108e29190613eef565b60405180910390f35b3480156108f757600080fd5b50610912600480360381019061090d9190613eb3565b611a79565b005b34801561092057600080fd5b50610929611b13565b60405161093691906140d9565b60405180910390f35b34801561094b57600080fd5b50610954611b3d565b60405161096191906140d9565b60405180910390f35b34801561097657600080fd5b50610991600480360381019061098c91906140f4565b611b63565b005b34801561099f57600080fd5b506109a8611b88565b6040516109b59190613df1565b60405180910390f35b3480156109ca57600080fd5b506109e560048036038101906109e09190613d18565b611c1a565b005b3480156109f357600080fd5b50610a0e6004803603810190610a09919061400e565b611c30565b005b348015610a1c57600080fd5b50610a376004803603810190610a329190613e49565b611ccb565b604051610a449190613e98565b60405180910390f35b348015610a5957600080fd5b50610a62611d42565b604051610a6f91906140d9565b60405180910390f35b348015610a8457600080fd5b50610a9f6004803603810190610a9a9190613eb3565b611d68565b604051610aac9190613eef565b60405180910390f35b348015610ac157600080fd5b50610adc6004803603810190610ad79190613e49565b611e0d565b604051610ae99190613e98565b60405180910390f35b348015610afe57600080fd5b50610b196004803603810190610b14919061400e565b611e30565b005b348015610b2757600080fd5b50610b426004803603810190610b3d9190613eb3565b611ecb565b604051610b4f9190613e98565b60405180910390f35b348015610b6457600080fd5b50610b7f6004803603810190610b7a9190614121565b611eeb565b005b348015610b8d57600080fd5b50610ba86004803603810190610ba39190613eb3565b611f10565b604051610bb59190613e98565b60405180910390f35b348015610bca57600080fd5b50610be56004803603810190610be09190614121565b611f30565b005b348015610bf357600080fd5b50610c0e6004803603810190610c099190613d18565b612098565b005b348015610c1c57600080fd5b50610c376004803603810190610c329190614121565b6121db565b005b348015610c4557600080fd5b50610c606004803603810190610c5b9190613eb3565b612246565b005b348015610c6e57600080fd5b50610c896004803603810190610c849190613d18565b612292565b005b348015610c9757600080fd5b50610cb26004803603810190610cad919061414e565b6122f5565b604051610cbf9190613eef565b60405180910390f35b348015610cd457600080fd5b50610cef6004803603810190610cea91906140f4565b61237c565b005b348015610cfd57600080fd5b50610d066123a1565b604051610d139190613eef565b60405180910390f35b348015610d2857600080fd5b50610d436004803603810190610d3e9190613eb3565b6123a7565b005b348015610d5157600080fd5b50610d5a61242a565b604051610d689291906140b0565b60405180910390f35b348015610d7d57600080fd5b50610d8661243c565b604051610d9391906141af565b60405180910390f35b348015610da857600080fd5b50610db1612462565b604051610dbe9190613eef565b60405180910390f35b610dcf612468565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a083836040518363ffffffff1660e01b8152600401610e2c9291906141ca565b600060405180830381600087803b158015610e4657600080fd5b505af1158015610e5a573d6000803e3d6000fd5b505050505050565b606060038054610e7190614222565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9d90614222565b8015610eea5780601f10610ebf57610100808354040283529160200191610eea565b820191906000526020600020905b815481529060010190602001808311610ecd57829003601f168201915b5050505050905090565b600080610eff6124e6565b9050610f0c8185856124ee565b600191505092915050565b610f1f612468565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610f43611b13565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f7c91906140d9565b602060405180830381865afa158015610f99573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fbd9190614268565b6040518363ffffffff1660e01b8152600401610fda929190614295565b6020604051808303816000875af1158015610ff9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061101d91906142d3565b5050565b611029612468565b600760179054906101000a900460ff1615611079576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110709061434c565b60405180910390fd5b6001600760176101000a81548160ff021916908315150217905550565b61109e612468565b60004790506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516110eb9061439d565b60006040518083038185875af1925050503d8060008114611128576040519150601f19603f3d011682016040523d82523d6000602084013e61112d565b606091505b505090508061113b57600080fd5b5050565b6000600254905090565b60135481565b611157612468565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806111a66124e6565b90506111b38582856126b7565b6111be858585612743565b60019150509392505050565b600760169054906101000a900460ff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61120b612468565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166344b6bd9e826040518263ffffffff1660e01b815260040161126691906140d9565b600060405180830381600087803b15801561128057600080fd5b505af1158015611294573d6000803e3d6000fd5b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166385a6b3ae6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561130a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061132e9190614268565b905090565b60006012905090565b611344612468565b801515601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036113a057600080fd5b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000806114066124e6565b905061142781858561141885896122f5565b61142291906143e1565b6124ee565b600191505092915050565b60125481565b600760179054906101000a900460ff1681565b600760169054906101000a900460ff1661149a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149190614483565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663807ab4f7336040518263ffffffff1660e01b81526004016114f591906144c4565b6020604051808303816000875af1158015611514573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061153891906142d3565b50565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b81526004016115f491906140d9565b602060405180830381865afa158015611611573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116359190614268565b9050919050565b600760159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61169f612468565b6116a96000613072565b565b6116b3612468565b620f42408210156116f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f09061452b565b60405180910390fd5b6207a12081101561173f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611736906145bd565b60405180910390fd5b670de0b6b3a76400008261175391906145dd565b600b81905550670de0b6b3a76400008161176d91906145dd565b600c819055505050565b6000806000806000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fbcbc0f1876040518263ffffffff1660e01b81526004016117da91906140d9565b60a060405180830381865afa1580156117f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061181b919061464c565b9450945094509450945091939590929450565b600e8060000154908060010154905082565b611848612468565b60008190508073ffffffffffffffffffffffffffffffffffffffff16630483f7a08260016040518363ffffffff1660e01b81526004016118899291906141ca565b600060405180830381600087803b1580156118a357600080fd5b505af11580156118b7573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff16630483f7a03060016040518363ffffffff1660e01b81526004016118f79291906141ca565b600060405180830381600087803b15801561191157600080fd5b505af1158015611925573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff16630483f7a061194d611b13565b60016040518363ffffffff1660e01b815260040161196c9291906141ca565b600060405180830381600087803b15801561198657600080fd5b505af115801561199a573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff16630483f7a0600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016040518363ffffffff1660e01b81526004016119fc9291906141ca565b600060405180830381600087803b158015611a1657600080fd5b505af1158015611a2a573d6000803e3d6000fd5b5050505080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b600b5481565b611a81612468565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663497ec82333836040518363ffffffff1660e01b8152600401611ade9291906146c7565b600060405180830381600087803b158015611af857600080fd5b505af1158015611b0c573d6000803e3d6000fd5b5050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611b6b612468565b80600760166101000a81548160ff02191690831515021790555050565b606060048054611b9790614222565b80601f0160208091040260200160405190810160405280929190818152602001828054611bc390614222565b8015611c105780601f10611be557610100808354040283529160200191611c10565b820191906000526020600020905b815481529060010190602001808311611bf357829003601f168201915b5050505050905090565b611c22612468565b611c2c8282613138565b5050565b611c38612468565b60148183611c4691906143e1565b1115611c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7e9061473c565b60405180910390fd5b604051806040016040528083815260200182815250601060008201518160000155602082015181600101559050508082611cc191906143e1565b6013819055505050565b600080611cd66124e6565b90506000611ce482866122f5565b905083811015611d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d20906147ce565b60405180910390fd5b611d3682868684036124ee565b60019250505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a8b9d240836040518263ffffffff1660e01b8152600401611dc591906140d9565b602060405180830381865afa158015611de2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e069190614268565b9050919050565b600080611e186124e6565b9050611e25818585612743565b600191505092915050565b611e38612468565b60148183611e4691906143e1565b1115611e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7e9061473c565b60405180910390fd5b604051806040016040528083815260200182815250600e60008201518160000155602082015181600101559050508082611ec191906143e1565b6012819055505050565b60146020528060005260406000206000915054906101000a900460ff1681565b611ef3612468565b670de0b6b3a764000081611f0791906145dd565b600a8190555050565b60166020528060005260406000206000915054906101000a900460ff1681565b611f38612468565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd33600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518463ffffffff1660e01b8152600401611fbb939291906147ee565b6020604051808303816000875af1158015611fda573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ffe91906142d3565b9050801561209457600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ede6ad9c836040518263ffffffff1660e01b81526004016120619190613eef565b600060405180830381600087803b15801561207b57600080fd5b505af115801561208f573d6000803e3d6000fd5b505050505b5050565b6120a0612468565b801515601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503612132576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212990614897565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516121cf9190613e98565b60405180910390a25050565b6121e3612468565b620f4240811015612229576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222090614929565b60405180910390fd5b670de0b6b3a76400008161223d91906145dd565b600d8190555050565b61224e612468565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61229a612468565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612384612468565b80600760156101000a81548160ff02191690831515021790555050565b600a5481565b6123af612468565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361241e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612415906149bb565b60405180910390fd5b61242781613072565b50565b60108060000154908060010154905082565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b6124706124e6565b73ffffffffffffffffffffffffffffffffffffffff1661248e611b13565b73ffffffffffffffffffffffffffffffffffffffff16146124e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124db90614a27565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361255d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255490614ab9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c390614b4b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516126aa9190613eef565b60405180910390a3505050565b60006126c384846122f5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461273d578181101561272f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272690614bb7565b60405180910390fd5b61273c84848484036124ee565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036127b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a990614c49565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612821576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281890614cdb565b60405180910390fd5b601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156128c55750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156128de5750600760149054906101000a900460ff16155b15612b1257600760179054906101000a900460ff16612932576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292990614d47565b60405180910390fd5b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156129ce57600c548111156129c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c090614db3565b60405180910390fd5b612a67565b601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612a6657600b54811115612a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5c90614e1f565b60405180910390fd5b5b5b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612b1157600d54612ac48361164f565b82612acf91906143e1565b1115612b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0790614e8b565b60405180910390fd5b5b5b60008103612b2b57612b2683836000613302565b61306d565b6000612b363061164f565b90506000600a548210159050808015612b5c5750600760149054906101000a900460ff16155b8015612b745750600760159054906101000a900460ff165b8015612bc95750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612c1f5750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c755750601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612cc8576001600760146101000a81548160ff02191690831515021790555060006013541115612cac57612cab600a54613578565b5b6000600760146101000a81548160ff0219169083151502179055505b6000600760149054906101000a900460ff16159050601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d7e5750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612d8857600090505b601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612e2c5750601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e3657600090505b8015612f3c576000601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612eb157606460135486612ea091906145dd565b612eaa9190614eda565b9050612f21565b601660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612f2057606460125486612f1391906145dd565b612f1d9190614eda565b90505b5b8085612f2d9190614f0b565b9450612f3a873083613302565b505b612f47868686613302565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc87612f8f8961164f565b6040518363ffffffff1660e01b8152600401612fac929190614295565b600060405180830381600087803b158015612fc657600080fd5b505af1925050508015612fd7575060015b50600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc866130208861164f565b6040518363ffffffff1660e01b815260040161303d929190614295565b600060405180830381600087803b15801561305757600080fd5b505af1925050508015613068575060015b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036131ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c190614fb1565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080156132b857600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a08360016040518363ffffffff1660e01b81526004016132859291906141ca565b600060405180830381600087803b15801561329f57600080fd5b505af11580156132b3573d6000803e3d6000fd5b505050505b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613371576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161336890614c49565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036133e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d790614cdb565b60405180910390fd5b6133eb838383613952565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613471576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346890615043565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161355f9190613eef565b60405180910390a3613572848484613957565b50505050565b600060026013546010600001548461359091906145dd565b61359a9190614eda565b6135a49190614eda565b905060006002601354601060000154856135be91906145dd565b6135c89190614eda565b6135d29190614eda565b90506000601354601060010154856135ea91906145dd565b6135f49190614eda565b90506135ff8361395c565b60004790506000811115613618576136178382613b9f565b5b6136218261395c565b600047905060008190506000811115613704576000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161367c9061439d565b60006040518083038185875af1925050503d80600081146136b9576040519150601f19603f3d011682016040523d82523d6000602084013e6136be565b606091505b5050905080613702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136f9906150af565b60405180910390fd5b505b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161376191906140d9565b602060405180830381865afa15801561377e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137a29190614268565b905060008190506000811115613947576000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b8152600401613833929190614295565b6020604051808303816000875af1158015613852573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061387691906142d3565b9050801561394557600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ede6ad9c836040518263ffffffff1660e01b81526004016138d99190613eef565b600060405180830381600087803b1580156138f357600080fd5b505af1158015613907573d6000803e3d6000fd5b505050507f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc38a8360405161393c9291906140b0565b60405180910390a15b505b505050505050505050565b505050565b505050565b6000600267ffffffffffffffff811115613979576139786150cf565b5b6040519080825280602002602001820160405280156139a75781602001602082028036833780820191505090505b50905030816000815181106139bf576139be6150fe565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613a66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a8a919061512d565b81600181518110613a9e57613a9d6150fe565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613b0530600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846124ee565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613b69959493929190615253565b600060405180830381600087803b158015613b8357600080fd5b505af1158015613b97573d6000803e3d6000fd5b505050505050565b613bcc30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846124ee565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401613c33969594939291906152ad565b60606040518083038185885af1158015613c51573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613c76919061530e565b5050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613cad82613c82565b9050919050565b613cbd81613ca2565b8114613cc857600080fd5b50565b600081359050613cda81613cb4565b92915050565b60008115159050919050565b613cf581613ce0565b8114613d0057600080fd5b50565b600081359050613d1281613cec565b92915050565b60008060408385031215613d2f57613d2e613c7d565b5b6000613d3d85828601613ccb565b9250506020613d4e85828601613d03565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613d92578082015181840152602081019050613d77565b83811115613da1576000848401525b50505050565b6000601f19601f8301169050919050565b6000613dc382613d58565b613dcd8185613d63565b9350613ddd818560208601613d74565b613de681613da7565b840191505092915050565b60006020820190508181036000830152613e0b8184613db8565b905092915050565b6000819050919050565b613e2681613e13565b8114613e3157600080fd5b50565b600081359050613e4381613e1d565b92915050565b60008060408385031215613e6057613e5f613c7d565b5b6000613e6e85828601613ccb565b9250506020613e7f85828601613e34565b9150509250929050565b613e9281613ce0565b82525050565b6000602082019050613ead6000830184613e89565b92915050565b600060208284031215613ec957613ec8613c7d565b5b6000613ed784828501613ccb565b91505092915050565b613ee981613e13565b82525050565b6000602082019050613f046000830184613ee0565b92915050565b600080600060608486031215613f2357613f22613c7d565b5b6000613f3186828701613ccb565b9350506020613f4286828701613ccb565b9250506040613f5386828701613e34565b9150509250925092565b6000819050919050565b6000613f82613f7d613f7884613c82565b613f5d565b613c82565b9050919050565b6000613f9482613f67565b9050919050565b6000613fa682613f89565b9050919050565b613fb681613f9b565b82525050565b6000602082019050613fd16000830184613fad565b92915050565b600060ff82169050919050565b613fed81613fd7565b82525050565b60006020820190506140086000830184613fe4565b92915050565b6000806040838503121561402557614024613c7d565b5b600061403385828601613e34565b925050602061404485828601613e34565b9150509250929050565b61405781613ca2565b82525050565b600060a082019050614072600083018861404e565b61407f6020830187613ee0565b61408c6040830186613ee0565b6140996060830185613ee0565b6140a66080830184613ee0565b9695505050505050565b60006040820190506140c56000830185613ee0565b6140d26020830184613ee0565b9392505050565b60006020820190506140ee600083018461404e565b92915050565b60006020828403121561410a57614109613c7d565b5b600061411884828501613d03565b91505092915050565b60006020828403121561413757614136613c7d565b5b600061414584828501613e34565b91505092915050565b6000806040838503121561416557614164613c7d565b5b600061417385828601613ccb565b925050602061418485828601613ccb565b9150509250929050565b600061419982613f89565b9050919050565b6141a98161418e565b82525050565b60006020820190506141c460008301846141a0565b92915050565b60006040820190506141df600083018561404e565b6141ec6020830184613e89565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061423a57607f821691505b60208210810361424d5761424c6141f3565b5b50919050565b60008151905061426281613e1d565b92915050565b60006020828403121561427e5761427d613c7d565b5b600061428c84828501614253565b91505092915050565b60006040820190506142aa600083018561404e565b6142b76020830184613ee0565b9392505050565b6000815190506142cd81613cec565b92915050565b6000602082840312156142e9576142e8613c7d565b5b60006142f7848285016142be565b91505092915050565b7f54726164696e6720616c726561647920656e61626c6564000000000000000000600082015250565b6000614336601783613d63565b915061434182614300565b602082019050919050565b6000602082019050818103600083015261436581614329565b9050919050565b600081905092915050565b50565b600061438760008361436c565b915061439282614377565b600082019050919050565b60006143a88261437a565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006143ec82613e13565b91506143f783613e13565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561442c5761442b6143b2565b5b828201905092915050565b7f436c61696d206e6f7420656e61626c6564000000000000000000000000000000600082015250565b600061446d601183613d63565b915061447882614437565b602082019050919050565b6000602082019050818103600083015261449c81614460565b9050919050565b60006144ae82613c82565b9050919050565b6144be816144a3565b82525050565b60006020820190506144d960008301846144b5565b92915050565b7f43616e6e6f7420736574206d6178627579206c6f776572207468616e20312520600082015250565b6000614515602083613d63565b9150614520826144df565b602082019050919050565b6000602082019050818103600083015261454481614508565b9050919050565b7f43616e6e6f7420736574206d617873656c6c206c6f776572207468616e20302e60008201527f3525200000000000000000000000000000000000000000000000000000000000602082015250565b60006145a7602383613d63565b91506145b28261454b565b604082019050919050565b600060208201905081810360008301526145d68161459a565b9050919050565b60006145e882613e13565b91506145f383613e13565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561462c5761462b6143b2565b5b828202905092915050565b60008151905061464681613cb4565b92915050565b600080600080600060a0868803121561466857614667613c7d565b5b600061467688828901614637565b955050602061468788828901614253565b945050604061469888828901614253565b93505060606146a988828901614253565b92505060806146ba88828901614253565b9150509295509295909350565b60006040820190506146dc600083018561404e565b6146e9602083018461404e565b9392505050565b7f466565206d757374206265203c3d203230250000000000000000000000000000600082015250565b6000614726601283613d63565b9150614731826146f0565b602082019050919050565b6000602082019050818103600083015261475581614719565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006147b8602583613d63565b91506147c38261475c565b604082019050919050565b600060208201905081810360008301526147e7816147ab565b9050919050565b6000606082019050614803600083018661404e565b614810602083018561404e565b61481d6040830184613ee0565b949350505050565b7f4163636f756e7420697320616c7265616479207468652076616c7565206f662060008201527f276578636c756465642700000000000000000000000000000000000000000000602082015250565b6000614881602a83613d63565b915061488c82614825565b604082019050919050565b600060208201905081810360008301526148b081614874565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b6000614913602283613d63565b915061491e826148b7565b604082019050919050565b6000602082019050818103600083015261494281614906565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006149a5602683613d63565b91506149b082614949565b604082019050919050565b600060208201905081810360008301526149d481614998565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614a11602083613d63565b9150614a1c826149db565b602082019050919050565b60006020820190508181036000830152614a4081614a04565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614aa3602483613d63565b9150614aae82614a47565b604082019050919050565b60006020820190508181036000830152614ad281614a96565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b35602283613d63565b9150614b4082614ad9565b604082019050919050565b60006020820190508181036000830152614b6481614b28565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614ba1601d83613d63565b9150614bac82614b6b565b602082019050919050565b60006020820190508181036000830152614bd081614b94565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614c33602583613d63565b9150614c3e82614bd7565b604082019050919050565b60006020820190508181036000830152614c6281614c26565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614cc5602383613d63565b9150614cd082614c69565b604082019050919050565b60006020820190508181036000830152614cf481614cb8565b9050919050565b7f54726164696e67206e6f74206163746976650000000000000000000000000000600082015250565b6000614d31601283613d63565b9150614d3c82614cfb565b602082019050919050565b60006020820190508181036000830152614d6081614d24565b9050919050565b7f596f752061726520657863656564696e67206d617853656c6c416d6f756e7400600082015250565b6000614d9d601f83613d63565b9150614da882614d67565b602082019050919050565b60006020820190508181036000830152614dcc81614d90565b9050919050565b7f596f752061726520657863656564696e67206d6178427579416d6f756e740000600082015250565b6000614e09601e83613d63565b9150614e1482614dd3565b602082019050919050565b60006020820190508181036000830152614e3881614dfc565b9050919050565b7f556e61626c6520746f20657863656564204d61782057616c6c65740000000000600082015250565b6000614e75601b83613d63565b9150614e8082614e3f565b602082019050919050565b60006020820190508181036000830152614ea481614e68565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614ee582613e13565b9150614ef083613e13565b925082614f0057614eff614eab565b5b828204905092915050565b6000614f1682613e13565b9150614f2183613e13565b925082821015614f3457614f336143b2565b5b828203905092915050565b7f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160008201527f6c72656164792073657420746f20746861742076616c75650000000000000000602082015250565b6000614f9b603883613d63565b9150614fa682614f3f565b604082019050919050565b60006020820190508181036000830152614fca81614f8e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061502d602683613d63565b915061503882614fd1565b604082019050919050565b6000602082019050818103600083015261505c81615020565b9050919050565b7f4661696c656420746f2073656e642045544820746f206465762077616c6c6574600082015250565b6000615099602083613d63565b91506150a482615063565b602082019050919050565b600060208201905081810360008301526150c88161508c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561514357615142613c7d565b5b600061515184828501614637565b91505092915050565b6000819050919050565b600061517f61517a6151758461515a565b613f5d565b613e13565b9050919050565b61518f81615164565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6151ca81613ca2565b82525050565b60006151dc83836151c1565b60208301905092915050565b6000602082019050919050565b600061520082615195565b61520a81856151a0565b9350615215836151b1565b8060005b8381101561524657815161522d88826151d0565b9750615238836151e8565b925050600181019050615219565b5085935050505092915050565b600060a0820190506152686000830188613ee0565b6152756020830187615186565b818103604083015261528781866151f5565b9050615296606083018561404e565b6152a36080830184613ee0565b9695505050505050565b600060c0820190506152c2600083018961404e565b6152cf6020830188613ee0565b6152dc6040830187615186565b6152e96060830186615186565b6152f6608083018561404e565b61530360a0830184613ee0565b979650505050505050565b60008060006060848603121561532757615326613c7d565b5b600061533586828701614253565b935050602061534686828701614253565b925050604061535786828701614253565b915050925092509256fea26469706673582212204e685400707a4e3f8e5a894818982b4e9b02bb92260dfdb05e7659c9adbd314464736f6c634300080f003360806040523480156200001157600080fd5b506040518060400160405280601581526020017f4c696e715f4469766964656e645f547261636b657200000000000000000000008152506040518060400160405280601581526020017f4c696e715f4469766964656e645f547261636b657200000000000000000000008152508181816003908162000091919062000416565b508060049081620000a3919062000416565b505050620000c6620000ba620000ce60201b60201c565b620000d660201b60201c565b5050620004fd565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200021e57607f821691505b602082108103620002345762000233620001d6565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200029e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200025f565b620002aa86836200025f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620002f7620002f1620002eb84620002c2565b620002cc565b620002c2565b9050919050565b6000819050919050565b6200031383620002d6565b6200032b6200032282620002fe565b8484546200026c565b825550505050565b600090565b6200034262000333565b6200034f81848462000308565b505050565b5b8181101562000377576200036b60008262000338565b60018101905062000355565b5050565b601f821115620003c65762000390816200023a565b6200039b846200024f565b81016020851015620003ab578190505b620003c3620003ba856200024f565b83018262000354565b50505b505050565b600082821c905092915050565b6000620003eb60001984600802620003cb565b1980831691505092915050565b6000620004068383620003d8565b9150826002028217905092915050565b62000421826200019c565b67ffffffffffffffff8111156200043d576200043c620001a7565b5b62000449825462000205565b620004568282856200037b565b600060209050601f8311600181146200048e576000841562000479578287015190505b620004858582620003f8565b865550620004f5565b601f1984166200049e866200023a565b60005b82811015620004c857848901518255600182019150602085019450602081019050620004a1565b86831015620004e85784890151620004e4601f891682620003d8565b8355505b6001600288020188555050505b505050505050565b612edb806200050d6000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c8063715018a61161010f578063a8b9d240116100a2578063e30443bc11610071578063e30443bc146105e2578063ede6ad9c146105fe578063f2fde38b1461061a578063fbcbc0f114610636576101e5565b8063a8b9d24014610522578063a9059cbb14610552578063aafd847a14610582578063dd62ed3e146105b2576101e5565b806391b89fba116100de57806391b89fba1461048657806395d89b41146104b65780639e1e0661146104d4578063a457c2d7146104f2576101e5565b8063715018a614610410578063807ab4f71461041a57806385a6b3ae1461044a5780638da5cb5b14610468576101e5565b806327ce014711610187578063497ec82311610156578063497ec8231461038a5780634e7b827f146103a65780636a474002146103d657806370a08231146103e0576101e5565b806327ce0147146102f0578063313ce56714610320578063395093511461033e57806344b6bd9e1461036e576101e5565b80631162c4b6116101c35780631162c4b61461025457806318160ddd14610272578063226cfa3d1461029057806323b872dd146102c0576101e5565b80630483f7a0146101ea57806306fdde0314610206578063095ea7b314610224575b600080fd5b61020460048036038101906101ff919061205a565b61066a565b005b61020e6107a6565b60405161021b9190612133565b60405180910390f35b61023e6004803603810190610239919061218b565b610838565b60405161024b91906121da565b60405180910390f35b61025c61085b565b6040516102699190612204565b60405180910390f35b61027a610881565b604051610287919061222e565b60405180910390f35b6102aa60048036038101906102a59190612249565b61088b565b6040516102b7919061222e565b60405180910390f35b6102da60048036038101906102d59190612276565b6108a3565b6040516102e791906121da565b60405180910390f35b61030a60048036038101906103059190612249565b6108d2565b604051610317919061222e565b60405180910390f35b610328610975565b60405161033591906122e5565b60405180910390f35b6103586004803603810190610353919061218b565b61097e565b60405161036591906121da565b60405180910390f35b61038860048036038101906103839190612249565b6109b5565b005b6103a4600480360381019061039f9190612300565b610a01565b005b6103c060048036038101906103bb9190612249565b610b05565b6040516103cd91906121da565b60405180910390f35b6103de610b25565b005b6103fa60048036038101906103f59190612249565b610b31565b604051610407919061222e565b60405180910390f35b610418610b79565b005b610434600480360381019061042f919061237e565b610b8d565b60405161044191906121da565b60405180910390f35b610452610c54565b60405161045f919061222e565b60405180910390f35b610470610c5a565b60405161047d9190612204565b60405180910390f35b6104a0600480360381019061049b9190612249565b610c84565b6040516104ad919061222e565b60405180910390f35b6104be610c96565b6040516104cb9190612133565b60405180910390f35b6104dc610d28565b6040516104e9919061222e565b60405180910390f35b61050c6004803603810190610507919061218b565b610d2e565b60405161051991906121da565b60405180910390f35b61053c60048036038101906105379190612249565b610da5565b604051610549919061222e565b60405180910390f35b61056c6004803603810190610567919061218b565b610e08565b60405161057991906121da565b60405180910390f35b61059c60048036038101906105979190612249565b610e2b565b6040516105a9919061222e565b60405180910390f35b6105cc60048036038101906105c79190612300565b610e74565b6040516105d9919061222e565b60405180910390f35b6105fc60048036038101906105f7919061218b565b610efb565b005b610618600480360381019061061391906123ab565b610f63565b005b610634600480360381019061062f9190612249565b611045565b005b610650600480360381019061064b9190612249565b6110c8565b6040516106619594939291906123d8565b60405180910390f35b6106726111a8565b801515600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036106ce57600080fd5b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060011515811515036107415761073c826000611226565b610754565b6107538261074e84610b31565b611226565b5b8173ffffffffffffffffffffffffffffffffffffffff167fa3c7c11b2e12c4144b09a7813f3393ba646392788638998c97be8da908cf04be8260405161079a91906121da565b60405180910390a25050565b6060600380546107b59061245a565b80601f01602080910402602001604051908101604052809291908181526020018280546107e19061245a565b801561082e5780601f106108035761010080835404028352916020019161082e565b820191906000526020600020905b81548152906001019060200180831161081157829003601f168201915b5050505050905090565b600080610843611293565b905061085081858561129b565b600191505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b600d6020528060005260406000206000915090505481565b6000806108ae611293565b90506108bb858285611464565b6108c68585856114f0565b60019150509392505050565b600070010000000000000000000000000000000061096461095f600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461095161094c61093b88610b31565b60075461153690919063ffffffff16565b6115b0565b6115cd90919063ffffffff16565b611618565b61096e91906124e9565b9050919050565b60006012905090565b600080610989611293565b90506109aa81858561099b8589610e74565b6109a5919061251a565b61129b565b600191505092915050565b6109bd6111a8565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610a096111a8565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb838373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610a5f9190612204565b602060405180830381865afa158015610a7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aa09190612585565b6040518363ffffffff1660e01b8152600401610abd9291906125b2565b6020604051808303816000875af1158015610adc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b0091906125f0565b505050565b600c6020528060005260406000206000915054906101000a900460ff1681565b610b2e3361162f565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b816111a8565b610b8b60006118b9565b565b6000610b976111a8565b6000610ba28361162f565b90506000811115610c495742600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff167f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d482604051610c37919061222e565b60405180910390a26001915050610c4f565b60009150505b919050565b600a5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000610c8f82610da5565b9050919050565b606060048054610ca59061245a565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd19061245a565b8015610d1e5780601f10610cf357610100808354040283529160200191610d1e565b820191906000526020600020905b815481529060010190602001808311610d0157829003601f168201915b5050505050905090565b600b5481565b600080610d39611293565b90506000610d478286610e74565b905083811015610d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d839061268f565b60405180910390fd5b610d99828686840361129b565b60019250505092915050565b6000610e01600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610df3846108d2565b61197f90919063ffffffff16565b9050919050565b600080610e13611293565b9050610e208185856114f0565b600191505092915050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610f036111a8565b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610f5f57610f5e8282611226565b5b5050565b610f6b6111a8565b6000610f75610881565b11610f7f57600080fd5b600081111561104257610fd2610f93610881565b610fb77001000000000000000000000000000000008461153690919063ffffffff16565b610fc191906124e9565b6007546119c990919063ffffffff16565b6007819055503373ffffffffffffffffffffffffffffffffffffffff167fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165118260405161101e919061222e565b60405180910390a261103b81600a546119c990919063ffffffff16565b600a819055505b50565b61104d6111a8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b390612721565b60405180910390fd5b6110c5816118b9565b50565b60008060008060006110d8611f81565b86816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061111987610da5565b81602001818152505061112b876108d2565b816040018181525050600d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548160600181815250508060000151816020015182604001518360600151600b54955095509550955095505091939590929450565b6111b0611293565b73ffffffffffffffffffffffffffffffffffffffff166111ce610c5a565b73ffffffffffffffffffffffffffffffffffffffff1614611224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121b9061278d565b60405180910390fd5b565b600061123183610b31565b905080821115611262576000611250828461197f90919063ffffffff16565b905061125c8482611a27565b5061128e565b8082101561128d57600061127f838361197f90919063ffffffff16565b905061128b8482611ae6565b505b5b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361130a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113019061281f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611379576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611370906128b1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611457919061222e565b60405180910390a3505050565b60006114708484610e74565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114ea57818110156114dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d39061291d565b60405180910390fd5b6114e9848484840361129b565b5b50505050565b6000611531576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611528906129af565b60405180910390fd5b505050565b600080830361154857600090506115aa565b6000828461155691906129cf565b905082848261156591906124e9565b146115a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159c90612a9b565b60405180910390fd5b809150505b92915050565b60008082905060008112156115c457600080fd5b80915050919050565b60008082846115dc9190612ac5565b9050600083121580156115ef5750838112155b80611605575060008312801561160457508381125b5b61160e57600080fd5b8091505092915050565b60008082121561162757600080fd5b819050919050565b60008061163b83610da5565b905060008111156118ae5761169881600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119c990919063ffffffff16565b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600b60008282546116ed919061251a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff167fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d8260405161173a919061222e565b60405180910390a26000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85846040518363ffffffff1660e01b81526004016117a1929190612bb8565b6020604051808303816000875af11580156117c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117e491906125f0565b9050806118a45761183d82600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461197f90919063ffffffff16565b600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600b60008282546118929190612be1565b925050819055506000925050506118b4565b81925050506118b4565b60009150505b919050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006119c183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611ba5565b905092915050565b60008082846119d8919061251a565b905083811015611a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1490612c61565b60405180910390fd5b8091505092915050565b611a318282611c09565b611a9f611a51611a4c8360075461153690919063ffffffff16565b6115b0565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d5f90919063ffffffff16565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b611af08282611daa565b611b5e611b10611b0b8360075461153690919063ffffffff16565b6115b0565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115cd90919063ffffffff16565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6000838311158290611bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be49190612133565b60405180910390fd5b5060008385611bfc9190612be1565b9050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6f90612ccd565b60405180910390fd5b611c8460008383611f77565b8060026000828254611c96919061251a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611d47919061222e565b60405180910390a3611d5b60008383611f7c565b5050565b6000808284611d6e9190612ced565b905060008312158015611d815750838113155b80611d975750600083128015611d9657508381135b5b611da057600080fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1090612df3565b60405180910390fd5b611e2582600083611f77565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea290612e85565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f5e919061222e565b60405180910390a3611f7283600084611f7c565b505050565b505050565b505050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff1681526020016000815260200160008152602001600081525090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611fef82611fc4565b9050919050565b611fff81611fe4565b811461200a57600080fd5b50565b60008135905061201c81611ff6565b92915050565b60008115159050919050565b61203781612022565b811461204257600080fd5b50565b6000813590506120548161202e565b92915050565b6000806040838503121561207157612070611fbf565b5b600061207f8582860161200d565b925050602061209085828601612045565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156120d45780820151818401526020810190506120b9565b838111156120e3576000848401525b50505050565b6000601f19601f8301169050919050565b60006121058261209a565b61210f81856120a5565b935061211f8185602086016120b6565b612128816120e9565b840191505092915050565b6000602082019050818103600083015261214d81846120fa565b905092915050565b6000819050919050565b61216881612155565b811461217357600080fd5b50565b6000813590506121858161215f565b92915050565b600080604083850312156121a2576121a1611fbf565b5b60006121b08582860161200d565b92505060206121c185828601612176565b9150509250929050565b6121d481612022565b82525050565b60006020820190506121ef60008301846121cb565b92915050565b6121fe81611fe4565b82525050565b600060208201905061221960008301846121f5565b92915050565b61222881612155565b82525050565b6000602082019050612243600083018461221f565b92915050565b60006020828403121561225f5761225e611fbf565b5b600061226d8482850161200d565b91505092915050565b60008060006060848603121561228f5761228e611fbf565b5b600061229d8682870161200d565b93505060206122ae8682870161200d565b92505060406122bf86828701612176565b9150509250925092565b600060ff82169050919050565b6122df816122c9565b82525050565b60006020820190506122fa60008301846122d6565b92915050565b6000806040838503121561231757612316611fbf565b5b60006123258582860161200d565b92505060206123368582860161200d565b9150509250929050565b600061234b82611fc4565b9050919050565b61235b81612340565b811461236657600080fd5b50565b60008135905061237881612352565b92915050565b60006020828403121561239457612393611fbf565b5b60006123a284828501612369565b91505092915050565b6000602082840312156123c1576123c0611fbf565b5b60006123cf84828501612176565b91505092915050565b600060a0820190506123ed60008301886121f5565b6123fa602083018761221f565b612407604083018661221f565b612414606083018561221f565b612421608083018461221f565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061247257607f821691505b6020821081036124855761248461242b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006124f482612155565b91506124ff83612155565b92508261250f5761250e61248b565b5b828204905092915050565b600061252582612155565b915061253083612155565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612565576125646124ba565b5b828201905092915050565b60008151905061257f8161215f565b92915050565b60006020828403121561259b5761259a611fbf565b5b60006125a984828501612570565b91505092915050565b60006040820190506125c760008301856121f5565b6125d4602083018461221f565b9392505050565b6000815190506125ea8161202e565b92915050565b60006020828403121561260657612605611fbf565b5b6000612614848285016125db565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006126796025836120a5565b91506126848261261d565b604082019050919050565b600060208201905081810360008301526126a88161266c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061270b6026836120a5565b9150612716826126af565b604082019050919050565b6000602082019050818103600083015261273a816126fe565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006127776020836120a5565b915061278282612741565b602082019050919050565b600060208201905081810360008301526127a68161276a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006128096024836120a5565b9150612814826127ad565b604082019050919050565b60006020820190508181036000830152612838816127fc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061289b6022836120a5565b91506128a68261283f565b604082019050919050565b600060208201905081810360008301526128ca8161288e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612907601d836120a5565b9150612912826128d1565b602082019050919050565b60006020820190508181036000830152612936816128fa565b9050919050565b7f4c696e715f4469766964656e645f547261636b65723a204e6f207472616e736660008201527f65727320616c6c6f776564000000000000000000000000000000000000000000602082015250565b6000612999602b836120a5565b91506129a48261293d565b604082019050919050565b600060208201905081810360008301526129c88161298c565b9050919050565b60006129da82612155565b91506129e583612155565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a1e57612a1d6124ba565b5b828202905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a856021836120a5565b9150612a9082612a29565b604082019050919050565b60006020820190508181036000830152612ab481612a78565b9050919050565b6000819050919050565b6000612ad082612abb565b9150612adb83612abb565b9250817f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03831360008312151615612b1657612b156124ba565b5b817f8000000000000000000000000000000000000000000000000000000000000000038312600083121615612b4e57612b4d6124ba565b5b828201905092915050565b6000819050919050565b6000612b7e612b79612b7484611fc4565b612b59565b611fc4565b9050919050565b6000612b9082612b63565b9050919050565b6000612ba282612b85565b9050919050565b612bb281612b97565b82525050565b6000604082019050612bcd6000830185612ba9565b612bda602083018461221f565b9392505050565b6000612bec82612155565b9150612bf783612155565b925082821015612c0a57612c096124ba565b5b828203905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000612c4b601b836120a5565b9150612c5682612c15565b602082019050919050565b60006020820190508181036000830152612c7a81612c3e565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612cb7601f836120a5565b9150612cc282612c81565b602082019050919050565b60006020820190508181036000830152612ce681612caa565b9050919050565b6000612cf882612abb565b9150612d0383612abb565b9250827f800000000000000000000000000000000000000000000000000000000000000001821260008412151615612d3e57612d3d6124ba565b5b827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff018213600084121615612d7657612d756124ba565b5b828203905092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ddd6021836120a5565b9150612de882612d81565b604082019050919050565b60006020820190508181036000830152612e0c81612dd0565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612e6f6022836120a5565b9150612e7a82612e13565b604082019050919050565b60006020820190508181036000830152612e9e81612e62565b905091905056fea2646970667358221220c80f400e98e6f140e2abb086448ca8871dac392e5ff73916021818c98c2a095d64736f6c634300080f003300000000000000000000000009eefea02aa2e7914fb87f09eed1f9e3e363dbdd
Deployed Bytecode
0x6080604052600436106103855760003560e01c806388bdd9be116101d1578063abb8105211610102578063d2fcc001116100a0578063f2fde38b1161006f578063f2fde38b14610d1c578063f66895a314610d45578063f887ea4014610d71578063f8b45b0514610d9c5761038c565b8063d2fcc00114610c62578063dd62ed3e14610c8b578063e01af92c14610cc8578063e2f4560514610cf15761038c565b8063bdf1436d116100dc578063bdf1436d14610bbe578063c024666814610be7578063c18bc19514610c10578063c851cc3214610c395761038c565b8063abb8105214610b1b578063afa4f3b214610b58578063b62496f514610b815761038c565b80639a7a23d61161016f578063a8aa1b3111610149578063a8aa1b3114610a4d578063a8b9d24014610a78578063a9059cbb14610ab5578063aa35822c14610af25761038c565b80639a7a23d6146109be578063a11a1682146109e7578063a457c2d714610a105761038c565b80638da5cb5b116101ab5780638da5cb5b146109145780638ea5220f1461093f57806392929a091461096a57806395d89b41146109935761038c565b806388bdd9be1461089757806388e765ff146108c05780638c9684f9146108eb5761038c565b8063313ce567116102b657806366d602ae11610254578063715018a611610223578063715018a6146107ea57806379b447bd146108015780637b510fe81461082a578063864701a51461086b5761038c565b806366d602ae1461071a5780636843cd84146107455780636ddd17131461078257806370a08231146107ad5761038c565b806346469afb1161029057806346469afb146106705780634ada218b1461069b5780634e71d92d146106c65780634fbee193146106dd5761038c565b8063313ce567146105df578063342aa8b51461060a57806339509351146106335761038c565b80631bff7898116103235780632866ed21116102fd5780632866ed21146105355780632c1f5216146105605780632e1ab9041461058b57806330bb4cff146105b45761038c565b80631bff7898146104a45780631f53ac02146104cf57806323b872dd146104f85761038c565b80630a78097d1161035f5780630a78097d146104225780630bd05b691461044b57806312b77e8a1461046257806318160ddd146104795761038c565b80630483f7a01461039157806306fdde03146103ba578063095ea7b3146103e55761038c565b3661038c57005b600080fd5b34801561039d57600080fd5b506103b860048036038101906103b39190613d18565b610dc7565b005b3480156103c657600080fd5b506103cf610e62565b6040516103dc9190613df1565b60405180910390f35b3480156103f157600080fd5b5061040c60048036038101906104079190613e49565b610ef4565b6040516104199190613e98565b60405180910390f35b34801561042e57600080fd5b5061044960048036038101906104449190613eb3565b610f17565b005b34801561045757600080fd5b50610460611021565b005b34801561046e57600080fd5b50610477611096565b005b34801561048557600080fd5b5061048e61113f565b60405161049b9190613eef565b60405180910390f35b3480156104b057600080fd5b506104b9611149565b6040516104c69190613eef565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f19190613eb3565b61114f565b005b34801561050457600080fd5b5061051f600480360381019061051a9190613f0a565b61119b565b60405161052c9190613e98565b60405180910390f35b34801561054157600080fd5b5061054a6111ca565b6040516105579190613e98565b60405180910390f35b34801561056c57600080fd5b506105756111dd565b6040516105829190613fbc565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad9190613eb3565b611203565b005b3480156105c057600080fd5b506105c961129b565b6040516105d69190613eef565b60405180910390f35b3480156105eb57600080fd5b506105f4611333565b6040516106019190613ff3565b60405180910390f35b34801561061657600080fd5b50610631600480360381019061062c9190613d18565b61133c565b005b34801561063f57600080fd5b5061065a60048036038101906106559190613e49565b6113fb565b6040516106679190613e98565b60405180910390f35b34801561067c57600080fd5b50610685611432565b6040516106929190613eef565b60405180910390f35b3480156106a757600080fd5b506106b0611438565b6040516106bd9190613e98565b60405180910390f35b3480156106d257600080fd5b506106db61144b565b005b3480156106e957600080fd5b5061070460048036038101906106ff9190613eb3565b61153b565b6040516107119190613e98565b60405180910390f35b34801561072657600080fd5b5061072f611591565b60405161073c9190613eef565b60405180910390f35b34801561075157600080fd5b5061076c60048036038101906107679190613eb3565b611597565b6040516107799190613eef565b60405180910390f35b34801561078e57600080fd5b5061079761163c565b6040516107a49190613e98565b60405180910390f35b3480156107b957600080fd5b506107d460048036038101906107cf9190613eb3565b61164f565b6040516107e19190613eef565b60405180910390f35b3480156107f657600080fd5b506107ff611697565b005b34801561080d57600080fd5b506108286004803603810190610823919061400e565b6116ab565b005b34801561083657600080fd5b50610851600480360381019061084c9190613eb3565b611777565b60405161086295949392919061405d565b60405180910390f35b34801561087757600080fd5b5061088061182e565b60405161088e9291906140b0565b60405180910390f35b3480156108a357600080fd5b506108be60048036038101906108b99190613eb3565b611840565b005b3480156108cc57600080fd5b506108d5611a73565b6040516108e29190613eef565b60405180910390f35b3480156108f757600080fd5b50610912600480360381019061090d9190613eb3565b611a79565b005b34801561092057600080fd5b50610929611b13565b60405161093691906140d9565b60405180910390f35b34801561094b57600080fd5b50610954611b3d565b60405161096191906140d9565b60405180910390f35b34801561097657600080fd5b50610991600480360381019061098c91906140f4565b611b63565b005b34801561099f57600080fd5b506109a8611b88565b6040516109b59190613df1565b60405180910390f35b3480156109ca57600080fd5b506109e560048036038101906109e09190613d18565b611c1a565b005b3480156109f357600080fd5b50610a0e6004803603810190610a09919061400e565b611c30565b005b348015610a1c57600080fd5b50610a376004803603810190610a329190613e49565b611ccb565b604051610a449190613e98565b60405180910390f35b348015610a5957600080fd5b50610a62611d42565b604051610a6f91906140d9565b60405180910390f35b348015610a8457600080fd5b50610a9f6004803603810190610a9a9190613eb3565b611d68565b604051610aac9190613eef565b60405180910390f35b348015610ac157600080fd5b50610adc6004803603810190610ad79190613e49565b611e0d565b604051610ae99190613e98565b60405180910390f35b348015610afe57600080fd5b50610b196004803603810190610b14919061400e565b611e30565b005b348015610b2757600080fd5b50610b426004803603810190610b3d9190613eb3565b611ecb565b604051610b4f9190613e98565b60405180910390f35b348015610b6457600080fd5b50610b7f6004803603810190610b7a9190614121565b611eeb565b005b348015610b8d57600080fd5b50610ba86004803603810190610ba39190613eb3565b611f10565b604051610bb59190613e98565b60405180910390f35b348015610bca57600080fd5b50610be56004803603810190610be09190614121565b611f30565b005b348015610bf357600080fd5b50610c0e6004803603810190610c099190613d18565b612098565b005b348015610c1c57600080fd5b50610c376004803603810190610c329190614121565b6121db565b005b348015610c4557600080fd5b50610c606004803603810190610c5b9190613eb3565b612246565b005b348015610c6e57600080fd5b50610c896004803603810190610c849190613d18565b612292565b005b348015610c9757600080fd5b50610cb26004803603810190610cad919061414e565b6122f5565b604051610cbf9190613eef565b60405180910390f35b348015610cd457600080fd5b50610cef6004803603810190610cea91906140f4565b61237c565b005b348015610cfd57600080fd5b50610d066123a1565b604051610d139190613eef565b60405180910390f35b348015610d2857600080fd5b50610d436004803603810190610d3e9190613eb3565b6123a7565b005b348015610d5157600080fd5b50610d5a61242a565b604051610d689291906140b0565b60405180910390f35b348015610d7d57600080fd5b50610d8661243c565b604051610d9391906141af565b60405180910390f35b348015610da857600080fd5b50610db1612462565b604051610dbe9190613eef565b60405180910390f35b610dcf612468565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a083836040518363ffffffff1660e01b8152600401610e2c9291906141ca565b600060405180830381600087803b158015610e4657600080fd5b505af1158015610e5a573d6000803e3d6000fd5b505050505050565b606060038054610e7190614222565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9d90614222565b8015610eea5780601f10610ebf57610100808354040283529160200191610eea565b820191906000526020600020905b815481529060010190602001808311610ecd57829003601f168201915b5050505050905090565b600080610eff6124e6565b9050610f0c8185856124ee565b600191505092915050565b610f1f612468565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610f43611b13565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f7c91906140d9565b602060405180830381865afa158015610f99573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fbd9190614268565b6040518363ffffffff1660e01b8152600401610fda929190614295565b6020604051808303816000875af1158015610ff9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061101d91906142d3565b5050565b611029612468565b600760179054906101000a900460ff1615611079576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110709061434c565b60405180910390fd5b6001600760176101000a81548160ff021916908315150217905550565b61109e612468565b60004790506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516110eb9061439d565b60006040518083038185875af1925050503d8060008114611128576040519150601f19603f3d011682016040523d82523d6000602084013e61112d565b606091505b505090508061113b57600080fd5b5050565b6000600254905090565b60135481565b611157612468565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806111a66124e6565b90506111b38582856126b7565b6111be858585612743565b60019150509392505050565b600760169054906101000a900460ff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61120b612468565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166344b6bd9e826040518263ffffffff1660e01b815260040161126691906140d9565b600060405180830381600087803b15801561128057600080fd5b505af1158015611294573d6000803e3d6000fd5b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166385a6b3ae6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561130a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061132e9190614268565b905090565b60006012905090565b611344612468565b801515601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036113a057600080fd5b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000806114066124e6565b905061142781858561141885896122f5565b61142291906143e1565b6124ee565b600191505092915050565b60125481565b600760179054906101000a900460ff1681565b600760169054906101000a900460ff1661149a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149190614483565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663807ab4f7336040518263ffffffff1660e01b81526004016114f591906144c4565b6020604051808303816000875af1158015611514573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061153891906142d3565b50565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b81526004016115f491906140d9565b602060405180830381865afa158015611611573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116359190614268565b9050919050565b600760159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61169f612468565b6116a96000613072565b565b6116b3612468565b620f42408210156116f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f09061452b565b60405180910390fd5b6207a12081101561173f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611736906145bd565b60405180910390fd5b670de0b6b3a76400008261175391906145dd565b600b81905550670de0b6b3a76400008161176d91906145dd565b600c819055505050565b6000806000806000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fbcbc0f1876040518263ffffffff1660e01b81526004016117da91906140d9565b60a060405180830381865afa1580156117f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061181b919061464c565b9450945094509450945091939590929450565b600e8060000154908060010154905082565b611848612468565b60008190508073ffffffffffffffffffffffffffffffffffffffff16630483f7a08260016040518363ffffffff1660e01b81526004016118899291906141ca565b600060405180830381600087803b1580156118a357600080fd5b505af11580156118b7573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff16630483f7a03060016040518363ffffffff1660e01b81526004016118f79291906141ca565b600060405180830381600087803b15801561191157600080fd5b505af1158015611925573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff16630483f7a061194d611b13565b60016040518363ffffffff1660e01b815260040161196c9291906141ca565b600060405180830381600087803b15801561198657600080fd5b505af115801561199a573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff16630483f7a0600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016040518363ffffffff1660e01b81526004016119fc9291906141ca565b600060405180830381600087803b158015611a1657600080fd5b505af1158015611a2a573d6000803e3d6000fd5b5050505080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b600b5481565b611a81612468565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663497ec82333836040518363ffffffff1660e01b8152600401611ade9291906146c7565b600060405180830381600087803b158015611af857600080fd5b505af1158015611b0c573d6000803e3d6000fd5b5050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611b6b612468565b80600760166101000a81548160ff02191690831515021790555050565b606060048054611b9790614222565b80601f0160208091040260200160405190810160405280929190818152602001828054611bc390614222565b8015611c105780601f10611be557610100808354040283529160200191611c10565b820191906000526020600020905b815481529060010190602001808311611bf357829003601f168201915b5050505050905090565b611c22612468565b611c2c8282613138565b5050565b611c38612468565b60148183611c4691906143e1565b1115611c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7e9061473c565b60405180910390fd5b604051806040016040528083815260200182815250601060008201518160000155602082015181600101559050508082611cc191906143e1565b6013819055505050565b600080611cd66124e6565b90506000611ce482866122f5565b905083811015611d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d20906147ce565b60405180910390fd5b611d3682868684036124ee565b60019250505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a8b9d240836040518263ffffffff1660e01b8152600401611dc591906140d9565b602060405180830381865afa158015611de2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e069190614268565b9050919050565b600080611e186124e6565b9050611e25818585612743565b600191505092915050565b611e38612468565b60148183611e4691906143e1565b1115611e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7e9061473c565b60405180910390fd5b604051806040016040528083815260200182815250600e60008201518160000155602082015181600101559050508082611ec191906143e1565b6012819055505050565b60146020528060005260406000206000915054906101000a900460ff1681565b611ef3612468565b670de0b6b3a764000081611f0791906145dd565b600a8190555050565b60166020528060005260406000206000915054906101000a900460ff1681565b611f38612468565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd33600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518463ffffffff1660e01b8152600401611fbb939291906147ee565b6020604051808303816000875af1158015611fda573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ffe91906142d3565b9050801561209457600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ede6ad9c836040518263ffffffff1660e01b81526004016120619190613eef565b600060405180830381600087803b15801561207b57600080fd5b505af115801561208f573d6000803e3d6000fd5b505050505b5050565b6120a0612468565b801515601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503612132576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212990614897565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516121cf9190613e98565b60405180910390a25050565b6121e3612468565b620f4240811015612229576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222090614929565b60405180910390fd5b670de0b6b3a76400008161223d91906145dd565b600d8190555050565b61224e612468565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61229a612468565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612384612468565b80600760156101000a81548160ff02191690831515021790555050565b600a5481565b6123af612468565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361241e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612415906149bb565b60405180910390fd5b61242781613072565b50565b60108060000154908060010154905082565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b6124706124e6565b73ffffffffffffffffffffffffffffffffffffffff1661248e611b13565b73ffffffffffffffffffffffffffffffffffffffff16146124e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124db90614a27565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361255d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255490614ab9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c390614b4b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516126aa9190613eef565b60405180910390a3505050565b60006126c384846122f5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461273d578181101561272f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272690614bb7565b60405180910390fd5b61273c84848484036124ee565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036127b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a990614c49565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612821576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281890614cdb565b60405180910390fd5b601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156128c55750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156128de5750600760149054906101000a900460ff16155b15612b1257600760179054906101000a900460ff16612932576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292990614d47565b60405180910390fd5b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156129ce57600c548111156129c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c090614db3565b60405180910390fd5b612a67565b601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612a6657600b54811115612a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5c90614e1f565b60405180910390fd5b5b5b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612b1157600d54612ac48361164f565b82612acf91906143e1565b1115612b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0790614e8b565b60405180910390fd5b5b5b60008103612b2b57612b2683836000613302565b61306d565b6000612b363061164f565b90506000600a548210159050808015612b5c5750600760149054906101000a900460ff16155b8015612b745750600760159054906101000a900460ff165b8015612bc95750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612c1f5750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c755750601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612cc8576001600760146101000a81548160ff02191690831515021790555060006013541115612cac57612cab600a54613578565b5b6000600760146101000a81548160ff0219169083151502179055505b6000600760149054906101000a900460ff16159050601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d7e5750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612d8857600090505b601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612e2c5750601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e3657600090505b8015612f3c576000601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612eb157606460135486612ea091906145dd565b612eaa9190614eda565b9050612f21565b601660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612f2057606460125486612f1391906145dd565b612f1d9190614eda565b90505b5b8085612f2d9190614f0b565b9450612f3a873083613302565b505b612f47868686613302565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc87612f8f8961164f565b6040518363ffffffff1660e01b8152600401612fac929190614295565b600060405180830381600087803b158015612fc657600080fd5b505af1925050508015612fd7575060015b50600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc866130208861164f565b6040518363ffffffff1660e01b815260040161303d929190614295565b600060405180830381600087803b15801561305757600080fd5b505af1925050508015613068575060015b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036131ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c190614fb1565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080156132b857600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a08360016040518363ffffffff1660e01b81526004016132859291906141ca565b600060405180830381600087803b15801561329f57600080fd5b505af11580156132b3573d6000803e3d6000fd5b505050505b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613371576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161336890614c49565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036133e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d790614cdb565b60405180910390fd5b6133eb838383613952565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613471576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346890615043565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161355f9190613eef565b60405180910390a3613572848484613957565b50505050565b600060026013546010600001548461359091906145dd565b61359a9190614eda565b6135a49190614eda565b905060006002601354601060000154856135be91906145dd565b6135c89190614eda565b6135d29190614eda565b90506000601354601060010154856135ea91906145dd565b6135f49190614eda565b90506135ff8361395c565b60004790506000811115613618576136178382613b9f565b5b6136218261395c565b600047905060008190506000811115613704576000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161367c9061439d565b60006040518083038185875af1925050503d80600081146136b9576040519150601f19603f3d011682016040523d82523d6000602084013e6136be565b606091505b5050905080613702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136f9906150af565b60405180910390fd5b505b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161376191906140d9565b602060405180830381865afa15801561377e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137a29190614268565b905060008190506000811115613947576000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b8152600401613833929190614295565b6020604051808303816000875af1158015613852573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061387691906142d3565b9050801561394557600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ede6ad9c836040518263ffffffff1660e01b81526004016138d99190613eef565b600060405180830381600087803b1580156138f357600080fd5b505af1158015613907573d6000803e3d6000fd5b505050507f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc38a8360405161393c9291906140b0565b60405180910390a15b505b505050505050505050565b505050565b505050565b6000600267ffffffffffffffff811115613979576139786150cf565b5b6040519080825280602002602001820160405280156139a75781602001602082028036833780820191505090505b50905030816000815181106139bf576139be6150fe565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613a66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a8a919061512d565b81600181518110613a9e57613a9d6150fe565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613b0530600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846124ee565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613b69959493929190615253565b600060405180830381600087803b158015613b8357600080fd5b505af1158015613b97573d6000803e3d6000fd5b505050505050565b613bcc30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846124ee565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401613c33969594939291906152ad565b60606040518083038185885af1158015613c51573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613c76919061530e565b5050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613cad82613c82565b9050919050565b613cbd81613ca2565b8114613cc857600080fd5b50565b600081359050613cda81613cb4565b92915050565b60008115159050919050565b613cf581613ce0565b8114613d0057600080fd5b50565b600081359050613d1281613cec565b92915050565b60008060408385031215613d2f57613d2e613c7d565b5b6000613d3d85828601613ccb565b9250506020613d4e85828601613d03565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613d92578082015181840152602081019050613d77565b83811115613da1576000848401525b50505050565b6000601f19601f8301169050919050565b6000613dc382613d58565b613dcd8185613d63565b9350613ddd818560208601613d74565b613de681613da7565b840191505092915050565b60006020820190508181036000830152613e0b8184613db8565b905092915050565b6000819050919050565b613e2681613e13565b8114613e3157600080fd5b50565b600081359050613e4381613e1d565b92915050565b60008060408385031215613e6057613e5f613c7d565b5b6000613e6e85828601613ccb565b9250506020613e7f85828601613e34565b9150509250929050565b613e9281613ce0565b82525050565b6000602082019050613ead6000830184613e89565b92915050565b600060208284031215613ec957613ec8613c7d565b5b6000613ed784828501613ccb565b91505092915050565b613ee981613e13565b82525050565b6000602082019050613f046000830184613ee0565b92915050565b600080600060608486031215613f2357613f22613c7d565b5b6000613f3186828701613ccb565b9350506020613f4286828701613ccb565b9250506040613f5386828701613e34565b9150509250925092565b6000819050919050565b6000613f82613f7d613f7884613c82565b613f5d565b613c82565b9050919050565b6000613f9482613f67565b9050919050565b6000613fa682613f89565b9050919050565b613fb681613f9b565b82525050565b6000602082019050613fd16000830184613fad565b92915050565b600060ff82169050919050565b613fed81613fd7565b82525050565b60006020820190506140086000830184613fe4565b92915050565b6000806040838503121561402557614024613c7d565b5b600061403385828601613e34565b925050602061404485828601613e34565b9150509250929050565b61405781613ca2565b82525050565b600060a082019050614072600083018861404e565b61407f6020830187613ee0565b61408c6040830186613ee0565b6140996060830185613ee0565b6140a66080830184613ee0565b9695505050505050565b60006040820190506140c56000830185613ee0565b6140d26020830184613ee0565b9392505050565b60006020820190506140ee600083018461404e565b92915050565b60006020828403121561410a57614109613c7d565b5b600061411884828501613d03565b91505092915050565b60006020828403121561413757614136613c7d565b5b600061414584828501613e34565b91505092915050565b6000806040838503121561416557614164613c7d565b5b600061417385828601613ccb565b925050602061418485828601613ccb565b9150509250929050565b600061419982613f89565b9050919050565b6141a98161418e565b82525050565b60006020820190506141c460008301846141a0565b92915050565b60006040820190506141df600083018561404e565b6141ec6020830184613e89565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061423a57607f821691505b60208210810361424d5761424c6141f3565b5b50919050565b60008151905061426281613e1d565b92915050565b60006020828403121561427e5761427d613c7d565b5b600061428c84828501614253565b91505092915050565b60006040820190506142aa600083018561404e565b6142b76020830184613ee0565b9392505050565b6000815190506142cd81613cec565b92915050565b6000602082840312156142e9576142e8613c7d565b5b60006142f7848285016142be565b91505092915050565b7f54726164696e6720616c726561647920656e61626c6564000000000000000000600082015250565b6000614336601783613d63565b915061434182614300565b602082019050919050565b6000602082019050818103600083015261436581614329565b9050919050565b600081905092915050565b50565b600061438760008361436c565b915061439282614377565b600082019050919050565b60006143a88261437a565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006143ec82613e13565b91506143f783613e13565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561442c5761442b6143b2565b5b828201905092915050565b7f436c61696d206e6f7420656e61626c6564000000000000000000000000000000600082015250565b600061446d601183613d63565b915061447882614437565b602082019050919050565b6000602082019050818103600083015261449c81614460565b9050919050565b60006144ae82613c82565b9050919050565b6144be816144a3565b82525050565b60006020820190506144d960008301846144b5565b92915050565b7f43616e6e6f7420736574206d6178627579206c6f776572207468616e20312520600082015250565b6000614515602083613d63565b9150614520826144df565b602082019050919050565b6000602082019050818103600083015261454481614508565b9050919050565b7f43616e6e6f7420736574206d617873656c6c206c6f776572207468616e20302e60008201527f3525200000000000000000000000000000000000000000000000000000000000602082015250565b60006145a7602383613d63565b91506145b28261454b565b604082019050919050565b600060208201905081810360008301526145d68161459a565b9050919050565b60006145e882613e13565b91506145f383613e13565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561462c5761462b6143b2565b5b828202905092915050565b60008151905061464681613cb4565b92915050565b600080600080600060a0868803121561466857614667613c7d565b5b600061467688828901614637565b955050602061468788828901614253565b945050604061469888828901614253565b93505060606146a988828901614253565b92505060806146ba88828901614253565b9150509295509295909350565b60006040820190506146dc600083018561404e565b6146e9602083018461404e565b9392505050565b7f466565206d757374206265203c3d203230250000000000000000000000000000600082015250565b6000614726601283613d63565b9150614731826146f0565b602082019050919050565b6000602082019050818103600083015261475581614719565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006147b8602583613d63565b91506147c38261475c565b604082019050919050565b600060208201905081810360008301526147e7816147ab565b9050919050565b6000606082019050614803600083018661404e565b614810602083018561404e565b61481d6040830184613ee0565b949350505050565b7f4163636f756e7420697320616c7265616479207468652076616c7565206f662060008201527f276578636c756465642700000000000000000000000000000000000000000000602082015250565b6000614881602a83613d63565b915061488c82614825565b604082019050919050565b600060208201905081810360008301526148b081614874565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b6000614913602283613d63565b915061491e826148b7565b604082019050919050565b6000602082019050818103600083015261494281614906565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006149a5602683613d63565b91506149b082614949565b604082019050919050565b600060208201905081810360008301526149d481614998565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614a11602083613d63565b9150614a1c826149db565b602082019050919050565b60006020820190508181036000830152614a4081614a04565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614aa3602483613d63565b9150614aae82614a47565b604082019050919050565b60006020820190508181036000830152614ad281614a96565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b35602283613d63565b9150614b4082614ad9565b604082019050919050565b60006020820190508181036000830152614b6481614b28565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614ba1601d83613d63565b9150614bac82614b6b565b602082019050919050565b60006020820190508181036000830152614bd081614b94565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614c33602583613d63565b9150614c3e82614bd7565b604082019050919050565b60006020820190508181036000830152614c6281614c26565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614cc5602383613d63565b9150614cd082614c69565b604082019050919050565b60006020820190508181036000830152614cf481614cb8565b9050919050565b7f54726164696e67206e6f74206163746976650000000000000000000000000000600082015250565b6000614d31601283613d63565b9150614d3c82614cfb565b602082019050919050565b60006020820190508181036000830152614d6081614d24565b9050919050565b7f596f752061726520657863656564696e67206d617853656c6c416d6f756e7400600082015250565b6000614d9d601f83613d63565b9150614da882614d67565b602082019050919050565b60006020820190508181036000830152614dcc81614d90565b9050919050565b7f596f752061726520657863656564696e67206d6178427579416d6f756e740000600082015250565b6000614e09601e83613d63565b9150614e1482614dd3565b602082019050919050565b60006020820190508181036000830152614e3881614dfc565b9050919050565b7f556e61626c6520746f20657863656564204d61782057616c6c65740000000000600082015250565b6000614e75601b83613d63565b9150614e8082614e3f565b602082019050919050565b60006020820190508181036000830152614ea481614e68565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614ee582613e13565b9150614ef083613e13565b925082614f0057614eff614eab565b5b828204905092915050565b6000614f1682613e13565b9150614f2183613e13565b925082821015614f3457614f336143b2565b5b828203905092915050565b7f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160008201527f6c72656164792073657420746f20746861742076616c75650000000000000000602082015250565b6000614f9b603883613d63565b9150614fa682614f3f565b604082019050919050565b60006020820190508181036000830152614fca81614f8e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061502d602683613d63565b915061503882614fd1565b604082019050919050565b6000602082019050818103600083015261505c81615020565b9050919050565b7f4661696c656420746f2073656e642045544820746f206465762077616c6c6574600082015250565b6000615099602083613d63565b91506150a482615063565b602082019050919050565b600060208201905081810360008301526150c88161508c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561514357615142613c7d565b5b600061515184828501614637565b91505092915050565b6000819050919050565b600061517f61517a6151758461515a565b613f5d565b613e13565b9050919050565b61518f81615164565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6151ca81613ca2565b82525050565b60006151dc83836151c1565b60208301905092915050565b6000602082019050919050565b600061520082615195565b61520a81856151a0565b9350615215836151b1565b8060005b8381101561524657815161522d88826151d0565b9750615238836151e8565b925050600181019050615219565b5085935050505092915050565b600060a0820190506152686000830188613ee0565b6152756020830187615186565b818103604083015261528781866151f5565b9050615296606083018561404e565b6152a36080830184613ee0565b9695505050505050565b600060c0820190506152c2600083018961404e565b6152cf6020830188613ee0565b6152dc6040830187615186565b6152e96060830186615186565b6152f6608083018561404e565b61530360a0830184613ee0565b979650505050505050565b60008060006060848603121561532757615326613c7d565b5b600061533586828701614253565b935050602061534686828701614253565b925050604061535786828701614253565b915050925092509256fea26469706673582212204e685400707a4e3f8e5a894818982b4e9b02bb92260dfdb05e7659c9adbd314464736f6c634300080f0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000009eefea02aa2e7914fb87f09eed1f9e3e363dbdd
-----Decoded View---------------
Arg [0] : _developerwallet (address): 0x09eeFea02Aa2E7914fb87F09eEd1f9E3E363dbDD
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000009eefea02aa2e7914fb87f09eed1f9e3e363dbdd
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.