Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000 BOTF
Holders
34
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
21,385.295905691690681001 BOTFValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Token
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity Standard Json-Input format)
/* https://t.me/botfriendsportal https://twitter.com/botfriendseth */ // SPDX-License-Identifier: No License pragma solidity 0.8.19; import "./ERC20.sol"; import "./ERC20Burnable.sol"; import "./Ownable.sol"; import "./CoinDividendTracker.sol"; import "./Initializable.sol"; import "./IUniswapV2Factory.sol"; import "./IUniswapV2Pair.sol"; import "./IUniswapV2Router01.sol"; import "./IUniswapV2Router02.sol"; contract Token is ERC20, ERC20Burnable, Ownable, DividendTrackerFunctions, Initializable { uint256 public swapThreshold; uint256 private _aPending; uint256 private _mPending; uint256 private _sPending; uint256 private _dPending; uint256 private _deploidPending; uint256 private _liquidityPending; uint256 private _rewardsPending; address public aAddress; uint16[3] public aFees; address public mAddress; uint16[3] public mFees; address public sAddress; uint16[3] public sFees; address public dAddress; uint16[3] public dFees; address public deploidAddress; uint16[3] public deploidFees; address public lpTokensReceiver; uint16[3] public liquidityFees; uint16[3] public rewardsFees; mapping (address => bool) public isExcludedFromFees; uint16[3] public totalFees; bool private _swapping; IUniswapV2Router02 public routerV2; address public pairV2; mapping (address => bool) public AMMPairs; mapping (address => bool) public isExcludedFromLimits; uint256 public maxWalletAmount; event SwapThresholdUpdated(uint256 swapThreshold); event aAddressUpdated(address aAddress); event aFeesUpdated(uint16 buyFee, uint16 sellFee, uint16 transferFee); event aFeeSent(address recipient, uint256 amount); event mAddressUpdated(address mAddress); event mFeesUpdated(uint16 buyFee, uint16 sellFee, uint16 transferFee); event mFeeSent(address recipient, uint256 amount); event sAddressUpdated(address sAddress); event sFeesUpdated(uint16 buyFee, uint16 sellFee, uint16 transferFee); event sFeeSent(address recipient, uint256 amount); event dAddressUpdated(address dAddress); event dFeesUpdated(uint16 buyFee, uint16 sellFee, uint16 transferFee); event dFeeSent(address recipient, uint256 amount); event deploidAddressUpdated(address deploidAddress); event deploidFeesUpdated(uint16 buyFee, uint16 sellFee, uint16 transferFee); event deploidFeeSent(address recipient, uint256 amount); event LpTokensReceiverUpdated(address lpTokensReceiver); event liquidityFeesUpdated(uint16 buyFee, uint16 sellFee, uint16 transferFee); event liquidityAdded(uint amountToken, uint amountCoin, uint liquidity); event ForceLiquidityAdded(uint256 leftoverTokens, uint256 unaddedTokens); event rewardsFeesUpdated(uint16 buyFee, uint16 sellFee, uint16 transferFee); event rewardsFeeSent(uint256 amount); event ExcludeFromFees(address indexed account, bool isExcluded); event RouterV2Updated(address indexed routerV2); event AMMPairsUpdated(address indexed AMMPair, bool isPair); event ExcludeFromLimits(address indexed account, bool isExcluded); event MaxWalletAmountUpdated(uint256 maxWalletAmount); constructor() ERC20(unicode"BOT Friends - TG Chat: t.me/botfriendsportal", unicode"BOTF") { address supplyRecipient = 0xf340f8E620Ae7d00e151d756355666C3583a8365; updateSwapThreshold(1000000 * (10 ** decimals()) / 10); aAddressSetup(0xc8525D9E1973dBce7A7DB0959753d15FA9C42fd3); aFeesSetup(25, 25, 25); mAddressSetup(0x1c5B0c132c5437fC7371A2bdcacd7F9868Be8728); mFeesSetup(25, 25, 25); sAddressSetup(0x2EC0142A9D32c73350809a959620DCBbB063f7F2); sFeesSetup(25, 25, 25); dAddressSetup(0xb2EE1b174e986998eFB83002B8EDacE1709Cb61D); dFeesSetup(25, 25, 25); deploidAddressSetup(0xf340f8E620Ae7d00e151d756355666C3583a8365); deploidFeesSetup(300, 300, 300); lpTokensReceiverSetup(0x000000000000000000000000000000000000dEaD); liquidityFeesSetup(100, 100, 100); _deployDividendTracker(21600, 100000 * (10 ** decimals()) / 10); gasForProcessingSetup(300000); rewardsFeesSetup(100, 100, 100); _excludeFromDividends(supplyRecipient, true); _excludeFromDividends(address(this), true); _excludeFromDividends(address(0), true); _excludeFromDividends(address(dividendTracker), true); excludeFromFees(supplyRecipient, true); excludeFromFees(address(this), true); _excludeFromLimits(supplyRecipient, true); _excludeFromLimits(address(this), true); _excludeFromLimits(address(0), true); _excludeFromLimits(aAddress, true); _excludeFromLimits(mAddress, true); _excludeFromLimits(sAddress, true); _excludeFromLimits(dAddress, true); _excludeFromLimits(deploidAddress, true); updateMaxWalletAmount(500000 * (10 ** decimals()) / 10); _mint(supplyRecipient, 10000000 * (10 ** decimals()) / 10); _transferOwnership(0xf340f8E620Ae7d00e151d756355666C3583a8365); } function initialize(address _router) initializer external { _updateRouterV2(_router); } receive() external payable {} function decimals() public pure override returns (uint8) { return 18; } function _swapTokensForCoin(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = routerV2.WETH(); _approve(address(this), address(routerV2), tokenAmount); routerV2.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount, 0, path, address(this), block.timestamp); } function updateSwapThreshold(uint256 _swapThreshold) public onlyOwner { swapThreshold = _swapThreshold; emit SwapThresholdUpdated(_swapThreshold); } function getAllPending() public view returns (uint256) { return 0 + _aPending + _mPending + _sPending + _dPending + _deploidPending + _liquidityPending + _rewardsPending; } function aAddressSetup(address _newAddress) public onlyOwner { require(_newAddress != address(0), "TaxesDefaultRouterWallet: Wallet tax recipient cannot be a 0x0 address"); aAddress = _newAddress; excludeFromFees(_newAddress, true); emit aAddressUpdated(_newAddress); } function aFeesSetup(uint16 _buyFee, uint16 _sellFee, uint16 _transferFee) public onlyOwner { totalFees[0] = totalFees[0] - aFees[0] + _buyFee; totalFees[1] = totalFees[1] - aFees[1] + _sellFee; totalFees[2] = totalFees[2] - aFees[2] + _transferFee; require(totalFees[0] <= 2500 && totalFees[1] <= 2500 && totalFees[2] <= 2500, "TaxesDefaultRouter: Cannot exceed max total fee of 25%"); aFees = [_buyFee, _sellFee, _transferFee]; emit aFeesUpdated(_buyFee, _sellFee, _transferFee); } function mAddressSetup(address _newAddress) public onlyOwner { require(_newAddress != address(0), "TaxesDefaultRouterWallet: Wallet tax recipient cannot be a 0x0 address"); mAddress = _newAddress; excludeFromFees(_newAddress, true); emit mAddressUpdated(_newAddress); } function mFeesSetup(uint16 _buyFee, uint16 _sellFee, uint16 _transferFee) public onlyOwner { totalFees[0] = totalFees[0] - mFees[0] + _buyFee; totalFees[1] = totalFees[1] - mFees[1] + _sellFee; totalFees[2] = totalFees[2] - mFees[2] + _transferFee; require(totalFees[0] <= 2500 && totalFees[1] <= 2500 && totalFees[2] <= 2500, "TaxesDefaultRouter: Cannot exceed max total fee of 25%"); mFees = [_buyFee, _sellFee, _transferFee]; emit mFeesUpdated(_buyFee, _sellFee, _transferFee); } function sAddressSetup(address _newAddress) public onlyOwner { require(_newAddress != address(0), "TaxesDefaultRouterWallet: Wallet tax recipient cannot be a 0x0 address"); sAddress = _newAddress; excludeFromFees(_newAddress, true); emit sAddressUpdated(_newAddress); } function sFeesSetup(uint16 _buyFee, uint16 _sellFee, uint16 _transferFee) public onlyOwner { totalFees[0] = totalFees[0] - sFees[0] + _buyFee; totalFees[1] = totalFees[1] - sFees[1] + _sellFee; totalFees[2] = totalFees[2] - sFees[2] + _transferFee; require(totalFees[0] <= 2500 && totalFees[1] <= 2500 && totalFees[2] <= 2500, "TaxesDefaultRouter: Cannot exceed max total fee of 25%"); sFees = [_buyFee, _sellFee, _transferFee]; emit sFeesUpdated(_buyFee, _sellFee, _transferFee); } function dAddressSetup(address _newAddress) public onlyOwner { require(_newAddress != address(0), "TaxesDefaultRouterWallet: Wallet tax recipient cannot be a 0x0 address"); dAddress = _newAddress; excludeFromFees(_newAddress, true); emit dAddressUpdated(_newAddress); } function dFeesSetup(uint16 _buyFee, uint16 _sellFee, uint16 _transferFee) public onlyOwner { totalFees[0] = totalFees[0] - dFees[0] + _buyFee; totalFees[1] = totalFees[1] - dFees[1] + _sellFee; totalFees[2] = totalFees[2] - dFees[2] + _transferFee; require(totalFees[0] <= 2500 && totalFees[1] <= 2500 && totalFees[2] <= 2500, "TaxesDefaultRouter: Cannot exceed max total fee of 25%"); dFees = [_buyFee, _sellFee, _transferFee]; emit dFeesUpdated(_buyFee, _sellFee, _transferFee); } function deploidAddressSetup(address _newAddress) public onlyOwner { require(_newAddress != address(0), "TaxesDefaultRouterWallet: Wallet tax recipient cannot be a 0x0 address"); deploidAddress = _newAddress; excludeFromFees(_newAddress, true); emit deploidAddressUpdated(_newAddress); } function deploidFeesSetup(uint16 _buyFee, uint16 _sellFee, uint16 _transferFee) public onlyOwner { totalFees[0] = totalFees[0] - deploidFees[0] + _buyFee; totalFees[1] = totalFees[1] - deploidFees[1] + _sellFee; totalFees[2] = totalFees[2] - deploidFees[2] + _transferFee; require(totalFees[0] <= 2500 && totalFees[1] <= 2500 && totalFees[2] <= 2500, "TaxesDefaultRouter: Cannot exceed max total fee of 25%"); deploidFees = [_buyFee, _sellFee, _transferFee]; emit deploidFeesUpdated(_buyFee, _sellFee, _transferFee); } function _swapAndLiquify(uint256 tokenAmount) private returns (uint256 leftover) { // Sub-optimal method for supplying liquidity uint256 halfAmount = tokenAmount / 2; uint256 otherHalf = tokenAmount - halfAmount; _swapTokensForCoin(halfAmount); uint256 coinBalance = address(this).balance; if (coinBalance > 0) { (uint amountToken, uint amountCoin, uint liquidity) = _addLiquidity(otherHalf, coinBalance); emit liquidityAdded(amountToken, amountCoin, liquidity); return otherHalf - amountToken; } else { return otherHalf; } } function _addLiquidity(uint256 tokenAmount, uint256 coinAmount) private returns (uint, uint, uint) { _approve(address(this), address(routerV2), tokenAmount); return routerV2.addLiquidityETH{value: coinAmount}(address(this), tokenAmount, 0, 0, lpTokensReceiver, block.timestamp); } function addLiquidityFromLeftoverTokens() external onlyOwner { uint256 leftoverTokens = balanceOf(address(this)) - getAllPending(); uint256 unaddedTokens = _swapAndLiquify(leftoverTokens); emit ForceLiquidityAdded(leftoverTokens, unaddedTokens); } function lpTokensReceiverSetup(address _newAddress) public onlyOwner { lpTokensReceiver = _newAddress; emit LpTokensReceiverUpdated(_newAddress); } function liquidityFeesSetup(uint16 _buyFee, uint16 _sellFee, uint16 _transferFee) public onlyOwner { totalFees[0] = totalFees[0] - liquidityFees[0] + _buyFee; totalFees[1] = totalFees[1] - liquidityFees[1] + _sellFee; totalFees[2] = totalFees[2] - liquidityFees[2] + _transferFee; require(totalFees[0] <= 2500 && totalFees[1] <= 2500 && totalFees[2] <= 2500, "TaxesDefaultRouter: Cannot exceed max total fee of 25%"); liquidityFees = [_buyFee, _sellFee, _transferFee]; emit liquidityFeesUpdated(_buyFee, _sellFee, _transferFee); } function _sendDividends(uint256 tokenAmount) private { _swapTokensForCoin(tokenAmount); uint256 dividends = address(this).balance; if (dividends > 0) { (bool success,) = payable(address(dividendTracker)).call{value: dividends}(""); if (success) emit rewardsFeeSent(dividends); } } function excludeFromDividends(address account, bool isExcluded) external onlyOwner { _excludeFromDividends(account, isExcluded); } function _excludeFromDividends(address account, bool isExcluded) internal override { dividendTracker.excludeFromDividends(account, balanceOf(account), isExcluded); } function rewardsFeesSetup(uint16 _buyFee, uint16 _sellFee, uint16 _transferFee) public onlyOwner { totalFees[0] = totalFees[0] - rewardsFees[0] + _buyFee; totalFees[1] = totalFees[1] - rewardsFees[1] + _sellFee; totalFees[2] = totalFees[2] - rewardsFees[2] + _transferFee; require(totalFees[0] <= 2500 && totalFees[1] <= 2500 && totalFees[2] <= 2500, "TaxesDefaultRouter: Cannot exceed max total fee of 25%"); rewardsFees = [_buyFee, _sellFee, _transferFee]; emit rewardsFeesUpdated(_buyFee, _sellFee, _transferFee); } function _burn(address account, uint256 amount) internal override { super._burn(account, amount); dividendTracker.setBalance(account, balanceOf(account)); } function _mint(address account, uint256 amount) internal override { super._mint(account, amount); dividendTracker.setBalance(account, balanceOf(account)); } function excludeFromFees(address account, bool isExcluded) public onlyOwner { isExcludedFromFees[account] = isExcluded; emit ExcludeFromFees(account, isExcluded); } function _transfer( address from, address to, uint256 amount ) internal override { bool canSwap = getAllPending() >= swapThreshold; if (!_swapping && !AMMPairs[from] && canSwap) { _swapping = true; if (false || _aPending > 0 || _mPending > 0 || _sPending > 0 || _dPending > 0 || _deploidPending > 0) { uint256 token2Swap = 0 + _aPending + _mPending + _sPending + _dPending + _deploidPending; bool success = false; _swapTokensForCoin(token2Swap); uint256 coinsReceived = address(this).balance; uint256 aPortion = coinsReceived * _aPending / token2Swap; if (aPortion > 0) { success = payable(aAddress).send(aPortion); if (success) { emit aFeeSent(aAddress, aPortion); } } _aPending = 0; uint256 mPortion = coinsReceived * _mPending / token2Swap; if (mPortion > 0) { success = payable(mAddress).send(mPortion); if (success) { emit mFeeSent(mAddress, mPortion); } } _mPending = 0; uint256 sPortion = coinsReceived * _sPending / token2Swap; if (sPortion > 0) { success = payable(sAddress).send(sPortion); if (success) { emit sFeeSent(sAddress, sPortion); } } _sPending = 0; uint256 dPortion = coinsReceived * _dPending / token2Swap; if (dPortion > 0) { success = payable(dAddress).send(dPortion); if (success) { emit dFeeSent(dAddress, dPortion); } } _dPending = 0; uint256 deploidPortion = coinsReceived * _deploidPending / token2Swap; if (deploidPortion > 0) { success = payable(deploidAddress).send(deploidPortion); if (success) { emit deploidFeeSent(deploidAddress, deploidPortion); } } _deploidPending = 0; } if (_liquidityPending > 0) { _swapAndLiquify(_liquidityPending); _liquidityPending = 0; } if (_rewardsPending > 0 && getNumberOfDividendTokenHolders() > 0) { _sendDividends(_rewardsPending); _rewardsPending = 0; } _swapping = false; } if (!_swapping && amount > 0 && to != address(routerV2) && !isExcludedFromFees[from] && !isExcludedFromFees[to]) { uint256 fees = 0; uint8 txType = 3; if (AMMPairs[from]) { if (totalFees[0] > 0) txType = 0; } else if (AMMPairs[to]) { if (totalFees[1] > 0) txType = 1; } else if (totalFees[2] > 0) txType = 2; if (txType < 3) { fees = amount * totalFees[txType] / 10000; amount -= fees; _aPending += fees * aFees[txType] / totalFees[txType]; _mPending += fees * mFees[txType] / totalFees[txType]; _sPending += fees * sFees[txType] / totalFees[txType]; _dPending += fees * dFees[txType] / totalFees[txType]; _deploidPending += fees * deploidFees[txType] / totalFees[txType]; _liquidityPending += fees * liquidityFees[txType] / totalFees[txType]; _rewardsPending += fees * rewardsFees[txType] / totalFees[txType]; } if (fees > 0) { super._transfer(from, address(this), fees); } } super._transfer(from, to, amount); dividendTracker.setBalance(from, balanceOf(from)); dividendTracker.setBalance(to, balanceOf(to)); if (!_swapping) try dividendTracker.process(gasForProcessing) {} catch {} } function _updateRouterV2(address router) private { routerV2 = IUniswapV2Router02(router); pairV2 = IUniswapV2Factory(routerV2.factory()).createPair(address(this), routerV2.WETH()); _excludeFromDividends(router, true); _excludeFromLimits(router, true); _setAMMPair(pairV2, true); emit RouterV2Updated(router); } function setAMMPair(address pair, bool isPair) external onlyOwner { require(pair != pairV2, "DefaultRouter: Cannot remove initial pair from list"); _setAMMPair(pair, isPair); } function _setAMMPair(address pair, bool isPair) private { AMMPairs[pair] = isPair; if (isPair) { _excludeFromDividends(pair, true); _excludeFromLimits(pair, true); } emit AMMPairsUpdated(pair, isPair); } function excludeFromLimits(address account, bool isExcluded) external onlyOwner { _excludeFromLimits(account, isExcluded); } function _excludeFromLimits(address account, bool isExcluded) internal { isExcludedFromLimits[account] = isExcluded; emit ExcludeFromLimits(account, isExcluded); } function updateMaxWalletAmount(uint256 _maxWalletAmount) public onlyOwner { require(_maxWalletAmount >= _maxWalletSafeLimit(), "MaxWallet: Limit too low"); maxWalletAmount = _maxWalletAmount; emit MaxWalletAmountUpdated(_maxWalletAmount); } function _maxWalletSafeLimit() private view returns (uint256) { return totalSupply() / 1000; } function _beforeTokenTransfer(address from, address to, uint256 amount) internal override { super._beforeTokenTransfer(from, to, amount); } function _afterTokenTransfer(address from, address to, uint256 amount) internal override { if (!isExcludedFromLimits[to]) { require(balanceOf(to) <= maxWalletAmount, "MaxWallet: Cannot exceed max wallet limit"); } super._afterTokenTransfer(from, to, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./IERC20Metadata.sol"; import "./Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; import "./ERC20.sol"; import "./Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; 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. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: No License import "./ERC20.sol"; import "./Ownable.sol"; pragma solidity ^0.8.0; library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } } library SafeMathInt { function toUint256Safe(int256 a) internal pure returns (uint256) { require(a >= 0); return uint256(a); } } /// @title Dividend-Paying Token Interface /// @author Roger Wu (https://github.com/roger-wu) /// @dev An interface for a dividend-paying token contract. interface DividendPayingTokenInterface { function dividendOf(address _owner) external view returns (uint256); event DividendsDistributed(address indexed from, uint256 weiAmount); event DividendWithdrawn(address indexed to, uint256 weiAmount); } /// @title Dividend-Paying Token Optional Interface /// @author Roger Wu (https://github.com/roger-wu) /// @dev OPTIONAL functions for a dividend-paying token contract. interface DividendPayingTokenOptionalInterface { function withdrawableDividendOf(address _owner) external view returns (uint256); function withdrawnDividendOf(address _owner) external view returns (uint256); function accumulativeDividendOf(address _owner) external view returns (uint256); } /// @title Dividend-Paying Token /// @author Roger Wu (https://github.com/roger-wu) /// @dev A mintable ERC20 token that allows anyone to pay and distribute ether /// to token holders as dividends and allows token holders to withdraw their dividends. /// Reference: the source code of PoWH3D: https://etherscan.io/address/0xB3775fB83F7D12A36E0475aBdD1FCA35c091efBe#code contract DividendPayingToken is ERC20, DividendPayingTokenInterface, DividendPayingTokenOptionalInterface { using SafeMathUint for uint256; using SafeMathInt for int256; uint256 constant internal magnitude = 2**128; uint256 internal magnifiedDividendPerShare; mapping(address => int256) internal magnifiedDividendCorrections; mapping(address => uint256) internal withdrawnDividends; uint256 public totalDividendsDistributed; constructor(string memory _name, string memory _symbol) ERC20(_name, _symbol) {} receive() external payable { distributeDividends(); } function distributeDividends() public payable { require(totalSupply() > 0); if (msg.value > 0) { magnifiedDividendPerShare = magnifiedDividendPerShare + (msg.value * magnitude / totalSupply()); emit DividendsDistributed(msg.sender, msg.value); totalDividendsDistributed = totalDividendsDistributed + msg.value; } } function _withdrawDividend(address account) internal returns(uint256) { uint256 withdrawableDividend = withdrawableDividendOf(account); if (withdrawableDividend > 0) { withdrawnDividends[account] = withdrawnDividends[account] + withdrawableDividend; bool success = payable(account).send(withdrawableDividend); if (success) { emit DividendWithdrawn(account, withdrawableDividend); return withdrawableDividend; } else { withdrawnDividends[account] = withdrawnDividends[account] - withdrawableDividend; return 0; } } return 0; } function dividendOf(address account) public view override returns(uint256) { return withdrawableDividendOf(account); } function withdrawableDividendOf(address account) public view override returns(uint256) { return accumulativeDividendOf(account) - withdrawnDividends[account]; } function withdrawnDividendOf(address account) public view override returns(uint256) { return withdrawnDividends[account]; } function accumulativeDividendOf(address account) public view override returns(uint256) { return ((magnifiedDividendPerShare * balanceOf(account)).toInt256Safe() + magnifiedDividendCorrections[account]).toUint256Safe() / magnitude; } function _mint(address account, uint256 value) internal override { super._mint(account, value); magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account] - (magnifiedDividendPerShare * value).toInt256Safe(); } function _burn(address account, uint256 value) internal override { super._burn(account, value); magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account] + (magnifiedDividendPerShare * value).toInt256Safe(); } function _setBalance(address account, uint256 newBalance) internal { uint256 currentBalance = balanceOf(account); if(newBalance > currentBalance) _mint(account, newBalance - currentBalance); else if(newBalance < currentBalance) _burn(account, currentBalance - newBalance); } } library IterableMapping { // Iterable mapping from address to uint; struct Map { address[] keys; mapping(address => uint) values; mapping(address => uint) indexOf; mapping(address => bool) inserted; } function get(Map storage map, address key) public view returns (uint) { return map.values[key]; } function getIndexOfKey(Map storage map, address key) public view returns (int) { if(!map.inserted[key]) { return -1; } return int(map.indexOf[key]); } function getKeyAtIndex(Map storage map, uint index) public view returns (address) { return map.keys[index]; } function size(Map storage map) public view returns (uint) { return map.keys.length; } function set(Map storage map, address key, uint val) public { if (map.inserted[key]) { map.values[key] = val; } else { map.inserted[key] = true; map.values[key] = val; map.indexOf[key] = map.keys.length; map.keys.push(key); } } function remove(Map storage map, address key) public { if (!map.inserted[key]) { return; } delete map.inserted[key]; delete map.values[key]; uint index = map.indexOf[key]; uint lastIndex = map.keys.length - 1; address lastKey = map.keys[lastIndex]; map.indexOf[lastKey] = index; delete map.indexOf[key]; map.keys[index] = lastKey; map.keys.pop(); } } contract DividendTracker is Ownable, DividendPayingToken { using IterableMapping for IterableMapping.Map; IterableMapping.Map private tokenHoldersMap; uint256 public lastProcessedIndex; mapping(address => bool) public isExcludedFromDividends; mapping(address => uint256) public lastClaimTimes; uint256 public claimWait; uint256 public minimumTokenBalanceForDividends; event ExcludeFromDividends(address indexed account, bool isExcluded); event ClaimWaitUpdated(uint256 claimWait); event ProcessedDividendTracker(uint256 iterations, uint256 claims); constructor(uint256 _claimWait, uint256 _minimumTokenBalance) DividendPayingToken("DividendTracker", "DividendTracker") { claimWaitSetup(_claimWait); minimumTokenBalanceForDividends = _minimumTokenBalance; } function excludeFromDividends(address account, uint256 balance, bool isExcluded) external onlyOwner { if (isExcluded) { require(!isExcludedFromDividends[account], "DividendTracker: This address is already excluded from dividends"); isExcludedFromDividends[account] = true; _setBalance(account, 0); tokenHoldersMap.remove(account); } else { require(isExcludedFromDividends[account], "DividendTracker: This address is already included in dividends"); isExcludedFromDividends[account] = false; setBalance(account, balance); } emit ExcludeFromDividends(account, isExcluded); } function claimWaitSetup(uint256 newClaimWait) public onlyOwner { require(newClaimWait >= 60 && newClaimWait <= 7 days, "DividendTracker: Claim wait time must be between 1 minute and 7 days"); claimWait = newClaimWait; emit ClaimWaitUpdated(newClaimWait); } function getNumberOfTokenHolders() external view returns (uint256) { return tokenHoldersMap.keys.length; } function getAccountData(address _account) public view returns ( address account, int256 index, int256 iterationsUntilProcessed, uint256 withdrawableDividends, uint256 totalDividends, uint256 lastClaimTime, uint256 nextClaimTime, uint256 secondsUntilAutoClaimAvailable ) { account = _account; index = tokenHoldersMap.getIndexOfKey(account); iterationsUntilProcessed = -1; if (index >= 0) { if (uint256(index) > lastProcessedIndex) { iterationsUntilProcessed = index - int256(lastProcessedIndex); } else { uint256 processesUntilEndOfArray = tokenHoldersMap.keys.length > lastProcessedIndex ? tokenHoldersMap.keys.length - lastProcessedIndex : 0; iterationsUntilProcessed = index + int256(processesUntilEndOfArray); } } withdrawableDividends = withdrawableDividendOf(account); totalDividends = accumulativeDividendOf(account); lastClaimTime = lastClaimTimes[account]; nextClaimTime = lastClaimTime > 0 ? lastClaimTime + claimWait : 0; secondsUntilAutoClaimAvailable = nextClaimTime > block.timestamp ? nextClaimTime - block.timestamp : 0; } function getAccountDataAtIndex(uint256 index) public view returns ( address, int256, int256, uint256, uint256, uint256, uint256, uint256 ) { if (index >= tokenHoldersMap.size()) return (address(0), -1, -1, 0, 0, 0, 0, 0); address account = tokenHoldersMap.getKeyAtIndex(index); return getAccountData(account); } function claim(address account) public onlyOwner returns (bool) { uint256 amount = _withdrawDividend(account); if (amount > 0) { lastClaimTimes[account] = block.timestamp; return true; } return false; } function _canAutoClaim(uint256 lastClaimTime) private view returns (bool) { if (block.timestamp < lastClaimTime) return false; return block.timestamp - lastClaimTime >= claimWait; } function setBalance(address account, uint256 newBalance) public onlyOwner { if (!isExcludedFromDividends[account]) { if (newBalance >= minimumTokenBalanceForDividends) { _setBalance(account, newBalance); tokenHoldersMap.set(account, newBalance); } else { _setBalance(account, 0); tokenHoldersMap.remove(account); } } } function process(uint256 gas) external onlyOwner returns(uint256 iterations, uint256 claims) { uint256 numberOfTokenHolders = tokenHoldersMap.keys.length; if (numberOfTokenHolders == 0) return (0, 0); uint256 _lastProcessedIndex = lastProcessedIndex; uint256 gasUsed = 0; uint256 gasLeft = gasleft(); iterations = 0; claims = 0; while (gasUsed < gas && iterations < numberOfTokenHolders) { _lastProcessedIndex++; if (_lastProcessedIndex >= tokenHoldersMap.keys.length) _lastProcessedIndex = 0; address account = tokenHoldersMap.keys[_lastProcessedIndex]; if (_canAutoClaim(lastClaimTimes[account])) { if (claim(account)) { claims++; } } iterations++; uint256 newGasLeft = gasleft(); if (gasLeft > newGasLeft) gasUsed = gasUsed + (gasLeft - newGasLeft); gasLeft = newGasLeft; } lastProcessedIndex = _lastProcessedIndex; emit ProcessedDividendTracker(iterations, claims); } } abstract contract DividendTrackerFunctions is Ownable { DividendTracker public dividendTracker; uint256 public gasForProcessing; event DeployedDividendTracker(address indexed dividendTracker); event GasForProcessingUpdated(uint256 gasForProcessing); function _deployDividendTracker(uint256 claimWait, uint256 minimumTokenBalance) internal { dividendTracker = new DividendTracker(claimWait, minimumTokenBalance); emit DeployedDividendTracker(address(dividendTracker)); } function gasForProcessingSetup(uint256 _gasForProcessing) public onlyOwner { require(_gasForProcessing >= 200_000 && _gasForProcessing <= 500_000, "DividendTracker: gasForProcessing must be between 200k and 500k units"); gasForProcessing = _gasForProcessing; emit GasForProcessingUpdated(_gasForProcessing); } function claimWaitSetup(uint256 claimWait) external onlyOwner { dividendTracker.claimWaitSetup(claimWait); } function _excludeFromDividends(address account, bool isExcluded) internal virtual; function isExcludedFromDividends(address account) public view returns (bool) { return dividendTracker.isExcludedFromDividends(account); } function claim() external returns(bool) { return dividendTracker.claim(msg.sender); } function getClaimWait() external view returns (uint256) { return dividendTracker.claimWait(); } function getTotalDividendsDistributed() external view returns (uint256) { return dividendTracker.totalDividendsDistributed(); } function withdrawableDividendOf(address account) public view returns (uint256) { return dividendTracker.withdrawableDividendOf(account); } function dividendTokenBalanceOf(address account) public view returns (uint256) { return dividendTracker.balanceOf(account); } function dividendTokenTotalSupply() public view returns (uint256) { return dividendTracker.totalSupply(); } function getAccountDividendsInfo(address account) external view returns ( address, int256, int256, uint256, uint256, uint256, uint256, uint256 ) { return dividendTracker.getAccountData(account); } function getAccountDividendsInfoAtIndex(uint256 index) external view returns ( address, int256, int256, uint256, uint256, uint256, uint256, uint256 ) { return dividendTracker.getAccountDataAtIndex(index); } function getLastProcessedIndex() external view returns (uint256) { return dividendTracker.lastProcessedIndex(); } function getNumberOfDividendTokenHolders() public view returns (uint256) { return dividendTracker.getNumberOfTokenHolders(); } function process(uint256 gas) external returns(uint256 iterations, uint256 claims) { return dividendTracker.process(gas); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { require(_initializing || !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } }
pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
pragma solidity >=0.5.0; 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.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": { "CoinDividendTracker.sol": { "IterableMapping": "0x31ee4a53Bd2C1c339662DfFB973017EF81A6bad5" } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"AMMPair","type":"address"},{"indexed":false,"internalType":"bool","name":"isPair","type":"bool"}],"name":"AMMPairsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"dividendTracker","type":"address"}],"name":"DeployedDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"leftoverTokens","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"unaddedTokens","type":"uint256"}],"name":"ForceLiquidityAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"gasForProcessing","type":"uint256"}],"name":"GasForProcessingUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"lpTokensReceiver","type":"address"}],"name":"LpTokensReceiverUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWalletAmount","type":"uint256"}],"name":"MaxWalletAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"routerV2","type":"address"}],"name":"RouterV2Updated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"swapThreshold","type":"uint256"}],"name":"SwapThresholdUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"aAddress","type":"address"}],"name":"aAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"aFeeSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"buyFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"sellFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"transferFee","type":"uint16"}],"name":"aFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"dAddress","type":"address"}],"name":"dAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"dFeeSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"buyFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"sellFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"transferFee","type":"uint16"}],"name":"dFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"deploidAddress","type":"address"}],"name":"deploidAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"deploidFeeSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"buyFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"sellFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"transferFee","type":"uint16"}],"name":"deploidFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountToken","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountCoin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"liquidity","type":"uint256"}],"name":"liquidityAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"buyFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"sellFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"transferFee","type":"uint16"}],"name":"liquidityFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"mAddress","type":"address"}],"name":"mAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mFeeSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"buyFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"sellFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"transferFee","type":"uint16"}],"name":"mFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rewardsFeeSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"buyFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"sellFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"transferFee","type":"uint16"}],"name":"rewardsFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sAddress","type":"address"}],"name":"sAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"sFeeSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"buyFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"sellFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"transferFee","type":"uint16"}],"name":"sFeesUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"AMMPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"aAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"aAddressSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"aFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_buyFee","type":"uint16"},{"internalType":"uint16","name":"_sellFee","type":"uint16"},{"internalType":"uint16","name":"_transferFee","type":"uint16"}],"name":"aFeesSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"addLiquidityFromLeftoverTokens","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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"claimWait","type":"uint256"}],"name":"claimWaitSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"dAddressSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"dFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_buyFee","type":"uint16"},{"internalType":"uint16","name":"_sellFee","type":"uint16"},{"internalType":"uint16","name":"_transferFee","type":"uint16"}],"name":"dFeesSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":"deploidAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"deploidAddressSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"deploidFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_buyFee","type":"uint16"},{"internalType":"uint16","name":"_sellFee","type":"uint16"},{"internalType":"uint16","name":"_transferFee","type":"uint16"}],"name":"deploidFeesSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"dividendTokenBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTokenTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract DividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"excludeFromDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"excludeFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gasForProcessing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_gasForProcessing","type":"uint256"}],"name":"gasForProcessingSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountDividendsInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getAccountDividendsInfoAtIndex","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAllPending","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getClaimWait","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastProcessedIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfDividendTokenHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_router","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromDividends","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"liquidityFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_buyFee","type":"uint16"},{"internalType":"uint16","name":"_sellFee","type":"uint16"},{"internalType":"uint16","name":"_transferFee","type":"uint16"}],"name":"liquidityFeesSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lpTokensReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"lpTokensReceiverSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"mAddressSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"mFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_buyFee","type":"uint16"},{"internalType":"uint16","name":"_sellFee","type":"uint16"},{"internalType":"uint16","name":"_transferFee","type":"uint16"}],"name":"mFeesSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxWalletAmount","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":"pairV2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"gas","type":"uint256"}],"name":"process","outputs":[{"internalType":"uint256","name":"iterations","type":"uint256"},{"internalType":"uint256","name":"claims","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rewardsFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_buyFee","type":"uint16"},{"internalType":"uint16","name":"_sellFee","type":"uint16"},{"internalType":"uint16","name":"_transferFee","type":"uint16"}],"name":"rewardsFeesSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"routerV2","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"sAddressSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"sFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_buyFee","type":"uint16"},{"internalType":"uint16","name":"_sellFee","type":"uint16"},{"internalType":"uint16","name":"_transferFee","type":"uint16"}],"name":"sFeesSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"isPair","type":"bool"}],"name":"setAMMPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"totalFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_swapThreshold","type":"uint256"}],"name":"updateSwapThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060600160405280602d815260200162008941602d91396040805180820190915260048152632127aa2360e11b6020820152600362000055838262001d80565b50600462000064828262001d80565b505050620000816200007b620003a960201b60201c565b620003ad565b73f340f8e620ae7d00e151d756355666c3583a8365620000ca600a620000a960128262001f61565b620000b890620f424062001f79565b620000c4919062001f93565b620003ff565b620000e973c8525d9e1973dbce7a7db0959753d15fa9c42fd362000445565b620000f76019808062000520565b62000116731c5b0c132c5437fc7371a2bdcacd7f9868be872862000712565b6200012460198080620007e9565b62000143732ec0142a9d32c73350809a959620dcbbb063f7f2620009d3565b620001516019808062000aaa565b6200017073b2ee1b174e986998efb83002b8edace1709cb61d62000c94565b6200017e6019808062000d6b565b6200019d73f340f8e620ae7d00e151d756355666c3583a836562000f55565b620001ac61012c80806200102c565b620001b961dead62001216565b620001c7606480806200126f565b620001fe615460600a620001dd60128262001f61565b620001ec90620186a062001f79565b620001f8919062001f93565b62001459565b6200020c620493e0620014de565b6200021a60648080620015b7565b62000227816001620017a1565b62000234306001620017a1565b6200024260006001620017a1565b6006546200025b906001600160a01b03166001620017a1565b6200026881600162001840565b6200027530600162001840565b62000282816001620018aa565b6200028f306001620018aa565b6200029d60006001620018aa565b601154620002b6906001600160a01b03166001620018aa565b601354620002cf906001600160a01b03166001620018aa565b601554620002e8906001600160a01b03166001620018aa565b60175462000301906001600160a01b03166001620018aa565b6019546200031a906001600160a01b03166001620018aa565b6200034e600a6200032d60128262001f61565b6200033c906207a12062001f79565b62000348919062001f93565b62001903565b6200038381600a6200036260128262001f61565b62000371906298968062001f79565b6200037d919062001f93565b6200199e565b620003a273f340f8e620ae7d00e151d756355666c3583a8365620003ad565b506200200f565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200040962001a0e565b60098190556040518181527f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd06476906020015b60405180910390a150565b6200044f62001a0e565b6001600160a01b038116620004be5760405162461bcd60e51b815260206004820152604660248201526000805160206200892183398151915260448201526000805160206200898e83398151915260648201526564647265737360d01b608482015260a4015b60405180910390fd5b601180546001600160a01b0319166001600160a01b038316179055620004e681600162001840565b6040516001600160a01b03821681527f0e2bc3cd453e10efd7122b9cdf987f2037d6cdf9d238c09391f7eaa711591b74906020016200043a565b6200052a62001a0e565b601254601f548491620005459161ffff918216911662001fb6565b62000551919062001fdb565b601f805461ffff191661ffff928316179081905560125484926200058392620100009283900482169290041662001fb6565b6200058f919062001fdb565b601f805463ffff000019166201000061ffff9384160217908190556012548392620005ca926401000000009283900482169290041662001fb6565b620005d6919062001fdb565b601f805461ffff9283166401000000000261ffff60201b19821681179092556109c49083169190921617118015906200061e5750601f546109c46201000090910461ffff1611155b80156200063c5750601f546109c464010000000090910461ffff1611155b6200068e5760405162461bcd60e51b815260206004820152603660248201526000805160206200896e8339815191526044820152600080516020620089ae8339815191526064820152608401620004b5565b6040805160608101825261ffff80861682528481166020830152831691810191909152620006c190601290600362001c22565b506040805161ffff808616825280851660208301528316918101919091527fdc3c0b8b2b19f87dabfe7bba4a1e80438f5b02b8fdd0f89ed08daa0ca76d2c58906060015b60405180910390a1505050565b6200071c62001a0e565b6001600160a01b038116620007875760405162461bcd60e51b815260206004820152604660248201526000805160206200892183398151915260448201526000805160206200898e83398151915260648201526564647265737360d01b608482015260a401620004b5565b601380546001600160a01b0319166001600160a01b038316179055620007af81600162001840565b6040516001600160a01b03821681527f20601d6e6ad1b4a2eda460c3e20d36f84afc68a1f2db45d0d58ce52078cea7d3906020016200043a565b620007f362001a0e565b601454601f5484916200080e9161ffff918216911662001fb6565b6200081a919062001fdb565b601f805461ffff191661ffff928316179081905560145484926200084c92620100009283900482169290041662001fb6565b62000858919062001fdb565b601f805463ffff000019166201000061ffff938416021790819055601454839262000893926401000000009283900482169290041662001fb6565b6200089f919062001fdb565b601f805461ffff9283166401000000000261ffff60201b19821681179092556109c4908316919092161711801590620008e75750601f546109c46201000090910461ffff1611155b8015620009055750601f546109c464010000000090910461ffff1611155b620009575760405162461bcd60e51b815260206004820152603660248201526000805160206200896e8339815191526044820152600080516020620089ae8339815191526064820152608401620004b5565b6040805160608101825261ffff808616825284811660208301528316918101919091526200098a90601490600362001c22565b506040805161ffff808616825280851660208301528316918101919091527f20d37acfdb725f9926e5dfddb9c0f448925db29d782ad353b41084b0aad51ee49060600162000705565b620009dd62001a0e565b6001600160a01b03811662000a485760405162461bcd60e51b815260206004820152604660248201526000805160206200892183398151915260448201526000805160206200898e83398151915260648201526564647265737360d01b608482015260a401620004b5565b601580546001600160a01b0319166001600160a01b03831617905562000a7081600162001840565b6040516001600160a01b03821681527f01fe4a01f78c42f30db88b42e778a4934e6a9d27a8e4c6a3afb3f115e53e6786906020016200043a565b62000ab462001a0e565b601654601f54849162000acf9161ffff918216911662001fb6565b62000adb919062001fdb565b601f805461ffff191661ffff9283161790819055601654849262000b0d92620100009283900482169290041662001fb6565b62000b19919062001fdb565b601f805463ffff000019166201000061ffff938416021790819055601654839262000b54926401000000009283900482169290041662001fb6565b62000b60919062001fdb565b601f805461ffff9283166401000000000261ffff60201b19821681179092556109c490831691909216171180159062000ba85750601f546109c46201000090910461ffff1611155b801562000bc65750601f546109c464010000000090910461ffff1611155b62000c185760405162461bcd60e51b815260206004820152603660248201526000805160206200896e8339815191526044820152600080516020620089ae8339815191526064820152608401620004b5565b6040805160608101825261ffff8086168252848116602083015283169181019190915262000c4b90601690600362001c22565b506040805161ffff808616825280851660208301528316918101919091527fd4f8d5251d187bad9b5fcb3154d391e4886b79a90ef6e5c6074be3e81a94eb959060600162000705565b62000c9e62001a0e565b6001600160a01b03811662000d095760405162461bcd60e51b815260206004820152604660248201526000805160206200892183398151915260448201526000805160206200898e83398151915260648201526564647265737360d01b608482015260a401620004b5565b601780546001600160a01b0319166001600160a01b03831617905562000d3181600162001840565b6040516001600160a01b03821681527f2dd1fb17226de935881c09a15398f7ec3fc6f764298e17173c1d3bf18cf8fb9a906020016200043a565b62000d7562001a0e565b601854601f54849162000d909161ffff918216911662001fb6565b62000d9c919062001fdb565b601f805461ffff191661ffff9283161790819055601854849262000dce92620100009283900482169290041662001fb6565b62000dda919062001fdb565b601f805463ffff000019166201000061ffff938416021790819055601854839262000e15926401000000009283900482169290041662001fb6565b62000e21919062001fdb565b601f805461ffff9283166401000000000261ffff60201b19821681179092556109c490831691909216171180159062000e695750601f546109c46201000090910461ffff1611155b801562000e875750601f546109c464010000000090910461ffff1611155b62000ed95760405162461bcd60e51b815260206004820152603660248201526000805160206200896e8339815191526044820152600080516020620089ae8339815191526064820152608401620004b5565b6040805160608101825261ffff8086168252848116602083015283169181019190915262000f0c90601890600362001c22565b506040805161ffff808616825280851660208301528316918101919091527f10712b44f9af3e120ff6c1a2ea878ea05f15c4018bc1ed40852cc0291d17d2339060600162000705565b62000f5f62001a0e565b6001600160a01b03811662000fca5760405162461bcd60e51b815260206004820152604660248201526000805160206200892183398151915260448201526000805160206200898e83398151915260648201526564647265737360d01b608482015260a401620004b5565b601980546001600160a01b0319166001600160a01b03831617905562000ff281600162001840565b6040516001600160a01b03821681527f826b2655b812cc79d61beba1469dc77b9930873e611cb932faf630852710ccc9906020016200043a565b6200103662001a0e565b601a54601f548491620010519161ffff918216911662001fb6565b6200105d919062001fdb565b601f805461ffff191661ffff9283161790819055601a5484926200108f92620100009283900482169290041662001fb6565b6200109b919062001fdb565b601f805463ffff000019166201000061ffff938416021790819055601a548392620010d6926401000000009283900482169290041662001fb6565b620010e2919062001fdb565b601f805461ffff9283166401000000000261ffff60201b19821681179092556109c49083169190921617118015906200112a5750601f546109c46201000090910461ffff1611155b8015620011485750601f546109c464010000000090910461ffff1611155b6200119a5760405162461bcd60e51b815260206004820152603660248201526000805160206200896e8339815191526044820152600080516020620089ae8339815191526064820152608401620004b5565b6040805160608101825261ffff80861682528481166020830152831691810191909152620011cd90601a90600362001c22565b506040805161ffff808616825280851660208301528316918101919091527f3c4bb863dd5894f1f8c5257698677ba1e8ca8c660262ef60a3758c73bdad15009060600162000705565b6200122062001a0e565b601b80546001600160a01b0319166001600160a01b0383169081179091556040519081527f1c75c7e1dcc8d5c68921dfeb6ac2a2a801ac4e38b295aec5c41e03fdc1ef0c4f906020016200043a565b6200127962001a0e565b601c54601f548491620012949161ffff918216911662001fb6565b620012a0919062001fdb565b601f805461ffff191661ffff9283161790819055601c548492620012d292620100009283900482169290041662001fb6565b620012de919062001fdb565b601f805463ffff000019166201000061ffff938416021790819055601c54839262001319926401000000009283900482169290041662001fb6565b62001325919062001fdb565b601f805461ffff9283166401000000000261ffff60201b19821681179092556109c49083169190921617118015906200136d5750601f546109c46201000090910461ffff1611155b80156200138b5750601f546109c464010000000090910461ffff1611155b620013dd5760405162461bcd60e51b815260206004820152603660248201526000805160206200896e8339815191526044820152600080516020620089ae8339815191526064820152608401620004b5565b6040805160608101825261ffff808616825284811660208301528316918101919091526200141090601c90600362001c22565b506040805161ffff808616825280851660208301528316918101919091527f2524ccb75260c9a50c71af1740c212c049a01232ef122061416b51815ec57a189060600162000705565b8181604051620014699062001cbf565b9182526020820152604001604051809103906000f08015801562001491573d6000803e3d6000fd5b50600680546001600160a01b0319166001600160a01b039290921691821790556040517f5a9eee832e9ca9f7d2110f2cee781d010262c4c3d74b9f1e4ca1b8e3861a8d0190600090a25050565b620014e862001a0e565b62030d408110158015620014ff57506207a1208111155b620015815760405162461bcd60e51b815260206004820152604560248201527f4469766964656e64547261636b65723a20676173466f7250726f63657373696e60448201527f67206d757374206265206265747765656e203230306b20616e64203530306b20606482015264756e69747360d81b608482015260a401620004b5565b60078190556040518181527f1662a2324457a200b9556dfe949641639b99480ee6b448aefcfb97ee61ec2417906020016200043a565b620015c162001a0e565b601d54601f548491620015dc9161ffff918216911662001fb6565b620015e8919062001fdb565b601f805461ffff191661ffff9283161790819055601d5484926200161a92620100009283900482169290041662001fb6565b62001626919062001fdb565b601f805463ffff000019166201000061ffff938416021790819055601d54839262001661926401000000009283900482169290041662001fb6565b6200166d919062001fdb565b601f805461ffff9283166401000000000261ffff60201b19821681179092556109c4908316919092161711801590620016b55750601f546109c46201000090910461ffff1611155b8015620016d35750601f546109c464010000000090910461ffff1611155b620017255760405162461bcd60e51b815260206004820152603660248201526000805160206200896e8339815191526044820152600080516020620089ae8339815191526064820152608401620004b5565b6040805160608101825261ffff808616825284811660208301528316918101919091526200175890601d90600362001c22565b506040805161ffff808616825280851660208301528316918101919091527f4cc46242539a322b08449caf679672d54580fc99e4b7a4b3c6f21e322ad604689060600162000705565b6006546001600160a01b031663d1fbb84e83620017d3816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b039092166004830152602482015283151560448201526064015b600060405180830381600087803b1580156200182357600080fd5b505af115801562001838573d6000803e3d6000fd5b505050505050565b6200184a62001a0e565b6001600160a01b0382166000818152601e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b6001600160a01b038216600081815260236020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291016200189e565b6200190d62001a0e565b6200191762001a6c565b811015620019685760405162461bcd60e51b815260206004820152601860248201527f4d617857616c6c65743a204c696d697420746f6f206c6f7700000000000000006044820152606401620004b5565b60248190556040518181527f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e001906020016200043a565b620019aa828262001a8c565b6006546001600160a01b031663e30443bc83620019dc816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b039092166004830152602482015260440162001808565b6005546001600160a01b0316331462001a6a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620004b5565b565b60006103e862001a7b60025490565b62001a87919062001f93565b905090565b6001600160a01b03821662001ae45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004b5565b62001af26000838362001b6b565b806002600082825462001b06919062001ff9565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a362001b676000838362001b83565b5050565b62001b7e8383836001600160e01b038416565b505050565b6001600160a01b03821660009081526023602052604090205460ff1662001b6b576024546001600160a01b038316600090815260208190526040902054111562001b6b5760405162461bcd60e51b815260206004820152602960248201527f4d617857616c6c65743a2043616e6e6f7420657863656564206d61782077616c6044820152681b195d081b1a5b5a5d60ba1b6064820152608401620004b5565b60018301918390821562001cad5791602002820160005b8382111562001c7b57835183826101000a81548161ffff021916908361ffff160217905550926020019260020160208160010104928301926001030262001c39565b801562001cab5782816101000a81549061ffff021916905560020160208160010104928301926001030262001c7b565b505b5062001cbb92915062001ccd565b5090565b6121e4806200673d83390190565b5b8082111562001cbb576000815560010162001cce565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168062001d0f57607f821691505b60208210810362001d3057634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562001b7e57600081815260208120601f850160051c8101602086101562001d5f5750805b601f850160051c820191505b81811015620018385782815560010162001d6b565b81516001600160401b0381111562001d9c5762001d9c62001ce4565b62001db48162001dad845462001cfa565b8462001d36565b602080601f83116001811462001dec576000841562001dd35750858301515b600019600386901b1c1916600185901b17855562001838565b600085815260208120601f198616915b8281101562001e1d5788860151825594840194600190910190840162001dfc565b508582101562001e3c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562001ea357816000190482111562001e875762001e8762001e4c565b8085161562001e9557918102915b93841c939080029062001e67565b509250929050565b60008262001ebc5750600162001f5b565b8162001ecb5750600062001f5b565b816001811462001ee4576002811462001eef5762001f0f565b600191505062001f5b565b60ff84111562001f035762001f0362001e4c565b50506001821b62001f5b565b5060208310610133831016604e8410600b841016171562001f34575081810a62001f5b565b62001f40838362001e62565b806000190482111562001f575762001f5762001e4c565b0290505b92915050565b600062001f7260ff84168362001eab565b9392505050565b808202811582820484141762001f5b5762001f5b62001e4c565b60008262001fb157634e487b7160e01b600052601260045260246000fd5b500490565b61ffff82811682821603908082111562001fd45762001fd462001e4c565b5092915050565b61ffff81811683821601908082111562001fd45762001fd462001e4c565b8082018082111562001f5b5762001f5b62001e4c565b61471e806200201f6000396000f3fe60806040526004361061043f5760003560e01c80638062651a11610234578063c02466681161012e578063e364617d116100b6578063f27fd2541161007a578063f27fd25414610d3a578063f2fde38b14610d5a578063f3bf087e14610d7a578063fe31572314610d9a578063ffb2c47914610dba57600080fd5b8063e364617d14610cb0578063e626815814610cd0578063e7841ec014610cf0578063f0dccbc914610d05578063f112ba7214610d2557600080fd5b8063c633314f116100fd578063c633314f14610c10578063c705c56914610c30578063cb7fa8de14610c50578063cc274b2914610c70578063dd62ed3e14610c9057600080fd5b8063c024666814610b90578063c0a904a214610bb0578063c18bc19514610bd0578063c4d66de814610bf057600080fd5b80639c1b8af5116101bc578063a8b9d24011610180578063a8b9d24014610ab5578063a9059cbb14610ad5578063aa4bde2814610af5578063ad56c13c14610b0b578063be03e7e914610b7057600080fd5b80639c1b8af514610a2a578063a26579ad14610a40578063a3671b6014610a55578063a457c2d714610a75578063a6ddc42514610a9557600080fd5b80638da5cb5b116102035780638da5cb5b146109975780638fffabed146109b557806395d89b41146109d5578063966b53c4146109ea578063984fcf9e14610a0a57600080fd5b80638062651a146109175780638089dbfd1461093757806387600df7146109575780638c402c0f1461097757600080fd5b806341cf335a116103455780635d924318116102cd57806370a082311161029157806370a0823114610872578063715018a61461089257806376856557146108a757806379cc6790146108d75780637d342438146108f757600080fd5b80635d924318146107dd57806361663fe8146107fd57806364b0f6531461081d5780636843cd84146108325780636cc9c8f11461085257600080fd5b80634fbee193116103145780634fbee19314610718578063502f7446146107485780635b4668e91461076d5780635cce86cd1461078d5780635d7249d9146107bd57600080fd5b806341cf335a146106a357806342966c68146106c35780634953b035146106e35780634e71d92d1461070357600080fd5b80632c1f5216116103c857806330bb4cff1161039757806330bb4cff14610612578063313ce5671461062757806339509351146106435780633e29e39814610663578063408ccbdf1461068357600080fd5b80632c1f5216146105675780632c238ece1461059f5780632d99d32e146105d25780632f267e29146105f257600080fd5b8063095ea7b31161040f578063095ea7b3146104d857806318160ddd146105085780631af3c61d1461051d57806323b872dd14610532578063294aad9c1461055257600080fd5b8062b861681461044b5780630445b6671461046d5780630483f7a01461049657806306fdde03146104b657600080fd5b3661044657005b600080fd5b34801561045757600080fd5b5061046b6104663660046141df565b610def565b005b34801561047957600080fd5b5061048360095481565b6040519081526020015b60405180910390f35b3480156104a257600080fd5b5061046b6104b1366004614245565b610f9f565b3480156104c257600080fd5b506104cb610fb5565b60405161048d919061427e565b3480156104e457600080fd5b506104f86104f33660046142cc565b611047565b604051901515815260200161048d565b34801561051457600080fd5b50600254610483565b34801561052957600080fd5b5061046b611061565b34801561053e57600080fd5b506104f861054d3660046142f8565b6110d3565b34801561055e57600080fd5b506104836110f7565b34801561057357600080fd5b50600654610587906001600160a01b031681565b6040516001600160a01b03909116815260200161048d565b3480156105ab57600080fd5b506105bf6105ba366004614339565b61116a565b60405161ffff909116815260200161048d565b3480156105de57600080fd5b5061046b6105ed366004614245565b611198565b3480156105fe57600080fd5b5061046b61060d366004614339565b611224565b34801561061e57600080fd5b506104836112fe565b34801561063357600080fd5b506040516012815260200161048d565b34801561064f57600080fd5b506104f861065e3660046142cc565b611348565b34801561066f57600080fd5b50601954610587906001600160a01b031681565b34801561068f57600080fd5b506105bf61069e366004614339565b61136a565b3480156106af57600080fd5b5061046b6106be366004614352565b61137a565b3480156106cf57600080fd5b5061046b6106de366004614339565b611407565b3480156106ef57600080fd5b5061046b6106fe366004614352565b611414565b34801561070f57600080fd5b506104f86114a1565b34801561072457600080fd5b506104f8610733366004614352565b601e6020526000908152604090205460ff1681565b34801561075457600080fd5b506020546105879061010090046001600160a01b031681565b34801561077957600080fd5b5061046b6107883660046141df565b611510565b34801561079957600080fd5b506104f86107a8366004614352565b60236020526000908152604090205460ff1681565b3480156107c957600080fd5b506105bf6107d8366004614339565b6116ae565b3480156107e957600080fd5b5061046b6107f8366004614352565b6116be565b34801561080957600080fd5b506105bf610818366004614339565b61174b565b34801561082957600080fd5b5061048361175b565b34801561083e57600080fd5b5061048361084d366004614352565b6117a5565b34801561085e57600080fd5b5061046b61086d366004614339565b611815565b34801561087e57600080fd5b5061048361088d366004614352565b61187e565b34801561089e57600080fd5b5061046b611899565b3480156108b357600080fd5b506104f86108c2366004614352565b60226020526000908152604090205460ff1681565b3480156108e357600080fd5b5061046b6108f23660046142cc565b6118ad565b34801561090357600080fd5b5061046b610912366004614352565b6118c2565b34801561092357600080fd5b5061046b6109323660046141df565b61194f565b34801561094357600080fd5b50601b54610587906001600160a01b031681565b34801561096357600080fd5b50601354610587906001600160a01b031681565b34801561098357600080fd5b506105bf610992366004614339565b611aed565b3480156109a357600080fd5b506005546001600160a01b0316610587565b3480156109c157600080fd5b50602154610587906001600160a01b031681565b3480156109e157600080fd5b506104cb611afd565b3480156109f657600080fd5b506105bf610a05366004614339565b611b0c565b348015610a1657600080fd5b5061046b610a253660046141df565b611b1c565b348015610a3657600080fd5b5061048360075481565b348015610a4c57600080fd5b50610483611cba565b348015610a6157600080fd5b50601754610587906001600160a01b031681565b348015610a8157600080fd5b506104f8610a903660046142cc565b611d04565b348015610aa157600080fd5b506105bf610ab0366004614339565b611d7f565b348015610ac157600080fd5b50610483610ad0366004614352565b611d8f565b348015610ae157600080fd5b506104f8610af03660046142cc565b611dc2565b348015610b0157600080fd5b5061048360245481565b348015610b1757600080fd5b50610b2b610b26366004614352565b611dd0565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e08201526101000161048d565b348015610b7c57600080fd5b506105bf610b8b366004614339565b611e6b565b348015610b9c57600080fd5b5061046b610bab366004614245565b611e7b565b348015610bbc57600080fd5b5061046b610bcb366004614245565b611ee3565b348015610bdc57600080fd5b5061046b610beb366004614339565b611ef5565b348015610bfc57600080fd5b5061046b610c0b366004614352565b611f89565b348015610c1c57600080fd5b5061046b610c2b366004614352565b612045565b348015610c3c57600080fd5b506104f8610c4b366004614352565b6120d2565b348015610c5c57600080fd5b5061046b610c6b3660046141df565b612141565b348015610c7c57600080fd5b5061046b610c8b366004614339565b6122df565b348015610c9c57600080fd5b50610483610cab366004614376565b61231c565b348015610cbc57600080fd5b5061046b610ccb3660046141df565b612347565b348015610cdc57600080fd5b5061046b610ceb3660046141df565b6124e5565b348015610cfc57600080fd5b50610483612683565b348015610d1157600080fd5b50601554610587906001600160a01b031681565b348015610d3157600080fd5b506104836126cd565b348015610d4657600080fd5b50610b2b610d55366004614339565b61272c565b348015610d6657600080fd5b5061046b610d75366004614352565b61276e565b348015610d8657600080fd5b5061046b610d95366004614352565b6127e4565b348015610da657600080fd5b50601154610587906001600160a01b031681565b348015610dc657600080fd5b50610dda610dd5366004614339565b61283a565b6040805192835260208301919091520161048d565b610df76128b9565b601654601f548491610e109161ffff91821691166143d0565b610e1a91906143f2565b601f805461ffff191661ffff92831617908190556016548492610e4a9262010000928390048216929004166143d0565b610e5491906143f2565b601f805463ffff000019166201000061ffff9384160217908190556016548392610e8c92600160201b928390048216929004166143d0565b610e9691906143f2565b601f805461ffff928316600160201b0261ffff60201b19821681179092556109c4908316919092161711801590610edc5750601f546109c46201000090910461ffff1611155b8015610ef85750601f546109c4600160201b90910461ffff1611155b610f1d5760405162461bcd60e51b8152600401610f149061440d565b60405180910390fd5b6040805160608101825261ffff80861682528481166020830152831691810191909152610f4e90601690600361411d565b506040805161ffff808616825280851660208301528316918101919091527fd4f8d5251d187bad9b5fcb3154d391e4886b79a90ef6e5c6074be3e81a94eb95906060015b60405180910390a1505050565b610fa76128b9565b610fb18282612913565b5050565b606060038054610fc490614463565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff090614463565b801561103d5780601f106110125761010080835404028352916020019161103d565b820191906000526020600020905b81548152906001019060200180831161102057829003601f168201915b5050505050905090565b600033611055818585612999565b60019150505b92915050565b6110696128b9565b60006110736126cd565b61107c3061187e565b611086919061449d565b9050600061109382612abd565b60408051848152602081018390529192507f5c3340567bf85cd43734028361fe821eac789fbe397b8d1a4f9ebb3ab4c81ef7910160405180910390a15050565b6000336110e1858285612b61565b6110ec858585612bdb565b506001949350505050565b600654604080516318160ddd60e01b815290516000926001600160a01b0316916318160ddd9160048083019260209291908290030181865afa158015611141573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116591906144b0565b905090565b6012816003811061117a57600080fd5b60109182820401919006600202915054906101000a900461ffff1681565b6111a06128b9565b6021546001600160a01b039081169083160361121a5760405162461bcd60e51b815260206004820152603360248201527f44656661756c74526f757465723a2043616e6e6f742072656d6f766520696e696044820152721d1a585b081c185a5c88199c9bdb481b1a5cdd606a1b6064820152608401610f14565b610fb18282613761565b61122c6128b9565b62030d40811015801561124257506207a1208111155b6112c25760405162461bcd60e51b815260206004820152604560248201527f4469766964656e64547261636b65723a20676173466f7250726f63657373696e60448201527f67206d757374206265206265747765656e203230306b20616e64203530306b20606482015264756e69747360d81b608482015260a401610f14565b60078190556040518181527f1662a2324457a200b9556dfe949641639b99480ee6b448aefcfb97ee61ec2417906020015b60405180910390a150565b600654604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae9160048083019260209291908290030181865afa158015611141573d6000803e3d6000fd5b60003361105581858561135b838361231c565b61136591906144c9565b612999565b601f816003811061117a57600080fd5b6113826128b9565b6001600160a01b0381166113a85760405162461bcd60e51b8152600401610f14906144dc565b601780546001600160a01b0319166001600160a01b0383161790556113ce816001611e7b565b6040516001600160a01b03821681527f2dd1fb17226de935881c09a15398f7ec3fc6f764298e17173c1d3bf18cf8fb9a906020016112f3565b61141133826137e1565b50565b61141c6128b9565b6001600160a01b0381166114425760405162461bcd60e51b8152600401610f14906144dc565b601980546001600160a01b0319166001600160a01b038316179055611468816001611e7b565b6040516001600160a01b03821681527f826b2655b812cc79d61beba1469dc77b9930873e611cb932faf630852710ccc9906020016112f3565b600654604051630f41a04d60e11b81523360048201526000916001600160a01b031690631e83409a906024016020604051808303816000875af11580156114ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111659190614548565b6115186128b9565b601454601f5484916115319161ffff91821691166143d0565b61153b91906143f2565b601f805461ffff191661ffff9283161790819055601454849261156b9262010000928390048216929004166143d0565b61157591906143f2565b601f805463ffff000019166201000061ffff93841602179081905560145483926115ad92600160201b928390048216929004166143d0565b6115b791906143f2565b601f805461ffff928316600160201b0261ffff60201b19821681179092556109c49083169190921617118015906115fd5750601f546109c46201000090910461ffff1611155b80156116195750601f546109c4600160201b90910461ffff1611155b6116355760405162461bcd60e51b8152600401610f149061440d565b6040805160608101825261ffff8086168252848116602083015283169181019190915261166690601490600361411d565b506040805161ffff808616825280851660208301528316918101919091527f20d37acfdb725f9926e5dfddb9c0f448925db29d782ad353b41084b0aad51ee490606001610f92565b6016816003811061117a57600080fd5b6116c66128b9565b6001600160a01b0381166116ec5760405162461bcd60e51b8152600401610f14906144dc565b601180546001600160a01b0319166001600160a01b038316179055611712816001611e7b565b6040516001600160a01b03821681527f0e2bc3cd453e10efd7122b9cdf987f2037d6cdf9d238c09391f7eaa711591b74906020016112f3565b6018816003811061117a57600080fd5b600654604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde9160048083019260209291908290030181865afa158015611141573d6000803e3d6000fd5b6006546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b602060405180830381865afa1580156117f1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061105b91906144b0565b61181d6128b9565b600654604051636cc9c8f160e01b8152600481018390526001600160a01b0390911690636cc9c8f190602401600060405180830381600087803b15801561186357600080fd5b505af1158015611877573d6000803e3d6000fd5b5050505050565b6001600160a01b031660009081526020819052604090205490565b6118a16128b9565b6118ab6000613837565b565b6118b8823383612b61565b610fb182826137e1565b6118ca6128b9565b6001600160a01b0381166118f05760405162461bcd60e51b8152600401610f14906144dc565b601580546001600160a01b0319166001600160a01b038316179055611916816001611e7b565b6040516001600160a01b03821681527f01fe4a01f78c42f30db88b42e778a4934e6a9d27a8e4c6a3afb3f115e53e6786906020016112f3565b6119576128b9565b601d54601f5484916119709161ffff91821691166143d0565b61197a91906143f2565b601f805461ffff191661ffff9283161790819055601d5484926119aa9262010000928390048216929004166143d0565b6119b491906143f2565b601f805463ffff000019166201000061ffff938416021790819055601d5483926119ec92600160201b928390048216929004166143d0565b6119f691906143f2565b601f805461ffff928316600160201b0261ffff60201b19821681179092556109c4908316919092161711801590611a3c5750601f546109c46201000090910461ffff1611155b8015611a585750601f546109c4600160201b90910461ffff1611155b611a745760405162461bcd60e51b8152600401610f149061440d565b6040805160608101825261ffff80861682528481166020830152831691810191909152611aa590601d90600361411d565b506040805161ffff808616825280851660208301528316918101919091527f4cc46242539a322b08449caf679672d54580fc99e4b7a4b3c6f21e322ad6046890606001610f92565b601a816003811061117a57600080fd5b606060048054610fc490614463565b601c816003811061117a57600080fd5b611b246128b9565b601254601f548491611b3d9161ffff91821691166143d0565b611b4791906143f2565b601f805461ffff191661ffff92831617908190556012548492611b779262010000928390048216929004166143d0565b611b8191906143f2565b601f805463ffff000019166201000061ffff9384160217908190556012548392611bb992600160201b928390048216929004166143d0565b611bc391906143f2565b601f805461ffff928316600160201b0261ffff60201b19821681179092556109c4908316919092161711801590611c095750601f546109c46201000090910461ffff1611155b8015611c255750601f546109c4600160201b90910461ffff1611155b611c415760405162461bcd60e51b8152600401610f149061440d565b6040805160608101825261ffff80861682528481166020830152831691810191909152611c7290601290600361411d565b506040805161ffff808616825280851660208301528316918101919091527fdc3c0b8b2b19f87dabfe7bba4a1e80438f5b02b8fdd0f89ed08daa0ca76d2c5890606001610f92565b60065460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec9160048083019260209291908290030181865afa158015611141573d6000803e3d6000fd5b60003381611d12828661231c565b905083811015611d725760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610f14565b6110ec8286868403612999565b601d816003811061117a57600080fd5b6006546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d240906024016117d4565b600033611055818585612bdb565b600654604051632ebc328760e11b81526001600160a01b0383811660048301526000928392839283928392839283928392911690635d78650e906024015b61010060405180830381865afa158015611e2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e509190614565565b97509750975097509750975097509750919395975091939597565b6014816003811061117a57600080fd5b611e836128b9565b6001600160a01b0382166000818152601e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b611eeb6128b9565b610fb18282613889565b611efd6128b9565b611f056138e1565b811015611f545760405162461bcd60e51b815260206004820152601860248201527f4d617857616c6c65743a204c696d697420746f6f206c6f7700000000000000006044820152606401610f14565b60248190556040518181527f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e001906020016112f3565b600854610100900460ff1680611fa2575060085460ff16155b6120055760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610f14565b600854610100900460ff16158015612027576008805461ffff19166101011790555b612030826138f9565b8015610fb1576008805461ff00191690555050565b61204d6128b9565b6001600160a01b0381166120735760405162461bcd60e51b8152600401610f14906144dc565b601380546001600160a01b0319166001600160a01b038316179055612099816001611e7b565b6040516001600160a01b03821681527f20601d6e6ad1b4a2eda460c3e20d36f84afc68a1f2db45d0d58ce52078cea7d3906020016112f3565b60065460405163c705c56960e01b81526001600160a01b038381166004830152600092169063c705c56990602401602060405180830381865afa15801561211d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061105b9190614548565b6121496128b9565b601a54601f5484916121629161ffff91821691166143d0565b61216c91906143f2565b601f805461ffff191661ffff9283161790819055601a54849261219c9262010000928390048216929004166143d0565b6121a691906143f2565b601f805463ffff000019166201000061ffff938416021790819055601a5483926121de92600160201b928390048216929004166143d0565b6121e891906143f2565b601f805461ffff928316600160201b0261ffff60201b19821681179092556109c490831691909216171180159061222e5750601f546109c46201000090910461ffff1611155b801561224a5750601f546109c4600160201b90910461ffff1611155b6122665760405162461bcd60e51b8152600401610f149061440d565b6040805160608101825261ffff8086168252848116602083015283169181019190915261229790601a90600361411d565b506040805161ffff808616825280851660208301528316918101919091527f3c4bb863dd5894f1f8c5257698677ba1e8ca8c660262ef60a3758c73bdad150090606001610f92565b6122e76128b9565b60098190556040518181527f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd06476906020016112f3565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61234f6128b9565b601854601f5484916123689161ffff91821691166143d0565b61237291906143f2565b601f805461ffff191661ffff928316179081905560185484926123a29262010000928390048216929004166143d0565b6123ac91906143f2565b601f805463ffff000019166201000061ffff93841602179081905560185483926123e492600160201b928390048216929004166143d0565b6123ee91906143f2565b601f805461ffff928316600160201b0261ffff60201b19821681179092556109c49083169190921617118015906124345750601f546109c46201000090910461ffff1611155b80156124505750601f546109c4600160201b90910461ffff1611155b61246c5760405162461bcd60e51b8152600401610f149061440d565b6040805160608101825261ffff8086168252848116602083015283169181019190915261249d90601890600361411d565b506040805161ffff808616825280851660208301528316918101919091527f10712b44f9af3e120ff6c1a2ea878ea05f15c4018bc1ed40852cc0291d17d23390606001610f92565b6124ed6128b9565b601c54601f5484916125069161ffff91821691166143d0565b61251091906143f2565b601f805461ffff191661ffff9283161790819055601c5484926125409262010000928390048216929004166143d0565b61254a91906143f2565b601f805463ffff000019166201000061ffff938416021790819055601c54839261258292600160201b928390048216929004166143d0565b61258c91906143f2565b601f805461ffff928316600160201b0261ffff60201b19821681179092556109c49083169190921617118015906125d25750601f546109c46201000090910461ffff1611155b80156125ee5750601f546109c4600160201b90910461ffff1611155b61260a5760405162461bcd60e51b8152600401610f149061440d565b6040805160608101825261ffff8086168252848116602083015283169181019190915261263b90601c90600361411d565b506040805161ffff808616825280851660208301528316918101919091527f2524ccb75260c9a50c71af1740c212c049a01232ef122061416b51815ec57a1890606001610f92565b60065460408051633009a60960e01b815290516000926001600160a01b031691633009a6099160048083019260209291908290030181865afa158015611141573d6000803e3d6000fd5b6000601054600f54600e54600d54600c54600b54600a5460006126f091906144c9565b6126fa91906144c9565b61270491906144c9565b61270e91906144c9565b61271891906144c9565b61272291906144c9565b61116591906144c9565b600654604051632f7541e960e01b81526004810183905260009182918291829182918291829182916001600160a01b0390911690632f7541e990602401611e0e565b6127766128b9565b6001600160a01b0381166127db5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610f14565b61141181613837565b6127ec6128b9565b601b80546001600160a01b0319166001600160a01b0383169081179091556040519081527f1c75c7e1dcc8d5c68921dfeb6ac2a2a801ac4e38b295aec5c41e03fdc1ef0c4f906020016112f3565b6006546040516001624d3b8760e01b031981526004810183905260009182916001600160a01b039091169063ffb2c4799060240160408051808303816000875af115801561288c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128b091906145cf565b91509150915091565b6005546001600160a01b031633146118ab5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f14565b6006546001600160a01b031663d1fbb84e8361292e8161187e565b6040516001600160e01b031960e085901b1681526001600160a01b039092166004830152602482015283151560448201526064015b600060405180830381600087803b15801561297d57600080fd5b505af1158015612991573d6000803e3d6000fd5b505050505050565b6001600160a01b0383166129fb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610f14565b6001600160a01b038216612a5c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610f14565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600080612acb6002846145f3565b90506000612ad9828561449d565b9050612ae482613afc565b478015612b59576000806000612afa8585613c45565b604080518481526020810184905290810182905292955090935091507f3db50c324c27fb39c451e35d4d23abba3e20d96d036e7a40f4adc681c1ce30139060600160405180910390a1612b4d838661449d565b98975050505050505050565b509392505050565b6000612b6d848461231c565b90506000198114612bd55781811015612bc85760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610f14565b612bd58484848403612999565b50505050565b6000600954612be86126cd565b602054911115915060ff16158015612c1957506001600160a01b03841660009081526022602052604090205460ff16155b8015612c225750805b15613045576020805460ff191660011790556000600a541180612c4757506000600b54115b80612c5457506000600c54115b80612c6157506000600d54115b80612c6e57506000600e54115b15612ff1576000600e54600d54600c54600b54600a546000612c9091906144c9565b612c9a91906144c9565b612ca491906144c9565b612cae91906144c9565b612cb891906144c9565b90506000612cc582613afc565b600a5447906000908490612cd99084614615565b612ce391906145f3565b90508015612d63576011546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505092508215612d6357601154604080516001600160a01b039092168252602082018390527f53eb94be002d0cafd15b0d23dfb296b487865ef8047dd7c0ccaf9e66eb9928b6910160405180910390a15b6000600a819055600b548590612d799085614615565b612d8391906145f3565b90508015612e03576013546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505093508315612e0357601354604080516001600160a01b039092168252602082018390527f2f0ea2c11fec5cdc43e0ce7bc38cf4e6a3350617d9ef8db54e928dc6ce1bb379910160405180910390a15b6000600b819055600c548690612e199086614615565b612e2391906145f3565b90508015612ea3576015546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505094508415612ea357601554604080516001600160a01b039092168252602082018390527f800305120dd0ba317e4898131970cc4746f1db43ae3c2f51102f1a3175f8114a910160405180910390a15b6000600c819055600d548790612eb99087614615565b612ec391906145f3565b90508015612f43576017546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505095508515612f4357601754604080516001600160a01b039092168252602082018390527fbab3751b47736002136b5ead2780ee40663c11c069dc2776125bf1ea47204cc8910160405180910390a15b6000600d819055600e548890612f599088614615565b612f6391906145f3565b90508015612fe3576019546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505096508615612fe357601954604080516001600160a01b039092168252602082018390527f86c159e6b70ced93c93726021b2bae6218c4cab6255754f2cc6b2413dee2ef5d910160405180910390a15b50506000600e555050505050505b600f541561300b57613004600f54612abd565b506000600f555b60006010541180156130245750600061302261175b565b115b1561303a57613034601054613d11565b60006010555b6020805460ff191690555b60205460ff161580156130585750600082115b801561307757506020546001600160a01b038481166101009092041614155b801561309c57506001600160a01b0384166000908152601e602052604090205460ff16155b80156130c157506001600160a01b0383166000908152601e602052604090205460ff16155b156135d7576001600160a01b03841660009081526022602052604081205460039060ff16156130ff57601f5461ffff16156130fa575060005b613151565b6001600160a01b03851660009081526022602052604090205460ff161561313a57601f5462010000900461ffff16156130fa57506001613151565b601f54600160201b900461ffff1615613151575060025b60038160ff1610156135c357612710601f8260ff1660038110613176576131766143a4565b601091828204019190066002029054906101000a900461ffff1661ffff168561319f9190614615565b6131a991906145f3565b91506131b5828561449d565b9350601f8160ff16600381106131cd576131cd6143a4565b601091828204019190066002029054906101000a900461ffff1661ffff1660128260ff1660038110613201576132016143a4565b601091828204019190066002029054906101000a900461ffff1661ffff168361322a9190614615565b61323491906145f3565b600a600082825461324591906144c9565b90915550601f905060ff821660038110613261576132616143a4565b601091828204019190066002029054906101000a900461ffff1661ffff1660148260ff1660038110613295576132956143a4565b601091828204019190066002029054906101000a900461ffff1661ffff16836132be9190614615565b6132c891906145f3565b600b60008282546132d991906144c9565b90915550601f905060ff8216600381106132f5576132f56143a4565b601091828204019190066002029054906101000a900461ffff1661ffff1660168260ff1660038110613329576133296143a4565b601091828204019190066002029054906101000a900461ffff1661ffff16836133529190614615565b61335c91906145f3565b600c600082825461336d91906144c9565b90915550601f905060ff821660038110613389576133896143a4565b601091828204019190066002029054906101000a900461ffff1661ffff1660188260ff16600381106133bd576133bd6143a4565b601091828204019190066002029054906101000a900461ffff1661ffff16836133e69190614615565b6133f091906145f3565b600d600082825461340191906144c9565b90915550601f905060ff82166003811061341d5761341d6143a4565b601091828204019190066002029054906101000a900461ffff1661ffff16601a8260ff1660038110613451576134516143a4565b601091828204019190066002029054906101000a900461ffff1661ffff168361347a9190614615565b61348491906145f3565b600e600082825461349591906144c9565b90915550601f905060ff8216600381106134b1576134b16143a4565b601091828204019190066002029054906101000a900461ffff1661ffff16601c8260ff16600381106134e5576134e56143a4565b601091828204019190066002029054906101000a900461ffff1661ffff168361350e9190614615565b61351891906145f3565b600f600082825461352991906144c9565b90915550601f905060ff821660038110613545576135456143a4565b601091828204019190066002029054906101000a900461ffff1661ffff16601d8260ff1660038110613579576135796143a4565b601091828204019190066002029054906101000a900461ffff1661ffff16836135a29190614615565b6135ac91906145f3565b601060008282546135bd91906144c9565b90915550505b81156135d4576135d4863084613db2565b50505b6135e2848484613db2565b6006546001600160a01b031663e30443bc856135fd8161187e565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561364357600080fd5b505af1158015613657573d6000803e3d6000fd5b50506006546001600160a01b0316915063e30443bc9050846136788161187e565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156136be57600080fd5b505af11580156136d2573d6000803e3d6000fd5b505060205460ff169150612bd59050576006546007546040516001624d3b8760e01b031981526001600160a01b039092169163ffb2c4799161371a9160040190815260200190565b60408051808303816000875af1925050508015613754575060408051601f3d908101601f19168201909252613751918101906145cf565b60015b15612bd557505050505050565b6001600160a01b0382166000908152602260205260409020805460ff191682158015919091179091556137a457613799826001612913565b6137a4826001613889565b816001600160a01b03167f911aa18ddbbbc33c9b4c704a71bdaa0984b0aa2e82726a7f51e64bad0b0a845582604051611ed7911515815260200190565b6137eb8282613f5c565b6006546001600160a01b031663e30443bc836138068161187e565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401612963565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260236020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc929101611ed7565b60006103e86138ef60025490565b61116591906145f3565b60208054610100600160a81b0319166101006001600160a01b038481168202929092178084556040805163c45a015560e01b81529051929091049092169263c45a015592600480820193918290030181865afa15801561395d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613981919061462c565b6001600160a01b031663c9c6539630602060019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156139e3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a07919061462c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015613a54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a78919061462c565b602180546001600160a01b0319166001600160a01b0392909216919091179055613aa3816001612913565b613aae816001613889565b602154613ac5906001600160a01b03166001613761565b6040516001600160a01b038216907fbc052db65df144ad4f71f02da93cae3d4401104c30ac374d7cc10d87ee07b60290600090a250565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110613b3157613b316143a4565b60200260200101906001600160a01b031690816001600160a01b031681525050602060019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613ba4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613bc8919061462c565b81600181518110613bdb57613bdb6143a4565b6001600160a01b0392831660209182029290920181019190915254613c0891309161010090041684612999565b60205460405163791ac94760e01b81526101009091046001600160a01b03169063791ac94790612963908590600090869030904290600401614649565b6000806000613c6a30602060019054906101000a90046001600160a01b031687612999565b602054601b5460405163f305d71960e01b81523060048201526024810188905260006044820181905260648201526001600160a01b0391821660848201524260a4820152610100909204169063f305d71990869060c40160606040518083038185885af1158015613cdf573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613d0491906146ba565b9250925092509250925092565b613d1a81613afc565b478015610fb1576006546040516000916001600160a01b03169083908381818185875af1925050503d8060008114613d6e576040519150601f19603f3d011682016040523d82523d6000602084013e613d73565b606091505b505090508015613dad576040518281527f193576e9dd325a2a57e4e6e7f6afa82c4fd152eaa8d5f874b0b0f40d924b18a690602001610f92565b505050565b6001600160a01b038316613e165760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610f14565b6001600160a01b038216613e785760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610f14565b6001600160a01b03831660009081526020819052604090205481811015613ef05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610f14565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3612bd5848484614091565b6001600160a01b038216613fbc5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610f14565b6001600160a01b038216600090815260208190526040902054818110156140305760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610f14565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3613dad836000845b6001600160a01b03821660009081526023602052604090205460ff16613dad576024546140bd8361187e565b1115613dad5760405162461bcd60e51b815260206004820152602960248201527f4d617857616c6c65743a2043616e6e6f7420657863656564206d61782077616c6044820152681b195d081b1a5b5a5d60ba1b6064820152608401610f14565b6001830191839082156141a35791602002820160005b8382111561417357835183826101000a81548161ffff021916908361ffff1602179055509260200192600201602081600101049283019260010302614133565b80156141a15782816101000a81549061ffff0219169055600201602081600101049283019260010302614173565b505b506141af9291506141b3565b5090565b5b808211156141af57600081556001016141b4565b803561ffff811681146141da57600080fd5b919050565b6000806000606084860312156141f457600080fd5b6141fd846141c8565b925061420b602085016141c8565b9150614219604085016141c8565b90509250925092565b6001600160a01b038116811461141157600080fd5b801515811461141157600080fd5b6000806040838503121561425857600080fd5b823561426381614222565b9150602083013561427381614237565b809150509250929050565b600060208083528351808285015260005b818110156142ab5785810183015185820160400152820161428f565b506000604082860101526040601f19601f8301168501019250505092915050565b600080604083850312156142df57600080fd5b82356142ea81614222565b946020939093013593505050565b60008060006060848603121561430d57600080fd5b833561431881614222565b9250602084013561432881614222565b929592945050506040919091013590565b60006020828403121561434b57600080fd5b5035919050565b60006020828403121561436457600080fd5b813561436f81614222565b9392505050565b6000806040838503121561438957600080fd5b823561439481614222565b9150602083013561427381614222565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b61ffff8281168282160390808211156143eb576143eb6143ba565b5092915050565b61ffff8181168382160190808211156143eb576143eb6143ba565b60208082526036908201527f546178657344656661756c74526f757465723a2043616e6e6f7420657863656560408201527564206d617820746f74616c20666565206f662032352560501b606082015260800190565b600181811c9082168061447757607f821691505b60208210810361449757634e487b7160e01b600052602260045260246000fd5b50919050565b8181038181111561105b5761105b6143ba565b6000602082840312156144c257600080fd5b5051919050565b8082018082111561105b5761105b6143ba565b60208082526046908201527f546178657344656661756c74526f7574657257616c6c65743a2057616c6c657460408201527f2074617820726563697069656e742063616e6e6f74206265206120307830206160608201526564647265737360d01b608082015260a00190565b60006020828403121561455a57600080fd5b815161436f81614237565b600080600080600080600080610100898b03121561458257600080fd5b885161458d81614222565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b600080604083850312156145e257600080fd5b505080516020909101519092909150565b60008261461057634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761105b5761105b6143ba565b60006020828403121561463e57600080fd5b815161436f81614222565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156146995784516001600160a01b031683529383019391830191600101614674565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156146cf57600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122080185b008a99fc20a3ec2cdcb0ffb35f30159cc1b7078131728ea6b14c69c6b564736f6c6343000813003360806040523480156200001157600080fd5b50604051620021e4380380620021e483398101604081905262000034916200026f565b6040518060400160405280600f81526020016e2234bb34b232b7322a3930b1b5b2b960891b8152506040518060400160405280600f81526020016e2234bb34b232b7322a3930b1b5b2b960891b8152508181620000a06200009a620000dd60201b60201c565b620000e1565b6004620000ae838262000339565b506005620000bd828262000339565b5050505050620000d3826200013160201b60201c565b6012555062000405565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6200013b62000211565b603c811015801562000150575062093a808111155b620001d65760405162461bcd60e51b8152602060048201526044602482018190527f4469766964656e64547261636b65723a20436c61696d20776169742074696d65908201527f206d757374206265206265747765656e2031206d696e75746520616e642037206064820152636461797360e01b608482015260a4015b60405180910390fd5b60118190556040518181527f4b0a6b82d0dc4407b3359033a4f27efd1e2105e4571b72d6a3b8f1da3e6079dd9060200160405180910390a150565b6000546001600160a01b031633146200026d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620001cd565b565b600080604083850312156200028357600080fd5b505080516020909101519092909150565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620002bf57607f821691505b602082108103620002e057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200033457600081815260208120601f850160051c810160208610156200030f5750805b601f850160051c820191505b8181101562000330578281556001016200031b565b5050505b505050565b81516001600160401b0381111562000355576200035562000294565b6200036d81620003668454620002aa565b84620002e6565b602080601f831160018114620003a557600084156200038c5750858301515b600019600386901b1c1916600185901b17855562000330565b600085815260208120601f198616915b82811015620003d657888601518255948401946001909101908401620003b5565b5085821015620003f55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611dcf80620004156000396000f3fe6080604052600436106101f25760003560e01c806370a082311161010d578063a9059cbb116100a0578063d1fbb84e1161006f578063d1fbb84e146105d1578063dd62ed3e146105f1578063e30443bc14610611578063f2fde38b14610631578063ffb2c4791461065157600080fd5b8063a9059cbb14610535578063aafd847a14610555578063be10b6141461058b578063c705c569146105a157600080fd5b806391b89fba116100dc57806391b89fba146104c057806395d89b41146104e0578063a457c2d7146104f5578063a8b9d2401461051557600080fd5b806370a0823114610437578063715018a61461046d57806385a6b3ae146104825780638da5cb5b1461049857600080fd5b806327ce014711610185578063395093511161015457806339509351146103c15780635d78650e146103e15780636cc9c8f1146104015780636f2789ec1461042157600080fd5b806327ce01471461030a5780632f7541e91461032a5780633009a6091461038f578063313ce567146103a557600080fd5b806318160ddd116101c157806318160ddd146102885780631e83409a1461029d578063226cfa3d146102bd57806323b872dd146102ea57600080fd5b806303c833021461020657806306fdde031461020e578063095ea7b31461023957806309bbedde1461026957600080fd5b36610201576101ff610686565b005b600080fd5b6101ff610686565b34801561021a57600080fd5b50610223610715565b6040516102309190611aa9565b60405180910390f35b34801561024557600080fd5b50610259610254366004611b0c565b6107a7565b6040519015158152602001610230565b34801561027557600080fd5b50600a545b604051908152602001610230565b34801561029457600080fd5b5060035461027a565b3480156102a957600080fd5b506102596102b8366004611b38565b6107c1565b3480156102c957600080fd5b5061027a6102d8366004611b38565b60106020526000908152604090205481565b3480156102f657600080fd5b50610259610305366004611b5c565b610808565b34801561031657600080fd5b5061027a610325366004611b38565b61082c565b34801561033657600080fd5b5061034a610345366004611b9d565b610889565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610230565b34801561039b57600080fd5b5061027a600e5481565b3480156103b157600080fd5b5060405160128152602001610230565b3480156103cd57600080fd5b506102596103dc366004611b0c565b6109dd565b3480156103ed57600080fd5b5061034a6103fc366004611b38565b6109ff565b34801561040d57600080fd5b506101ff61041c366004611b9d565b610b67565b34801561042d57600080fd5b5061027a60115481565b34801561044357600080fd5b5061027a610452366004611b38565b6001600160a01b031660009081526001602052604090205490565b34801561047957600080fd5b506101ff610c43565b34801561048e57600080fd5b5061027a60095481565b3480156104a457600080fd5b506000546040516001600160a01b039091168152602001610230565b3480156104cc57600080fd5b5061027a6104db366004611b38565b610c55565b3480156104ec57600080fd5b50610223610c60565b34801561050157600080fd5b50610259610510366004611b0c565b610c6f565b34801561052157600080fd5b5061027a610530366004611b38565b610cea565b34801561054157600080fd5b50610259610550366004611b0c565b610d16565b34801561056157600080fd5b5061027a610570366004611b38565b6001600160a01b031660009081526008602052604090205490565b34801561059757600080fd5b5061027a60125481565b3480156105ad57600080fd5b506102596105bc366004611b38565b600f6020526000908152604090205460ff1681565b3480156105dd57600080fd5b506101ff6105ec366004611bb6565b610d24565b3480156105fd57600080fd5b5061027a61060c366004611bfd565b610f6a565b34801561061d57600080fd5b506101ff61062c366004611b0c565b610f95565b34801561063d57600080fd5b506101ff61064c366004611b38565b6110b6565b34801561065d57600080fd5b5061067161066c366004611b9d565b61112f565b60408051928352602083019190915201610230565b600061069160035490565b1161069b57600080fd5b3415610713576003546106b2600160801b34611c4c565b6106bc9190611c63565b6006546106c99190611c85565b60065560405134815233907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165119060200160405180910390a23460095461070f9190611c85565b6009555b565b60606004805461072490611c98565b80601f016020809104026020016040519081016040528092919081815260200182805461075090611c98565b801561079d5780601f106107725761010080835404028352916020019161079d565b820191906000526020600020905b81548152906001019060200180831161078057829003601f168201915b5050505050905090565b6000336107b581858561127f565b60019150505b92915050565b60006107cb6113a3565b60006107d6836113fd565b905080156107ff5750506001600160a01b03166000908152601060205260409020429055600190565b50600092915050565b600033610816858285611505565b61082185858561157f565b506001949350505050565b6001600160a01b0381166000908152600760209081526040808320546001909252822054600160801b9161087f916108709060065461086b9190611c4c565b61172a565b61087a9190611cd2565b61173a565b6107bb9190611c63565b600080600080600080600080600a7331ee4a53bd2c1c339662dffb973017ef81a6bad563deb3d89690916040518263ffffffff1660e01b81526004016108d191815260200190565b602060405180830381865af41580156108ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109129190611cfa565b89106109375750600096506000199550859450869350839250829150819050806109d2565b6040516368d54f3f60e11b8152600a6004820152602481018a90526000907331ee4a53bd2c1c339662dffb973017ef81a6bad59063d1aa9e7e90604401602060405180830381865af4158015610991573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109b59190611d13565b90506109c0816109ff565b98509850985098509850985098509850505b919395975091939597565b6000336107b58185856109f08383610f6a565b6109fa9190611c85565b61127f565b6040516317e142d160e01b8152600a60048201526001600160a01b038216602482015281906000908190819081908190819081907331ee4a53bd2c1c339662dffb973017ef81a6bad5906317e142d190604401602060405180830381865af4158015610a6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a939190611cfa565b9650600019955060008712610af557600e54871115610ac057600e54610ab99088611d30565b9550610af5565b600e54600a5460009110610ad5576000610ae5565b600e54600a54610ae59190611d57565b9050610af18189611cd2565b9650505b610afe88610cea565b9450610b098861082c565b6001600160a01b038916600090815260106020526040902054909450925082610b33576000610b40565b601154610b409084611c85565b9150428211610b50576000610b5a565b610b5a4283611d57565b9050919395975091939597565b610b6f6113a3565b603c8110158015610b83575062093a808111155b610c085760405162461bcd60e51b8152602060048201526044602482018190527f4469766964656e64547261636b65723a20436c61696d20776169742074696d65908201527f206d757374206265206265747765656e2031206d696e75746520616e642037206064820152636461797360e01b608482015260a4015b60405180910390fd5b60118190556040518181527f4b0a6b82d0dc4407b3359033a4f27efd1e2105e4571b72d6a3b8f1da3e6079dd9060200160405180910390a150565b610c4b6113a3565b610713600061174d565b60006107bb82610cea565b60606005805461072490611c98565b60003381610c7d8286610f6a565b905083811015610cdd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610bff565b610821828686840361127f565b6001600160a01b038116600090815260086020526040812054610d0c8361082c565b6107bb9190611d57565b6000336107b581858561157f565b610d2c6113a3565b8015610e68576001600160a01b0383166000908152600f602052604090205460ff1615610dc3576040805162461bcd60e51b81526020600482015260248101919091527f4469766964656e64547261636b65723a2054686973206164647265737320697360448201527f20616c7265616479206578636c756465642066726f6d206469766964656e64736064820152608401610bff565b6001600160a01b0383166000908152600f60205260408120805460ff19166001179055610df190849061179d565b60405163131836e760e21b8152600a60048201526001600160a01b03841660248201527331ee4a53bd2c1c339662dffb973017ef81a6bad590634c60db9c9060440160006040518083038186803b158015610e4b57600080fd5b505af4158015610e5f573d6000803e3d6000fd5b50505050610f20565b6001600160a01b0383166000908152600f602052604090205460ff16610ef65760405162461bcd60e51b815260206004820152603e60248201527f4469766964656e64547261636b65723a2054686973206164647265737320697360448201527f20616c726561647920696e636c7564656420696e206469766964656e647300006064820152608401610bff565b6001600160a01b0383166000908152600f60205260409020805460ff19169055610f208383610f95565b826001600160a01b03167fa3c7c11b2e12c4144b09a7813f3393ba646392788638998c97be8da908cf04be82604051610f5d911515815260200190565b60405180910390a2505050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610f9d6113a3565b6001600160a01b0382166000908152600f602052604090205460ff166110b257601254811061104d57610fd0828261179d565b604051632f0ad01760e21b8152600a60048201526001600160a01b0383166024820152604481018290527331ee4a53bd2c1c339662dffb973017ef81a6bad59063bc2b405c9060640160006040518083038186803b15801561103157600080fd5b505af4158015611045573d6000803e3d6000fd5b505050505050565b61105882600061179d565b60405163131836e760e21b8152600a60048201526001600160a01b03831660248201527331ee4a53bd2c1c339662dffb973017ef81a6bad590634c60db9c9060440160006040518083038186803b15801561103157600080fd5b5050565b6110be6113a3565b6001600160a01b0381166111235760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bff565b61112c8161174d565b50565b60008061113a6113a3565b600a5460008190036111525750600093849350915050565b600e546000805a905060009550600094505b868210801561117257508386105b15611238578261118181611d6a565b600a549094508410905061119457600092505b6000600a60000184815481106111ac576111ac611d83565b60009182526020808320909101546001600160a01b031680835260109091526040909120549091506111dd906117f1565b156111fe576111eb816107c1565b156111fe57856111fa81611d6a565b9650505b8661120881611d6a565b97505060005a90508083111561122f576112228184611d57565b61122c9085611c85565b93505b91506111649050565b600e83905560408051878152602081018790527ff78a0aac70b15fc744c16ea2c52bba9a167f030b8961e62a1d2c92588f77facf910160405180910390a150505050915091565b6001600160a01b0383166112e15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bff565b6001600160a01b0382166113425760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bff565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000546001600160a01b031633146107135760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bff565b60008061140983610cea565b905080156107ff576001600160a01b038316600090815260086020526040902054611435908290611c85565b6001600160a01b03841660008181526008602052604080822093909355915183156108fc0290849084818181858888f19350505050905080156114bc57836001600160a01b03167fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d836040516114ad91815260200190565b60405180910390a25092915050565b6001600160a01b0384166000908152600860205260409020546114e0908390611d57565b6001600160a01b03909416600090815260086020526040812094909455509192915050565b60006115118484610f6a565b90506000198114611579578181101561156c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610bff565b611579848484840361127f565b50505050565b6001600160a01b0383166115e35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610bff565b6001600160a01b0382166116455760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610bff565b6001600160a01b038316600090815260016020526040902054818110156116bd5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bff565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061171d9086815260200190565b60405180910390a3611579565b600081818112156107bb57600080fd5b60008082121561174957600080fd5b5090565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216600090815260016020526040902054808211156117d6576117d1836117cc8385611d57565b611818565b505050565b808210156117d1576117d1836117ec8484611d57565b611876565b60008142101561180357506000919050565b6011546118108342611d57565b101592915050565b61182282826118b4565b6118338160065461086b9190611c4c565b6001600160a01b0383166000908152600760205260409020546118569190611d30565b6001600160a01b0390921660009081526007602052604090209190915550565b6118808282611975565b6118918160065461086b9190611c4c565b6001600160a01b0383166000908152600760205260409020546118569190611cd2565b6001600160a01b03821661190a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610bff565b806003600082825461191c9190611c85565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0382166119d55760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610bff565b6001600160a01b03821660009081526001602052604090205481811015611a495760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610bff565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600060208083528351808285015260005b81811015611ad657858101830151858201604001528201611aba565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461112c57600080fd5b60008060408385031215611b1f57600080fd5b8235611b2a81611af7565b946020939093013593505050565b600060208284031215611b4a57600080fd5b8135611b5581611af7565b9392505050565b600080600060608486031215611b7157600080fd5b8335611b7c81611af7565b92506020840135611b8c81611af7565b929592945050506040919091013590565b600060208284031215611baf57600080fd5b5035919050565b600080600060608486031215611bcb57600080fd5b8335611bd681611af7565b92506020840135915060408401358015158114611bf257600080fd5b809150509250925092565b60008060408385031215611c1057600080fd5b8235611c1b81611af7565b91506020830135611c2b81611af7565b809150509250929050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176107bb576107bb611c36565b600082611c8057634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156107bb576107bb611c36565b600181811c90821680611cac57607f821691505b602082108103611ccc57634e487b7160e01b600052602260045260246000fd5b50919050565b8082018281126000831280158216821582161715611cf257611cf2611c36565b505092915050565b600060208284031215611d0c57600080fd5b5051919050565b600060208284031215611d2557600080fd5b8151611b5581611af7565b8181036000831280158383131683831282161715611d5057611d50611c36565b5092915050565b818103818111156107bb576107bb611c36565b600060018201611d7c57611d7c611c36565b5060010190565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220335b970da354e8f4734853d47a26b178d779e1089d4573d8c17ea32238b5018264736f6c63430008130033546178657344656661756c74526f7574657257616c6c65743a2057616c6c6574424f5420467269656e6473202d2020544720436861743a20742e6d652f626f74667269656e6473706f7274616c546178657344656661756c74526f757465723a2043616e6e6f742065786365652074617820726563697069656e742063616e6e6f74206265206120307830206164206d617820746f74616c20666565206f662032352500000000000000000000
Deployed Bytecode
0x60806040526004361061043f5760003560e01c80638062651a11610234578063c02466681161012e578063e364617d116100b6578063f27fd2541161007a578063f27fd25414610d3a578063f2fde38b14610d5a578063f3bf087e14610d7a578063fe31572314610d9a578063ffb2c47914610dba57600080fd5b8063e364617d14610cb0578063e626815814610cd0578063e7841ec014610cf0578063f0dccbc914610d05578063f112ba7214610d2557600080fd5b8063c633314f116100fd578063c633314f14610c10578063c705c56914610c30578063cb7fa8de14610c50578063cc274b2914610c70578063dd62ed3e14610c9057600080fd5b8063c024666814610b90578063c0a904a214610bb0578063c18bc19514610bd0578063c4d66de814610bf057600080fd5b80639c1b8af5116101bc578063a8b9d24011610180578063a8b9d24014610ab5578063a9059cbb14610ad5578063aa4bde2814610af5578063ad56c13c14610b0b578063be03e7e914610b7057600080fd5b80639c1b8af514610a2a578063a26579ad14610a40578063a3671b6014610a55578063a457c2d714610a75578063a6ddc42514610a9557600080fd5b80638da5cb5b116102035780638da5cb5b146109975780638fffabed146109b557806395d89b41146109d5578063966b53c4146109ea578063984fcf9e14610a0a57600080fd5b80638062651a146109175780638089dbfd1461093757806387600df7146109575780638c402c0f1461097757600080fd5b806341cf335a116103455780635d924318116102cd57806370a082311161029157806370a0823114610872578063715018a61461089257806376856557146108a757806379cc6790146108d75780637d342438146108f757600080fd5b80635d924318146107dd57806361663fe8146107fd57806364b0f6531461081d5780636843cd84146108325780636cc9c8f11461085257600080fd5b80634fbee193116103145780634fbee19314610718578063502f7446146107485780635b4668e91461076d5780635cce86cd1461078d5780635d7249d9146107bd57600080fd5b806341cf335a146106a357806342966c68146106c35780634953b035146106e35780634e71d92d1461070357600080fd5b80632c1f5216116103c857806330bb4cff1161039757806330bb4cff14610612578063313ce5671461062757806339509351146106435780633e29e39814610663578063408ccbdf1461068357600080fd5b80632c1f5216146105675780632c238ece1461059f5780632d99d32e146105d25780632f267e29146105f257600080fd5b8063095ea7b31161040f578063095ea7b3146104d857806318160ddd146105085780631af3c61d1461051d57806323b872dd14610532578063294aad9c1461055257600080fd5b8062b861681461044b5780630445b6671461046d5780630483f7a01461049657806306fdde03146104b657600080fd5b3661044657005b600080fd5b34801561045757600080fd5b5061046b6104663660046141df565b610def565b005b34801561047957600080fd5b5061048360095481565b6040519081526020015b60405180910390f35b3480156104a257600080fd5b5061046b6104b1366004614245565b610f9f565b3480156104c257600080fd5b506104cb610fb5565b60405161048d919061427e565b3480156104e457600080fd5b506104f86104f33660046142cc565b611047565b604051901515815260200161048d565b34801561051457600080fd5b50600254610483565b34801561052957600080fd5b5061046b611061565b34801561053e57600080fd5b506104f861054d3660046142f8565b6110d3565b34801561055e57600080fd5b506104836110f7565b34801561057357600080fd5b50600654610587906001600160a01b031681565b6040516001600160a01b03909116815260200161048d565b3480156105ab57600080fd5b506105bf6105ba366004614339565b61116a565b60405161ffff909116815260200161048d565b3480156105de57600080fd5b5061046b6105ed366004614245565b611198565b3480156105fe57600080fd5b5061046b61060d366004614339565b611224565b34801561061e57600080fd5b506104836112fe565b34801561063357600080fd5b506040516012815260200161048d565b34801561064f57600080fd5b506104f861065e3660046142cc565b611348565b34801561066f57600080fd5b50601954610587906001600160a01b031681565b34801561068f57600080fd5b506105bf61069e366004614339565b61136a565b3480156106af57600080fd5b5061046b6106be366004614352565b61137a565b3480156106cf57600080fd5b5061046b6106de366004614339565b611407565b3480156106ef57600080fd5b5061046b6106fe366004614352565b611414565b34801561070f57600080fd5b506104f86114a1565b34801561072457600080fd5b506104f8610733366004614352565b601e6020526000908152604090205460ff1681565b34801561075457600080fd5b506020546105879061010090046001600160a01b031681565b34801561077957600080fd5b5061046b6107883660046141df565b611510565b34801561079957600080fd5b506104f86107a8366004614352565b60236020526000908152604090205460ff1681565b3480156107c957600080fd5b506105bf6107d8366004614339565b6116ae565b3480156107e957600080fd5b5061046b6107f8366004614352565b6116be565b34801561080957600080fd5b506105bf610818366004614339565b61174b565b34801561082957600080fd5b5061048361175b565b34801561083e57600080fd5b5061048361084d366004614352565b6117a5565b34801561085e57600080fd5b5061046b61086d366004614339565b611815565b34801561087e57600080fd5b5061048361088d366004614352565b61187e565b34801561089e57600080fd5b5061046b611899565b3480156108b357600080fd5b506104f86108c2366004614352565b60226020526000908152604090205460ff1681565b3480156108e357600080fd5b5061046b6108f23660046142cc565b6118ad565b34801561090357600080fd5b5061046b610912366004614352565b6118c2565b34801561092357600080fd5b5061046b6109323660046141df565b61194f565b34801561094357600080fd5b50601b54610587906001600160a01b031681565b34801561096357600080fd5b50601354610587906001600160a01b031681565b34801561098357600080fd5b506105bf610992366004614339565b611aed565b3480156109a357600080fd5b506005546001600160a01b0316610587565b3480156109c157600080fd5b50602154610587906001600160a01b031681565b3480156109e157600080fd5b506104cb611afd565b3480156109f657600080fd5b506105bf610a05366004614339565b611b0c565b348015610a1657600080fd5b5061046b610a253660046141df565b611b1c565b348015610a3657600080fd5b5061048360075481565b348015610a4c57600080fd5b50610483611cba565b348015610a6157600080fd5b50601754610587906001600160a01b031681565b348015610a8157600080fd5b506104f8610a903660046142cc565b611d04565b348015610aa157600080fd5b506105bf610ab0366004614339565b611d7f565b348015610ac157600080fd5b50610483610ad0366004614352565b611d8f565b348015610ae157600080fd5b506104f8610af03660046142cc565b611dc2565b348015610b0157600080fd5b5061048360245481565b348015610b1757600080fd5b50610b2b610b26366004614352565b611dd0565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e08201526101000161048d565b348015610b7c57600080fd5b506105bf610b8b366004614339565b611e6b565b348015610b9c57600080fd5b5061046b610bab366004614245565b611e7b565b348015610bbc57600080fd5b5061046b610bcb366004614245565b611ee3565b348015610bdc57600080fd5b5061046b610beb366004614339565b611ef5565b348015610bfc57600080fd5b5061046b610c0b366004614352565b611f89565b348015610c1c57600080fd5b5061046b610c2b366004614352565b612045565b348015610c3c57600080fd5b506104f8610c4b366004614352565b6120d2565b348015610c5c57600080fd5b5061046b610c6b3660046141df565b612141565b348015610c7c57600080fd5b5061046b610c8b366004614339565b6122df565b348015610c9c57600080fd5b50610483610cab366004614376565b61231c565b348015610cbc57600080fd5b5061046b610ccb3660046141df565b612347565b348015610cdc57600080fd5b5061046b610ceb3660046141df565b6124e5565b348015610cfc57600080fd5b50610483612683565b348015610d1157600080fd5b50601554610587906001600160a01b031681565b348015610d3157600080fd5b506104836126cd565b348015610d4657600080fd5b50610b2b610d55366004614339565b61272c565b348015610d6657600080fd5b5061046b610d75366004614352565b61276e565b348015610d8657600080fd5b5061046b610d95366004614352565b6127e4565b348015610da657600080fd5b50601154610587906001600160a01b031681565b348015610dc657600080fd5b50610dda610dd5366004614339565b61283a565b6040805192835260208301919091520161048d565b610df76128b9565b601654601f548491610e109161ffff91821691166143d0565b610e1a91906143f2565b601f805461ffff191661ffff92831617908190556016548492610e4a9262010000928390048216929004166143d0565b610e5491906143f2565b601f805463ffff000019166201000061ffff9384160217908190556016548392610e8c92600160201b928390048216929004166143d0565b610e9691906143f2565b601f805461ffff928316600160201b0261ffff60201b19821681179092556109c4908316919092161711801590610edc5750601f546109c46201000090910461ffff1611155b8015610ef85750601f546109c4600160201b90910461ffff1611155b610f1d5760405162461bcd60e51b8152600401610f149061440d565b60405180910390fd5b6040805160608101825261ffff80861682528481166020830152831691810191909152610f4e90601690600361411d565b506040805161ffff808616825280851660208301528316918101919091527fd4f8d5251d187bad9b5fcb3154d391e4886b79a90ef6e5c6074be3e81a94eb95906060015b60405180910390a1505050565b610fa76128b9565b610fb18282612913565b5050565b606060038054610fc490614463565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff090614463565b801561103d5780601f106110125761010080835404028352916020019161103d565b820191906000526020600020905b81548152906001019060200180831161102057829003601f168201915b5050505050905090565b600033611055818585612999565b60019150505b92915050565b6110696128b9565b60006110736126cd565b61107c3061187e565b611086919061449d565b9050600061109382612abd565b60408051848152602081018390529192507f5c3340567bf85cd43734028361fe821eac789fbe397b8d1a4f9ebb3ab4c81ef7910160405180910390a15050565b6000336110e1858285612b61565b6110ec858585612bdb565b506001949350505050565b600654604080516318160ddd60e01b815290516000926001600160a01b0316916318160ddd9160048083019260209291908290030181865afa158015611141573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116591906144b0565b905090565b6012816003811061117a57600080fd5b60109182820401919006600202915054906101000a900461ffff1681565b6111a06128b9565b6021546001600160a01b039081169083160361121a5760405162461bcd60e51b815260206004820152603360248201527f44656661756c74526f757465723a2043616e6e6f742072656d6f766520696e696044820152721d1a585b081c185a5c88199c9bdb481b1a5cdd606a1b6064820152608401610f14565b610fb18282613761565b61122c6128b9565b62030d40811015801561124257506207a1208111155b6112c25760405162461bcd60e51b815260206004820152604560248201527f4469766964656e64547261636b65723a20676173466f7250726f63657373696e60448201527f67206d757374206265206265747765656e203230306b20616e64203530306b20606482015264756e69747360d81b608482015260a401610f14565b60078190556040518181527f1662a2324457a200b9556dfe949641639b99480ee6b448aefcfb97ee61ec2417906020015b60405180910390a150565b600654604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae9160048083019260209291908290030181865afa158015611141573d6000803e3d6000fd5b60003361105581858561135b838361231c565b61136591906144c9565b612999565b601f816003811061117a57600080fd5b6113826128b9565b6001600160a01b0381166113a85760405162461bcd60e51b8152600401610f14906144dc565b601780546001600160a01b0319166001600160a01b0383161790556113ce816001611e7b565b6040516001600160a01b03821681527f2dd1fb17226de935881c09a15398f7ec3fc6f764298e17173c1d3bf18cf8fb9a906020016112f3565b61141133826137e1565b50565b61141c6128b9565b6001600160a01b0381166114425760405162461bcd60e51b8152600401610f14906144dc565b601980546001600160a01b0319166001600160a01b038316179055611468816001611e7b565b6040516001600160a01b03821681527f826b2655b812cc79d61beba1469dc77b9930873e611cb932faf630852710ccc9906020016112f3565b600654604051630f41a04d60e11b81523360048201526000916001600160a01b031690631e83409a906024016020604051808303816000875af11580156114ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111659190614548565b6115186128b9565b601454601f5484916115319161ffff91821691166143d0565b61153b91906143f2565b601f805461ffff191661ffff9283161790819055601454849261156b9262010000928390048216929004166143d0565b61157591906143f2565b601f805463ffff000019166201000061ffff93841602179081905560145483926115ad92600160201b928390048216929004166143d0565b6115b791906143f2565b601f805461ffff928316600160201b0261ffff60201b19821681179092556109c49083169190921617118015906115fd5750601f546109c46201000090910461ffff1611155b80156116195750601f546109c4600160201b90910461ffff1611155b6116355760405162461bcd60e51b8152600401610f149061440d565b6040805160608101825261ffff8086168252848116602083015283169181019190915261166690601490600361411d565b506040805161ffff808616825280851660208301528316918101919091527f20d37acfdb725f9926e5dfddb9c0f448925db29d782ad353b41084b0aad51ee490606001610f92565b6016816003811061117a57600080fd5b6116c66128b9565b6001600160a01b0381166116ec5760405162461bcd60e51b8152600401610f14906144dc565b601180546001600160a01b0319166001600160a01b038316179055611712816001611e7b565b6040516001600160a01b03821681527f0e2bc3cd453e10efd7122b9cdf987f2037d6cdf9d238c09391f7eaa711591b74906020016112f3565b6018816003811061117a57600080fd5b600654604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde9160048083019260209291908290030181865afa158015611141573d6000803e3d6000fd5b6006546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b602060405180830381865afa1580156117f1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061105b91906144b0565b61181d6128b9565b600654604051636cc9c8f160e01b8152600481018390526001600160a01b0390911690636cc9c8f190602401600060405180830381600087803b15801561186357600080fd5b505af1158015611877573d6000803e3d6000fd5b5050505050565b6001600160a01b031660009081526020819052604090205490565b6118a16128b9565b6118ab6000613837565b565b6118b8823383612b61565b610fb182826137e1565b6118ca6128b9565b6001600160a01b0381166118f05760405162461bcd60e51b8152600401610f14906144dc565b601580546001600160a01b0319166001600160a01b038316179055611916816001611e7b565b6040516001600160a01b03821681527f01fe4a01f78c42f30db88b42e778a4934e6a9d27a8e4c6a3afb3f115e53e6786906020016112f3565b6119576128b9565b601d54601f5484916119709161ffff91821691166143d0565b61197a91906143f2565b601f805461ffff191661ffff9283161790819055601d5484926119aa9262010000928390048216929004166143d0565b6119b491906143f2565b601f805463ffff000019166201000061ffff938416021790819055601d5483926119ec92600160201b928390048216929004166143d0565b6119f691906143f2565b601f805461ffff928316600160201b0261ffff60201b19821681179092556109c4908316919092161711801590611a3c5750601f546109c46201000090910461ffff1611155b8015611a585750601f546109c4600160201b90910461ffff1611155b611a745760405162461bcd60e51b8152600401610f149061440d565b6040805160608101825261ffff80861682528481166020830152831691810191909152611aa590601d90600361411d565b506040805161ffff808616825280851660208301528316918101919091527f4cc46242539a322b08449caf679672d54580fc99e4b7a4b3c6f21e322ad6046890606001610f92565b601a816003811061117a57600080fd5b606060048054610fc490614463565b601c816003811061117a57600080fd5b611b246128b9565b601254601f548491611b3d9161ffff91821691166143d0565b611b4791906143f2565b601f805461ffff191661ffff92831617908190556012548492611b779262010000928390048216929004166143d0565b611b8191906143f2565b601f805463ffff000019166201000061ffff9384160217908190556012548392611bb992600160201b928390048216929004166143d0565b611bc391906143f2565b601f805461ffff928316600160201b0261ffff60201b19821681179092556109c4908316919092161711801590611c095750601f546109c46201000090910461ffff1611155b8015611c255750601f546109c4600160201b90910461ffff1611155b611c415760405162461bcd60e51b8152600401610f149061440d565b6040805160608101825261ffff80861682528481166020830152831691810191909152611c7290601290600361411d565b506040805161ffff808616825280851660208301528316918101919091527fdc3c0b8b2b19f87dabfe7bba4a1e80438f5b02b8fdd0f89ed08daa0ca76d2c5890606001610f92565b60065460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec9160048083019260209291908290030181865afa158015611141573d6000803e3d6000fd5b60003381611d12828661231c565b905083811015611d725760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610f14565b6110ec8286868403612999565b601d816003811061117a57600080fd5b6006546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d240906024016117d4565b600033611055818585612bdb565b600654604051632ebc328760e11b81526001600160a01b0383811660048301526000928392839283928392839283928392911690635d78650e906024015b61010060405180830381865afa158015611e2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e509190614565565b97509750975097509750975097509750919395975091939597565b6014816003811061117a57600080fd5b611e836128b9565b6001600160a01b0382166000818152601e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b611eeb6128b9565b610fb18282613889565b611efd6128b9565b611f056138e1565b811015611f545760405162461bcd60e51b815260206004820152601860248201527f4d617857616c6c65743a204c696d697420746f6f206c6f7700000000000000006044820152606401610f14565b60248190556040518181527f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e001906020016112f3565b600854610100900460ff1680611fa2575060085460ff16155b6120055760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610f14565b600854610100900460ff16158015612027576008805461ffff19166101011790555b612030826138f9565b8015610fb1576008805461ff00191690555050565b61204d6128b9565b6001600160a01b0381166120735760405162461bcd60e51b8152600401610f14906144dc565b601380546001600160a01b0319166001600160a01b038316179055612099816001611e7b565b6040516001600160a01b03821681527f20601d6e6ad1b4a2eda460c3e20d36f84afc68a1f2db45d0d58ce52078cea7d3906020016112f3565b60065460405163c705c56960e01b81526001600160a01b038381166004830152600092169063c705c56990602401602060405180830381865afa15801561211d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061105b9190614548565b6121496128b9565b601a54601f5484916121629161ffff91821691166143d0565b61216c91906143f2565b601f805461ffff191661ffff9283161790819055601a54849261219c9262010000928390048216929004166143d0565b6121a691906143f2565b601f805463ffff000019166201000061ffff938416021790819055601a5483926121de92600160201b928390048216929004166143d0565b6121e891906143f2565b601f805461ffff928316600160201b0261ffff60201b19821681179092556109c490831691909216171180159061222e5750601f546109c46201000090910461ffff1611155b801561224a5750601f546109c4600160201b90910461ffff1611155b6122665760405162461bcd60e51b8152600401610f149061440d565b6040805160608101825261ffff8086168252848116602083015283169181019190915261229790601a90600361411d565b506040805161ffff808616825280851660208301528316918101919091527f3c4bb863dd5894f1f8c5257698677ba1e8ca8c660262ef60a3758c73bdad150090606001610f92565b6122e76128b9565b60098190556040518181527f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd06476906020016112f3565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61234f6128b9565b601854601f5484916123689161ffff91821691166143d0565b61237291906143f2565b601f805461ffff191661ffff928316179081905560185484926123a29262010000928390048216929004166143d0565b6123ac91906143f2565b601f805463ffff000019166201000061ffff93841602179081905560185483926123e492600160201b928390048216929004166143d0565b6123ee91906143f2565b601f805461ffff928316600160201b0261ffff60201b19821681179092556109c49083169190921617118015906124345750601f546109c46201000090910461ffff1611155b80156124505750601f546109c4600160201b90910461ffff1611155b61246c5760405162461bcd60e51b8152600401610f149061440d565b6040805160608101825261ffff8086168252848116602083015283169181019190915261249d90601890600361411d565b506040805161ffff808616825280851660208301528316918101919091527f10712b44f9af3e120ff6c1a2ea878ea05f15c4018bc1ed40852cc0291d17d23390606001610f92565b6124ed6128b9565b601c54601f5484916125069161ffff91821691166143d0565b61251091906143f2565b601f805461ffff191661ffff9283161790819055601c5484926125409262010000928390048216929004166143d0565b61254a91906143f2565b601f805463ffff000019166201000061ffff938416021790819055601c54839261258292600160201b928390048216929004166143d0565b61258c91906143f2565b601f805461ffff928316600160201b0261ffff60201b19821681179092556109c49083169190921617118015906125d25750601f546109c46201000090910461ffff1611155b80156125ee5750601f546109c4600160201b90910461ffff1611155b61260a5760405162461bcd60e51b8152600401610f149061440d565b6040805160608101825261ffff8086168252848116602083015283169181019190915261263b90601c90600361411d565b506040805161ffff808616825280851660208301528316918101919091527f2524ccb75260c9a50c71af1740c212c049a01232ef122061416b51815ec57a1890606001610f92565b60065460408051633009a60960e01b815290516000926001600160a01b031691633009a6099160048083019260209291908290030181865afa158015611141573d6000803e3d6000fd5b6000601054600f54600e54600d54600c54600b54600a5460006126f091906144c9565b6126fa91906144c9565b61270491906144c9565b61270e91906144c9565b61271891906144c9565b61272291906144c9565b61116591906144c9565b600654604051632f7541e960e01b81526004810183905260009182918291829182918291829182916001600160a01b0390911690632f7541e990602401611e0e565b6127766128b9565b6001600160a01b0381166127db5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610f14565b61141181613837565b6127ec6128b9565b601b80546001600160a01b0319166001600160a01b0383169081179091556040519081527f1c75c7e1dcc8d5c68921dfeb6ac2a2a801ac4e38b295aec5c41e03fdc1ef0c4f906020016112f3565b6006546040516001624d3b8760e01b031981526004810183905260009182916001600160a01b039091169063ffb2c4799060240160408051808303816000875af115801561288c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128b091906145cf565b91509150915091565b6005546001600160a01b031633146118ab5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f14565b6006546001600160a01b031663d1fbb84e8361292e8161187e565b6040516001600160e01b031960e085901b1681526001600160a01b039092166004830152602482015283151560448201526064015b600060405180830381600087803b15801561297d57600080fd5b505af1158015612991573d6000803e3d6000fd5b505050505050565b6001600160a01b0383166129fb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610f14565b6001600160a01b038216612a5c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610f14565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600080612acb6002846145f3565b90506000612ad9828561449d565b9050612ae482613afc565b478015612b59576000806000612afa8585613c45565b604080518481526020810184905290810182905292955090935091507f3db50c324c27fb39c451e35d4d23abba3e20d96d036e7a40f4adc681c1ce30139060600160405180910390a1612b4d838661449d565b98975050505050505050565b509392505050565b6000612b6d848461231c565b90506000198114612bd55781811015612bc85760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610f14565b612bd58484848403612999565b50505050565b6000600954612be86126cd565b602054911115915060ff16158015612c1957506001600160a01b03841660009081526022602052604090205460ff16155b8015612c225750805b15613045576020805460ff191660011790556000600a541180612c4757506000600b54115b80612c5457506000600c54115b80612c6157506000600d54115b80612c6e57506000600e54115b15612ff1576000600e54600d54600c54600b54600a546000612c9091906144c9565b612c9a91906144c9565b612ca491906144c9565b612cae91906144c9565b612cb891906144c9565b90506000612cc582613afc565b600a5447906000908490612cd99084614615565b612ce391906145f3565b90508015612d63576011546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505092508215612d6357601154604080516001600160a01b039092168252602082018390527f53eb94be002d0cafd15b0d23dfb296b487865ef8047dd7c0ccaf9e66eb9928b6910160405180910390a15b6000600a819055600b548590612d799085614615565b612d8391906145f3565b90508015612e03576013546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505093508315612e0357601354604080516001600160a01b039092168252602082018390527f2f0ea2c11fec5cdc43e0ce7bc38cf4e6a3350617d9ef8db54e928dc6ce1bb379910160405180910390a15b6000600b819055600c548690612e199086614615565b612e2391906145f3565b90508015612ea3576015546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505094508415612ea357601554604080516001600160a01b039092168252602082018390527f800305120dd0ba317e4898131970cc4746f1db43ae3c2f51102f1a3175f8114a910160405180910390a15b6000600c819055600d548790612eb99087614615565b612ec391906145f3565b90508015612f43576017546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505095508515612f4357601754604080516001600160a01b039092168252602082018390527fbab3751b47736002136b5ead2780ee40663c11c069dc2776125bf1ea47204cc8910160405180910390a15b6000600d819055600e548890612f599088614615565b612f6391906145f3565b90508015612fe3576019546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505096508615612fe357601954604080516001600160a01b039092168252602082018390527f86c159e6b70ced93c93726021b2bae6218c4cab6255754f2cc6b2413dee2ef5d910160405180910390a15b50506000600e555050505050505b600f541561300b57613004600f54612abd565b506000600f555b60006010541180156130245750600061302261175b565b115b1561303a57613034601054613d11565b60006010555b6020805460ff191690555b60205460ff161580156130585750600082115b801561307757506020546001600160a01b038481166101009092041614155b801561309c57506001600160a01b0384166000908152601e602052604090205460ff16155b80156130c157506001600160a01b0383166000908152601e602052604090205460ff16155b156135d7576001600160a01b03841660009081526022602052604081205460039060ff16156130ff57601f5461ffff16156130fa575060005b613151565b6001600160a01b03851660009081526022602052604090205460ff161561313a57601f5462010000900461ffff16156130fa57506001613151565b601f54600160201b900461ffff1615613151575060025b60038160ff1610156135c357612710601f8260ff1660038110613176576131766143a4565b601091828204019190066002029054906101000a900461ffff1661ffff168561319f9190614615565b6131a991906145f3565b91506131b5828561449d565b9350601f8160ff16600381106131cd576131cd6143a4565b601091828204019190066002029054906101000a900461ffff1661ffff1660128260ff1660038110613201576132016143a4565b601091828204019190066002029054906101000a900461ffff1661ffff168361322a9190614615565b61323491906145f3565b600a600082825461324591906144c9565b90915550601f905060ff821660038110613261576132616143a4565b601091828204019190066002029054906101000a900461ffff1661ffff1660148260ff1660038110613295576132956143a4565b601091828204019190066002029054906101000a900461ffff1661ffff16836132be9190614615565b6132c891906145f3565b600b60008282546132d991906144c9565b90915550601f905060ff8216600381106132f5576132f56143a4565b601091828204019190066002029054906101000a900461ffff1661ffff1660168260ff1660038110613329576133296143a4565b601091828204019190066002029054906101000a900461ffff1661ffff16836133529190614615565b61335c91906145f3565b600c600082825461336d91906144c9565b90915550601f905060ff821660038110613389576133896143a4565b601091828204019190066002029054906101000a900461ffff1661ffff1660188260ff16600381106133bd576133bd6143a4565b601091828204019190066002029054906101000a900461ffff1661ffff16836133e69190614615565b6133f091906145f3565b600d600082825461340191906144c9565b90915550601f905060ff82166003811061341d5761341d6143a4565b601091828204019190066002029054906101000a900461ffff1661ffff16601a8260ff1660038110613451576134516143a4565b601091828204019190066002029054906101000a900461ffff1661ffff168361347a9190614615565b61348491906145f3565b600e600082825461349591906144c9565b90915550601f905060ff8216600381106134b1576134b16143a4565b601091828204019190066002029054906101000a900461ffff1661ffff16601c8260ff16600381106134e5576134e56143a4565b601091828204019190066002029054906101000a900461ffff1661ffff168361350e9190614615565b61351891906145f3565b600f600082825461352991906144c9565b90915550601f905060ff821660038110613545576135456143a4565b601091828204019190066002029054906101000a900461ffff1661ffff16601d8260ff1660038110613579576135796143a4565b601091828204019190066002029054906101000a900461ffff1661ffff16836135a29190614615565b6135ac91906145f3565b601060008282546135bd91906144c9565b90915550505b81156135d4576135d4863084613db2565b50505b6135e2848484613db2565b6006546001600160a01b031663e30443bc856135fd8161187e565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561364357600080fd5b505af1158015613657573d6000803e3d6000fd5b50506006546001600160a01b0316915063e30443bc9050846136788161187e565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156136be57600080fd5b505af11580156136d2573d6000803e3d6000fd5b505060205460ff169150612bd59050576006546007546040516001624d3b8760e01b031981526001600160a01b039092169163ffb2c4799161371a9160040190815260200190565b60408051808303816000875af1925050508015613754575060408051601f3d908101601f19168201909252613751918101906145cf565b60015b15612bd557505050505050565b6001600160a01b0382166000908152602260205260409020805460ff191682158015919091179091556137a457613799826001612913565b6137a4826001613889565b816001600160a01b03167f911aa18ddbbbc33c9b4c704a71bdaa0984b0aa2e82726a7f51e64bad0b0a845582604051611ed7911515815260200190565b6137eb8282613f5c565b6006546001600160a01b031663e30443bc836138068161187e565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401612963565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260236020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc929101611ed7565b60006103e86138ef60025490565b61116591906145f3565b60208054610100600160a81b0319166101006001600160a01b038481168202929092178084556040805163c45a015560e01b81529051929091049092169263c45a015592600480820193918290030181865afa15801561395d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613981919061462c565b6001600160a01b031663c9c6539630602060019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156139e3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a07919061462c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015613a54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a78919061462c565b602180546001600160a01b0319166001600160a01b0392909216919091179055613aa3816001612913565b613aae816001613889565b602154613ac5906001600160a01b03166001613761565b6040516001600160a01b038216907fbc052db65df144ad4f71f02da93cae3d4401104c30ac374d7cc10d87ee07b60290600090a250565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110613b3157613b316143a4565b60200260200101906001600160a01b031690816001600160a01b031681525050602060019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613ba4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613bc8919061462c565b81600181518110613bdb57613bdb6143a4565b6001600160a01b0392831660209182029290920181019190915254613c0891309161010090041684612999565b60205460405163791ac94760e01b81526101009091046001600160a01b03169063791ac94790612963908590600090869030904290600401614649565b6000806000613c6a30602060019054906101000a90046001600160a01b031687612999565b602054601b5460405163f305d71960e01b81523060048201526024810188905260006044820181905260648201526001600160a01b0391821660848201524260a4820152610100909204169063f305d71990869060c40160606040518083038185885af1158015613cdf573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613d0491906146ba565b9250925092509250925092565b613d1a81613afc565b478015610fb1576006546040516000916001600160a01b03169083908381818185875af1925050503d8060008114613d6e576040519150601f19603f3d011682016040523d82523d6000602084013e613d73565b606091505b505090508015613dad576040518281527f193576e9dd325a2a57e4e6e7f6afa82c4fd152eaa8d5f874b0b0f40d924b18a690602001610f92565b505050565b6001600160a01b038316613e165760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610f14565b6001600160a01b038216613e785760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610f14565b6001600160a01b03831660009081526020819052604090205481811015613ef05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610f14565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3612bd5848484614091565b6001600160a01b038216613fbc5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610f14565b6001600160a01b038216600090815260208190526040902054818110156140305760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610f14565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3613dad836000845b6001600160a01b03821660009081526023602052604090205460ff16613dad576024546140bd8361187e565b1115613dad5760405162461bcd60e51b815260206004820152602960248201527f4d617857616c6c65743a2043616e6e6f7420657863656564206d61782077616c6044820152681b195d081b1a5b5a5d60ba1b6064820152608401610f14565b6001830191839082156141a35791602002820160005b8382111561417357835183826101000a81548161ffff021916908361ffff1602179055509260200192600201602081600101049283019260010302614133565b80156141a15782816101000a81549061ffff0219169055600201602081600101049283019260010302614173565b505b506141af9291506141b3565b5090565b5b808211156141af57600081556001016141b4565b803561ffff811681146141da57600080fd5b919050565b6000806000606084860312156141f457600080fd5b6141fd846141c8565b925061420b602085016141c8565b9150614219604085016141c8565b90509250925092565b6001600160a01b038116811461141157600080fd5b801515811461141157600080fd5b6000806040838503121561425857600080fd5b823561426381614222565b9150602083013561427381614237565b809150509250929050565b600060208083528351808285015260005b818110156142ab5785810183015185820160400152820161428f565b506000604082860101526040601f19601f8301168501019250505092915050565b600080604083850312156142df57600080fd5b82356142ea81614222565b946020939093013593505050565b60008060006060848603121561430d57600080fd5b833561431881614222565b9250602084013561432881614222565b929592945050506040919091013590565b60006020828403121561434b57600080fd5b5035919050565b60006020828403121561436457600080fd5b813561436f81614222565b9392505050565b6000806040838503121561438957600080fd5b823561439481614222565b9150602083013561427381614222565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b61ffff8281168282160390808211156143eb576143eb6143ba565b5092915050565b61ffff8181168382160190808211156143eb576143eb6143ba565b60208082526036908201527f546178657344656661756c74526f757465723a2043616e6e6f7420657863656560408201527564206d617820746f74616c20666565206f662032352560501b606082015260800190565b600181811c9082168061447757607f821691505b60208210810361449757634e487b7160e01b600052602260045260246000fd5b50919050565b8181038181111561105b5761105b6143ba565b6000602082840312156144c257600080fd5b5051919050565b8082018082111561105b5761105b6143ba565b60208082526046908201527f546178657344656661756c74526f7574657257616c6c65743a2057616c6c657460408201527f2074617820726563697069656e742063616e6e6f74206265206120307830206160608201526564647265737360d01b608082015260a00190565b60006020828403121561455a57600080fd5b815161436f81614237565b600080600080600080600080610100898b03121561458257600080fd5b885161458d81614222565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b600080604083850312156145e257600080fd5b505080516020909101519092909150565b60008261461057634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761105b5761105b6143ba565b60006020828403121561463e57600080fd5b815161436f81614222565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156146995784516001600160a01b031683529383019391830191600101614674565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156146cf57600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122080185b008a99fc20a3ec2cdcb0ffb35f30159cc1b7078131728ea6b14c69c6b564736f6c63430008130033
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.