Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000 GXY
Holders
76
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Galaxy
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)
/* CERTIFIED SAFE TECHNOLOGY POWERED BY _________ _______________ _______ _____________________________ /\ ________ ___________.__ __ / _ \ \ / /\_ _____/ \ \ / _____/\_ _____/\______ \ / / \______ \ ____\_ _____/|__|____ _____/ |_ / /_\ \ Y / | __)_ / | \/ \ ___ | __)_ | _/ / / | | \_/ __ \| __) | \__ \ / \ __\ / | \ / | \/ | \ \_\ \| \ | | \ / / | ` \ ___/| \ | |/ __ \| | \ | \____|__ /\___/ /_______ /\____|__ /\______ /_______ / |____|_ / / / /_______ /\___ >___ / |__(____ /___| /__| \/ \/ \/ \/ \/ \/ \/ \/ \/ \/ \/ \/ T.me/AvengerERC T.me/Defianthub AvengerToken.io DeFiantPlatform.tech */ 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 Galaxy is RewardsToken { using SafeMath for uint256; using Address for address; uint256 private constant REWARDS_TRACKER_IDENTIFIER = 13; uint256 private constant TOTAL_SUPPLY = 1000000 * (10**9); uint256 public maxTxAmount = TOTAL_SUPPLY.mul(2).div(1000); uint256 private platformFee = 200; uint256 private _previousPlatformFee = platformFee; uint256 public devFee = 400; uint256 public sellDevFee = 400; uint256 private _previousDevFee = devFee; uint256 public rewardsFee = 0; uint256 public sellRewardsFee = 0; 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(0xA67827EF5d9Ed0C1A975C3F518B5A452B7b36023); address payable private _devWalletAddress = payable(0x4c2A194e0C6ae43486A80cd4dD4967dD0F682f79); 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 = 1000 * 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("Galaxy", "GXY") { 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 + 4 hours; } 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 <= 2000 && newDevFee <= 2000 && newSellDevFee <= 2000 && newRewardsFee <= 1000 && newSellRewardsFee <= 1000 && newburnFee <= 2000 && newSellburnFee <= 2000, "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 setPlatformWallet(address payable newPlatformWallet) external onlyOwner { _platformWalletAddress = newPlatformWallet; } 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 public 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":"newPlatformWallet","type":"address"}],"name":"setPlatformWallet","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":"trueBurn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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
6080604052620000416103e86200002d600266038d7ea4c68000620007a460201b620030f71790919060201c565b620007bc60201b6200310d1790919060201c565b60085560c8600955600954600a55610190600b55610190600c55600b54600d556000600e556000600f55600e546010556104b060115560115460125560c860135560c860145560135460155573a67827ef5d9ed0c1a975c3f518b5a452b7b36023601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550734c2a194e0c6ae43486a80cd4dd4967dd0f682f79601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006019556000601a556001601b60146101000a81548160ff0219169083151502179055506000601b60156101000a81548160ff0219169083151502179055506001602160156101000a81548160ff02191690831515021790555064e8d4a510006022556000602360006101000a81548160ff021916908315150217905550348015620001c357600080fd5b506040518060400160405280600681526020017f47616c61787900000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4758590000000000000000000000000000000000000000000000000000000000815250816003908162000241919062000e74565b50806004908162000253919062000e74565b505050600062000268620007d460201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200036c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000392919062000fc5565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000420919062000fc5565b6040518363ffffffff1660e01b81526004016200043f92919062001008565b6020604051808303816000875af11580156200045f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000485919062000fc5565b602160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080602060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200052e6200051a620007dc60201b60201c565b66038d7ea4c680006200080660201b60201c565b6001601d600062000544620007dc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601d60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601e600062000603620007dc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601e60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620006bd30620009b460201b60201c565b620006dd620006d1620007dc60201b60201c565b620009b460201b60201c565b620006f061dead620009b460201b60201c565b62000723602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620009b460201b60201c565b600160166000602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505062001329565b60008183620007b4919062001064565b905092915050565b60008183620007cc9190620010de565b905092915050565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000878576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200086f9062001177565b60405180910390fd5b6200088c6000838362000bdd60201b60201c565b620008a88160025462000be260201b620031231790919060201c565b60028190555062000906816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000be260201b620031231790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620009a89190620011aa565b60405180910390a35050565b620009c4620007d460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000a56576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a4d9062001217565b60405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161562000ae6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000add90620012af565b60405180910390fd5b6006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f9dc0c5d829ba95d4a3aa3e40791b3e0ff125f876788532b9f7f6eb543d8dfbd68160405162000bd29190620012d1565b60405180910390a150565b505050565b6000818362000bf29190620012ee565b905092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000c7c57607f821691505b60208210810362000c925762000c9162000c34565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000cfc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000cbd565b62000d08868362000cbd565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000d5562000d4f62000d498462000d20565b62000d2a565b62000d20565b9050919050565b6000819050919050565b62000d718362000d34565b62000d8962000d808262000d5c565b84845462000cca565b825550505050565b600090565b62000da062000d91565b62000dad81848462000d66565b505050565b5b8181101562000dd55762000dc960008262000d96565b60018101905062000db3565b5050565b601f82111562000e245762000dee8162000c98565b62000df98462000cad565b8101602085101562000e09578190505b62000e2162000e188562000cad565b83018262000db2565b50505b505050565b600082821c905092915050565b600062000e496000198460080262000e29565b1980831691505092915050565b600062000e64838362000e36565b9150826002028217905092915050565b62000e7f8262000bfa565b67ffffffffffffffff81111562000e9b5762000e9a62000c05565b5b62000ea7825462000c63565b62000eb482828562000dd9565b600060209050601f83116001811462000eec576000841562000ed7578287015190505b62000ee3858262000e56565b86555062000f53565b601f19841662000efc8662000c98565b60005b8281101562000f265784890151825560018201915060208501945060208101905062000eff565b8683101562000f46578489015162000f42601f89168262000e36565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000f8d8262000f60565b9050919050565b62000f9f8162000f80565b811462000fab57600080fd5b50565b60008151905062000fbf8162000f94565b92915050565b60006020828403121562000fde5762000fdd62000f5b565b5b600062000fee8482850162000fae565b91505092915050565b620010028162000f80565b82525050565b60006040820190506200101f600083018562000ff7565b6200102e602083018462000ff7565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620010718262000d20565b91506200107e8362000d20565b92508282026200108e8162000d20565b91508282048414831517620010a857620010a762001035565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620010eb8262000d20565b9150620010f88362000d20565b9250826200110b576200110a620010af565b5b828204905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200115f601f8362001116565b91506200116c8262001127565b602082019050919050565b60006020820190508181036000830152620011928162001150565b9050919050565b620011a48162000d20565b82525050565b6000602082019050620011c1600083018462001199565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620011ff60208362001116565b91506200120c82620011c7565b602082019050919050565b600060208201905081810360008301526200123281620011f0565b9050919050565b7f4164647265737320697320616c7265616479206578636c756465642066726f6d60008201527f2072657761726473000000000000000000000000000000000000000000000000602082015250565b60006200129760288362001116565b9150620012a48262001239565b604082019050919050565b60006020820190508181036000830152620012ca8162001288565b9050919050565b6000602082019050620012e8600083018462000ff7565b92915050565b6000620012fb8262000d20565b9150620013088362000d20565b925082820190508082111562001323576200132262001035565b5b92915050565b615e4880620013396000396000f3fe60806040526004361061036f5760003560e01c806373e7714a116101c6578063b609995e116100f7578063e89bcca211610095578063f42938901161006f578063f429389014610c89578063fce589d814610ca0578063fe575a8714610ccb578063fffa1dd914610d0857610376565b8063e89bcca214610c0e578063ea2f0b3714610c37578063f2fde38b14610c6057610376565b8063cf0c018b116100d1578063cf0c018b14610b54578063d543dbeb14610b7f578063da2e3bad14610ba8578063dd62ed3e14610bd157610376565b8063b609995e14610ad7578063ba385abb14610b00578063bb8d513114610b2957610376565b806398850b6411610164578063a457c2d71161013e578063a457c2d714610a07578063a9059cbb14610a44578063ada46d0a14610a81578063af01f2b214610aac57610376565b806398850b641461099a578063a0d82dc5146109c5578063a1ab19a3146109f057610376565b80638c0b5e22116101a05780638c0b5e22146108f05780638da5cb5b1461091b578063903cdec01461094657806395d89b411461096f57610376565b806373e7714a146108755780638421b5071461089e5780638831e9cf146108c757610376565b8063393344b6116102a057806349bd5a5e1161023e578063549593631161021857806354959363146107cb5780636827e764146107f657806370a0823114610821578063715018a61461085e57610376565b806349bd5a5e1461074c57806351bc3c85146107775780635342acb41461078e57610376565b80634337ac5b1161027a5780634337ac5b14610694578063437823ec146106d1578063455a4396146106fa57806348a464731461072357610376565b8063393344b614610605578063395093511461062e57806341cb87fc1461066b57610376565b806318160ddd1161030d57806326b6308d116102e757806326b6308d1461055b57806328ba35e2146105845780632bb14e1d146105af578063313ce567146105da57610376565b806318160ddd146104ca5780631f53ac02146104f557806323b872dd1461051e57610376565b8063111e037611610349578063111e037614610420578063113201fa1461044957806312ee302d146104745780631694505e1461049f57610376565b806306fdde031461037b578063095ea7b3146103a65780630e832273146103e357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d33565b60405161039d9190614a1a565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190614ad5565b610dc5565b6040516103da9190614b30565b60405180910390f35b3480156103ef57600080fd5b5061040a60048036038101906104059190614b4b565b610de3565b6040516104179190614b30565b60405180910390f35b34801561042c57600080fd5b5061044760048036038101906104429190614b4b565b610e39565b005b34801561045557600080fd5b5061045e611052565b60405161046b9190614b30565b60405180910390f35b34801561048057600080fd5b50610489611065565b6040516104969190614b87565b60405180910390f35b3480156104ab57600080fd5b506104b461106b565b6040516104c19190614c01565b60405180910390f35b3480156104d657600080fd5b506104df611091565b6040516104ec9190614b87565b60405180910390f35b34801561050157600080fd5b5061051c60048036038101906105179190614c5a565b61109b565b005b34801561052a57600080fd5b5061054560048036038101906105409190614c87565b6111ad565b6040516105529190614b30565b60405180910390f35b34801561056757600080fd5b50610582600480360381019061057d9190614d06565b611286565b005b34801561059057600080fd5b50610599611371565b6040516105a69190614b30565b60405180910390f35b3480156105bb57600080fd5b506105c4611384565b6040516105d19190614b87565b60405180910390f35b3480156105e657600080fd5b506105ef61138a565b6040516105fc9190614d4f565b60405180910390f35b34801561061157600080fd5b5061062c60048036038101906106279190614d6a565b611393565b005b34801561063a57600080fd5b5061065560048036038101906106509190614ad5565b611485565b6040516106629190614b30565b60405180910390f35b34801561067757600080fd5b50610692600480360381019061068d9190614b4b565b611538565b005b3480156106a057600080fd5b506106bb60048036038101906106b69190614b4b565b6117b3565b6040516106c89190614b30565b60405180910390f35b3480156106dd57600080fd5b506106f860048036038101906106f39190614b4b565b6117d3565b005b34801561070657600080fd5b50610721600480360381019061071c9190614d6a565b6118fc565b005b34801561072f57600080fd5b5061074a60048036038101906107459190614daa565b611a39565b005b34801561075857600080fd5b50610761611b20565b60405161076e9190614de6565b60405180910390f35b34801561078357600080fd5b5061078c611b46565b005b34801561079a57600080fd5b506107b560048036038101906107b09190614b4b565b611bf6565b6040516107c29190614b30565b60405180910390f35b3480156107d757600080fd5b506107e0611c4c565b6040516107ed9190614b87565b60405180910390f35b34801561080257600080fd5b5061080b611c52565b6040516108189190614b87565b60405180910390f35b34801561082d57600080fd5b5061084860048036038101906108439190614b4b565b611c58565b6040516108559190614b87565b60405180910390f35b34801561086a57600080fd5b50610873611ca0565b005b34801561088157600080fd5b5061089c60048036038101906108979190614d06565b611df8565b005b3480156108aa57600080fd5b506108c560048036038101906108c09190614daa565b611eac565b005b3480156108d357600080fd5b506108ee60048036038101906108e99190614c5a565b611fc9565b005b3480156108fc57600080fd5b506109056120a4565b6040516109129190614b87565b60405180910390f35b34801561092757600080fd5b506109306120aa565b60405161093d9190614de6565b60405180910390f35b34801561095257600080fd5b5061096d60048036038101906109689190614d6a565b6120d4565b005b34801561097b57600080fd5b506109846121c6565b6040516109919190614a1a565b60405180910390f35b3480156109a657600080fd5b506109af612258565b6040516109bc9190614b30565b60405180910390f35b3480156109d157600080fd5b506109da61226b565b6040516109e79190614b87565b60405180910390f35b3480156109fc57600080fd5b50610a05612271565b005b348015610a1357600080fd5b50610a2e6004803603810190610a299190614ad5565b61239e565b604051610a3b9190614b30565b60405180910390f35b348015610a5057600080fd5b50610a6b6004803603810190610a669190614ad5565b61246b565b604051610a789190614b30565b60405180910390f35b348015610a8d57600080fd5b50610a96612489565b604051610aa39190614ebf565b60405180910390f35b348015610ab857600080fd5b50610ac1612517565b604051610ace9190614b87565b60405180910390f35b348015610ae357600080fd5b50610afe6004803603810190610af99190614b4b565b61251d565b005b348015610b0c57600080fd5b50610b276004803603810190610b229190614c5a565b612775565b005b348015610b3557600080fd5b50610b3e612887565b604051610b4b9190614b87565b60405180910390f35b348015610b6057600080fd5b50610b6961288d565b604051610b769190614b87565b60405180910390f35b348015610b8b57600080fd5b50610ba66004803603810190610ba19190614daa565b612893565b005b348015610bb457600080fd5b50610bcf6004803603810190610bca9190614ee1565b6129de565b005b348015610bdd57600080fd5b50610bf86004803603810190610bf39190614f83565b612b89565b604051610c059190614b87565b60405180910390f35b348015610c1a57600080fd5b50610c356004803603810190610c309190614d06565b612c10565b005b348015610c4357600080fd5b50610c5e6004803603810190610c599190614b4b565b612cfb565b005b348015610c6c57600080fd5b50610c876004803603810190610c829190614b4b565b612e24565b005b348015610c9557600080fd5b50610c9e612fea565b005b348015610cac57600080fd5b50610cb56130b5565b604051610cc29190614b87565b60405180910390f35b348015610cd757600080fd5b50610cf26004803603810190610ced9190614b4b565b6130bb565b604051610cff9190614b30565b60405180910390f35b348015610d1457600080fd5b50610d1d6130db565b604051610d2a9190614b87565b60405180910390f35b606060038054610d4290614ff2565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6e90614ff2565b8015610dbb5780601f10610d9057610100808354040283529160200191610dbb565b820191906000526020600020905b815481529060010190602001808311610d9e57829003601f168201915b5050505050905090565b6000610dd9610dd2613139565b8484613141565b6001905092915050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610e41613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec79061506f565b60405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5490615101565b60405180910390fd5b6006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f9dc0c5d829ba95d4a3aa3e40791b3e0ff125f876788532b9f7f6eb543d8dfbd6816040516110479190614de6565b60405180910390a150565b602160159054906101000a900460ff1681565b60145481565b602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b6110a3613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611132576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111299061506f565b60405180910390fd5b80601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f31bb1993faff4f8409d7baad771f861e093ef4ce2c92c6e0cb10b82d1c7324cb816040516111a29190615142565b60405180910390a150565b60006111ba84848461330a565b61127b846111c6613139565b61127685604051806060016040528060288152602001615dc660289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061122c613139565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613bc39092919063ffffffff16565b613141565b600190509392505050565b61128e613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461131d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113149061506f565b60405180910390fd5b80602160156101000a81548160ff0219169083151502179055507fd9fca2a469120637ae54e43ab68dfdcd9354db52d615dea3d3a66a085e6f41b9816040516113669190614b30565b60405180910390a150565b602360009054906101000a900460ff1681565b600e5481565b60006009905090565b61139b613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461142a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114219061506f565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600061152e611492613139565b8461152985600160006114a3613139565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461312390919063ffffffff16565b613141565b6001905092915050565b611540613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c69061506f565b60405180910390fd5b60008190508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561161f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116439190615172565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116ce9190615172565b6040518363ffffffff1660e01b81526004016116eb92919061519f565b6020604051808303816000875af115801561170a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061172e9190615172565b602160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080602060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60166020528060005260406000206000915054906101000a900460ff1681565b6117db613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461186a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118619061506f565b60405180910390fd5b6001601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f57a00f76b5f242fb1e04b0b514a6974665a5b07bce45e39f36dabff4a042d936816040516118f19190614de6565b60405180910390a150565b611904613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198a9061506f565b60405180910390fd5b80156119de5760195442106119dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d49061523a565b60405180910390fd5b5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611a41613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac79061506f565b60405180910390fd5b633b9aca0081611ae09190615289565b6022819055507f5948780118f41f7c4577ae4619d5cbd064057bd8562d9f7b7e60324053375c0081604051611b159190614b87565b60405180910390a150565b602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611b4e613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd49061506f565b60405180910390fd5b6000611be830611c58565b9050611bf381613c18565b50565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60115481565b600b5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611ca8613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2e9061506f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611e00613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e869061506f565b60405180910390fd5b80602360006101000a81548160ff02191690831515021790555050565b611eb4613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3a9061506f565b60405180910390fd5b6109c4811115611f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7f90615317565b60405180910390fd5b806011819055507fc799be5eb19a1a6d6ba7368d21e2bc367c8a335e4a07cd3d954482e6f714d3c581604051611fbe9190614b87565b60405180910390a150565b611fd1613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612060576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120579061506f565b60405180910390fd5b80601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60085481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6120dc613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461216b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121629061506f565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6060600480546121d590614ff2565b80601f016020809104026020016040519081016040528092919081815260200182805461220190614ff2565b801561224e5780601f106122235761010080835404028352916020019161224e565b820191906000526020600020905b81548152906001019060200180831161223157829003601f168201915b5050505050905090565b601b60149054906101000a900460ff1681565b600c5481565b612279613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612308576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ff9061506f565b60405180910390fd5b601b60159054906101000a900460ff1615612358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234f90615383565b60405180910390fd5b6001601b60156101000a81548160ff021916908315150217905550620151804261238291906153a3565b6019819055506138404261239691906153a3565b601a81905550565b60006124616123ab613139565b8461245c85604051806060016040528060258152602001615dee60259139600160006123d5613139565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613bc39092919063ffffffff16565b613141565b6001905092915050565b600061247f612478613139565b848461330a565b6001905092915050565b6060600680548060200260200160405190810160405280929190818152602001828054801561250d57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116124c3575b5050505050905090565b601a5481565b612525613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ab9061506f565b60405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612640576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263790615449565b60405180910390fd5b60005b60068054905081101561273a578173ffffffffffffffffffffffffffffffffffffffff166006828154811061267b5761267a615469565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612727576000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061272281613e5b565b61273a565b808061273290615498565b915050612643565b507f87434094d24a90fbd9a8ffcf2be9818d237c06a12d126296bc1ea7d5895943348160405161276a9190614de6565b60405180910390a150565b61277d613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461280c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128039061506f565b60405180910390fd5b80601b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f535be0bbc71c839ded01277ab57f29f2e810c1ff0255bb938d7cb8e96ac8ca1a8160405161287c9190615142565b60405180910390a150565b600f5481565b60195481565b61289b613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461292a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129219061506f565b60405180910390fd5b600581101561296e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129659061552c565b60405180910390fd5b61299c6103e861298e8366038d7ea4c680006130f790919063ffffffff16565b61310d90919063ffffffff16565b6008819055507f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6008546040516129d39190614b87565b60405180910390a150565b6129e6613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6c9061506f565b60405180910390fd5b6107d08711158015612a8957506107d08611155b8015612a9757506107d08511155b8015612aa557506103e88411155b8015612ab357506103e88311155b8015612ac157506107d08211155b8015612acf57506107d08111155b612b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b05906155be565b60405180910390fd5b8660098190555085600b8190555084600c8190555083600e8190555082600f8190555081601381905550806014819055507f4f3b60f00ab30635825994816ab704331aa84771a97a768ba4ce3e7bfd888f42868686868686604051612b78969594939291906155de565b60405180910390a150505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612c18613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9e9061506f565b60405180910390fd5b80601b60146101000a81548160ff0219169083151502179055507f7d952115fd41bb443db2ae9cde6670e8dd72fefb507b7a4e0156c57e439afaf581604051612cf09190614b30565b60405180910390a150565b612d03613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d899061506f565b60405180910390fd5b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f346f6c42af1ce4b7d7951f3fa40a2fb1e78c80ab0f3d76fb4f9fec269d568f0d81604051612e199190614de6565b60405180910390a150565b612e2c613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb29061506f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f21906156b1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612ff2613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613081576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130789061506f565b60405180910390fd5b60004790506130b2601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682613f98565b50565b60135481565b601c6020528060005260406000206000915054906101000a900460ff1681565b60006130e5613fed565b6002546130f291906156d1565b905090565b600081836131059190615289565b905092915050565b6000818361311b9190615734565b905092915050565b6000818361313191906153a3565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036131b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a7906157d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361321f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321690615869565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516132fd9190614b87565b60405180910390a3505050565b601b60159054906101000a900460ff168061335e57506133286120aa565b73ffffffffffffffffffffffffffffffffffffffff16613346613139565b73ffffffffffffffffffffffffffffffffffffffff16145b61339d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613394906158fb565b60405180910390fd5b601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156134415750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b613480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347790615967565b60405180910390fd5b601b60149054906101000a900460ff16156134a5576134a0838383614073565b613bbe565b601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156135495750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561359f5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156135b4576135af838383614073565b613bbe565b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156136585750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156136a3576008548111156136a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613699906159f9565b60405180910390fd5b5b6000600e5490506000600b54905060006013549050602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361375057600c54600b81905550600f54600e8190555060145460138190555042601a541061374f57613748601154600b5461312390919063ffffffff16565b600b819055505b5b600061375b30611c58565b9050600060225482101590508080156137815750602160149054906101000a900460ff16155b80156137db5750602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614155b80156137f35750602160159054906101000a900460ff165b156138025761380182614306565b5b601d60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806138a35750601d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156138b1576138b06145b2565b5b6000806138bd8861462d565b91509150613912886000808d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461466190919063ffffffff16565b6000808c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506139a5826000808c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461312390919063ffffffff16565b6000808b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506139f081614677565b602360009054906101000a900460ff1615613a1e576000613a108961470d565b9050613a1c308261473f565b505b601f60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613a8d576000600183613a7f91906156d1565b9050613a8b8a8261473f565b505b601d60008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613b2e5750601d60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613b3c57613b3b6148ec565b5b85600b8190555086600e81905550846013819055508873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613bae9190614b87565b60405180910390a3505050505050505b505050565b6000838311158290613c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c029190614a1a565b60405180910390fd5b5082840390509392505050565b6000600267ffffffffffffffff811115613c3557613c34615a19565b5b604051908082528060200260200182016040528015613c635781602001602082028036833780820191505090505b5090503081600081518110613c7b57613c7a615469565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613d22573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613d469190615172565b81600181518110613d5a57613d59615469565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613dc130602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684613141565b602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613e25959493929190615a83565b600060405180830381600087803b158015613e3f57600080fd5b505af1158015613e53573d6000803e3d6000fd5b505050505050565b6006805490508110613ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e9990615b4f565b60405180910390fd5b60066001600680549050613eb691906156d1565b81548110613ec757613ec6615469565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660068281548110613f0657613f05615469565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506006805480613f6057613f5f615b6f565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905550565b6000811115613fe9578173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015613fe7573d6000803e3d6000fd5b505b5050565b6000806000905060005b60068054905081101561406b5761404b6006828154811061401b5761401a615469565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611c58565b8261405691906153a3565b9150808061406390615498565b915050613ff7565b508091505090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036140e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016140d990615c10565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603614151576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161414890615ca2565b60405180910390fd5b61415c838383614912565b6141c781604051806060016040528060268152602001615da0602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613bc39092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061425a816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461312390919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516142f99190614b87565b60405180910390a3505050565b6001602160146101000a81548160ff021916908315150217905550600061434e600954614340600e54600b5461312390919063ffffffff16565b61312390919063ffffffff16565b90506000810361435e5750614594565b600047905061436c83613c18565b6000614381824761466190919063ffffffff16565b905060008111156145905760006143b5846143a7600954856130f790919063ffffffff16565b61310d90919063ffffffff16565b90506143e3601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682613f98565b600061440c856143fe600e54866130f790919063ffffffff16565b61310d90919063ffffffff16565b905060008111801561446d5750600073ffffffffffffffffffffffffffffffffffffffff16601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b156144fc57601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663febd221b82600d6040518363ffffffff1660e01b81526004016144cf9190614b87565b6000604051808303818588803b1580156144e857600080fd5b505af1935050505080156144fa575060015b505b600061452586614517600b54876130f790919063ffffffff16565b61310d90919063ffffffff16565b9050614553601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682613f98565b7f3736f4ec17d19b9b4f0fbeeb377db969da082d70e2e16221f77d5b321570e8c78785604051614584929190615cc2565b60405180910390a15050505b5050505b6000602160146101000a81548160ff02191690831515021790555050565b6000600b541480156145c657506000600e54145b80156145d457506000600954145b80156145e257506000601354145b61462b57600954600a81905550600b54600d81905550600e5460108190555060135460158190555060006009819055506000600b819055506000600e8190555060006013819055505b565b600080600061463b84614917565b90506000614652828661466190919063ffffffff16565b90508082935093505050915091565b6000818361466f91906156d1565b905092915050565b6146c8816000803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461312390919063ffffffff16565b6000803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b600061473861271061472a601354856130f790919063ffffffff16565b61310d90919063ffffffff16565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036147ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016147a590615d5d565b60405180910390fd5b6147ba82600083614912565b61482581604051806060016040528060228152602001615d7e602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613bc39092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061487c8160025461466190919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516148e09190614b87565b60405180910390a35050565b600a54600981905550600d54600b81905550601054600e81905550601554601381905550565b505050565b60008061495960135461494b60095461493d600e54600b5461312390919063ffffffff16565b61312390919063ffffffff16565b61312390919063ffffffff16565b905061498261271061497483866130f790919063ffffffff16565b61310d90919063ffffffff16565b915050919050565b600081519050919050565b600082825260208201905092915050565b60005b838110156149c45780820151818401526020810190506149a9565b60008484015250505050565b6000601f19601f8301169050919050565b60006149ec8261498a565b6149f68185614995565b9350614a068185602086016149a6565b614a0f816149d0565b840191505092915050565b60006020820190508181036000830152614a3481846149e1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000614a6c82614a41565b9050919050565b614a7c81614a61565b8114614a8757600080fd5b50565b600081359050614a9981614a73565b92915050565b6000819050919050565b614ab281614a9f565b8114614abd57600080fd5b50565b600081359050614acf81614aa9565b92915050565b60008060408385031215614aec57614aeb614a3c565b5b6000614afa85828601614a8a565b9250506020614b0b85828601614ac0565b9150509250929050565b60008115159050919050565b614b2a81614b15565b82525050565b6000602082019050614b456000830184614b21565b92915050565b600060208284031215614b6157614b60614a3c565b5b6000614b6f84828501614a8a565b91505092915050565b614b8181614a9f565b82525050565b6000602082019050614b9c6000830184614b78565b92915050565b6000819050919050565b6000614bc7614bc2614bbd84614a41565b614ba2565b614a41565b9050919050565b6000614bd982614bac565b9050919050565b6000614beb82614bce565b9050919050565b614bfb81614be0565b82525050565b6000602082019050614c166000830184614bf2565b92915050565b6000614c2782614a41565b9050919050565b614c3781614c1c565b8114614c4257600080fd5b50565b600081359050614c5481614c2e565b92915050565b600060208284031215614c7057614c6f614a3c565b5b6000614c7e84828501614c45565b91505092915050565b600080600060608486031215614ca057614c9f614a3c565b5b6000614cae86828701614a8a565b9350506020614cbf86828701614a8a565b9250506040614cd086828701614ac0565b9150509250925092565b614ce381614b15565b8114614cee57600080fd5b50565b600081359050614d0081614cda565b92915050565b600060208284031215614d1c57614d1b614a3c565b5b6000614d2a84828501614cf1565b91505092915050565b600060ff82169050919050565b614d4981614d33565b82525050565b6000602082019050614d646000830184614d40565b92915050565b60008060408385031215614d8157614d80614a3c565b5b6000614d8f85828601614a8a565b9250506020614da085828601614cf1565b9150509250929050565b600060208284031215614dc057614dbf614a3c565b5b6000614dce84828501614ac0565b91505092915050565b614de081614a61565b82525050565b6000602082019050614dfb6000830184614dd7565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614e3681614a61565b82525050565b6000614e488383614e2d565b60208301905092915050565b6000602082019050919050565b6000614e6c82614e01565b614e768185614e0c565b9350614e8183614e1d565b8060005b83811015614eb2578151614e998882614e3c565b9750614ea483614e54565b925050600181019050614e85565b5085935050505092915050565b60006020820190508181036000830152614ed98184614e61565b905092915050565b600080600080600080600060e0888a031215614f0057614eff614a3c565b5b6000614f0e8a828b01614ac0565b9750506020614f1f8a828b01614ac0565b9650506040614f308a828b01614ac0565b9550506060614f418a828b01614ac0565b9450506080614f528a828b01614ac0565b93505060a0614f638a828b01614ac0565b92505060c0614f748a828b01614ac0565b91505092959891949750929550565b60008060408385031215614f9a57614f99614a3c565b5b6000614fa885828601614a8a565b9250506020614fb985828601614a8a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061500a57607f821691505b60208210810361501d5761501c614fc3565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000615059602083614995565b915061506482615023565b602082019050919050565b600060208201905081810360008301526150888161504c565b9050919050565b7f4164647265737320697320616c7265616479206578636c756465642066726f6d60008201527f2072657761726473000000000000000000000000000000000000000000000000602082015250565b60006150eb602883614995565b91506150f68261508f565b604082019050919050565b6000602082019050818103600083015261511a816150de565b9050919050565b600061512c82614bce565b9050919050565b61513c81615121565b82525050565b60006020820190506151576000830184615133565b92915050565b60008151905061516c81614a73565b92915050565b60006020828403121561518857615187614a3c565b5b60006151968482850161515d565b91505092915050565b60006040820190506151b46000830185614dd7565b6151c16020830184614dd7565b9392505050565b7f546865206162696c69747920746f20626c61636b6c697374206163636f756e7460008201527f7320686173206265656e2064697361626c65642e000000000000000000000000602082015250565b6000615224603483614995565b915061522f826151c8565b604082019050919050565b6000602082019050818103600083015261525381615217565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061529482614a9f565b915061529f83614a9f565b92508282026152ad81614a9f565b915082820484148315176152c4576152c361525a565b5b5092915050565b7f4d6178696d756d206c61756e63682073656c6c20666565206973203235250000600082015250565b6000615301601e83614995565b915061530c826152cb565b602082019050919050565b60006020820190508181036000830152615330816152f4565b9050919050565b7f416c726561647920707265706172656420666f72206c61756e63680000000000600082015250565b600061536d601b83614995565b915061537882615337565b602082019050919050565b6000602082019050818103600083015261539c81615360565b9050919050565b60006153ae82614a9f565b91506153b983614a9f565b92508282019050808211156153d1576153d061525a565b5b92915050565b7f41646472657373206973206e6f74206578636c756465642066726f6d2072657760008201527f6172647300000000000000000000000000000000000000000000000000000000602082015250565b6000615433602483614995565b915061543e826153d7565b604082019050919050565b6000602082019050818103600083015261546281615426565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006154a382614a9f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036154d5576154d461525a565b5b600182019050919050565b7f4d61782054582073686f756c642062652061626f766520302e35250000000000600082015250565b6000615516601b83614995565b9150615521826154e0565b602082019050919050565b6000602082019050818103600083015261554581615509565b9050919050565b7f4665657320657863656564206d6178696d756d20616c6c6f7765642076616c7560008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b60006155a8602183614995565b91506155b38261554c565b604082019050919050565b600060208201905081810360008301526155d78161559b565b9050919050565b600060c0820190506155f36000830189614b78565b6156006020830188614b78565b61560d6040830187614b78565b61561a6060830186614b78565b6156276080830185614b78565b61563460a0830184614b78565b979650505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061569b602683614995565b91506156a68261563f565b604082019050919050565b600060208201905081810360008301526156ca8161568e565b9050919050565b60006156dc82614a9f565b91506156e783614a9f565b92508282039050818111156156ff576156fe61525a565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061573f82614a9f565b915061574a83614a9f565b92508261575a57615759615705565b5b828204905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006157c1602483614995565b91506157cc82615765565b604082019050919050565b600060208201905081810360008301526157f0816157b4565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000615853602283614995565b915061585e826157f7565b604082019050919050565b6000602082019050818103600083015261588281615846565b9050919050565b7f436f6e747261637420686173206e6f74206265656e207072657061726564206660008201527f6f72206c61756e636820616e642075736572206973206e6f74206f776e657200602082015250565b60006158e5603f83614995565b91506158f082615889565b604082019050919050565b60006020820190508181036000830152615914816158d8565b9050919050565b7f426c61636b6c6973746564206164647265737300000000000000000000000000600082015250565b6000615951601383614995565b915061595c8261591b565b602082019050919050565b6000602082019050818103600083015261598081615944565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e7400000000000000000000000000000000000000000000000000602082015250565b60006159e3602783614995565b91506159ee82615987565b604082019050919050565b60006020820190508181036000830152615a12816159d6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000819050919050565b6000615a6d615a68615a6384615a48565b614ba2565b614a9f565b9050919050565b615a7d81615a52565b82525050565b600060a082019050615a986000830188614b78565b615aa56020830187615a74565b8181036040830152615ab78186614e61565b9050615ac66060830185614dd7565b615ad36080830184614b78565b9695505050505050565b7f496e6465782069732067726561746572207468616e206172726179206c656e6760008201527f7468000000000000000000000000000000000000000000000000000000000000602082015250565b6000615b39602283614995565b9150615b4482615add565b604082019050919050565b60006020820190508181036000830152615b6881615b2c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615bfa602583614995565b9150615c0582615b9e565b604082019050919050565b60006020820190508181036000830152615c2981615bed565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000615c8c602383614995565b9150615c9782615c30565b604082019050919050565b60006020820190508181036000830152615cbb81615c7f565b9050919050565b6000604082019050615cd76000830185614b78565b615ce46020830184614b78565b9392505050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615d47602183614995565b9150615d5282615ceb565b604082019050919050565b60006020820190508181036000830152615d7681615d3a565b905091905056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207ee65420da3b86b6fb682c3424b2dafd21d57d8de616f50ef8b3bcb749e2827c64736f6c63430008110033
Deployed Bytecode
0x60806040526004361061036f5760003560e01c806373e7714a116101c6578063b609995e116100f7578063e89bcca211610095578063f42938901161006f578063f429389014610c89578063fce589d814610ca0578063fe575a8714610ccb578063fffa1dd914610d0857610376565b8063e89bcca214610c0e578063ea2f0b3714610c37578063f2fde38b14610c6057610376565b8063cf0c018b116100d1578063cf0c018b14610b54578063d543dbeb14610b7f578063da2e3bad14610ba8578063dd62ed3e14610bd157610376565b8063b609995e14610ad7578063ba385abb14610b00578063bb8d513114610b2957610376565b806398850b6411610164578063a457c2d71161013e578063a457c2d714610a07578063a9059cbb14610a44578063ada46d0a14610a81578063af01f2b214610aac57610376565b806398850b641461099a578063a0d82dc5146109c5578063a1ab19a3146109f057610376565b80638c0b5e22116101a05780638c0b5e22146108f05780638da5cb5b1461091b578063903cdec01461094657806395d89b411461096f57610376565b806373e7714a146108755780638421b5071461089e5780638831e9cf146108c757610376565b8063393344b6116102a057806349bd5a5e1161023e578063549593631161021857806354959363146107cb5780636827e764146107f657806370a0823114610821578063715018a61461085e57610376565b806349bd5a5e1461074c57806351bc3c85146107775780635342acb41461078e57610376565b80634337ac5b1161027a5780634337ac5b14610694578063437823ec146106d1578063455a4396146106fa57806348a464731461072357610376565b8063393344b614610605578063395093511461062e57806341cb87fc1461066b57610376565b806318160ddd1161030d57806326b6308d116102e757806326b6308d1461055b57806328ba35e2146105845780632bb14e1d146105af578063313ce567146105da57610376565b806318160ddd146104ca5780631f53ac02146104f557806323b872dd1461051e57610376565b8063111e037611610349578063111e037614610420578063113201fa1461044957806312ee302d146104745780631694505e1461049f57610376565b806306fdde031461037b578063095ea7b3146103a65780630e832273146103e357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d33565b60405161039d9190614a1a565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190614ad5565b610dc5565b6040516103da9190614b30565b60405180910390f35b3480156103ef57600080fd5b5061040a60048036038101906104059190614b4b565b610de3565b6040516104179190614b30565b60405180910390f35b34801561042c57600080fd5b5061044760048036038101906104429190614b4b565b610e39565b005b34801561045557600080fd5b5061045e611052565b60405161046b9190614b30565b60405180910390f35b34801561048057600080fd5b50610489611065565b6040516104969190614b87565b60405180910390f35b3480156104ab57600080fd5b506104b461106b565b6040516104c19190614c01565b60405180910390f35b3480156104d657600080fd5b506104df611091565b6040516104ec9190614b87565b60405180910390f35b34801561050157600080fd5b5061051c60048036038101906105179190614c5a565b61109b565b005b34801561052a57600080fd5b5061054560048036038101906105409190614c87565b6111ad565b6040516105529190614b30565b60405180910390f35b34801561056757600080fd5b50610582600480360381019061057d9190614d06565b611286565b005b34801561059057600080fd5b50610599611371565b6040516105a69190614b30565b60405180910390f35b3480156105bb57600080fd5b506105c4611384565b6040516105d19190614b87565b60405180910390f35b3480156105e657600080fd5b506105ef61138a565b6040516105fc9190614d4f565b60405180910390f35b34801561061157600080fd5b5061062c60048036038101906106279190614d6a565b611393565b005b34801561063a57600080fd5b5061065560048036038101906106509190614ad5565b611485565b6040516106629190614b30565b60405180910390f35b34801561067757600080fd5b50610692600480360381019061068d9190614b4b565b611538565b005b3480156106a057600080fd5b506106bb60048036038101906106b69190614b4b565b6117b3565b6040516106c89190614b30565b60405180910390f35b3480156106dd57600080fd5b506106f860048036038101906106f39190614b4b565b6117d3565b005b34801561070657600080fd5b50610721600480360381019061071c9190614d6a565b6118fc565b005b34801561072f57600080fd5b5061074a60048036038101906107459190614daa565b611a39565b005b34801561075857600080fd5b50610761611b20565b60405161076e9190614de6565b60405180910390f35b34801561078357600080fd5b5061078c611b46565b005b34801561079a57600080fd5b506107b560048036038101906107b09190614b4b565b611bf6565b6040516107c29190614b30565b60405180910390f35b3480156107d757600080fd5b506107e0611c4c565b6040516107ed9190614b87565b60405180910390f35b34801561080257600080fd5b5061080b611c52565b6040516108189190614b87565b60405180910390f35b34801561082d57600080fd5b5061084860048036038101906108439190614b4b565b611c58565b6040516108559190614b87565b60405180910390f35b34801561086a57600080fd5b50610873611ca0565b005b34801561088157600080fd5b5061089c60048036038101906108979190614d06565b611df8565b005b3480156108aa57600080fd5b506108c560048036038101906108c09190614daa565b611eac565b005b3480156108d357600080fd5b506108ee60048036038101906108e99190614c5a565b611fc9565b005b3480156108fc57600080fd5b506109056120a4565b6040516109129190614b87565b60405180910390f35b34801561092757600080fd5b506109306120aa565b60405161093d9190614de6565b60405180910390f35b34801561095257600080fd5b5061096d60048036038101906109689190614d6a565b6120d4565b005b34801561097b57600080fd5b506109846121c6565b6040516109919190614a1a565b60405180910390f35b3480156109a657600080fd5b506109af612258565b6040516109bc9190614b30565b60405180910390f35b3480156109d157600080fd5b506109da61226b565b6040516109e79190614b87565b60405180910390f35b3480156109fc57600080fd5b50610a05612271565b005b348015610a1357600080fd5b50610a2e6004803603810190610a299190614ad5565b61239e565b604051610a3b9190614b30565b60405180910390f35b348015610a5057600080fd5b50610a6b6004803603810190610a669190614ad5565b61246b565b604051610a789190614b30565b60405180910390f35b348015610a8d57600080fd5b50610a96612489565b604051610aa39190614ebf565b60405180910390f35b348015610ab857600080fd5b50610ac1612517565b604051610ace9190614b87565b60405180910390f35b348015610ae357600080fd5b50610afe6004803603810190610af99190614b4b565b61251d565b005b348015610b0c57600080fd5b50610b276004803603810190610b229190614c5a565b612775565b005b348015610b3557600080fd5b50610b3e612887565b604051610b4b9190614b87565b60405180910390f35b348015610b6057600080fd5b50610b6961288d565b604051610b769190614b87565b60405180910390f35b348015610b8b57600080fd5b50610ba66004803603810190610ba19190614daa565b612893565b005b348015610bb457600080fd5b50610bcf6004803603810190610bca9190614ee1565b6129de565b005b348015610bdd57600080fd5b50610bf86004803603810190610bf39190614f83565b612b89565b604051610c059190614b87565b60405180910390f35b348015610c1a57600080fd5b50610c356004803603810190610c309190614d06565b612c10565b005b348015610c4357600080fd5b50610c5e6004803603810190610c599190614b4b565b612cfb565b005b348015610c6c57600080fd5b50610c876004803603810190610c829190614b4b565b612e24565b005b348015610c9557600080fd5b50610c9e612fea565b005b348015610cac57600080fd5b50610cb56130b5565b604051610cc29190614b87565b60405180910390f35b348015610cd757600080fd5b50610cf26004803603810190610ced9190614b4b565b6130bb565b604051610cff9190614b30565b60405180910390f35b348015610d1457600080fd5b50610d1d6130db565b604051610d2a9190614b87565b60405180910390f35b606060038054610d4290614ff2565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6e90614ff2565b8015610dbb5780601f10610d9057610100808354040283529160200191610dbb565b820191906000526020600020905b815481529060010190602001808311610d9e57829003601f168201915b5050505050905090565b6000610dd9610dd2613139565b8484613141565b6001905092915050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610e41613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec79061506f565b60405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5490615101565b60405180910390fd5b6006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f9dc0c5d829ba95d4a3aa3e40791b3e0ff125f876788532b9f7f6eb543d8dfbd6816040516110479190614de6565b60405180910390a150565b602160159054906101000a900460ff1681565b60145481565b602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b6110a3613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611132576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111299061506f565b60405180910390fd5b80601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f31bb1993faff4f8409d7baad771f861e093ef4ce2c92c6e0cb10b82d1c7324cb816040516111a29190615142565b60405180910390a150565b60006111ba84848461330a565b61127b846111c6613139565b61127685604051806060016040528060288152602001615dc660289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061122c613139565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613bc39092919063ffffffff16565b613141565b600190509392505050565b61128e613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461131d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113149061506f565b60405180910390fd5b80602160156101000a81548160ff0219169083151502179055507fd9fca2a469120637ae54e43ab68dfdcd9354db52d615dea3d3a66a085e6f41b9816040516113669190614b30565b60405180910390a150565b602360009054906101000a900460ff1681565b600e5481565b60006009905090565b61139b613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461142a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114219061506f565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600061152e611492613139565b8461152985600160006114a3613139565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461312390919063ffffffff16565b613141565b6001905092915050565b611540613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c69061506f565b60405180910390fd5b60008190508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561161f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116439190615172565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116ce9190615172565b6040518363ffffffff1660e01b81526004016116eb92919061519f565b6020604051808303816000875af115801561170a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061172e9190615172565b602160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080602060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60166020528060005260406000206000915054906101000a900460ff1681565b6117db613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461186a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118619061506f565b60405180910390fd5b6001601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f57a00f76b5f242fb1e04b0b514a6974665a5b07bce45e39f36dabff4a042d936816040516118f19190614de6565b60405180910390a150565b611904613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198a9061506f565b60405180910390fd5b80156119de5760195442106119dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d49061523a565b60405180910390fd5b5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611a41613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac79061506f565b60405180910390fd5b633b9aca0081611ae09190615289565b6022819055507f5948780118f41f7c4577ae4619d5cbd064057bd8562d9f7b7e60324053375c0081604051611b159190614b87565b60405180910390a150565b602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611b4e613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd49061506f565b60405180910390fd5b6000611be830611c58565b9050611bf381613c18565b50565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60115481565b600b5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611ca8613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2e9061506f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611e00613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e869061506f565b60405180910390fd5b80602360006101000a81548160ff02191690831515021790555050565b611eb4613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3a9061506f565b60405180910390fd5b6109c4811115611f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7f90615317565b60405180910390fd5b806011819055507fc799be5eb19a1a6d6ba7368d21e2bc367c8a335e4a07cd3d954482e6f714d3c581604051611fbe9190614b87565b60405180910390a150565b611fd1613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612060576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120579061506f565b60405180910390fd5b80601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60085481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6120dc613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461216b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121629061506f565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6060600480546121d590614ff2565b80601f016020809104026020016040519081016040528092919081815260200182805461220190614ff2565b801561224e5780601f106122235761010080835404028352916020019161224e565b820191906000526020600020905b81548152906001019060200180831161223157829003601f168201915b5050505050905090565b601b60149054906101000a900460ff1681565b600c5481565b612279613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612308576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ff9061506f565b60405180910390fd5b601b60159054906101000a900460ff1615612358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234f90615383565b60405180910390fd5b6001601b60156101000a81548160ff021916908315150217905550620151804261238291906153a3565b6019819055506138404261239691906153a3565b601a81905550565b60006124616123ab613139565b8461245c85604051806060016040528060258152602001615dee60259139600160006123d5613139565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613bc39092919063ffffffff16565b613141565b6001905092915050565b600061247f612478613139565b848461330a565b6001905092915050565b6060600680548060200260200160405190810160405280929190818152602001828054801561250d57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116124c3575b5050505050905090565b601a5481565b612525613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ab9061506f565b60405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612640576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263790615449565b60405180910390fd5b60005b60068054905081101561273a578173ffffffffffffffffffffffffffffffffffffffff166006828154811061267b5761267a615469565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612727576000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061272281613e5b565b61273a565b808061273290615498565b915050612643565b507f87434094d24a90fbd9a8ffcf2be9818d237c06a12d126296bc1ea7d5895943348160405161276a9190614de6565b60405180910390a150565b61277d613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461280c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128039061506f565b60405180910390fd5b80601b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f535be0bbc71c839ded01277ab57f29f2e810c1ff0255bb938d7cb8e96ac8ca1a8160405161287c9190615142565b60405180910390a150565b600f5481565b60195481565b61289b613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461292a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129219061506f565b60405180910390fd5b600581101561296e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129659061552c565b60405180910390fd5b61299c6103e861298e8366038d7ea4c680006130f790919063ffffffff16565b61310d90919063ffffffff16565b6008819055507f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6008546040516129d39190614b87565b60405180910390a150565b6129e6613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6c9061506f565b60405180910390fd5b6107d08711158015612a8957506107d08611155b8015612a9757506107d08511155b8015612aa557506103e88411155b8015612ab357506103e88311155b8015612ac157506107d08211155b8015612acf57506107d08111155b612b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b05906155be565b60405180910390fd5b8660098190555085600b8190555084600c8190555083600e8190555082600f8190555081601381905550806014819055507f4f3b60f00ab30635825994816ab704331aa84771a97a768ba4ce3e7bfd888f42868686868686604051612b78969594939291906155de565b60405180910390a150505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612c18613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9e9061506f565b60405180910390fd5b80601b60146101000a81548160ff0219169083151502179055507f7d952115fd41bb443db2ae9cde6670e8dd72fefb507b7a4e0156c57e439afaf581604051612cf09190614b30565b60405180910390a150565b612d03613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d899061506f565b60405180910390fd5b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f346f6c42af1ce4b7d7951f3fa40a2fb1e78c80ab0f3d76fb4f9fec269d568f0d81604051612e199190614de6565b60405180910390a150565b612e2c613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb29061506f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f21906156b1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612ff2613139565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613081576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130789061506f565b60405180910390fd5b60004790506130b2601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682613f98565b50565b60135481565b601c6020528060005260406000206000915054906101000a900460ff1681565b60006130e5613fed565b6002546130f291906156d1565b905090565b600081836131059190615289565b905092915050565b6000818361311b9190615734565b905092915050565b6000818361313191906153a3565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036131b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a7906157d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361321f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321690615869565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516132fd9190614b87565b60405180910390a3505050565b601b60159054906101000a900460ff168061335e57506133286120aa565b73ffffffffffffffffffffffffffffffffffffffff16613346613139565b73ffffffffffffffffffffffffffffffffffffffff16145b61339d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613394906158fb565b60405180910390fd5b601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156134415750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b613480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347790615967565b60405180910390fd5b601b60149054906101000a900460ff16156134a5576134a0838383614073565b613bbe565b601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156135495750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561359f5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156135b4576135af838383614073565b613bbe565b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156136585750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156136a3576008548111156136a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613699906159f9565b60405180910390fd5b5b6000600e5490506000600b54905060006013549050602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361375057600c54600b81905550600f54600e8190555060145460138190555042601a541061374f57613748601154600b5461312390919063ffffffff16565b600b819055505b5b600061375b30611c58565b9050600060225482101590508080156137815750602160149054906101000a900460ff16155b80156137db5750602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614155b80156137f35750602160159054906101000a900460ff165b156138025761380182614306565b5b601d60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806138a35750601d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156138b1576138b06145b2565b5b6000806138bd8861462d565b91509150613912886000808d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461466190919063ffffffff16565b6000808c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506139a5826000808c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461312390919063ffffffff16565b6000808b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506139f081614677565b602360009054906101000a900460ff1615613a1e576000613a108961470d565b9050613a1c308261473f565b505b601f60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613a8d576000600183613a7f91906156d1565b9050613a8b8a8261473f565b505b601d60008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613b2e5750601d60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613b3c57613b3b6148ec565b5b85600b8190555086600e81905550846013819055508873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613bae9190614b87565b60405180910390a3505050505050505b505050565b6000838311158290613c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c029190614a1a565b60405180910390fd5b5082840390509392505050565b6000600267ffffffffffffffff811115613c3557613c34615a19565b5b604051908082528060200260200182016040528015613c635781602001602082028036833780820191505090505b5090503081600081518110613c7b57613c7a615469565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613d22573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613d469190615172565b81600181518110613d5a57613d59615469565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613dc130602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684613141565b602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613e25959493929190615a83565b600060405180830381600087803b158015613e3f57600080fd5b505af1158015613e53573d6000803e3d6000fd5b505050505050565b6006805490508110613ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e9990615b4f565b60405180910390fd5b60066001600680549050613eb691906156d1565b81548110613ec757613ec6615469565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660068281548110613f0657613f05615469565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506006805480613f6057613f5f615b6f565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905550565b6000811115613fe9578173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015613fe7573d6000803e3d6000fd5b505b5050565b6000806000905060005b60068054905081101561406b5761404b6006828154811061401b5761401a615469565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611c58565b8261405691906153a3565b9150808061406390615498565b915050613ff7565b508091505090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036140e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016140d990615c10565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603614151576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161414890615ca2565b60405180910390fd5b61415c838383614912565b6141c781604051806060016040528060268152602001615da0602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613bc39092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061425a816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461312390919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516142f99190614b87565b60405180910390a3505050565b6001602160146101000a81548160ff021916908315150217905550600061434e600954614340600e54600b5461312390919063ffffffff16565b61312390919063ffffffff16565b90506000810361435e5750614594565b600047905061436c83613c18565b6000614381824761466190919063ffffffff16565b905060008111156145905760006143b5846143a7600954856130f790919063ffffffff16565b61310d90919063ffffffff16565b90506143e3601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682613f98565b600061440c856143fe600e54866130f790919063ffffffff16565b61310d90919063ffffffff16565b905060008111801561446d5750600073ffffffffffffffffffffffffffffffffffffffff16601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b156144fc57601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663febd221b82600d6040518363ffffffff1660e01b81526004016144cf9190614b87565b6000604051808303818588803b1580156144e857600080fd5b505af1935050505080156144fa575060015b505b600061452586614517600b54876130f790919063ffffffff16565b61310d90919063ffffffff16565b9050614553601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682613f98565b7f3736f4ec17d19b9b4f0fbeeb377db969da082d70e2e16221f77d5b321570e8c78785604051614584929190615cc2565b60405180910390a15050505b5050505b6000602160146101000a81548160ff02191690831515021790555050565b6000600b541480156145c657506000600e54145b80156145d457506000600954145b80156145e257506000601354145b61462b57600954600a81905550600b54600d81905550600e5460108190555060135460158190555060006009819055506000600b819055506000600e8190555060006013819055505b565b600080600061463b84614917565b90506000614652828661466190919063ffffffff16565b90508082935093505050915091565b6000818361466f91906156d1565b905092915050565b6146c8816000803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461312390919063ffffffff16565b6000803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b600061473861271061472a601354856130f790919063ffffffff16565b61310d90919063ffffffff16565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036147ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016147a590615d5d565b60405180910390fd5b6147ba82600083614912565b61482581604051806060016040528060228152602001615d7e602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613bc39092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061487c8160025461466190919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516148e09190614b87565b60405180910390a35050565b600a54600981905550600d54600b81905550601054600e81905550601554601381905550565b505050565b60008061495960135461494b60095461493d600e54600b5461312390919063ffffffff16565b61312390919063ffffffff16565b61312390919063ffffffff16565b905061498261271061497483866130f790919063ffffffff16565b61310d90919063ffffffff16565b915050919050565b600081519050919050565b600082825260208201905092915050565b60005b838110156149c45780820151818401526020810190506149a9565b60008484015250505050565b6000601f19601f8301169050919050565b60006149ec8261498a565b6149f68185614995565b9350614a068185602086016149a6565b614a0f816149d0565b840191505092915050565b60006020820190508181036000830152614a3481846149e1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000614a6c82614a41565b9050919050565b614a7c81614a61565b8114614a8757600080fd5b50565b600081359050614a9981614a73565b92915050565b6000819050919050565b614ab281614a9f565b8114614abd57600080fd5b50565b600081359050614acf81614aa9565b92915050565b60008060408385031215614aec57614aeb614a3c565b5b6000614afa85828601614a8a565b9250506020614b0b85828601614ac0565b9150509250929050565b60008115159050919050565b614b2a81614b15565b82525050565b6000602082019050614b456000830184614b21565b92915050565b600060208284031215614b6157614b60614a3c565b5b6000614b6f84828501614a8a565b91505092915050565b614b8181614a9f565b82525050565b6000602082019050614b9c6000830184614b78565b92915050565b6000819050919050565b6000614bc7614bc2614bbd84614a41565b614ba2565b614a41565b9050919050565b6000614bd982614bac565b9050919050565b6000614beb82614bce565b9050919050565b614bfb81614be0565b82525050565b6000602082019050614c166000830184614bf2565b92915050565b6000614c2782614a41565b9050919050565b614c3781614c1c565b8114614c4257600080fd5b50565b600081359050614c5481614c2e565b92915050565b600060208284031215614c7057614c6f614a3c565b5b6000614c7e84828501614c45565b91505092915050565b600080600060608486031215614ca057614c9f614a3c565b5b6000614cae86828701614a8a565b9350506020614cbf86828701614a8a565b9250506040614cd086828701614ac0565b9150509250925092565b614ce381614b15565b8114614cee57600080fd5b50565b600081359050614d0081614cda565b92915050565b600060208284031215614d1c57614d1b614a3c565b5b6000614d2a84828501614cf1565b91505092915050565b600060ff82169050919050565b614d4981614d33565b82525050565b6000602082019050614d646000830184614d40565b92915050565b60008060408385031215614d8157614d80614a3c565b5b6000614d8f85828601614a8a565b9250506020614da085828601614cf1565b9150509250929050565b600060208284031215614dc057614dbf614a3c565b5b6000614dce84828501614ac0565b91505092915050565b614de081614a61565b82525050565b6000602082019050614dfb6000830184614dd7565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614e3681614a61565b82525050565b6000614e488383614e2d565b60208301905092915050565b6000602082019050919050565b6000614e6c82614e01565b614e768185614e0c565b9350614e8183614e1d565b8060005b83811015614eb2578151614e998882614e3c565b9750614ea483614e54565b925050600181019050614e85565b5085935050505092915050565b60006020820190508181036000830152614ed98184614e61565b905092915050565b600080600080600080600060e0888a031215614f0057614eff614a3c565b5b6000614f0e8a828b01614ac0565b9750506020614f1f8a828b01614ac0565b9650506040614f308a828b01614ac0565b9550506060614f418a828b01614ac0565b9450506080614f528a828b01614ac0565b93505060a0614f638a828b01614ac0565b92505060c0614f748a828b01614ac0565b91505092959891949750929550565b60008060408385031215614f9a57614f99614a3c565b5b6000614fa885828601614a8a565b9250506020614fb985828601614a8a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061500a57607f821691505b60208210810361501d5761501c614fc3565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000615059602083614995565b915061506482615023565b602082019050919050565b600060208201905081810360008301526150888161504c565b9050919050565b7f4164647265737320697320616c7265616479206578636c756465642066726f6d60008201527f2072657761726473000000000000000000000000000000000000000000000000602082015250565b60006150eb602883614995565b91506150f68261508f565b604082019050919050565b6000602082019050818103600083015261511a816150de565b9050919050565b600061512c82614bce565b9050919050565b61513c81615121565b82525050565b60006020820190506151576000830184615133565b92915050565b60008151905061516c81614a73565b92915050565b60006020828403121561518857615187614a3c565b5b60006151968482850161515d565b91505092915050565b60006040820190506151b46000830185614dd7565b6151c16020830184614dd7565b9392505050565b7f546865206162696c69747920746f20626c61636b6c697374206163636f756e7460008201527f7320686173206265656e2064697361626c65642e000000000000000000000000602082015250565b6000615224603483614995565b915061522f826151c8565b604082019050919050565b6000602082019050818103600083015261525381615217565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061529482614a9f565b915061529f83614a9f565b92508282026152ad81614a9f565b915082820484148315176152c4576152c361525a565b5b5092915050565b7f4d6178696d756d206c61756e63682073656c6c20666565206973203235250000600082015250565b6000615301601e83614995565b915061530c826152cb565b602082019050919050565b60006020820190508181036000830152615330816152f4565b9050919050565b7f416c726561647920707265706172656420666f72206c61756e63680000000000600082015250565b600061536d601b83614995565b915061537882615337565b602082019050919050565b6000602082019050818103600083015261539c81615360565b9050919050565b60006153ae82614a9f565b91506153b983614a9f565b92508282019050808211156153d1576153d061525a565b5b92915050565b7f41646472657373206973206e6f74206578636c756465642066726f6d2072657760008201527f6172647300000000000000000000000000000000000000000000000000000000602082015250565b6000615433602483614995565b915061543e826153d7565b604082019050919050565b6000602082019050818103600083015261546281615426565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006154a382614a9f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036154d5576154d461525a565b5b600182019050919050565b7f4d61782054582073686f756c642062652061626f766520302e35250000000000600082015250565b6000615516601b83614995565b9150615521826154e0565b602082019050919050565b6000602082019050818103600083015261554581615509565b9050919050565b7f4665657320657863656564206d6178696d756d20616c6c6f7765642076616c7560008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b60006155a8602183614995565b91506155b38261554c565b604082019050919050565b600060208201905081810360008301526155d78161559b565b9050919050565b600060c0820190506155f36000830189614b78565b6156006020830188614b78565b61560d6040830187614b78565b61561a6060830186614b78565b6156276080830185614b78565b61563460a0830184614b78565b979650505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061569b602683614995565b91506156a68261563f565b604082019050919050565b600060208201905081810360008301526156ca8161568e565b9050919050565b60006156dc82614a9f565b91506156e783614a9f565b92508282039050818111156156ff576156fe61525a565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061573f82614a9f565b915061574a83614a9f565b92508261575a57615759615705565b5b828204905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006157c1602483614995565b91506157cc82615765565b604082019050919050565b600060208201905081810360008301526157f0816157b4565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000615853602283614995565b915061585e826157f7565b604082019050919050565b6000602082019050818103600083015261588281615846565b9050919050565b7f436f6e747261637420686173206e6f74206265656e207072657061726564206660008201527f6f72206c61756e636820616e642075736572206973206e6f74206f776e657200602082015250565b60006158e5603f83614995565b91506158f082615889565b604082019050919050565b60006020820190508181036000830152615914816158d8565b9050919050565b7f426c61636b6c6973746564206164647265737300000000000000000000000000600082015250565b6000615951601383614995565b915061595c8261591b565b602082019050919050565b6000602082019050818103600083015261598081615944565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e7400000000000000000000000000000000000000000000000000602082015250565b60006159e3602783614995565b91506159ee82615987565b604082019050919050565b60006020820190508181036000830152615a12816159d6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000819050919050565b6000615a6d615a68615a6384615a48565b614ba2565b614a9f565b9050919050565b615a7d81615a52565b82525050565b600060a082019050615a986000830188614b78565b615aa56020830187615a74565b8181036040830152615ab78186614e61565b9050615ac66060830185614dd7565b615ad36080830184614b78565b9695505050505050565b7f496e6465782069732067726561746572207468616e206172726179206c656e6760008201527f7468000000000000000000000000000000000000000000000000000000000000602082015250565b6000615b39602283614995565b9150615b4482615add565b604082019050919050565b60006020820190508181036000830152615b6881615b2c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615bfa602583614995565b9150615c0582615b9e565b604082019050919050565b60006020820190508181036000830152615c2981615bed565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000615c8c602383614995565b9150615c9782615c30565b604082019050919050565b60006020820190508181036000830152615cbb81615c7f565b9050919050565b6000604082019050615cd76000830185614b78565b615ce46020830184614b78565b9392505050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615d47602183614995565b9150615d5282615ceb565b604082019050919050565b60006020820190508181036000830152615d7681615d3a565b905091905056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207ee65420da3b86b6fb682c3424b2dafd21d57d8de616f50ef8b3bcb749e2827c64736f6c63430008110033
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.