ERC-20
Overview
Max Total Supply
9,892,241.357249109 AVENGER
Holders
735
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
5 AVENGERValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AVENGER
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* POWERED BY __________ _______________ __________________________ _________ ________ ______________ _____ ___ |_ | / /__ ____/__ | / /_ ____/__ ____/__ __ \ ______/_/ ___ __ \_______ ____/__(_)_____ _________ /_ __ /| |_ | / /__ __/ __ |/ /_ / __ __ __/ __ /_/ / ____/_/ __ / / / _ \_ /_ __ /_ __ `/_ __ \ __/ _ ___ |_ |/ / _ /___ _ /| / / /_/ / _ /___ _ _, _/ __/_/ _ /_/ // __/ __/ _ / / /_/ /_ / / / /_ /_/ |_|____/ /_____/ /_/ |_/ \____/ /_____/ /_/ |_| /_/ /_____/ \___//_/ /_/ \__,_/ /_/ /_/\__/ t.me/mcuentryportal t.me/DeFianthub AvengerToken.io DeFiantPlatform.com */ pragma solidity ^0.8.17; // SPDX-License-Identifier: Apache-2.0 import "./SafeMath.sol"; import "./Address.sol"; import "./RewardsToken.sol"; import "./IUniswapV2Factory.sol"; import "./IUniswapV2Router.sol"; import "./IUniswapV2Pair.sol"; import "./IRewardsTracker.sol"; contract AVENGER is RewardsToken { using SafeMath for uint256; using Address for address; uint256 private constant REWARDS_TRACKER_IDENTIFIER = 12; uint256 private constant TOTAL_SUPPLY = 10000000 * (10**9); uint256 public maxTxAmount = TOTAL_SUPPLY.mul(2).div(1000); uint256 private platformFee = 0; uint256 private _previousPlatformFee = platformFee; uint256 public devFee = 600; uint256 public sellDevFee = 600; uint256 private _previousDevFee = devFee; uint256 public rewardsFee = 100; uint256 public sellRewardsFee = 100; uint256 private _previousRewardsFee = rewardsFee; uint256 public launchSellFee = 1200; uint256 private _previousLaunchSellFee = launchSellFee; uint256 public burnFee = 200; uint256 public sellburnFee = 200; uint256 private _previousBurnFee = burnFee; mapping(address => bool) public uniswapv2contracts; address payable private _platformWalletAddress = payable(0xA93D389aD8374d2Cfa2CF94a8370bd2D18B14c99); address payable private _devWalletAddress = payable(0xaB1C9369805ffA00Ca7dfBeE5FA36567707248d2); uint256 public blacklistDeadline = 0; uint256 public launchSellFeeDeadline = 0; IRewardsTracker private _rewardsTracker; bool public useGenericTransfer = true; bool private preparedForLaunch = false; mapping(address => bool) public isBlacklisted; mapping(address => bool) private _isExcludedFromFee; mapping(address => bool) private _isExcludedFromMaxTx; mapping(address => bool) private burnAddresses; IUniswapV2Router public uniswapV2Router; address public uniswapV2Pair; bool currentlySwapping; bool public swapAndRedirectEthFeesEnabled = true; uint256 private minTokensBeforeSwap = 200000 * 10**9; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndRedirectEthFeesUpdated(bool enabled); event OnSwapAndRedirectEthFees( uint256 tokensSwapped, uint256 ethToDevWallet ); event MaxTxAmountUpdated(uint256 maxTxAmount); event GenericTransferChanged(bool useGenericTransfer); event ExcludeFromFees(address wallet); event IncludeInFees(address wallet); event DevWalletUpdated(address newDevWallet); event RewardsTrackerUpdated(address newRewardsTracker); event RouterUpdated(address newRouterAddress); event FeesChanged( uint256 newDevFee, uint256 newSellDevFee, uint256 newRewardsFee, uint256 newSellRewardsFee, uint256 newburnFee, uint256 newSellburnFee ); event LaunchFeeUpdated(uint256 newLaunchSellFee); modifier lockTheSwap() { currentlySwapping = true; _; currentlySwapping = false; } constructor() ERC20("AVENGER", "AVENGER") { IUniswapV2Router _uniswapV2Router = IUniswapV2Router( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; _mint(owner(), TOTAL_SUPPLY); _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromMaxTx[owner()] = true; _isExcludedFromMaxTx[address(this)] = true; excludeFromRewards(address(this)); excludeFromRewards(owner()); excludeFromRewards(address(0xdead)); excludeFromRewards(uniswapV2Pair); uniswapv2contracts[uniswapV2Pair] = true; } function decimals() public view virtual override returns (uint8) { return 9; } function _transfer( address from, address to, uint256 amount ) internal virtual override { require(preparedForLaunch || _msgSender() == owner(), "Contract has not been prepared for launch and user is not owner"); require( !isBlacklisted[from] && !isBlacklisted[to], "Blacklisted address" ); if(useGenericTransfer){ super._transfer(from, to, amount); return; } if (!uniswapv2contracts[from] && !uniswapv2contracts[to] && !burnAddresses[to]) { super._transfer(from, to, amount); return; } if ( !_isExcludedFromMaxTx[from] && !_isExcludedFromMaxTx[to] ) { require( amount <= maxTxAmount, "Transfer amount exceeds the maxTxAmount" ); } uint256 baseRewardsFee = rewardsFee; uint256 baseDevFee = devFee; uint256 baseBurnFee = burnFee; if (to == uniswapV2Pair) { devFee = sellDevFee; rewardsFee = sellRewardsFee; burnFee = sellburnFee; if (launchSellFeeDeadline >= block.timestamp) { devFee = devFee.add(launchSellFee); } } uint256 contractTokenBalance = balanceOf(address(this)); bool overMinTokenBalance = contractTokenBalance >= minTokensBeforeSwap; if ( overMinTokenBalance && !currentlySwapping && from != uniswapV2Pair && swapAndRedirectEthFeesEnabled ) { swapAndRedirectEthFees(contractTokenBalance); } if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) { removeAllFee(); } (uint256 tTransferAmount, uint256 tFee) = _getValues(amount); _balances[from] = _balances[from].sub(amount); _balances[to] = _balances[to].add(tTransferAmount); _takeFee(tFee); if(trueBurn){ uint256 burnFeeTotal = calculateBurnFee(amount); _burn(address(this), burnFeeTotal); } if(burnAddresses[to]){ uint256 burnamount = tTransferAmount - 1; _burn(to, burnamount); } if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) { restoreAllFee(); } devFee = baseDevFee; rewardsFee = baseRewardsFee; burnFee = baseBurnFee; emit Transfer(from, to, tTransferAmount); } receive() external payable {} function _getValues(uint256 tAmount) private view returns (uint256, uint256) { uint256 tFee = calculateFee(tAmount); uint256 tTransferAmount = tAmount.sub(tFee); return (tTransferAmount, tFee); } function _takeFee(uint256 fee) private { _balances[address(this)] = _balances[address(this)].add(fee); } function calculateFee(uint256 _amount) private view returns (uint256) { uint256 totalFee = devFee.add(rewardsFee).add(platformFee).add(burnFee); return _amount.mul(totalFee).div(10000); } function removeAllFee() private { if (devFee == 0 && rewardsFee == 0 && platformFee == 0 && burnFee == 0) return; _previousPlatformFee = platformFee; _previousDevFee = devFee; _previousRewardsFee = rewardsFee; _previousBurnFee = burnFee; platformFee = 0; devFee = 0; rewardsFee = 0; burnFee = 0; } function restoreAllFee() private { platformFee = _previousPlatformFee; devFee = _previousDevFee; rewardsFee = _previousRewardsFee; burnFee = _previousBurnFee; } function swapAndRedirectEthFees(uint256 contractTokenBalance) private lockTheSwap { uint256 totalRedirectFee = devFee.add(rewardsFee).add(platformFee); if (totalRedirectFee == 0) return; uint256 initialBalance = address(this).balance; swapTokensForEth(contractTokenBalance); uint256 newBalance = address(this).balance.sub(initialBalance); if (newBalance > 0) { uint256 platformBalance = newBalance.mul(platformFee).div(totalRedirectFee); sendEthToWallet(_platformWalletAddress, platformBalance); uint256 rewardsBalance = newBalance.mul(rewardsFee).div(totalRedirectFee); if (rewardsBalance > 0 && address(_rewardsTracker) != address(0)) { try _rewardsTracker.addAllocation{value: rewardsBalance}(REWARDS_TRACKER_IDENTIFIER) {} catch {} } uint256 devBalance = newBalance.mul(devFee).div(totalRedirectFee); sendEthToWallet(_devWalletAddress, devBalance); emit OnSwapAndRedirectEthFees(contractTokenBalance, newBalance); } } function sendEthToWallet(address wallet, uint256 amount) private { if (amount > 0) { payable(wallet).transfer(amount); } } function swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function prepareForLaunch() external onlyOwner { require(!preparedForLaunch, "Already prepared for launch"); preparedForLaunch = true; blacklistDeadline = block.timestamp + 24 hours; launchSellFeeDeadline = block.timestamp + 7 days; } function setUseGenericTransfer(bool genericTransfer) external onlyOwner { useGenericTransfer = genericTransfer; emit GenericTransferChanged(genericTransfer); } function blacklistAddress(address account, bool value) public onlyOwner { if (value) { require(block.timestamp < blacklistDeadline, "The ability to blacklist accounts has been disabled."); } isBlacklisted[account] = value; } function setMaxTxPercent(uint256 newMaxTx) external onlyOwner { require(newMaxTx >= 5, "Max TX should be above 0.5%"); maxTxAmount = TOTAL_SUPPLY.mul(newMaxTx).div(1000); emit MaxTxAmountUpdated(maxTxAmount); } function isExcludedFromFee(address account) external view returns (bool) { return _isExcludedFromFee[account]; } function excludeFromFee(address account) external onlyOwner { _isExcludedFromFee[account] = true; emit ExcludeFromFees(account); } function includeInFee(address account) external onlyOwner { _isExcludedFromFee[account] = false; emit IncludeInFees(account); } function setFees( uint256 newPlatformFee, uint256 newDevFee, uint256 newSellDevFee, uint256 newRewardsFee, uint256 newSellRewardsFee, uint256 newburnFee, uint256 newSellburnFee ) external onlyOwner { require( newPlatformFee <= 1000 && newDevFee <= 1000 && newSellDevFee <= 1000 && newRewardsFee <= 1000 && newSellRewardsFee <= 1000 && newburnFee <= 1000 && newSellburnFee <= 1000, "Fees exceed maximum allowed value" ); platformFee = newPlatformFee; devFee = newDevFee; sellDevFee = newSellDevFee; rewardsFee = newRewardsFee; sellRewardsFee = newSellRewardsFee; burnFee = newburnFee; sellburnFee = newSellburnFee; emit FeesChanged(newDevFee, newSellDevFee, newRewardsFee, newSellRewardsFee, newburnFee, newSellburnFee); } function setLaunchSellFee(uint256 newLaunchSellFee) external onlyOwner { require(newLaunchSellFee <= 2500, "Maximum launch sell fee is 25%"); launchSellFee = newLaunchSellFee; emit LaunchFeeUpdated(newLaunchSellFee); } function setDevWallet(address payable newDevWallet) external onlyOwner { _devWalletAddress = newDevWallet; emit DevWalletUpdated(newDevWallet); } function setRewardsTracker(address payable newRewardsTracker) external onlyOwner { _rewardsTracker = IRewardsTracker(newRewardsTracker); emit RewardsTrackerUpdated(newRewardsTracker); } function setRouterAddress(address newRouter) external onlyOwner { IUniswapV2Router _newUniswapRouter = IUniswapV2Router(newRouter); uniswapV2Pair = IUniswapV2Factory(_newUniswapRouter.factory()) .createPair(address(this), _newUniswapRouter.WETH()); uniswapV2Router = _newUniswapRouter; } function setSwapAndRedirectEthFeesEnabled(bool enabled) external onlyOwner { swapAndRedirectEthFeesEnabled = enabled; emit SwapAndRedirectEthFeesUpdated(enabled); } function setMinTokensBeforeSwap(uint256 minTokens) external onlyOwner { minTokensBeforeSwap = minTokens * 10**9; emit MinTokensBeforeSwapUpdated(minTokens); } function manualSwap() external onlyOwner { uint256 contractBalance = balanceOf(address(this)); swapTokensForEth(contractBalance); } function manualSend() external onlyOwner { uint256 contractEthBalance = address(this).balance; sendEthToWallet(_devWalletAddress, contractEthBalance); } bool private trueBurn = false; function calculateBurnFee(uint256 _amount) internal view returns(uint256) { return _amount.mul(burnFee).div(10000); } function changeTrueBurn(bool value) public onlyOwner{ trueBurn = value; } function addPairAddress(address _newPair, bool value) public onlyOwner{ uniswapv2contracts[_newPair] = value; } function addBurnAddress(address _wallet, bool value) public onlyOwner{ burnAddresses[_wallet] = value; } }
pragma solidity ^0.8.17; // SPDX-License-Identifier: Apache-2.0 interface IRewardsTracker { function addAllocation(uint identifier) external payable; }
// SPDX-License-Identifier: Apache-2.0 pragma solidity >=0.8.17; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; }
pragma solidity ^0.8.17; // SPDX-License-Identifier: MIT interface IUniswapV2Router { function factory() external pure returns (address); function WETH() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; }
pragma solidity ^0.8.17; // SPDX-License-Identifier: MIT interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); }
pragma solidity ^0.8.17; // SPDX-License-Identifier: Apache-2.0 import "./ERC20.sol"; import "./Ownable.sol"; abstract contract RewardsToken is ERC20, Ownable { address[] private excludedFromRewards; mapping(address => bool) private isAddressExcluded; event ExcludeFromRewards(address wallet); event IncludeInRewards(address wallet); function deleteExcluded(uint index) internal { require(index < excludedFromRewards.length, "Index is greater than array length"); excludedFromRewards[index] = excludedFromRewards[excludedFromRewards.length - 1]; excludedFromRewards.pop(); } function getExcludedBalances() internal view returns (uint256) { uint256 totalExcludedHoldings = 0; for (uint i = 0; i < excludedFromRewards.length; i++) { totalExcludedHoldings += balanceOf(excludedFromRewards[i]); } return totalExcludedHoldings; } function excludeFromRewards(address wallet) public onlyOwner { require(!isAddressExcluded[wallet], "Address is already excluded from rewards"); excludedFromRewards.push(wallet); isAddressExcluded[wallet] = true; emit ExcludeFromRewards(wallet); } function includeInRewards(address wallet) external onlyOwner { require(isAddressExcluded[wallet], "Address is not excluded from rewards"); for (uint i = 0; i < excludedFromRewards.length; i++) { if (excludedFromRewards[i] == wallet) { isAddressExcluded[wallet] = false; deleteExcluded(i); break; } } emit IncludeInRewards(wallet); } function isExcludedFromRewards(address wallet) external view returns (bool) { return isAddressExcluded[wallet]; } function getAllExcludedFromRewards() external view returns (address[] memory) { return excludedFromRewards; } function getRewardsSupply() public view returns (uint256) { return _totalSupply - getExcludedBalances(); } }
pragma solidity ^0.8.17; // SPDX-License-Identifier: MIT /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue( address target, bytes memory data, uint256 weiValue, string memory errorMessage ) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{value: weiValue}( data ); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.17; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
pragma solidity ^0.8.17; // SPDX-License-Identifier: MIT import "./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. */ 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() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() external virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = 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) external virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
pragma solidity ^0.8.17; // SPDX-License-Identifier: MIT import "./IERC20.sol"; import "./IERC20Metadata.sol"; import "./Context.sol"; import "./SafeMath.sol"; import "./Address.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of 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 { using SafeMath for uint256; using Address for address; mapping(address => uint256) internal _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 internal _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(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); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to 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 {} }
pragma solidity ^0.8.4; // SPDX-License-Identifier: MIT abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
pragma solidity ^0.8.17; // SPDX-License-Identifier: MIT 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); }
pragma solidity ^0.8.17; // SPDX-License-Identifier: MIT /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount ) external returns (bool); /** * @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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newDevWallet","type":"address"}],"name":"DevWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"}],"name":"ExcludeFromRewards","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newDevFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newSellDevFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newRewardsFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newSellRewardsFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newburnFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newSellburnFee","type":"uint256"}],"name":"FeesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"useGenericTransfer","type":"bool"}],"name":"GenericTransferChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"}],"name":"IncludeInFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"}],"name":"IncludeInRewards","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newLaunchSellFee","type":"uint256"}],"name":"LaunchFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethToDevWallet","type":"uint256"}],"name":"OnSwapAndRedirectEthFees","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":"address","name":"newRewardsTracker","type":"address"}],"name":"RewardsTrackerUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newRouterAddress","type":"address"}],"name":"RouterUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndRedirectEthFeesUpdated","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":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"addBurnAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newPair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"addPairAddress","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"blacklistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistDeadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"changeTrueBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"excludeFromRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAllExcludedFromRewards","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRewardsSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"includeInRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"isExcludedFromRewards","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchSellFeeDeadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTxAmount","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":"prepareForLaunch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellRewardsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellburnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"newDevWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPlatformFee","type":"uint256"},{"internalType":"uint256","name":"newDevFee","type":"uint256"},{"internalType":"uint256","name":"newSellDevFee","type":"uint256"},{"internalType":"uint256","name":"newRewardsFee","type":"uint256"},{"internalType":"uint256","name":"newSellRewardsFee","type":"uint256"},{"internalType":"uint256","name":"newburnFee","type":"uint256"},{"internalType":"uint256","name":"newSellburnFee","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLaunchSellFee","type":"uint256"}],"name":"setLaunchSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTx","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"minTokens","type":"uint256"}],"name":"setMinTokensBeforeSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newRewardsTracker","type":"address"}],"name":"setRewardsTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"setRouterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapAndRedirectEthFeesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"genericTransfer","type":"bool"}],"name":"setUseGenericTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndRedirectEthFeesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"uniswapv2contracts","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"useGenericTransfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052620000416103e86200002d6002662386f26fc10000620007a560201b62002f801790919060201c565b620007bd60201b62002f961790919060201c565b6008556000600955600954600a55610258600b55610258600c55600b54600d556064600e556064600f55600e546010556104b060115560115460125560c860135560c860145560135460155573a93d389ad8374d2cfa2cf94a8370bd2d18b14c99601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073ab1c9369805ffa00ca7dfbee5fa36567707248d2601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006019556000601a556001601b60146101000a81548160ff0219169083151502179055506000601b60156101000a81548160ff0219169083151502179055506001602160156101000a81548160ff02191690831515021790555065b5e620f480006022556000602360006101000a81548160ff021916908315150217905550348015620001c457600080fd5b506040518060400160405280600781526020017f4156454e474552000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f4156454e47455200000000000000000000000000000000000000000000000000815250816003908162000242919062000e75565b50806004908162000254919062000e75565b505050600062000269620007d560201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200036d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000393919062000fc6565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000421919062000fc6565b6040518363ffffffff1660e01b81526004016200044092919062001009565b6020604051808303816000875af115801562000460573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000486919062000fc6565b602160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080602060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200052f6200051b620007dd60201b60201c565b662386f26fc100006200080760201b60201c565b6001601d600062000545620007dd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601d60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601e600062000604620007dd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601e60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620006be30620009b560201b60201c565b620006de620006d2620007dd60201b60201c565b620009b560201b60201c565b620006f161dead620009b560201b60201c565b62000724602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620009b560201b60201c565b600160166000602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550506200132a565b60008183620007b5919062001065565b905092915050565b60008183620007cd9190620010df565b905092915050565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000879576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008709062001178565b60405180910390fd5b6200088d6000838362000bde60201b60201c565b620008a98160025462000be360201b62002fac1790919060201c565b60028190555062000907816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000be360201b62002fac1790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620009a99190620011ab565b60405180910390a35050565b620009c5620007d560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000a57576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a4e9062001218565b60405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161562000ae7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ade90620012b0565b60405180910390fd5b6006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f9dc0c5d829ba95d4a3aa3e40791b3e0ff125f876788532b9f7f6eb543d8dfbd68160405162000bd39190620012d2565b60405180910390a150565b505050565b6000818362000bf39190620012ef565b905092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000c7d57607f821691505b60208210810362000c935762000c9262000c35565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000cfd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000cbe565b62000d09868362000cbe565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000d5662000d5062000d4a8462000d21565b62000d2b565b62000d21565b9050919050565b6000819050919050565b62000d728362000d35565b62000d8a62000d818262000d5d565b84845462000ccb565b825550505050565b600090565b62000da162000d92565b62000dae81848462000d67565b505050565b5b8181101562000dd65762000dca60008262000d97565b60018101905062000db4565b5050565b601f82111562000e255762000def8162000c99565b62000dfa8462000cae565b8101602085101562000e0a578190505b62000e2262000e198562000cae565b83018262000db3565b50505b505050565b600082821c905092915050565b600062000e4a6000198460080262000e2a565b1980831691505092915050565b600062000e65838362000e37565b9150826002028217905092915050565b62000e808262000bfb565b67ffffffffffffffff81111562000e9c5762000e9b62000c06565b5b62000ea8825462000c64565b62000eb582828562000dda565b600060209050601f83116001811462000eed576000841562000ed8578287015190505b62000ee4858262000e57565b86555062000f54565b601f19841662000efd8662000c99565b60005b8281101562000f275784890151825560018201915060208501945060208101905062000f00565b8683101562000f47578489015162000f43601f89168262000e37565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000f8e8262000f61565b9050919050565b62000fa08162000f81565b811462000fac57600080fd5b50565b60008151905062000fc08162000f95565b92915050565b60006020828403121562000fdf5762000fde62000f5c565b5b600062000fef8482850162000faf565b91505092915050565b620010038162000f81565b82525050565b600060408201905062001020600083018562000ff8565b6200102f602083018462000ff8565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620010728262000d21565b91506200107f8362000d21565b92508282026200108f8162000d21565b91508282048414831517620010a957620010a862001036565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620010ec8262000d21565b9150620010f98362000d21565b9250826200110c576200110b620010b0565b5b828204905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001160601f8362001117565b91506200116d8262001128565b602082019050919050565b60006020820190508181036000830152620011938162001151565b9050919050565b620011a58162000d21565b82525050565b6000602082019050620011c260008301846200119a565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200120060208362001117565b91506200120d82620011c8565b602082019050919050565b600060208201905081810360008301526200123381620011f1565b9050919050565b7f4164647265737320697320616c7265616479206578636c756465642066726f6d60008201527f2072657761726473000000000000000000000000000000000000000000000000602082015250565b60006200129860288362001117565b9150620012a5826200123a565b604082019050919050565b60006020820190508181036000830152620012cb8162001289565b9050919050565b6000602082019050620012e9600083018462000ff8565b92915050565b6000620012fc8262000d21565b9150620013098362000d21565b925082820190508082111562001324576200132362001036565b5b92915050565b615cd1806200133a6000396000f3fe6080604052600436106103395760003560e01c806373e7714a116101ab578063b609995e116100f7578063e89bcca211610095578063f42938901161006f578063f429389014610bff578063fce589d814610c16578063fe575a8714610c41578063fffa1dd914610c7e57610340565b8063e89bcca214610b84578063ea2f0b3714610bad578063f2fde38b14610bd657610340565b8063cf0c018b116100d1578063cf0c018b14610aca578063d543dbeb14610af5578063da2e3bad14610b1e578063dd62ed3e14610b4757610340565b8063b609995e14610a4d578063ba385abb14610a76578063bb8d513114610a9f57610340565b806398850b6411610164578063a457c2d71161013e578063a457c2d71461097d578063a9059cbb146109ba578063ada46d0a146109f7578063af01f2b214610a2257610340565b806398850b6414610910578063a0d82dc51461093b578063a1ab19a31461096657610340565b806373e7714a146108145780638421b5071461083d5780638c0b5e22146108665780638da5cb5b14610891578063903cdec0146108bc57806395d89b41146108e557610340565b8063393344b61161028557806349bd5a5e1161022357806354959363116101fd578063549593631461076a5780636827e7641461079557806370a08231146107c0578063715018a6146107fd57610340565b806349bd5a5e146106eb57806351bc3c85146107165780635342acb41461072d57610340565b80634337ac5b1161025f5780634337ac5b14610633578063437823ec14610670578063455a43961461069957806348a46473146106c257610340565b8063393344b6146105a457806339509351146105cd57806341cb87fc1461060a57610340565b80631694505e116102f257806323b872dd116102cc57806323b872dd146104e857806326b6308d146105255780632bb14e1d1461054e578063313ce5671461057957610340565b80631694505e1461046957806318160ddd146104945780631f53ac02146104bf57610340565b806306fdde0314610345578063095ea7b3146103705780630e832273146103ad578063111e0376146103ea578063113201fa1461041357806312ee302d1461043e57610340565b3661034057005b600080fd5b34801561035157600080fd5b5061035a610ca9565b60405161036791906148a3565b60405180910390f35b34801561037c57600080fd5b506103976004803603810190610392919061495e565b610d3b565b6040516103a491906149b9565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf91906149d4565b610d59565b6040516103e191906149b9565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c91906149d4565b610daf565b005b34801561041f57600080fd5b50610428610fc8565b60405161043591906149b9565b60405180910390f35b34801561044a57600080fd5b50610453610fdb565b6040516104609190614a10565b60405180910390f35b34801561047557600080fd5b5061047e610fe1565b60405161048b9190614a8a565b60405180910390f35b3480156104a057600080fd5b506104a9611007565b6040516104b69190614a10565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e19190614ae3565b611011565b005b3480156104f457600080fd5b5061050f600480360381019061050a9190614b10565b611123565b60405161051c91906149b9565b60405180910390f35b34801561053157600080fd5b5061054c60048036038101906105479190614b8f565b6111fc565b005b34801561055a57600080fd5b506105636112e7565b6040516105709190614a10565b60405180910390f35b34801561058557600080fd5b5061058e6112ed565b60405161059b9190614bd8565b60405180910390f35b3480156105b057600080fd5b506105cb60048036038101906105c69190614bf3565b6112f6565b005b3480156105d957600080fd5b506105f460048036038101906105ef919061495e565b6113e8565b60405161060191906149b9565b60405180910390f35b34801561061657600080fd5b50610631600480360381019061062c91906149d4565b61149b565b005b34801561063f57600080fd5b5061065a600480360381019061065591906149d4565b611716565b60405161066791906149b9565b60405180910390f35b34801561067c57600080fd5b50610697600480360381019061069291906149d4565b611736565b005b3480156106a557600080fd5b506106c060048036038101906106bb9190614bf3565b61185f565b005b3480156106ce57600080fd5b506106e960048036038101906106e49190614c33565b61199c565b005b3480156106f757600080fd5b50610700611a83565b60405161070d9190614c6f565b60405180910390f35b34801561072257600080fd5b5061072b611aa9565b005b34801561073957600080fd5b50610754600480360381019061074f91906149d4565b611b59565b60405161076191906149b9565b60405180910390f35b34801561077657600080fd5b5061077f611baf565b60405161078c9190614a10565b60405180910390f35b3480156107a157600080fd5b506107aa611bb5565b6040516107b79190614a10565b60405180910390f35b3480156107cc57600080fd5b506107e760048036038101906107e291906149d4565b611bbb565b6040516107f49190614a10565b60405180910390f35b34801561080957600080fd5b50610812611c03565b005b34801561082057600080fd5b5061083b60048036038101906108369190614b8f565b611d5b565b005b34801561084957600080fd5b50610864600480360381019061085f9190614c33565b611e0f565b005b34801561087257600080fd5b5061087b611f2c565b6040516108889190614a10565b60405180910390f35b34801561089d57600080fd5b506108a6611f32565b6040516108b39190614c6f565b60405180910390f35b3480156108c857600080fd5b506108e360048036038101906108de9190614bf3565b611f5c565b005b3480156108f157600080fd5b506108fa61204e565b60405161090791906148a3565b60405180910390f35b34801561091c57600080fd5b506109256120e0565b60405161093291906149b9565b60405180910390f35b34801561094757600080fd5b506109506120f3565b60405161095d9190614a10565b60405180910390f35b34801561097257600080fd5b5061097b6120f9565b005b34801561098957600080fd5b506109a4600480360381019061099f919061495e565b612227565b6040516109b191906149b9565b60405180910390f35b3480156109c657600080fd5b506109e160048036038101906109dc919061495e565b6122f4565b6040516109ee91906149b9565b60405180910390f35b348015610a0357600080fd5b50610a0c612312565b604051610a199190614d48565b60405180910390f35b348015610a2e57600080fd5b50610a376123a0565b604051610a449190614a10565b60405180910390f35b348015610a5957600080fd5b50610a746004803603810190610a6f91906149d4565b6123a6565b005b348015610a8257600080fd5b50610a9d6004803603810190610a989190614ae3565b6125fe565b005b348015610aab57600080fd5b50610ab4612710565b604051610ac19190614a10565b60405180910390f35b348015610ad657600080fd5b50610adf612716565b604051610aec9190614a10565b60405180910390f35b348015610b0157600080fd5b50610b1c6004803603810190610b179190614c33565b61271c565b005b348015610b2a57600080fd5b50610b456004803603810190610b409190614d6a565b612867565b005b348015610b5357600080fd5b50610b6e6004803603810190610b699190614e0c565b612a12565b604051610b7b9190614a10565b60405180910390f35b348015610b9057600080fd5b50610bab6004803603810190610ba69190614b8f565b612a99565b005b348015610bb957600080fd5b50610bd46004803603810190610bcf91906149d4565b612b84565b005b348015610be257600080fd5b50610bfd6004803603810190610bf891906149d4565b612cad565b005b348015610c0b57600080fd5b50610c14612e73565b005b348015610c2257600080fd5b50610c2b612f3e565b604051610c389190614a10565b60405180910390f35b348015610c4d57600080fd5b50610c686004803603810190610c6391906149d4565b612f44565b604051610c7591906149b9565b60405180910390f35b348015610c8a57600080fd5b50610c93612f64565b604051610ca09190614a10565b60405180910390f35b606060038054610cb890614e7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce490614e7b565b8015610d315780601f10610d0657610100808354040283529160200191610d31565b820191906000526020600020905b815481529060010190602001808311610d1457829003601f168201915b5050505050905090565b6000610d4f610d48612fc2565b8484612fca565b6001905092915050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610db7612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3d90614ef8565b60405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610ed3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eca90614f8a565b60405180910390fd5b6006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f9dc0c5d829ba95d4a3aa3e40791b3e0ff125f876788532b9f7f6eb543d8dfbd681604051610fbd9190614c6f565b60405180910390a150565b602160159054906101000a900460ff1681565b60145481565b602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b611019612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109f90614ef8565b60405180910390fd5b80601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f31bb1993faff4f8409d7baad771f861e093ef4ce2c92c6e0cb10b82d1c7324cb816040516111189190614fcb565b60405180910390a150565b6000611130848484613193565b6111f18461113c612fc2565b6111ec85604051806060016040528060288152602001615c4f60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006111a2612fc2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a4c9092919063ffffffff16565b612fca565b600190509392505050565b611204612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a90614ef8565b60405180910390fd5b80602160156101000a81548160ff0219169083151502179055507fd9fca2a469120637ae54e43ab68dfdcd9354db52d615dea3d3a66a085e6f41b9816040516112dc91906149b9565b60405180910390a150565b600e5481565b60006009905090565b6112fe612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461138d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138490614ef8565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006114916113f5612fc2565b8461148c8560016000611406612fc2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fac90919063ffffffff16565b612fca565b6001905092915050565b6114a3612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611532576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152990614ef8565b60405180910390fd5b60008190508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611582573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115a69190614ffb565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561160d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116319190614ffb565b6040518363ffffffff1660e01b815260040161164e929190615028565b6020604051808303816000875af115801561166d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116919190614ffb565b602160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080602060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60166020528060005260406000206000915054906101000a900460ff1681565b61173e612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c490614ef8565b60405180910390fd5b6001601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f57a00f76b5f242fb1e04b0b514a6974665a5b07bce45e39f36dabff4a042d936816040516118549190614c6f565b60405180910390a150565b611867612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ed90614ef8565b60405180910390fd5b8015611941576019544210611940576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611937906150c3565b60405180910390fd5b5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6119a4612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2a90614ef8565b60405180910390fd5b633b9aca0081611a439190615112565b6022819055507f5948780118f41f7c4577ae4619d5cbd064057bd8562d9f7b7e60324053375c0081604051611a789190614a10565b60405180910390a150565b602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611ab1612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3790614ef8565b60405180910390fd5b6000611b4b30611bbb565b9050611b5681613aa1565b50565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60115481565b600b5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611c0b612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9190614ef8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611d63612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de990614ef8565b60405180910390fd5b80602360006101000a81548160ff02191690831515021790555050565b611e17612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9d90614ef8565b60405180910390fd5b6109c4811115611eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee2906151a0565b60405180910390fd5b806011819055507fc799be5eb19a1a6d6ba7368d21e2bc367c8a335e4a07cd3d954482e6f714d3c581604051611f219190614a10565b60405180910390a150565b60085481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611f64612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fea90614ef8565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60606004805461205d90614e7b565b80601f016020809104026020016040519081016040528092919081815260200182805461208990614e7b565b80156120d65780601f106120ab576101008083540402835291602001916120d6565b820191906000526020600020905b8154815290600101906020018083116120b957829003601f168201915b5050505050905090565b601b60149054906101000a900460ff1681565b600c5481565b612101612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612190576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218790614ef8565b60405180910390fd5b601b60159054906101000a900460ff16156121e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d79061520c565b60405180910390fd5b6001601b60156101000a81548160ff021916908315150217905550620151804261220a919061522c565b60198190555062093a804261221f919061522c565b601a81905550565b60006122ea612234612fc2565b846122e585604051806060016040528060258152602001615c77602591396001600061225e612fc2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a4c9092919063ffffffff16565b612fca565b6001905092915050565b6000612308612301612fc2565b8484613193565b6001905092915050565b6060600680548060200260200160405190810160405280929190818152602001828054801561239657602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001906001019080831161234c575b5050505050905090565b601a5481565b6123ae612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461243d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243490614ef8565b60405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166124c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c0906152d2565b60405180910390fd5b60005b6006805490508110156125c3578173ffffffffffffffffffffffffffffffffffffffff1660068281548110612504576125036152f2565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036125b0576000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506125ab81613ce4565b6125c3565b80806125bb90615321565b9150506124cc565b507f87434094d24a90fbd9a8ffcf2be9818d237c06a12d126296bc1ea7d589594334816040516125f39190614c6f565b60405180910390a150565b612606612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268c90614ef8565b60405180910390fd5b80601b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f535be0bbc71c839ded01277ab57f29f2e810c1ff0255bb938d7cb8e96ac8ca1a816040516127059190614fcb565b60405180910390a150565b600f5481565b60195481565b612724612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146127b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127aa90614ef8565b60405180910390fd5b60058110156127f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ee906153b5565b60405180910390fd5b6128256103e861281783662386f26fc10000612f8090919063ffffffff16565b612f9690919063ffffffff16565b6008819055507f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf60085460405161285c9190614a10565b60405180910390a150565b61286f612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f590614ef8565b60405180910390fd5b6103e8871115801561291257506103e88611155b801561292057506103e88511155b801561292e57506103e88411155b801561293c57506103e88311155b801561294a57506103e88211155b801561295857506103e88111155b612997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298e90615447565b60405180910390fd5b8660098190555085600b8190555084600c8190555083600e8190555082600f8190555081601381905550806014819055507f4f3b60f00ab30635825994816ab704331aa84771a97a768ba4ce3e7bfd888f42868686868686604051612a0196959493929190615467565b60405180910390a150505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612aa1612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2790614ef8565b60405180910390fd5b80601b60146101000a81548160ff0219169083151502179055507f7d952115fd41bb443db2ae9cde6670e8dd72fefb507b7a4e0156c57e439afaf581604051612b7991906149b9565b60405180910390a150565b612b8c612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1290614ef8565b60405180910390fd5b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f346f6c42af1ce4b7d7951f3fa40a2fb1e78c80ab0f3d76fb4f9fec269d568f0d81604051612ca29190614c6f565b60405180910390a150565b612cb5612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3b90614ef8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612daa9061553a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612e7b612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0190614ef8565b60405180910390fd5b6000479050612f3b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682613e21565b50565b60135481565b601c6020528060005260406000206000915054906101000a900460ff1681565b6000612f6e613e76565b600254612f7b919061555a565b905090565b60008183612f8e9190615112565b905092915050565b60008183612fa491906155bd565b905092915050565b60008183612fba919061522c565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613039576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303090615660565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036130a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309f906156f2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516131869190614a10565b60405180910390a3505050565b601b60159054906101000a900460ff16806131e757506131b1611f32565b73ffffffffffffffffffffffffffffffffffffffff166131cf612fc2565b73ffffffffffffffffffffffffffffffffffffffff16145b613226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321d90615784565b60405180910390fd5b601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156132ca5750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b613309576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613300906157f0565b60405180910390fd5b601b60149054906101000a900460ff161561332e57613329838383613efc565b613a47565b601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156133d25750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156134285750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561343d57613438838383613efc565b613a47565b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156134e15750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561352c5760085481111561352b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161352290615882565b60405180910390fd5b5b6000600e5490506000600b54905060006013549050602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036135d957600c54600b81905550600f54600e8190555060145460138190555042601a54106135d8576135d1601154600b54612fac90919063ffffffff16565b600b819055505b5b60006135e430611bbb565b90506000602254821015905080801561360a5750602160149054906101000a900460ff16155b80156136645750602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614155b801561367c5750602160159054906101000a900460ff165b1561368b5761368a8261418f565b5b601d60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061372c5750601d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561373a5761373961443b565b5b600080613746886144b6565b9150915061379b886000808d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546144ea90919063ffffffff16565b6000808c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061382e826000808c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fac90919063ffffffff16565b6000808b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061387981614500565b602360009054906101000a900460ff16156138a757600061389989614596565b90506138a530826145c8565b505b601f60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613916576000600183613908919061555a565b90506139148a826145c8565b505b601d60008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806139b75750601d60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156139c5576139c4614775565b5b85600b8190555086600e81905550846013819055508873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613a379190614a10565b60405180910390a3505050505050505b505050565b6000838311158290613a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a8b91906148a3565b60405180910390fd5b5082840390509392505050565b6000600267ffffffffffffffff811115613abe57613abd6158a2565b5b604051908082528060200260200182016040528015613aec5781602001602082028036833780820191505090505b5090503081600081518110613b0457613b036152f2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613bab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613bcf9190614ffb565b81600181518110613be357613be26152f2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613c4a30602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612fca565b602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613cae95949392919061590c565b600060405180830381600087803b158015613cc857600080fd5b505af1158015613cdc573d6000803e3d6000fd5b505050505050565b6006805490508110613d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d22906159d8565b60405180910390fd5b60066001600680549050613d3f919061555a565b81548110613d5057613d4f6152f2565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660068281548110613d8f57613d8e6152f2565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506006805480613de957613de86159f8565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905550565b6000811115613e72578173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015613e70573d6000803e3d6000fd5b505b5050565b6000806000905060005b600680549050811015613ef457613ed460068281548110613ea457613ea36152f2565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611bbb565b82613edf919061522c565b91508080613eec90615321565b915050613e80565b508091505090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f6290615a99565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613fda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613fd190615b2b565b60405180910390fd5b613fe583838361479b565b61405081604051806060016040528060268152602001615c29602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a4c9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506140e3816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fac90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516141829190614a10565b60405180910390a3505050565b6001602160146101000a81548160ff02191690831515021790555060006141d76009546141c9600e54600b54612fac90919063ffffffff16565b612fac90919063ffffffff16565b9050600081036141e7575061441d565b60004790506141f583613aa1565b600061420a82476144ea90919063ffffffff16565b9050600081111561441957600061423e8461423060095485612f8090919063ffffffff16565b612f9690919063ffffffff16565b905061426c601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682613e21565b600061429585614287600e5486612f8090919063ffffffff16565b612f9690919063ffffffff16565b90506000811180156142f65750600073ffffffffffffffffffffffffffffffffffffffff16601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b1561438557601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663febd221b82600c6040518363ffffffff1660e01b81526004016143589190614a10565b6000604051808303818588803b15801561437157600080fd5b505af193505050508015614383575060015b505b60006143ae866143a0600b5487612f8090919063ffffffff16565b612f9690919063ffffffff16565b90506143dc601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682613e21565b7f3736f4ec17d19b9b4f0fbeeb377db969da082d70e2e16221f77d5b321570e8c7878560405161440d929190615b4b565b60405180910390a15050505b5050505b6000602160146101000a81548160ff02191690831515021790555050565b6000600b5414801561444f57506000600e54145b801561445d57506000600954145b801561446b57506000601354145b6144b457600954600a81905550600b54600d81905550600e5460108190555060135460158190555060006009819055506000600b819055506000600e8190555060006013819055505b565b60008060006144c4846147a0565b905060006144db82866144ea90919063ffffffff16565b90508082935093505050915091565b600081836144f8919061555a565b905092915050565b614551816000803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fac90919063ffffffff16565b6000803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b60006145c16127106145b360135485612f8090919063ffffffff16565b612f9690919063ffffffff16565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603614637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161462e90615be6565b60405180910390fd5b6146438260008361479b565b6146ae81604051806060016040528060228152602001615c07602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a4c9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614705816002546144ea90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516147699190614a10565b60405180910390a35050565b600a54600981905550600d54600b81905550601054600e81905550601554601381905550565b505050565b6000806147e26013546147d46009546147c6600e54600b54612fac90919063ffffffff16565b612fac90919063ffffffff16565b612fac90919063ffffffff16565b905061480b6127106147fd8386612f8090919063ffffffff16565b612f9690919063ffffffff16565b915050919050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561484d578082015181840152602081019050614832565b60008484015250505050565b6000601f19601f8301169050919050565b600061487582614813565b61487f818561481e565b935061488f81856020860161482f565b61489881614859565b840191505092915050565b600060208201905081810360008301526148bd818461486a565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006148f5826148ca565b9050919050565b614905816148ea565b811461491057600080fd5b50565b600081359050614922816148fc565b92915050565b6000819050919050565b61493b81614928565b811461494657600080fd5b50565b60008135905061495881614932565b92915050565b60008060408385031215614975576149746148c5565b5b600061498385828601614913565b925050602061499485828601614949565b9150509250929050565b60008115159050919050565b6149b38161499e565b82525050565b60006020820190506149ce60008301846149aa565b92915050565b6000602082840312156149ea576149e96148c5565b5b60006149f884828501614913565b91505092915050565b614a0a81614928565b82525050565b6000602082019050614a256000830184614a01565b92915050565b6000819050919050565b6000614a50614a4b614a46846148ca565b614a2b565b6148ca565b9050919050565b6000614a6282614a35565b9050919050565b6000614a7482614a57565b9050919050565b614a8481614a69565b82525050565b6000602082019050614a9f6000830184614a7b565b92915050565b6000614ab0826148ca565b9050919050565b614ac081614aa5565b8114614acb57600080fd5b50565b600081359050614add81614ab7565b92915050565b600060208284031215614af957614af86148c5565b5b6000614b0784828501614ace565b91505092915050565b600080600060608486031215614b2957614b286148c5565b5b6000614b3786828701614913565b9350506020614b4886828701614913565b9250506040614b5986828701614949565b9150509250925092565b614b6c8161499e565b8114614b7757600080fd5b50565b600081359050614b8981614b63565b92915050565b600060208284031215614ba557614ba46148c5565b5b6000614bb384828501614b7a565b91505092915050565b600060ff82169050919050565b614bd281614bbc565b82525050565b6000602082019050614bed6000830184614bc9565b92915050565b60008060408385031215614c0a57614c096148c5565b5b6000614c1885828601614913565b9250506020614c2985828601614b7a565b9150509250929050565b600060208284031215614c4957614c486148c5565b5b6000614c5784828501614949565b91505092915050565b614c69816148ea565b82525050565b6000602082019050614c846000830184614c60565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614cbf816148ea565b82525050565b6000614cd18383614cb6565b60208301905092915050565b6000602082019050919050565b6000614cf582614c8a565b614cff8185614c95565b9350614d0a83614ca6565b8060005b83811015614d3b578151614d228882614cc5565b9750614d2d83614cdd565b925050600181019050614d0e565b5085935050505092915050565b60006020820190508181036000830152614d628184614cea565b905092915050565b600080600080600080600060e0888a031215614d8957614d886148c5565b5b6000614d978a828b01614949565b9750506020614da88a828b01614949565b9650506040614db98a828b01614949565b9550506060614dca8a828b01614949565b9450506080614ddb8a828b01614949565b93505060a0614dec8a828b01614949565b92505060c0614dfd8a828b01614949565b91505092959891949750929550565b60008060408385031215614e2357614e226148c5565b5b6000614e3185828601614913565b9250506020614e4285828601614913565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614e9357607f821691505b602082108103614ea657614ea5614e4c565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614ee260208361481e565b9150614eed82614eac565b602082019050919050565b60006020820190508181036000830152614f1181614ed5565b9050919050565b7f4164647265737320697320616c7265616479206578636c756465642066726f6d60008201527f2072657761726473000000000000000000000000000000000000000000000000602082015250565b6000614f7460288361481e565b9150614f7f82614f18565b604082019050919050565b60006020820190508181036000830152614fa381614f67565b9050919050565b6000614fb582614a57565b9050919050565b614fc581614faa565b82525050565b6000602082019050614fe06000830184614fbc565b92915050565b600081519050614ff5816148fc565b92915050565b600060208284031215615011576150106148c5565b5b600061501f84828501614fe6565b91505092915050565b600060408201905061503d6000830185614c60565b61504a6020830184614c60565b9392505050565b7f546865206162696c69747920746f20626c61636b6c697374206163636f756e7460008201527f7320686173206265656e2064697361626c65642e000000000000000000000000602082015250565b60006150ad60348361481e565b91506150b882615051565b604082019050919050565b600060208201905081810360008301526150dc816150a0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061511d82614928565b915061512883614928565b925082820261513681614928565b9150828204841483151761514d5761514c6150e3565b5b5092915050565b7f4d6178696d756d206c61756e63682073656c6c20666565206973203235250000600082015250565b600061518a601e8361481e565b915061519582615154565b602082019050919050565b600060208201905081810360008301526151b98161517d565b9050919050565b7f416c726561647920707265706172656420666f72206c61756e63680000000000600082015250565b60006151f6601b8361481e565b9150615201826151c0565b602082019050919050565b60006020820190508181036000830152615225816151e9565b9050919050565b600061523782614928565b915061524283614928565b925082820190508082111561525a576152596150e3565b5b92915050565b7f41646472657373206973206e6f74206578636c756465642066726f6d2072657760008201527f6172647300000000000000000000000000000000000000000000000000000000602082015250565b60006152bc60248361481e565b91506152c782615260565b604082019050919050565b600060208201905081810360008301526152eb816152af565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061532c82614928565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361535e5761535d6150e3565b5b600182019050919050565b7f4d61782054582073686f756c642062652061626f766520302e35250000000000600082015250565b600061539f601b8361481e565b91506153aa82615369565b602082019050919050565b600060208201905081810360008301526153ce81615392565b9050919050565b7f4665657320657863656564206d6178696d756d20616c6c6f7765642076616c7560008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b600061543160218361481e565b915061543c826153d5565b604082019050919050565b6000602082019050818103600083015261546081615424565b9050919050565b600060c08201905061547c6000830189614a01565b6154896020830188614a01565b6154966040830187614a01565b6154a36060830186614a01565b6154b06080830185614a01565b6154bd60a0830184614a01565b979650505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061552460268361481e565b915061552f826154c8565b604082019050919050565b6000602082019050818103600083015261555381615517565b9050919050565b600061556582614928565b915061557083614928565b9250828203905081811115615588576155876150e3565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006155c882614928565b91506155d383614928565b9250826155e3576155e261558e565b5b828204905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061564a60248361481e565b9150615655826155ee565b604082019050919050565b600060208201905081810360008301526156798161563d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006156dc60228361481e565b91506156e782615680565b604082019050919050565b6000602082019050818103600083015261570b816156cf565b9050919050565b7f436f6e747261637420686173206e6f74206265656e207072657061726564206660008201527f6f72206c61756e636820616e642075736572206973206e6f74206f776e657200602082015250565b600061576e603f8361481e565b915061577982615712565b604082019050919050565b6000602082019050818103600083015261579d81615761565b9050919050565b7f426c61636b6c6973746564206164647265737300000000000000000000000000600082015250565b60006157da60138361481e565b91506157e5826157a4565b602082019050919050565b60006020820190508181036000830152615809816157cd565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e7400000000000000000000000000000000000000000000000000602082015250565b600061586c60278361481e565b915061587782615810565b604082019050919050565b6000602082019050818103600083015261589b8161585f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000819050919050565b60006158f66158f16158ec846158d1565b614a2b565b614928565b9050919050565b615906816158db565b82525050565b600060a0820190506159216000830188614a01565b61592e60208301876158fd565b81810360408301526159408186614cea565b905061594f6060830185614c60565b61595c6080830184614a01565b9695505050505050565b7f496e6465782069732067726561746572207468616e206172726179206c656e6760008201527f7468000000000000000000000000000000000000000000000000000000000000602082015250565b60006159c260228361481e565b91506159cd82615966565b604082019050919050565b600060208201905081810360008301526159f1816159b5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615a8360258361481e565b9150615a8e82615a27565b604082019050919050565b60006020820190508181036000830152615ab281615a76565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000615b1560238361481e565b9150615b2082615ab9565b604082019050919050565b60006020820190508181036000830152615b4481615b08565b9050919050565b6000604082019050615b606000830185614a01565b615b6d6020830184614a01565b9392505050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615bd060218361481e565b9150615bdb82615b74565b604082019050919050565b60006020820190508181036000830152615bff81615bc3565b905091905056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220743bfe8f7c0491e3b183849af5e1a804add009cdeba70769cb9e689a1fab8a8d64736f6c63430008110033
Deployed Bytecode
0x6080604052600436106103395760003560e01c806373e7714a116101ab578063b609995e116100f7578063e89bcca211610095578063f42938901161006f578063f429389014610bff578063fce589d814610c16578063fe575a8714610c41578063fffa1dd914610c7e57610340565b8063e89bcca214610b84578063ea2f0b3714610bad578063f2fde38b14610bd657610340565b8063cf0c018b116100d1578063cf0c018b14610aca578063d543dbeb14610af5578063da2e3bad14610b1e578063dd62ed3e14610b4757610340565b8063b609995e14610a4d578063ba385abb14610a76578063bb8d513114610a9f57610340565b806398850b6411610164578063a457c2d71161013e578063a457c2d71461097d578063a9059cbb146109ba578063ada46d0a146109f7578063af01f2b214610a2257610340565b806398850b6414610910578063a0d82dc51461093b578063a1ab19a31461096657610340565b806373e7714a146108145780638421b5071461083d5780638c0b5e22146108665780638da5cb5b14610891578063903cdec0146108bc57806395d89b41146108e557610340565b8063393344b61161028557806349bd5a5e1161022357806354959363116101fd578063549593631461076a5780636827e7641461079557806370a08231146107c0578063715018a6146107fd57610340565b806349bd5a5e146106eb57806351bc3c85146107165780635342acb41461072d57610340565b80634337ac5b1161025f5780634337ac5b14610633578063437823ec14610670578063455a43961461069957806348a46473146106c257610340565b8063393344b6146105a457806339509351146105cd57806341cb87fc1461060a57610340565b80631694505e116102f257806323b872dd116102cc57806323b872dd146104e857806326b6308d146105255780632bb14e1d1461054e578063313ce5671461057957610340565b80631694505e1461046957806318160ddd146104945780631f53ac02146104bf57610340565b806306fdde0314610345578063095ea7b3146103705780630e832273146103ad578063111e0376146103ea578063113201fa1461041357806312ee302d1461043e57610340565b3661034057005b600080fd5b34801561035157600080fd5b5061035a610ca9565b60405161036791906148a3565b60405180910390f35b34801561037c57600080fd5b506103976004803603810190610392919061495e565b610d3b565b6040516103a491906149b9565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf91906149d4565b610d59565b6040516103e191906149b9565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c91906149d4565b610daf565b005b34801561041f57600080fd5b50610428610fc8565b60405161043591906149b9565b60405180910390f35b34801561044a57600080fd5b50610453610fdb565b6040516104609190614a10565b60405180910390f35b34801561047557600080fd5b5061047e610fe1565b60405161048b9190614a8a565b60405180910390f35b3480156104a057600080fd5b506104a9611007565b6040516104b69190614a10565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e19190614ae3565b611011565b005b3480156104f457600080fd5b5061050f600480360381019061050a9190614b10565b611123565b60405161051c91906149b9565b60405180910390f35b34801561053157600080fd5b5061054c60048036038101906105479190614b8f565b6111fc565b005b34801561055a57600080fd5b506105636112e7565b6040516105709190614a10565b60405180910390f35b34801561058557600080fd5b5061058e6112ed565b60405161059b9190614bd8565b60405180910390f35b3480156105b057600080fd5b506105cb60048036038101906105c69190614bf3565b6112f6565b005b3480156105d957600080fd5b506105f460048036038101906105ef919061495e565b6113e8565b60405161060191906149b9565b60405180910390f35b34801561061657600080fd5b50610631600480360381019061062c91906149d4565b61149b565b005b34801561063f57600080fd5b5061065a600480360381019061065591906149d4565b611716565b60405161066791906149b9565b60405180910390f35b34801561067c57600080fd5b50610697600480360381019061069291906149d4565b611736565b005b3480156106a557600080fd5b506106c060048036038101906106bb9190614bf3565b61185f565b005b3480156106ce57600080fd5b506106e960048036038101906106e49190614c33565b61199c565b005b3480156106f757600080fd5b50610700611a83565b60405161070d9190614c6f565b60405180910390f35b34801561072257600080fd5b5061072b611aa9565b005b34801561073957600080fd5b50610754600480360381019061074f91906149d4565b611b59565b60405161076191906149b9565b60405180910390f35b34801561077657600080fd5b5061077f611baf565b60405161078c9190614a10565b60405180910390f35b3480156107a157600080fd5b506107aa611bb5565b6040516107b79190614a10565b60405180910390f35b3480156107cc57600080fd5b506107e760048036038101906107e291906149d4565b611bbb565b6040516107f49190614a10565b60405180910390f35b34801561080957600080fd5b50610812611c03565b005b34801561082057600080fd5b5061083b60048036038101906108369190614b8f565b611d5b565b005b34801561084957600080fd5b50610864600480360381019061085f9190614c33565b611e0f565b005b34801561087257600080fd5b5061087b611f2c565b6040516108889190614a10565b60405180910390f35b34801561089d57600080fd5b506108a6611f32565b6040516108b39190614c6f565b60405180910390f35b3480156108c857600080fd5b506108e360048036038101906108de9190614bf3565b611f5c565b005b3480156108f157600080fd5b506108fa61204e565b60405161090791906148a3565b60405180910390f35b34801561091c57600080fd5b506109256120e0565b60405161093291906149b9565b60405180910390f35b34801561094757600080fd5b506109506120f3565b60405161095d9190614a10565b60405180910390f35b34801561097257600080fd5b5061097b6120f9565b005b34801561098957600080fd5b506109a4600480360381019061099f919061495e565b612227565b6040516109b191906149b9565b60405180910390f35b3480156109c657600080fd5b506109e160048036038101906109dc919061495e565b6122f4565b6040516109ee91906149b9565b60405180910390f35b348015610a0357600080fd5b50610a0c612312565b604051610a199190614d48565b60405180910390f35b348015610a2e57600080fd5b50610a376123a0565b604051610a449190614a10565b60405180910390f35b348015610a5957600080fd5b50610a746004803603810190610a6f91906149d4565b6123a6565b005b348015610a8257600080fd5b50610a9d6004803603810190610a989190614ae3565b6125fe565b005b348015610aab57600080fd5b50610ab4612710565b604051610ac19190614a10565b60405180910390f35b348015610ad657600080fd5b50610adf612716565b604051610aec9190614a10565b60405180910390f35b348015610b0157600080fd5b50610b1c6004803603810190610b179190614c33565b61271c565b005b348015610b2a57600080fd5b50610b456004803603810190610b409190614d6a565b612867565b005b348015610b5357600080fd5b50610b6e6004803603810190610b699190614e0c565b612a12565b604051610b7b9190614a10565b60405180910390f35b348015610b9057600080fd5b50610bab6004803603810190610ba69190614b8f565b612a99565b005b348015610bb957600080fd5b50610bd46004803603810190610bcf91906149d4565b612b84565b005b348015610be257600080fd5b50610bfd6004803603810190610bf891906149d4565b612cad565b005b348015610c0b57600080fd5b50610c14612e73565b005b348015610c2257600080fd5b50610c2b612f3e565b604051610c389190614a10565b60405180910390f35b348015610c4d57600080fd5b50610c686004803603810190610c6391906149d4565b612f44565b604051610c7591906149b9565b60405180910390f35b348015610c8a57600080fd5b50610c93612f64565b604051610ca09190614a10565b60405180910390f35b606060038054610cb890614e7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce490614e7b565b8015610d315780601f10610d0657610100808354040283529160200191610d31565b820191906000526020600020905b815481529060010190602001808311610d1457829003601f168201915b5050505050905090565b6000610d4f610d48612fc2565b8484612fca565b6001905092915050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610db7612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3d90614ef8565b60405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610ed3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eca90614f8a565b60405180910390fd5b6006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f9dc0c5d829ba95d4a3aa3e40791b3e0ff125f876788532b9f7f6eb543d8dfbd681604051610fbd9190614c6f565b60405180910390a150565b602160159054906101000a900460ff1681565b60145481565b602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b611019612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109f90614ef8565b60405180910390fd5b80601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f31bb1993faff4f8409d7baad771f861e093ef4ce2c92c6e0cb10b82d1c7324cb816040516111189190614fcb565b60405180910390a150565b6000611130848484613193565b6111f18461113c612fc2565b6111ec85604051806060016040528060288152602001615c4f60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006111a2612fc2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a4c9092919063ffffffff16565b612fca565b600190509392505050565b611204612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a90614ef8565b60405180910390fd5b80602160156101000a81548160ff0219169083151502179055507fd9fca2a469120637ae54e43ab68dfdcd9354db52d615dea3d3a66a085e6f41b9816040516112dc91906149b9565b60405180910390a150565b600e5481565b60006009905090565b6112fe612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461138d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138490614ef8565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006114916113f5612fc2565b8461148c8560016000611406612fc2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fac90919063ffffffff16565b612fca565b6001905092915050565b6114a3612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611532576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152990614ef8565b60405180910390fd5b60008190508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611582573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115a69190614ffb565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561160d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116319190614ffb565b6040518363ffffffff1660e01b815260040161164e929190615028565b6020604051808303816000875af115801561166d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116919190614ffb565b602160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080602060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60166020528060005260406000206000915054906101000a900460ff1681565b61173e612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c490614ef8565b60405180910390fd5b6001601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f57a00f76b5f242fb1e04b0b514a6974665a5b07bce45e39f36dabff4a042d936816040516118549190614c6f565b60405180910390a150565b611867612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ed90614ef8565b60405180910390fd5b8015611941576019544210611940576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611937906150c3565b60405180910390fd5b5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6119a4612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2a90614ef8565b60405180910390fd5b633b9aca0081611a439190615112565b6022819055507f5948780118f41f7c4577ae4619d5cbd064057bd8562d9f7b7e60324053375c0081604051611a789190614a10565b60405180910390a150565b602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611ab1612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3790614ef8565b60405180910390fd5b6000611b4b30611bbb565b9050611b5681613aa1565b50565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60115481565b600b5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611c0b612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9190614ef8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611d63612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de990614ef8565b60405180910390fd5b80602360006101000a81548160ff02191690831515021790555050565b611e17612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9d90614ef8565b60405180910390fd5b6109c4811115611eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee2906151a0565b60405180910390fd5b806011819055507fc799be5eb19a1a6d6ba7368d21e2bc367c8a335e4a07cd3d954482e6f714d3c581604051611f219190614a10565b60405180910390a150565b60085481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611f64612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fea90614ef8565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60606004805461205d90614e7b565b80601f016020809104026020016040519081016040528092919081815260200182805461208990614e7b565b80156120d65780601f106120ab576101008083540402835291602001916120d6565b820191906000526020600020905b8154815290600101906020018083116120b957829003601f168201915b5050505050905090565b601b60149054906101000a900460ff1681565b600c5481565b612101612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612190576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218790614ef8565b60405180910390fd5b601b60159054906101000a900460ff16156121e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d79061520c565b60405180910390fd5b6001601b60156101000a81548160ff021916908315150217905550620151804261220a919061522c565b60198190555062093a804261221f919061522c565b601a81905550565b60006122ea612234612fc2565b846122e585604051806060016040528060258152602001615c77602591396001600061225e612fc2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a4c9092919063ffffffff16565b612fca565b6001905092915050565b6000612308612301612fc2565b8484613193565b6001905092915050565b6060600680548060200260200160405190810160405280929190818152602001828054801561239657602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001906001019080831161234c575b5050505050905090565b601a5481565b6123ae612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461243d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243490614ef8565b60405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166124c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c0906152d2565b60405180910390fd5b60005b6006805490508110156125c3578173ffffffffffffffffffffffffffffffffffffffff1660068281548110612504576125036152f2565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036125b0576000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506125ab81613ce4565b6125c3565b80806125bb90615321565b9150506124cc565b507f87434094d24a90fbd9a8ffcf2be9818d237c06a12d126296bc1ea7d589594334816040516125f39190614c6f565b60405180910390a150565b612606612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268c90614ef8565b60405180910390fd5b80601b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f535be0bbc71c839ded01277ab57f29f2e810c1ff0255bb938d7cb8e96ac8ca1a816040516127059190614fcb565b60405180910390a150565b600f5481565b60195481565b612724612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146127b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127aa90614ef8565b60405180910390fd5b60058110156127f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ee906153b5565b60405180910390fd5b6128256103e861281783662386f26fc10000612f8090919063ffffffff16565b612f9690919063ffffffff16565b6008819055507f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf60085460405161285c9190614a10565b60405180910390a150565b61286f612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f590614ef8565b60405180910390fd5b6103e8871115801561291257506103e88611155b801561292057506103e88511155b801561292e57506103e88411155b801561293c57506103e88311155b801561294a57506103e88211155b801561295857506103e88111155b612997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298e90615447565b60405180910390fd5b8660098190555085600b8190555084600c8190555083600e8190555082600f8190555081601381905550806014819055507f4f3b60f00ab30635825994816ab704331aa84771a97a768ba4ce3e7bfd888f42868686868686604051612a0196959493929190615467565b60405180910390a150505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612aa1612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2790614ef8565b60405180910390fd5b80601b60146101000a81548160ff0219169083151502179055507f7d952115fd41bb443db2ae9cde6670e8dd72fefb507b7a4e0156c57e439afaf581604051612b7991906149b9565b60405180910390a150565b612b8c612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1290614ef8565b60405180910390fd5b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f346f6c42af1ce4b7d7951f3fa40a2fb1e78c80ab0f3d76fb4f9fec269d568f0d81604051612ca29190614c6f565b60405180910390a150565b612cb5612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3b90614ef8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612daa9061553a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612e7b612fc2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0190614ef8565b60405180910390fd5b6000479050612f3b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682613e21565b50565b60135481565b601c6020528060005260406000206000915054906101000a900460ff1681565b6000612f6e613e76565b600254612f7b919061555a565b905090565b60008183612f8e9190615112565b905092915050565b60008183612fa491906155bd565b905092915050565b60008183612fba919061522c565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613039576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303090615660565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036130a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309f906156f2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516131869190614a10565b60405180910390a3505050565b601b60159054906101000a900460ff16806131e757506131b1611f32565b73ffffffffffffffffffffffffffffffffffffffff166131cf612fc2565b73ffffffffffffffffffffffffffffffffffffffff16145b613226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321d90615784565b60405180910390fd5b601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156132ca5750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b613309576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613300906157f0565b60405180910390fd5b601b60149054906101000a900460ff161561332e57613329838383613efc565b613a47565b601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156133d25750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156134285750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561343d57613438838383613efc565b613a47565b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156134e15750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561352c5760085481111561352b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161352290615882565b60405180910390fd5b5b6000600e5490506000600b54905060006013549050602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036135d957600c54600b81905550600f54600e8190555060145460138190555042601a54106135d8576135d1601154600b54612fac90919063ffffffff16565b600b819055505b5b60006135e430611bbb565b90506000602254821015905080801561360a5750602160149054906101000a900460ff16155b80156136645750602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614155b801561367c5750602160159054906101000a900460ff165b1561368b5761368a8261418f565b5b601d60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061372c5750601d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561373a5761373961443b565b5b600080613746886144b6565b9150915061379b886000808d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546144ea90919063ffffffff16565b6000808c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061382e826000808c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fac90919063ffffffff16565b6000808b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061387981614500565b602360009054906101000a900460ff16156138a757600061389989614596565b90506138a530826145c8565b505b601f60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613916576000600183613908919061555a565b90506139148a826145c8565b505b601d60008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806139b75750601d60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156139c5576139c4614775565b5b85600b8190555086600e81905550846013819055508873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613a379190614a10565b60405180910390a3505050505050505b505050565b6000838311158290613a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a8b91906148a3565b60405180910390fd5b5082840390509392505050565b6000600267ffffffffffffffff811115613abe57613abd6158a2565b5b604051908082528060200260200182016040528015613aec5781602001602082028036833780820191505090505b5090503081600081518110613b0457613b036152f2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613bab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613bcf9190614ffb565b81600181518110613be357613be26152f2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613c4a30602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612fca565b602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613cae95949392919061590c565b600060405180830381600087803b158015613cc857600080fd5b505af1158015613cdc573d6000803e3d6000fd5b505050505050565b6006805490508110613d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d22906159d8565b60405180910390fd5b60066001600680549050613d3f919061555a565b81548110613d5057613d4f6152f2565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660068281548110613d8f57613d8e6152f2565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506006805480613de957613de86159f8565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905550565b6000811115613e72578173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015613e70573d6000803e3d6000fd5b505b5050565b6000806000905060005b600680549050811015613ef457613ed460068281548110613ea457613ea36152f2565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611bbb565b82613edf919061522c565b91508080613eec90615321565b915050613e80565b508091505090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f6290615a99565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613fda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613fd190615b2b565b60405180910390fd5b613fe583838361479b565b61405081604051806060016040528060268152602001615c29602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a4c9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506140e3816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fac90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516141829190614a10565b60405180910390a3505050565b6001602160146101000a81548160ff02191690831515021790555060006141d76009546141c9600e54600b54612fac90919063ffffffff16565b612fac90919063ffffffff16565b9050600081036141e7575061441d565b60004790506141f583613aa1565b600061420a82476144ea90919063ffffffff16565b9050600081111561441957600061423e8461423060095485612f8090919063ffffffff16565b612f9690919063ffffffff16565b905061426c601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682613e21565b600061429585614287600e5486612f8090919063ffffffff16565b612f9690919063ffffffff16565b90506000811180156142f65750600073ffffffffffffffffffffffffffffffffffffffff16601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b1561438557601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663febd221b82600c6040518363ffffffff1660e01b81526004016143589190614a10565b6000604051808303818588803b15801561437157600080fd5b505af193505050508015614383575060015b505b60006143ae866143a0600b5487612f8090919063ffffffff16565b612f9690919063ffffffff16565b90506143dc601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682613e21565b7f3736f4ec17d19b9b4f0fbeeb377db969da082d70e2e16221f77d5b321570e8c7878560405161440d929190615b4b565b60405180910390a15050505b5050505b6000602160146101000a81548160ff02191690831515021790555050565b6000600b5414801561444f57506000600e54145b801561445d57506000600954145b801561446b57506000601354145b6144b457600954600a81905550600b54600d81905550600e5460108190555060135460158190555060006009819055506000600b819055506000600e8190555060006013819055505b565b60008060006144c4846147a0565b905060006144db82866144ea90919063ffffffff16565b90508082935093505050915091565b600081836144f8919061555a565b905092915050565b614551816000803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fac90919063ffffffff16565b6000803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b60006145c16127106145b360135485612f8090919063ffffffff16565b612f9690919063ffffffff16565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603614637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161462e90615be6565b60405180910390fd5b6146438260008361479b565b6146ae81604051806060016040528060228152602001615c07602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a4c9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614705816002546144ea90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516147699190614a10565b60405180910390a35050565b600a54600981905550600d54600b81905550601054600e81905550601554601381905550565b505050565b6000806147e26013546147d46009546147c6600e54600b54612fac90919063ffffffff16565b612fac90919063ffffffff16565b612fac90919063ffffffff16565b905061480b6127106147fd8386612f8090919063ffffffff16565b612f9690919063ffffffff16565b915050919050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561484d578082015181840152602081019050614832565b60008484015250505050565b6000601f19601f8301169050919050565b600061487582614813565b61487f818561481e565b935061488f81856020860161482f565b61489881614859565b840191505092915050565b600060208201905081810360008301526148bd818461486a565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006148f5826148ca565b9050919050565b614905816148ea565b811461491057600080fd5b50565b600081359050614922816148fc565b92915050565b6000819050919050565b61493b81614928565b811461494657600080fd5b50565b60008135905061495881614932565b92915050565b60008060408385031215614975576149746148c5565b5b600061498385828601614913565b925050602061499485828601614949565b9150509250929050565b60008115159050919050565b6149b38161499e565b82525050565b60006020820190506149ce60008301846149aa565b92915050565b6000602082840312156149ea576149e96148c5565b5b60006149f884828501614913565b91505092915050565b614a0a81614928565b82525050565b6000602082019050614a256000830184614a01565b92915050565b6000819050919050565b6000614a50614a4b614a46846148ca565b614a2b565b6148ca565b9050919050565b6000614a6282614a35565b9050919050565b6000614a7482614a57565b9050919050565b614a8481614a69565b82525050565b6000602082019050614a9f6000830184614a7b565b92915050565b6000614ab0826148ca565b9050919050565b614ac081614aa5565b8114614acb57600080fd5b50565b600081359050614add81614ab7565b92915050565b600060208284031215614af957614af86148c5565b5b6000614b0784828501614ace565b91505092915050565b600080600060608486031215614b2957614b286148c5565b5b6000614b3786828701614913565b9350506020614b4886828701614913565b9250506040614b5986828701614949565b9150509250925092565b614b6c8161499e565b8114614b7757600080fd5b50565b600081359050614b8981614b63565b92915050565b600060208284031215614ba557614ba46148c5565b5b6000614bb384828501614b7a565b91505092915050565b600060ff82169050919050565b614bd281614bbc565b82525050565b6000602082019050614bed6000830184614bc9565b92915050565b60008060408385031215614c0a57614c096148c5565b5b6000614c1885828601614913565b9250506020614c2985828601614b7a565b9150509250929050565b600060208284031215614c4957614c486148c5565b5b6000614c5784828501614949565b91505092915050565b614c69816148ea565b82525050565b6000602082019050614c846000830184614c60565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614cbf816148ea565b82525050565b6000614cd18383614cb6565b60208301905092915050565b6000602082019050919050565b6000614cf582614c8a565b614cff8185614c95565b9350614d0a83614ca6565b8060005b83811015614d3b578151614d228882614cc5565b9750614d2d83614cdd565b925050600181019050614d0e565b5085935050505092915050565b60006020820190508181036000830152614d628184614cea565b905092915050565b600080600080600080600060e0888a031215614d8957614d886148c5565b5b6000614d978a828b01614949565b9750506020614da88a828b01614949565b9650506040614db98a828b01614949565b9550506060614dca8a828b01614949565b9450506080614ddb8a828b01614949565b93505060a0614dec8a828b01614949565b92505060c0614dfd8a828b01614949565b91505092959891949750929550565b60008060408385031215614e2357614e226148c5565b5b6000614e3185828601614913565b9250506020614e4285828601614913565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614e9357607f821691505b602082108103614ea657614ea5614e4c565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614ee260208361481e565b9150614eed82614eac565b602082019050919050565b60006020820190508181036000830152614f1181614ed5565b9050919050565b7f4164647265737320697320616c7265616479206578636c756465642066726f6d60008201527f2072657761726473000000000000000000000000000000000000000000000000602082015250565b6000614f7460288361481e565b9150614f7f82614f18565b604082019050919050565b60006020820190508181036000830152614fa381614f67565b9050919050565b6000614fb582614a57565b9050919050565b614fc581614faa565b82525050565b6000602082019050614fe06000830184614fbc565b92915050565b600081519050614ff5816148fc565b92915050565b600060208284031215615011576150106148c5565b5b600061501f84828501614fe6565b91505092915050565b600060408201905061503d6000830185614c60565b61504a6020830184614c60565b9392505050565b7f546865206162696c69747920746f20626c61636b6c697374206163636f756e7460008201527f7320686173206265656e2064697361626c65642e000000000000000000000000602082015250565b60006150ad60348361481e565b91506150b882615051565b604082019050919050565b600060208201905081810360008301526150dc816150a0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061511d82614928565b915061512883614928565b925082820261513681614928565b9150828204841483151761514d5761514c6150e3565b5b5092915050565b7f4d6178696d756d206c61756e63682073656c6c20666565206973203235250000600082015250565b600061518a601e8361481e565b915061519582615154565b602082019050919050565b600060208201905081810360008301526151b98161517d565b9050919050565b7f416c726561647920707265706172656420666f72206c61756e63680000000000600082015250565b60006151f6601b8361481e565b9150615201826151c0565b602082019050919050565b60006020820190508181036000830152615225816151e9565b9050919050565b600061523782614928565b915061524283614928565b925082820190508082111561525a576152596150e3565b5b92915050565b7f41646472657373206973206e6f74206578636c756465642066726f6d2072657760008201527f6172647300000000000000000000000000000000000000000000000000000000602082015250565b60006152bc60248361481e565b91506152c782615260565b604082019050919050565b600060208201905081810360008301526152eb816152af565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061532c82614928565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361535e5761535d6150e3565b5b600182019050919050565b7f4d61782054582073686f756c642062652061626f766520302e35250000000000600082015250565b600061539f601b8361481e565b91506153aa82615369565b602082019050919050565b600060208201905081810360008301526153ce81615392565b9050919050565b7f4665657320657863656564206d6178696d756d20616c6c6f7765642076616c7560008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b600061543160218361481e565b915061543c826153d5565b604082019050919050565b6000602082019050818103600083015261546081615424565b9050919050565b600060c08201905061547c6000830189614a01565b6154896020830188614a01565b6154966040830187614a01565b6154a36060830186614a01565b6154b06080830185614a01565b6154bd60a0830184614a01565b979650505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061552460268361481e565b915061552f826154c8565b604082019050919050565b6000602082019050818103600083015261555381615517565b9050919050565b600061556582614928565b915061557083614928565b9250828203905081811115615588576155876150e3565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006155c882614928565b91506155d383614928565b9250826155e3576155e261558e565b5b828204905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061564a60248361481e565b9150615655826155ee565b604082019050919050565b600060208201905081810360008301526156798161563d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006156dc60228361481e565b91506156e782615680565b604082019050919050565b6000602082019050818103600083015261570b816156cf565b9050919050565b7f436f6e747261637420686173206e6f74206265656e207072657061726564206660008201527f6f72206c61756e636820616e642075736572206973206e6f74206f776e657200602082015250565b600061576e603f8361481e565b915061577982615712565b604082019050919050565b6000602082019050818103600083015261579d81615761565b9050919050565b7f426c61636b6c6973746564206164647265737300000000000000000000000000600082015250565b60006157da60138361481e565b91506157e5826157a4565b602082019050919050565b60006020820190508181036000830152615809816157cd565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e7400000000000000000000000000000000000000000000000000602082015250565b600061586c60278361481e565b915061587782615810565b604082019050919050565b6000602082019050818103600083015261589b8161585f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000819050919050565b60006158f66158f16158ec846158d1565b614a2b565b614928565b9050919050565b615906816158db565b82525050565b600060a0820190506159216000830188614a01565b61592e60208301876158fd565b81810360408301526159408186614cea565b905061594f6060830185614c60565b61595c6080830184614a01565b9695505050505050565b7f496e6465782069732067726561746572207468616e206172726179206c656e6760008201527f7468000000000000000000000000000000000000000000000000000000000000602082015250565b60006159c260228361481e565b91506159cd82615966565b604082019050919050565b600060208201905081810360008301526159f1816159b5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615a8360258361481e565b9150615a8e82615a27565b604082019050919050565b60006020820190508181036000830152615ab281615a76565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000615b1560238361481e565b9150615b2082615ab9565b604082019050919050565b60006020820190508181036000830152615b4481615b08565b9050919050565b6000604082019050615b606000830185614a01565b615b6d6020830184614a01565b9392505050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615bd060218361481e565b9150615bdb82615b74565b604082019050919050565b60006020820190508181036000830152615bff81615bc3565b905091905056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220743bfe8f7c0491e3b183849af5e1a804add009cdeba70769cb9e689a1fab8a8d64736f6c63430008110033
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.