Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
21,000,000 BRO
Holders
35
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BRO
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity Standard Json-Input format)
/* _____ _____ _____ _____ _______ _____ _____ _____ _______ /\ \ /\ \ /\ \ /\ \ /::\ \ /\ \ /\ \ /\ \ /::\ \ /::\ \ /::\ \ /::\ \ /::\ \ /::::\ \ /::\ \ /::\ \ /::\ \ /::::\ \ /::::\ \ \:::\ \ \:::\ \ /::::\ \ /::::::\ \ /::::\ \ /::::\ \ /::::\ \ /::::::\ \ /::::::\ \ \:::\ \ \:::\ \ /::::::\ \ /::::::::\ \ /::::::\ \ /::::::\ \ /::::::\ \ /::::::::\ \ /:::/\:::\ \ \:::\ \ \:::\ \ /:::/\:::\ \ /:::/~~\:::\ \ /:::/\:::\ \ /:::/\:::\ \ /:::/\:::\ \ /:::/~~\:::\ \ /:::/__\:::\ \ \:::\ \ \:::\ \ /:::/ \:::\ \ /:::/ \:::\ \ /:::/__\:::\ \ /:::/__\:::\ \ /:::/ \:::\ \ /:::/ \:::\ \ /::::\ \:::\ \ /::::\ \ /::::\ \ /:::/ \:::\ \ /:::/ / \:::\ \ /::::\ \:::\ \ /::::\ \:::\ \ /:::/ \:::\ \ /:::/ / \:::\ \ /::::::\ \:::\ \ ____ /::::::\ \ /::::::\ \ /:::/ / \:::\ \ /:::/____/ \:::\____\ /::::::\ \:::\ \ /::::::\ \:::\ \ /:::/ / \:::\ \ /:::/____/ \:::\____\ /:::/\:::\ \:::\ ___\ /\ \ /:::/\:::\ \ /:::/\:::\ \ /:::/ / \:::\ ___\ |:::| | |:::| | /:::/\:::\ \:::\____\ /:::/\:::\ \:::\ \ /:::/ / \:::\ ___\ |:::| | |:::| | /:::/__\:::\ \:::| |/::\ \/:::/ \:::\____\ /:::/ \:::\____\/:::/____/ \:::| ||:::|____| |:::| |/:::/ \:::\ \:::| |/:::/ \:::\ \:::\____\/:::/____/ \:::| ||:::|____| |:::| | \:::\ \:::\ /:::|____|\:::\ /:::/ \::/ / /:::/ \::/ /\:::\ \ /:::|____| \:::\ \ /:::/ / \::/ |::::\ /:::|____|\::/ \:::\ /:::/ /\:::\ \ /:::|____| \:::\ \ /:::/ / \:::\ \:::\/:::/ / \:::\/:::/ / \/____/ /:::/ / \/____/ \:::\ \ /:::/ / \:::\ \ /:::/ / \/____|:::::\/:::/ / \/____/ \:::\/:::/ / \:::\ \ /:::/ / \:::\ \ /:::/ / \:::\ \::::::/ / \::::::/ / /:::/ / \:::\ \ /:::/ / \:::\ /:::/ / |:::::::::/ / \::::::/ / \:::\ \ /:::/ / \:::\ /:::/ / \:::\ \::::/ / \::::/____/ /:::/ / \:::\ /:::/ / \:::\__/:::/ / |::|\::::/ / \::::/ / \:::\ /:::/ / \:::\__/:::/ / \:::\ /:::/ / \:::\ \ \::/ / \:::\ /:::/ / \::::::::/ / |::| \::/____/ /:::/ / \:::\ /:::/ / \::::::::/ / \:::\/:::/ / \:::\ \ \/____/ \:::\/:::/ / \::::::/ / |::| ~| /:::/ / \:::\/:::/ / \::::::/ / \::::::/ / \:::\ \ \::::::/ / \::::/ / |::| | /:::/ / \::::::/ / \::::/ / \::::/ / \:::\____\ \::::/ / \::/____/ \::| | /:::/ / \::::/ / \::/____/ \::/____/ \::/ / \::/____/ ~~ \:| | \::/ / \::/____/ ~~ ~~ \/____/ ~~ \|___| \/____/ ~~ */ // SPDX-License-Identifier: No License pragma solidity 0.8.19; import "./ERC20.sol"; import "./ERC20Burnable.sol"; import "./Ownable.sol"; import "./Pausable.sol"; import "./TokenDividendTracker.sol"; import "./Initializable.sol"; import "./IUniswapV2Factory.sol"; import "./IUniswapV2Pair.sol"; import "./IUniswapV2Router01.sol"; import "./IUniswapV2Router02.sol"; contract BRO is ERC20, ERC20Burnable, Ownable, Pausable, DividendTrackerFunctions, Initializable { IERC20 public feeToken; uint16 public swapThresholdRatio; uint256 private _treasuryPending; uint256 private _teamPending; uint256 private _rewardsPending; address public treasuryAddress; uint16[3] public treasuryFees; address public teamAddress; uint16[3] public teamFees; 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 maxBuyAmount; uint256 public maxSellAmount; bool public tradingEnabled; mapping (address => bool) public isExcludedFromTradingRestriction; event SwapThresholdUpdated(uint16 swapThresholdRatio); event treasuryAddressUpdated(address treasuryAddress); event treasuryFeesUpdated(uint16 buyFee, uint16 sellFee, uint16 transferFee); event treasuryFeeSent(address recipient, uint256 amount); event teamAddressUpdated(address teamAddress); event teamFeesUpdated(uint16 buyFee, uint16 sellFee, uint16 transferFee); event teamFeeSent(address recipient, uint256 amount); 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 MaxBuyAmountUpdated(uint256 maxBuyAmount); event MaxSellAmountUpdated(uint256 maxSellAmount); event TradingEnabled(); event ExcludeFromTradingRestriction(address indexed account, bool isExcluded); constructor() ERC20(unicode"BRO", unicode"BRO") { address supplyRecipient = 0x9c4682750DDB5A496e682720A3891f7b4332e589; updateSwapThreshold(100); treasuryAddressSetup(0x2629310256512b31C63a6e3BCA10F09Dd325dcC3); treasuryFeesSetup(700, 700, 0); teamAddressSetup(0x3ea351e197a4Aaa7f2F7af6956cAEF10501727E4); teamFeesSetup(100, 100, 0); _deployDividendTracker(86400, 1000 * (10 ** decimals()) / 10); gasForProcessingSetup(300000); rewardsFeesSetup(200, 200, 0); _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); updateMaxBuyAmount(2100000 * (10 ** decimals()) / 10); updateMaxSellAmount(2100000 * (10 ** decimals()) / 10); excludeFromTradingRestriction(supplyRecipient, true); excludeFromTradingRestriction(address(this), true); _mint(supplyRecipient, 210000000 * (10 ** decimals()) / 10); _transferOwnership(0x9c4682750DDB5A496e682720A3891f7b4332e589); } /* This token is not upgradeable, but uses both the constructor and initializer for post-deployment setup. */ function initialize(address _feeToken, address _rewardToken, address _router) initializer external { _updateFeeToken(_feeToken); _setRewardToken(_rewardToken); _updateRouterV2(_router); } receive() external payable {} function decimals() public pure override returns (uint8) { return 18; } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function _updateFeeToken(address feeTokenAddress) private { feeToken = IERC20(feeTokenAddress); } function _sendInOtherTokens(address to, uint256 amount) private returns (bool) { return feeToken.transfer(to, amount); } function _swapTokensForOtherTokens(uint256 tokenAmount) private { address[] memory path = new address[](3); path[0] = address(this); path[1] = routerV2.WETH(); path[2] = address(feeToken); _approve(address(this), address(routerV2), tokenAmount); routerV2.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount, 0, path, address(this), block.timestamp); } function updateSwapThreshold(uint16 _swapThresholdRatio) public onlyOwner { require(_swapThresholdRatio > 0 && _swapThresholdRatio <= 500, "SwapThreshold: Cannot exceed limits from 0.01% to 5% for new swap threshold"); swapThresholdRatio = _swapThresholdRatio; emit SwapThresholdUpdated(_swapThresholdRatio); } function getSwapThresholdAmount() public view returns (uint256) { return balanceOf(pairV2) * swapThresholdRatio / 10000; } function getAllPending() public view returns (uint256) { return 0 + _treasuryPending + _teamPending + _rewardsPending; } function treasuryAddressSetup(address _newAddress) public onlyOwner { require(_newAddress != address(0), "TaxesDefaultRouterWallet: Wallet tax recipient cannot be a 0x0 address"); treasuryAddress = _newAddress; excludeFromFees(_newAddress, true); _excludeFromLimits(_newAddress, true); emit treasuryAddressUpdated(_newAddress); } function treasuryFeesSetup(uint16 _buyFee, uint16 _sellFee, uint16 _transferFee) public onlyOwner { totalFees[0] = totalFees[0] - treasuryFees[0] + _buyFee; totalFees[1] = totalFees[1] - treasuryFees[1] + _sellFee; totalFees[2] = totalFees[2] - treasuryFees[2] + _transferFee; require(totalFees[0] <= 2500 && totalFees[1] <= 2500 && totalFees[2] <= 2500, "TaxesDefaultRouter: Cannot exceed max total fee of 25%"); treasuryFees = [_buyFee, _sellFee, _transferFee]; emit treasuryFeesUpdated(_buyFee, _sellFee, _transferFee); } function teamAddressSetup(address _newAddress) public onlyOwner { require(_newAddress != address(0), "TaxesDefaultRouterWallet: Wallet tax recipient cannot be a 0x0 address"); teamAddress = _newAddress; excludeFromFees(_newAddress, true); _excludeFromLimits(_newAddress, true); emit teamAddressUpdated(_newAddress); } function teamFeesSetup(uint16 _buyFee, uint16 _sellFee, uint16 _transferFee) public onlyOwner { totalFees[0] = totalFees[0] - teamFees[0] + _buyFee; totalFees[1] = totalFees[1] - teamFees[1] + _sellFee; totalFees[2] = totalFees[2] - teamFees[2] + _transferFee; require(totalFees[0] <= 2500 && totalFees[1] <= 2500 && totalFees[2] <= 2500, "TaxesDefaultRouter: Cannot exceed max total fee of 25%"); teamFees = [_buyFee, _sellFee, _transferFee]; emit teamFeesUpdated(_buyFee, _sellFee, _transferFee); } function _swapTokensForOtherRewardTokens(uint256 tokenAmount) private { address[] memory path = new address[](3); path[0] = address(this); path[1] = routerV2.WETH(); path[2] = rewardToken; _approve(address(this), address(routerV2), tokenAmount); routerV2.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount, 0, path, address(this), block.timestamp); } function _sendDividends(uint256 tokenAmount) private { _swapTokensForOtherRewardTokens(tokenAmount); uint256 dividends = IERC20(rewardToken).balanceOf(address(this)); if (dividends > 0) { bool success = IERC20(rewardToken).approve(address(dividendTracker), dividends); if (success) { dividendTracker.distributeDividends(dividends); 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 { 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; _treasuryPending += fees * treasuryFees[txType] / totalFees[txType]; _teamPending += fees * teamFees[txType] / totalFees[txType]; _rewardsPending += fees * rewardsFees[txType] / totalFees[txType]; } if (fees > 0) { super._transfer(from, address(this), fees); } } bool canSwap = getAllPending() >= getSwapThresholdAmount() && balanceOf(pairV2) > 0; if (!_swapping && !AMMPairs[from] && from != address(routerV2) && canSwap) { _swapping = true; if (false || _treasuryPending > 0 || _teamPending > 0) { uint256 token2Swap = 0 + _treasuryPending + _teamPending; bool success = false; _swapTokensForOtherTokens(token2Swap); uint256 tokensReceived = feeToken.balanceOf(address(this)); uint256 treasuryPortion = tokensReceived * _treasuryPending / token2Swap; if (treasuryPortion > 0) { success = _sendInOtherTokens(treasuryAddress, treasuryPortion); if (success) { emit treasuryFeeSent(treasuryAddress, treasuryPortion); } } _treasuryPending = 0; uint256 teamPortion = tokensReceived * _teamPending / token2Swap; if (teamPortion > 0) { success = _sendInOtherTokens(teamAddress, teamPortion); if (success) { emit teamFeeSent(teamAddress, teamPortion); } } _teamPending = 0; } if (_rewardsPending > 0 && getNumberOfDividendTokenHolders() > 0) { _sendDividends(_rewardsPending); _rewardsPending = 0; } _swapping = false; } 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 _maxTxSafeLimit() private view returns (uint256) { return totalSupply() * 5 / 10000; } function updateMaxBuyAmount(uint256 _maxBuyAmount) public onlyOwner { require(_maxBuyAmount >= _maxTxSafeLimit(), "MaxTx: Limit too low"); maxBuyAmount = _maxBuyAmount; emit MaxBuyAmountUpdated(_maxBuyAmount); } function updateMaxSellAmount(uint256 _maxSellAmount) public onlyOwner { require(_maxSellAmount >= _maxTxSafeLimit(), "MaxTx: Limit too low"); maxSellAmount = _maxSellAmount; emit MaxSellAmountUpdated(_maxSellAmount); } function enableTrading() external onlyOwner { require(!tradingEnabled, "EnableTrading: Trading was enabled already"); tradingEnabled = true; emit TradingEnabled(); } function excludeFromTradingRestriction(address account, bool isExcluded) public onlyOwner { isExcludedFromTradingRestriction[account] = isExcluded; emit ExcludeFromTradingRestriction(account, isExcluded); } function _beforeTokenTransfer(address from, address to, uint256 amount) internal whenNotPaused override { if (AMMPairs[from] && !isExcludedFromLimits[to]) { // BUY require(amount <= maxBuyAmount, "MaxTx: Cannot exceed max buy limit"); } if (AMMPairs[to] && !isExcludedFromLimits[from]) { // SELL require(amount <= maxSellAmount, "MaxTx: Cannot exceed max sell limit"); } // Interactions with DEX are disallowed prior to enabling trading by owner if ((AMMPairs[from] && !isExcludedFromTradingRestriction[to]) || (AMMPairs[to] && !isExcludedFromTradingRestriction[from])) { require(tradingEnabled, "EnableTrading: Trading was not enabled yet"); } super._beforeTokenTransfer(from, to, amount); } function _afterTokenTransfer(address from, address to, uint256 amount) internal override { 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: MIT // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// 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; address public rewardToken; constructor(string memory _name, string memory _symbol) ERC20(_name, _symbol) {} function distributeDividends(uint256 amount) public { require(totalSupply() > 0); uint256 balBefore = IERC20(rewardToken).balanceOf(address(this)); IERC20(rewardToken).transferFrom(msg.sender, address(this), amount); uint256 received = IERC20(rewardToken).balanceOf(address(this)) - balBefore; if (received > 0) { magnifiedDividendPerShare = magnifiedDividendPerShare + (received * magnitude / totalSupply()); emit DividendsDistributed(msg.sender, received); totalDividendsDistributed = totalDividendsDistributed + received; } } function _withdrawDividend(address account) internal returns(uint256) { uint256 withdrawableDividend = withdrawableDividendOf(account); if (withdrawableDividend > 0) { withdrawnDividends[account] = withdrawnDividends[account] + withdrawableDividend; try IERC20(rewardToken).transfer(account, withdrawableDividend) returns (bool result) { if (result) { emit DividendWithdrawn(account, withdrawableDividend); return withdrawableDividend; } else { withdrawnDividends[account] = withdrawnDividends[account] - withdrawableDividend; } } catch { withdrawnDividends[account] = withdrawnDividends[account] - withdrawableDividend; } } 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 _transfer(address from, address to, uint256 value) internal override { revert("Forbidden action"); } 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 setRewardToken(address _rewardToken) external onlyOwner { require(rewardToken == address(0)); rewardToken = _rewardToken; } 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; address public rewardToken; 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 _setRewardToken(address _rewardToken) internal { dividendTracker.setRewardToken(_rewardToken); rewardToken = _rewardToken; } 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": { "TokenDividendTracker.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":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromTradingRestriction","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"gasForProcessing","type":"uint256"}],"name":"GasForProcessingUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxBuyAmount","type":"uint256"}],"name":"MaxBuyAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxSellAmount","type":"uint256"}],"name":"MaxSellAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"routerV2","type":"address"}],"name":"RouterV2Updated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"swapThresholdRatio","type":"uint16"}],"name":"SwapThresholdUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"TradingEnabled","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":"account","type":"address"}],"name":"Unpaused","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":"teamAddress","type":"address"}],"name":"teamAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"teamFeeSent","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":"teamFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"treasuryAddress","type":"address"}],"name":"treasuryAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"treasuryFeeSent","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":"treasuryFeesUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"AMMPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"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":[{"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":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"excludeFromTradingRestriction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","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":"getSwapThresholdAmount","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":"_feeToken","type":"address"},{"internalType":"address","name":"_rewardToken","type":"address"},{"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":"address","name":"","type":"address"}],"name":"isExcludedFromTradingRestriction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"rewardToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"isPair","type":"bool"}],"name":"setAMMPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapThresholdRatio","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"teamAddressSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"teamFees","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":"teamFeesSetup","outputs":[],"stateMutability":"nonpayable","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":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"treasuryAddressSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"treasuryFees","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":"treasuryFeesSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBuyAmount","type":"uint256"}],"name":"updateMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSellAmount","type":"uint256"}],"name":"updateMaxSellAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_swapThresholdRatio","type":"uint16"}],"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
60806040523480156200001157600080fd5b5060408051808201825260038082526242524f60e81b602080840182905284518086019095528285528401529091906200004c8382620015f4565b5060046200005b8282620015f4565b5050506200007862000072620002b860201b60201c565b620002bc565b6005805460ff60a01b19169055739c4682750ddb5a496e682720a3891f7b4332e589620000a660646200030e565b620000c5732629310256512b31c63a6e3bca10f09dd325dcc362000416565b620000d56102bc806000620004fa565b620000f4733ea351e197a4aaa7f2f7af6956caef10501727e4620006ec565b620001036064806000620007d0565b6200013a62015180600a6200011a601282620017d5565b62000128906103e8620017ed565b62000134919062001807565b620009ba565b62000148620493e062000a3f565b6200015760c880600062000b18565b6200016481600162000d02565b6200017130600162000d02565b6200017f6000600162000d02565b60065462000198906001600160a01b0316600162000d02565b620001a581600162000da1565b620001b230600162000da1565b620001bf81600162000e0b565b620001cc30600162000e0b565b620001da6000600162000e0b565b6200020e600a620001ed601282620017d5565b620001fc9062200b20620017ed565b62000208919062001807565b62000e64565b62000242600a62000221601282620017d5565b620002309062200b20620017ed565b6200023c919062001807565b62000eff565b6200024f81600162000f9a565b6200025c30600162000f9a565b6200029281600a62000270601282620017d5565b6200028090630c845880620017ed565b6200028c919062001807565b62000ffd565b620002b1739c4682750ddb5a496e682720a3891f7b4332e589620002bc565b5062001883565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620003186200106d565b60008161ffff161180156200033357506101f48161ffff1611155b620003bf5760405162461bcd60e51b815260206004820152604b60248201527f537761705468726573686f6c643a2043616e6e6f7420657863656564206c696d60448201527f6974732066726f6d20302e30312520746f20352520666f72206e65772073776160648201526a1c081d1a1c995cda1bdb1960aa1b608482015260a4015b60405180910390fd5b6009805461ffff60a01b1916600160a01b61ffff8416908102919091179091556040519081527fcf1366790fe21e66c9df9dcf67218b1e10acd64d3c99ae8a7429a68de91f1720906020015b60405180910390a150565b620004206200106d565b6001600160a01b0381166200048b5760405162461bcd60e51b8152602060048201526046602482015260008051602062007ad0833981519152604482015260008051602062007b1083398151915260648201526564647265737360d01b608482015260a401620003b6565b600d80546001600160a01b0319166001600160a01b038316179055620004b381600162000da1565b620004c081600162000e0b565b6040516001600160a01b03821681527fe4ed70c3d76616a0a0abd9a0dd9a70e8a5ce46146e1e644575e111330e365ce7906020016200040b565b620005046200106d565b600e5460135484916200051f9161ffff91821691166200182a565b6200052b91906200184f565b6013805461ffff191661ffff9283161790819055600e5484926200055d9262010000928390048216929004166200182a565b6200056991906200184f565b6013805463ffff000019166201000061ffff938416021790819055600e548392620005a492640100000000928390048216929004166200182a565b620005b091906200184f565b6013805461ffff9283166401000000000261ffff60201b19821681179092556109c4908316919092161711801590620005f857506013546109c46201000090910461ffff1611155b80156200061657506013546109c464010000000090910461ffff1611155b620006685760405162461bcd60e51b8152602060048201526036602482015260008051602062007af0833981519152604482015260008051602062007b308339815191526064820152608401620003b6565b6040805160608101825261ffff808616825284811660208301528316918101919091526200069b90600e90600362001496565b506040805161ffff808616825280851660208301528316918101919091527faaf77301c7ddcd55669cb55da207bf87362c0fa18fb623452c4401900c941891906060015b60405180910390a1505050565b620006f66200106d565b6001600160a01b038116620007615760405162461bcd60e51b8152602060048201526046602482015260008051602062007ad0833981519152604482015260008051602062007b1083398151915260648201526564647265737360d01b608482015260a401620003b6565b600f80546001600160a01b0319166001600160a01b0383161790556200078981600162000da1565b6200079681600162000e0b565b6040516001600160a01b03821681527f8087a30cc05fa30efdf66b0ad2f6d83af0e44a0ec1002d916ff685b6bd9de8cd906020016200040b565b620007da6200106d565b6010546013548491620007f59161ffff91821691166200182a565b6200080191906200184f565b6013805461ffff191661ffff92831617908190556010548492620008339262010000928390048216929004166200182a565b6200083f91906200184f565b6013805463ffff000019166201000061ffff93841602179081905560105483926200087a92640100000000928390048216929004166200182a565b6200088691906200184f565b6013805461ffff9283166401000000000261ffff60201b19821681179092556109c4908316919092161711801590620008ce57506013546109c46201000090910461ffff1611155b8015620008ec57506013546109c464010000000090910461ffff1611155b6200093e5760405162461bcd60e51b8152602060048201526036602482015260008051602062007af0833981519152604482015260008051602062007b308339815191526064820152608401620003b6565b6040805160608101825261ffff808616825284811660208301528316918101919091526200097190601090600362001496565b506040805161ffff808616825280851660208301528316918101919091527f1c6ab50fc52a00d75068f3ab1d9c122ccd764721f88973d737b365156ba5019490606001620006df565b8181604051620009ca9062001533565b9182526020820152604001604051809103906000f080158015620009f2573d6000803e3d6000fd5b50600680546001600160a01b0319166001600160a01b039290921691821790556040517f5a9eee832e9ca9f7d2110f2cee781d010262c4c3d74b9f1e4ca1b8e3861a8d0190600090a25050565b62000a496200106d565b62030d40811015801562000a6057506207a1208111155b62000ae25760405162461bcd60e51b815260206004820152604560248201527f4469766964656e64547261636b65723a20676173466f7250726f63657373696e60448201527f67206d757374206265206265747765656e203230306b20616e64203530306b20606482015264756e69747360d81b608482015260a401620003b6565b60078190556040518181527f1662a2324457a200b9556dfe949641639b99480ee6b448aefcfb97ee61ec2417906020016200040b565b62000b226200106d565b601154601354849162000b3d9161ffff91821691166200182a565b62000b4991906200184f565b6013805461ffff191661ffff9283161790819055601154849262000b7b9262010000928390048216929004166200182a565b62000b8791906200184f565b6013805463ffff000019166201000061ffff938416021790819055601154839262000bc292640100000000928390048216929004166200182a565b62000bce91906200184f565b6013805461ffff9283166401000000000261ffff60201b19821681179092556109c490831691909216171180159062000c1657506013546109c46201000090910461ffff1611155b801562000c3457506013546109c464010000000090910461ffff1611155b62000c865760405162461bcd60e51b8152602060048201526036602482015260008051602062007af0833981519152604482015260008051602062007b308339815191526064820152608401620003b6565b6040805160608101825261ffff8086168252848116602083015283169181019190915262000cb990601190600362001496565b506040805161ffff808616825280851660208301528316918101919091527f4cc46242539a322b08449caf679672d54580fc99e4b7a4b3c6f21e322ad6046890606001620006df565b6006546001600160a01b031663d1fbb84e8362000d34816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b039092166004830152602482015283151560448201526064015b600060405180830381600087803b15801562000d8457600080fd5b505af115801562000d99573d6000803e3d6000fd5b505050505050565b62000dab6200106d565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92910162000dff565b62000e6e6200106d565b62000e78620010cb565b81101562000ec95760405162461bcd60e51b815260206004820152601460248201527f4d617854783a204c696d697420746f6f206c6f770000000000000000000000006044820152606401620003b6565b60188190556040518181527fd0459d371e1defb856088ceda9d33bfed2a31a105e0bae2113cdc7dcc9e77e9d906020016200040b565b62000f096200106d565b62000f13620010cb565b81101562000f645760405162461bcd60e51b815260206004820152601460248201527f4d617854783a204c696d697420746f6f206c6f770000000000000000000000006044820152606401620003b6565b60198190556040518181527fa0dff8a4e8bcaa27b5a2b64bc312f8b338e362bd6cad89f5fe2ae6b8389fb38a906020016200040b565b62000fa46200106d565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f38d2732664f4152f6b6754aa1afeaec7fa6618671b172e5430139b51dba2d1d6910162000dff565b620010098282620010f8565b6006546001600160a01b031663e30443bc836200103b816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b039092166004830152602482015260440162000d69565b6005546001600160a01b03163314620010c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620003b6565b565b6000612710620010da60025490565b620010e7906005620017ed565b620010f3919062001807565b905090565b6001600160a01b038216620011505760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003b6565b6200115e60008383620011d7565b80600260008282546200117291906200186d565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3620011d36000838362001428565b5050565b620011e162001440565b6001600160a01b03831660009081526016602052604090205460ff1680156200122357506001600160a01b03821660009081526017602052604090205460ff16155b156200128857601854811115620012885760405162461bcd60e51b815260206004820152602260248201527f4d617854783a2043616e6e6f7420657863656564206d617820627579206c696d6044820152611a5d60f21b6064820152608401620003b6565b6001600160a01b03821660009081526016602052604090205460ff168015620012ca57506001600160a01b03831660009081526017602052604090205460ff16155b156200133057601954811115620013305760405162461bcd60e51b815260206004820152602360248201527f4d617854783a2043616e6e6f7420657863656564206d61782073656c6c206c696044820152621b5a5d60ea1b6064820152608401620003b6565b6001600160a01b03831660009081526016602052604090205460ff1680156200137257506001600160a01b0382166000908152601b602052604090205460ff16155b80620013bb57506001600160a01b03821660009081526016602052604090205460ff168015620013bb57506001600160a01b0383166000908152601b602052604090205460ff16155b156200142857601a5460ff16620014285760405162461bcd60e51b815260206004820152602a60248201527f456e61626c6554726164696e673a2054726164696e6720776173206e6f7420656044820152691b98589b1959081e595d60b21b6064820152608401620003b6565b6200143b8383836001600160e01b038416565b505050565b62001454600554600160a01b900460ff1690565b15620010c95760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401620003b6565b600183019183908215620015215791602002820160005b83821115620014ef57835183826101000a81548161ffff021916908361ffff1602179055509260200192600201602081600101049283019260010302620014ad565b80156200151f5782816101000a81549061ffff0219169055600201602081600101049283019260010302620014ef565b505b506200152f92915062001541565b5090565b61217f806200595183390190565b5b808211156200152f576000815560010162001542565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200158357607f821691505b602082108103620015a457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200143b57600081815260208120601f850160051c81016020861015620015d35750805b601f850160051c820191505b8181101562000d9957828155600101620015df565b81516001600160401b0381111562001610576200161062001558565b62001628816200162184546200156e565b84620015aa565b602080601f831160018114620016605760008415620016475750858301515b600019600386901b1c1916600185901b17855562000d99565b600085815260208120601f198616915b82811015620016915788860151825594840194600190910190840162001670565b5085821015620016b05787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562001717578160001904821115620016fb57620016fb620016c0565b808516156200170957918102915b93841c9390800290620016db565b509250929050565b6000826200173057506001620017cf565b816200173f57506000620017cf565b8160018114620017585760028114620017635762001783565b6001915050620017cf565b60ff841115620017775762001777620016c0565b50506001821b620017cf565b5060208310610133831016604e8410600b8410161715620017a8575081810a620017cf565b620017b48383620016d6565b8060001904821115620017cb57620017cb620016c0565b0290505b92915050565b6000620017e660ff8416836200171f565b9392505050565b8082028115828204841417620017cf57620017cf620016c0565b6000826200182557634e487b7160e01b600052601260045260246000fd5b500490565b61ffff828116828216039080821115620018485762001848620016c0565b5092915050565b61ffff818116838216019080821115620018485762001848620016c0565b80820180821115620017cf57620017cf620016c0565b6140be80620018936000396000f3fe6080604052600436106104095760003560e01c806379cc679011610213578063ad56c13c11610123578063dd62ed3e116100ab578063f27fd2541161007a578063f27fd25414610c4e578063f2fde38b14610c6e578063f7c618c114610c8e578063fe0697c514610cae578063ffb2c47914610cce57600080fd5b8063dd62ed3e14610bd4578063e7841ec014610bf4578063e85ceee814610c09578063f112ba7214610c3957600080fd5b8063c5f956af116100f2578063c5f956af14610b3f578063c705c56914610b5f578063d54f3ce114610b7f578063d947752614610b9f578063dc3f0d0f14610bb457600080fd5b8063ad56c13c14610a7a578063c024666814610adf578063c0a904a214610aff578063c0c53b8b14610b1f57600080fd5b80638fffabed116101a6578063a26579ad11610175578063a26579ad146109e5578063a457c2d7146109fa578063a6ddc42514610a1a578063a8b9d24014610a3a578063a9059cbb14610a5a57600080fd5b80638fffabed1461097a57806395d89b411461099a5780639adad3b1146109af5780639c1b8af5146109cf57600080fd5b80638456cb59116101e25780638456cb591461091c57806388e765ff146109315780638a8c523c146109475780638da5cb5b1461095c57600080fd5b806379cc67901461089c5780637d7a9573146108bc578063801b51d9146108dc5780638062651a146108fc57600080fd5b806342966c68116103195780635cce86cd116102a15780636843cd84116102705780636843cd84146107f75780636cc9c8f11461081757806370a0823114610837578063715018a614610857578063768565571461086c57600080fd5b80635cce86cd1461077c578063647846a5146107ac57806364b0f653146107cc57806366d602ae146107e157600080fd5b80634e71d92d116102e85780634e71d92d146106d15780634f011b83146106e65780634fbee19314610708578063502f7446146107385780635c975abb1461075d57600080fd5b806342966c6814610657578063454eab6f146106775780634796591c146106975780634ada218b146106b757600080fd5b80632be32b611161039c57806330bb4cff1161036b57806330bb4cff146105be578063313ce567146105d357806339509351146105ef5780633f4ba83a1461060f578063408ccbdf1461062457600080fd5b80632be32b611461053e5780632c1f52161461055e5780632d99d32e1461057e5780632f267e291461059e57600080fd5b80631a0e718c116103d85780631a0e718c146104b15780631c75f085146104d157806323b872dd14610509578063294aad9c1461052957600080fd5b80630483f7a01461041557806306fdde0314610437578063095ea7b31461046257806318160ddd1461049257600080fd5b3661041057005b600080fd5b34801561042157600080fd5b50610435610430366004613b5a565b610d03565b005b34801561044357600080fd5b5061044c610d19565b6040516104599190613b93565b60405180910390f35b34801561046e57600080fd5b5061048261047d366004613be1565b610dab565b6040519015158152602001610459565b34801561049e57600080fd5b506002545b604051908152602001610459565b3480156104bd57600080fd5b506104356104cc366004613c24565b610dc5565b3480156104dd57600080fd5b50600f546104f1906001600160a01b031681565b6040516001600160a01b039091168152602001610459565b34801561051557600080fd5b50610482610524366004613c3f565b610ec9565b34801561053557600080fd5b506104a3610eed565b34801561054a57600080fd5b50610435610559366004613c80565b610f60565b34801561056a57600080fd5b506006546104f1906001600160a01b031681565b34801561058a57600080fd5b50610435610599366004613b5a565b610feb565b3480156105aa57600080fd5b506104356105b9366004613c80565b611077565b3480156105ca57600080fd5b506104a361114a565b3480156105df57600080fd5b5060405160128152602001610459565b3480156105fb57600080fd5b5061048261060a366004613be1565b611194565b34801561061b57600080fd5b506104356111b6565b34801561063057600080fd5b5061064461063f366004613c80565b6111c8565b60405161ffff9091168152602001610459565b34801561066357600080fd5b50610435610672366004613c80565b6111f6565b34801561068357600080fd5b50610435610692366004613c99565b611203565b3480156106a357600080fd5b506106446106b2366004613c80565b6113ab565b3480156106c357600080fd5b50601a546104829060ff1681565b3480156106dd57600080fd5b506104826113bb565b3480156106f257600080fd5b5060095461064490600160a01b900461ffff1681565b34801561071457600080fd5b50610482610723366004613cdc565b60126020526000908152604090205460ff1681565b34801561074457600080fd5b506014546104f19061010090046001600160a01b031681565b34801561076957600080fd5b50600554600160a01b900460ff16610482565b34801561078857600080fd5b50610482610797366004613cdc565b60176020526000908152604090205460ff1681565b3480156107b857600080fd5b506009546104f1906001600160a01b031681565b3480156107d857600080fd5b506104a361142a565b3480156107ed57600080fd5b506104a360195481565b34801561080357600080fd5b506104a3610812366004613cdc565b611474565b34801561082357600080fd5b50610435610832366004613c80565b6114e4565b34801561084357600080fd5b506104a3610852366004613cdc565b61154d565b34801561086357600080fd5b50610435611568565b34801561087857600080fd5b50610482610887366004613cdc565b60166020526000908152604090205460ff1681565b3480156108a857600080fd5b506104356108b7366004613be1565b61157a565b3480156108c857600080fd5b506104356108d7366004613cdc565b61158f565b3480156108e857600080fd5b506104356108f7366004613b5a565b611627565b34801561090857600080fd5b50610435610917366004613c99565b61168f565b34801561092857600080fd5b5061043561182e565b34801561093d57600080fd5b506104a360185481565b34801561095357600080fd5b5061043561183e565b34801561096857600080fd5b506005546001600160a01b03166104f1565b34801561098657600080fd5b506015546104f1906001600160a01b031681565b3480156109a657600080fd5b5061044c6118e4565b3480156109bb57600080fd5b506106446109ca366004613c80565b6118f3565b3480156109db57600080fd5b506104a360075481565b3480156109f157600080fd5b506104a3611903565b348015610a0657600080fd5b50610482610a15366004613be1565b61194d565b348015610a2657600080fd5b50610644610a35366004613c80565b6119c8565b348015610a4657600080fd5b506104a3610a55366004613cdc565b6119d8565b348015610a6657600080fd5b50610482610a75366004613be1565b611a0b565b348015610a8657600080fd5b50610a9a610a95366004613cdc565b611a19565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610459565b348015610aeb57600080fd5b50610435610afa366004613b5a565b611ab4565b348015610b0b57600080fd5b50610435610b1a366004613b5a565b611b14565b348015610b2b57600080fd5b50610435610b3a366004613cf9565b611b26565b348015610b4b57600080fd5b50600d546104f1906001600160a01b031681565b348015610b6b57600080fd5b50610482610b7a366004613cdc565b611c1c565b348015610b8b57600080fd5b50610435610b9a366004613c99565b611c8b565b348015610bab57600080fd5b506104a3611e2a565b348015610bc057600080fd5b50610435610bcf366004613c80565b611e6a565b348015610be057600080fd5b506104a3610bef366004613d44565b611ef5565b348015610c0057600080fd5b506104a3611f20565b348015610c1557600080fd5b50610482610c24366004613cdc565b601b6020526000908152604090205460ff1681565b348015610c4557600080fd5b506104a3611f6a565b348015610c5a57600080fd5b50610a9a610c69366004613c80565b611f95565b348015610c7a57600080fd5b50610435610c89366004613cdc565b611fd7565b348015610c9a57600080fd5b506008546104f1906001600160a01b031681565b348015610cba57600080fd5b50610435610cc9366004613cdc565b61204d565b348015610cda57600080fd5b50610cee610ce9366004613c80565b6120e5565b60408051928352602083019190915201610459565b610d0b612164565b610d1582826121be565b5050565b606060038054610d2890613d72565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5490613d72565b8015610da15780601f10610d7657610100808354040283529160200191610da1565b820191906000526020600020905b815481529060010190602001808311610d8457829003601f168201915b5050505050905090565b600033610db9818585612244565b60019150505b92915050565b610dcd612164565b60008161ffff16118015610de757506101f48161ffff1611155b610e725760405162461bcd60e51b815260206004820152604b60248201527f537761705468726573686f6c643a2043616e6e6f7420657863656564206c696d60448201527f6974732066726f6d20302e30312520746f20352520666f72206e65772073776160648201526a1c081d1a1c995cda1bdb1960aa1b608482015260a4015b60405180910390fd5b6009805461ffff60a01b1916600160a01b61ffff8416908102919091179091556040519081527fcf1366790fe21e66c9df9dcf67218b1e10acd64d3c99ae8a7429a68de91f1720906020015b60405180910390a150565b600033610ed7858285612368565b610ee28585856123dc565b506001949350505050565b600654604080516318160ddd60e01b815290516000926001600160a01b0316916318160ddd9160048083019260209291908290030181865afa158015610f37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f5b9190613dac565b905090565b610f68612164565b610f70612b52565b811015610fb65760405162461bcd60e51b81526020600482015260146024820152734d617854783a204c696d697420746f6f206c6f7760601b6044820152606401610e69565b60188190556040518181527fd0459d371e1defb856088ceda9d33bfed2a31a105e0bae2113cdc7dcc9e77e9d90602001610ebe565b610ff3612164565b6015546001600160a01b039081169083160361106d5760405162461bcd60e51b815260206004820152603360248201527f44656661756c74526f757465723a2043616e6e6f742072656d6f766520696e696044820152721d1a585b081c185a5c88199c9bdb481b1a5cdd606a1b6064820152608401610e69565b610d158282612b6b565b61107f612164565b62030d40811015801561109557506207a1208111155b6111155760405162461bcd60e51b815260206004820152604560248201527f4469766964656e64547261636b65723a20676173466f7250726f63657373696e60448201527f67206d757374206265206265747765656e203230306b20616e64203530306b20606482015264756e69747360d81b608482015260a401610e69565b60078190556040518181527f1662a2324457a200b9556dfe949641639b99480ee6b448aefcfb97ee61ec241790602001610ebe565b600654604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae9160048083019260209291908290030181865afa158015610f37573d6000803e3d6000fd5b600033610db98185856111a78383611ef5565b6111b19190613ddb565b612244565b6111be612164565b6111c6612beb565b565b601381600381106111d857600080fd5b60109182820401919006600202915054906101000a900461ffff1681565b6112003382612c40565b50565b61120b612164565b60105460135484916112249161ffff9182169116613e04565b61122e9190613e26565b6013805461ffff191661ffff9283161790819055601054849261125e926201000092839004821692900416613e04565b6112689190613e26565b6013805463ffff000019166201000061ffff93841602179081905560105483926112a092600160201b92839004821692900416613e04565b6112aa9190613e26565b6013805461ffff928316600160201b0265ffff0000000019821681179092556109c49083169190921617118015906112f157506013546109c46201000090910461ffff1611155b801561130d57506013546109c4600160201b90910461ffff1611155b6113295760405162461bcd60e51b8152600401610e6990613e41565b6040805160608101825261ffff8086168252848116602083015283169181019190915261135a906010906003613a8c565b506040805161ffff808616825280851660208301528316918101919091527f1c6ab50fc52a00d75068f3ab1d9c122ccd764721f88973d737b365156ba50194906060015b60405180910390a1505050565b601081600381106111d857600080fd5b600654604051630f41a04d60e11b81523360048201526000916001600160a01b031690631e83409a906024016020604051808303816000875af1158015611406573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f5b9190613e97565b600654604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde9160048083019260209291908290030181865afa158015610f37573d6000803e3d6000fd5b6006546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b602060405180830381865afa1580156114c0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dbf9190613dac565b6114ec612164565b600654604051636cc9c8f160e01b8152600481018390526001600160a01b0390911690636cc9c8f190602401600060405180830381600087803b15801561153257600080fd5b505af1158015611546573d6000803e3d6000fd5b5050505050565b6001600160a01b031660009081526020819052604090205490565b611570612164565b6111c66000612c96565b611585823383612368565b610d158282612c40565b611597612164565b6001600160a01b0381166115bd5760405162461bcd60e51b8152600401610e6990613eb4565b600d80546001600160a01b0319166001600160a01b0383161790556115e3816001611ab4565b6115ee816001612ce8565b6040516001600160a01b03821681527fe4ed70c3d76616a0a0abd9a0dd9a70e8a5ce46146e1e644575e111330e365ce790602001610ebe565b61162f612164565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f38d2732664f4152f6b6754aa1afeaec7fa6618671b172e5430139b51dba2d1d691015b60405180910390a25050565b611697612164565b60115460135484916116b09161ffff9182169116613e04565b6116ba9190613e26565b6013805461ffff191661ffff928316179081905560115484926116ea926201000092839004821692900416613e04565b6116f49190613e26565b6013805463ffff000019166201000061ffff938416021790819055601154839261172c92600160201b92839004821692900416613e04565b6117369190613e26565b6013805461ffff928316600160201b0265ffff0000000019821681179092556109c490831691909216171180159061177d57506013546109c46201000090910461ffff1611155b801561179957506013546109c4600160201b90910461ffff1611155b6117b55760405162461bcd60e51b8152600401610e6990613e41565b6040805160608101825261ffff808616825284811660208301528316918101919091526117e6906011906003613a8c565b506040805161ffff808616825280851660208301528316918101919091527f4cc46242539a322b08449caf679672d54580fc99e4b7a4b3c6f21e322ad604689060600161139e565b611836612164565b6111c6612d40565b611846612164565b601a5460ff16156118ac5760405162461bcd60e51b815260206004820152602a60248201527f456e61626c6554726164696e673a2054726164696e672077617320656e61626c604482015269656420616c726561647960b01b6064820152608401610e69565b601a805460ff191660011790556040517f799663458a5ef2936f7fa0c99b3336c69c25890f82974f04e811e5bb359186c790600090a1565b606060048054610d2890613d72565b600e81600381106111d857600080fd5b60065460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec9160048083019260209291908290030181865afa158015610f37573d6000803e3d6000fd5b6000338161195b8286611ef5565b9050838110156119bb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610e69565b610ee28286868403612244565b601181600381106111d857600080fd5b6006546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d240906024016114a3565b600033610db98185856123dc565b600654604051632ebc328760e11b81526001600160a01b0383811660048301526000928392839283928392839283928392911690635d78650e906024015b61010060405180830381865afa158015611a75573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a999190613f20565b97509750975097509750975097509750919395975091939597565b611abc612164565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101611683565b611b1c612164565b610d158282612ce8565b600854600160a81b900460ff1680611b485750600854600160a01b900460ff16155b611bab5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610e69565b600854600160a81b900460ff16158015611bd5576008805461ffff60a01b191661010160a01b1790555b600980546001600160a01b0319166001600160a01b038616179055611bf983612d83565b611c0282612e05565b8015611c16576008805460ff60a81b191690555b50505050565b60065460405163c705c56960e01b81526001600160a01b038381166004830152600092169063c705c56990602401602060405180830381865afa158015611c67573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dbf9190613e97565b611c93612164565b600e546013548491611cac9161ffff9182169116613e04565b611cb69190613e26565b6013805461ffff191661ffff9283161790819055600e548492611ce6926201000092839004821692900416613e04565b611cf09190613e26565b6013805463ffff000019166201000061ffff938416021790819055600e548392611d2892600160201b92839004821692900416613e04565b611d329190613e26565b6013805461ffff928316600160201b0265ffff0000000019821681179092556109c4908316919092161711801590611d7957506013546109c46201000090910461ffff1611155b8015611d9557506013546109c4600160201b90910461ffff1611155b611db15760405162461bcd60e51b8152600401610e6990613e41565b6040805160608101825261ffff80861682528481166020830152831691810191909152611de290600e906003613a8c565b506040805161ffff808616825280851660208301528316918101919091527faaf77301c7ddcd55669cb55da207bf87362c0fa18fb623452c4401900c9418919060600161139e565b60095460155460009161271091600160a01b90910461ffff1690611e56906001600160a01b031661154d565b611e609190613f8a565b610f5b9190613fa1565b611e72612164565b611e7a612b52565b811015611ec05760405162461bcd60e51b81526020600482015260146024820152734d617854783a204c696d697420746f6f206c6f7760601b6044820152606401610e69565b60198190556040518181527fa0dff8a4e8bcaa27b5a2b64bc312f8b338e362bd6cad89f5fe2ae6b8389fb38a90602001610ebe565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60065460408051633009a60960e01b815290516000926001600160a01b031691633009a6099160048083019260209291908290030181865afa158015610f37573d6000803e3d6000fd5b6000600c54600b54600a546000611f819190613ddb565b611f8b9190613ddb565b610f5b9190613ddb565b600654604051632f7541e960e01b81526004810183905260009182918291829182918291829182916001600160a01b0390911690632f7541e990602401611a57565b611fdf612164565b6001600160a01b0381166120445760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e69565b61120081612c96565b612055612164565b6001600160a01b03811661207b5760405162461bcd60e51b8152600401610e6990613eb4565b600f80546001600160a01b0319166001600160a01b0383161790556120a1816001611ab4565b6120ac816001612ce8565b6040516001600160a01b03821681527f8087a30cc05fa30efdf66b0ad2f6d83af0e44a0ec1002d916ff685b6bd9de8cd90602001610ebe565b6006546040516001624d3b8760e01b031981526004810183905260009182916001600160a01b039091169063ffb2c4799060240160408051808303816000875af1158015612137573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061215b9190613fc3565b91509150915091565b6005546001600160a01b031633146111c65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e69565b6006546001600160a01b031663d1fbb84e836121d98161154d565b6040516001600160e01b031960e085901b1681526001600160a01b039092166004830152602482015283151560448201526064015b600060405180830381600087803b15801561222857600080fd5b505af115801561223c573d6000803e3d6000fd5b505050505050565b6001600160a01b0383166122a65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610e69565b6001600160a01b0382166123075760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610e69565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006123748484611ef5565b90506000198114611c1657818110156123cf5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610e69565b611c168484848403612244565b60145460ff161580156123ef5750600081115b801561240e57506014546001600160a01b038381166101009092041614155b801561243357506001600160a01b03831660009081526012602052604090205460ff16155b801561245857506001600160a01b03821660009081526012602052604090205460ff16155b1561271e576001600160a01b03831660009081526016602052604081205460039060ff16156124965760135461ffff1615612491575060005b6124e8565b6001600160a01b03841660009081526016602052604090205460ff16156124d15760135462010000900461ffff1615612491575060016124e8565b601354600160201b900461ffff16156124e8575060025b60038160ff16101561270a5761271060138260ff166003811061250d5761250d613dee565b601091828204019190066002029054906101000a900461ffff1661ffff16846125369190613f8a565b6125409190613fa1565b915061254c8284613fe7565b925060138160ff166003811061256457612564613dee565b601091828204019190066002029054906101000a900461ffff1661ffff16600e8260ff166003811061259857612598613dee565b601091828204019190066002029054906101000a900461ffff1661ffff16836125c19190613f8a565b6125cb9190613fa1565b600a60008282546125dc9190613ddb565b909155506013905060ff8216600381106125f8576125f8613dee565b601091828204019190066002029054906101000a900461ffff1661ffff1660108260ff166003811061262c5761262c613dee565b601091828204019190066002029054906101000a900461ffff1661ffff16836126559190613f8a565b61265f9190613fa1565b600b60008282546126709190613ddb565b909155506013905060ff82166003811061268c5761268c613dee565b601091828204019190066002029054906101000a900461ffff1661ffff1660118260ff16600381106126c0576126c0613dee565b601091828204019190066002029054906101000a900461ffff1661ffff16836126e99190613f8a565b6126f39190613fa1565b600c60008282546127049190613ddb565b90915550505b811561271b5761271b85308461301e565b50505b6000612728611e2a565b612730611f6a565b101580156127535750601554600090612751906001600160a01b031661154d565b115b60145490915060ff1615801561278257506001600160a01b03841660009081526016602052604090205460ff16155b80156127a157506014546001600160a01b038581166101009092041614155b80156127aa5750805b156129c8576014805460ff191660011790556000600a5411806127cf57506000600b54115b1561298e576000600b54600a5460006127e89190613ddb565b6127f29190613ddb565b905060006127ff826131cd565b6009546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015612848573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061286c9190613dac565b9050600083600a548361287f9190613f8a565b6128899190613fa1565b905080156128f657600d546128a7906001600160a01b031682613347565b925082156128f657600d54604080516001600160a01b039092168252602082018390527f275b50a8bd0736a42e895274e138875e86a8845329afc71e033e4d414aea8733910160405180910390a15b6000600a819055600b54859061290c9085613f8a565b6129169190613fa1565b9050801561298357600f54612934906001600160a01b031682613347565b9350831561298357600f54604080516001600160a01b039092168252602082018390527f28abc39c77aa8c14226d14b71f3300f9999c681302e23ebc40c3caf9fba88ee4910160405180910390a15b50506000600b555050505b6000600c541180156129a7575060006129a561142a565b115b156129bd576129b7600c546133c6565b6000600c555b6014805460ff191690555b6129d384848461301e565b6006546001600160a01b031663e30443bc856129ee8161154d565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015612a3457600080fd5b505af1158015612a48573d6000803e3d6000fd5b50506006546001600160a01b0316915063e30443bc905084612a698161154d565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015612aaf57600080fd5b505af1158015612ac3573d6000803e3d6000fd5b505060145460ff169150611c169050576006546007546040516001624d3b8760e01b031981526001600160a01b039092169163ffb2c47991612b0b9160040190815260200190565b60408051808303816000875af1925050508015612b45575060408051601f3d908101601f19168201909252612b4291810190613fc3565b60015b15611c1657505050505050565b6000612710612b6060025490565b611e60906005613f8a565b6001600160a01b0382166000908152601660205260409020805460ff19168215801591909117909155612bae57612ba38260016121be565b612bae826001612ce8565b816001600160a01b03167f911aa18ddbbbc33c9b4c704a71bdaa0984b0aa2e82726a7f51e64bad0b0a845582604051611683911515815260200190565b612bf361355e565b6005805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b612c4a82826135ae565b6006546001600160a01b031663e30443bc83612c658161154d565b6040516001600160e01b031960e085901b1681526001600160a01b039092166004830152602482015260440161220e565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc929101611683565b612d486136ec565b6005805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612c233390565b600654604051638aee812760e01b81526001600160a01b03838116600483015290911690638aee812790602401600060405180830381600087803b158015612dca57600080fd5b505af1158015612dde573d6000803e3d6000fd5b5050600880546001600160a01b0319166001600160a01b0394909416939093179092555050565b80601460016101000a8154816001600160a01b0302191690836001600160a01b03160217905550601460019054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015612e7f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ea39190613ffa565b6001600160a01b031663c9c6539630601460019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612f05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f299190613ffa565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015612f76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f9a9190613ffa565b601580546001600160a01b0319166001600160a01b0392909216919091179055612fc58160016121be565b612fd0816001612ce8565b601554612fe7906001600160a01b03166001612b6b565b6040516001600160a01b038216907fbc052db65df144ad4f71f02da93cae3d4401104c30ac374d7cc10d87ee07b60290600090a250565b6001600160a01b0383166130825760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610e69565b6001600160a01b0382166130e45760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610e69565b6130ef838383613739565b6001600160a01b038316600090815260208190526040902054818110156131675760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610e69565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611c16565b6040805160038082526080820190925260009160208201606080368337019050509050308160008151811061320457613204613dee565b60200260200101906001600160a01b031690816001600160a01b031681525050601460019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613277573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061329b9190613ffa565b816001815181106132ae576132ae613dee565b6001600160a01b0392831660209182029290920101526009548251911690829060029081106132df576132df613dee565b6001600160a01b03928316602091820292909201015260145461330a91309161010090041684612244565b601454604051635c11d79560e01b81526101009091046001600160a01b031690635c11d7959061220e908590600090869030904290600401614017565b60095460405163a9059cbb60e01b81526001600160a01b03848116600483015260248201849052600092169063a9059cbb906044016020604051808303816000875af115801561339b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133bf9190613e97565b9392505050565b6133cf8161397a565b6008546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015613418573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061343c9190613dac565b90508015610d155760085460065460405163095ea7b360e01b81526001600160a01b03918216600482015260248101849052600092919091169063095ea7b3906044016020604051808303816000875af115801561349e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134c29190613e97565b9050801561355957600654604051633243c79160e01b8152600481018490526001600160a01b0390911690633243c79190602401600060405180830381600087803b15801561351057600080fd5b505af1158015613524573d6000803e3d6000fd5b505050507f193576e9dd325a2a57e4e6e7f6afa82c4fd152eaa8d5f874b0b0f40d924b18a68260405161139e91815260200190565b505050565b600554600160a01b900460ff166111c65760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610e69565b6001600160a01b03821661360e5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610e69565b61361a82600083613739565b6001600160a01b0382166000908152602081905260409020548181101561368e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610e69565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600554600160a01b900460ff16156111c65760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610e69565b6137416136ec565b6001600160a01b03831660009081526016602052604090205460ff16801561378257506001600160a01b03821660009081526017602052604090205460ff16155b156137e4576018548111156137e45760405162461bcd60e51b815260206004820152602260248201527f4d617854783a2043616e6e6f7420657863656564206d617820627579206c696d6044820152611a5d60f21b6064820152608401610e69565b6001600160a01b03821660009081526016602052604090205460ff16801561382557506001600160a01b03831660009081526017602052604090205460ff16155b15613888576019548111156138885760405162461bcd60e51b815260206004820152602360248201527f4d617854783a2043616e6e6f7420657863656564206d61782073656c6c206c696044820152621b5a5d60ea1b6064820152608401610e69565b6001600160a01b03831660009081526016602052604090205460ff1680156138c957506001600160a01b0382166000908152601b602052604090205460ff16155b8061391057506001600160a01b03821660009081526016602052604090205460ff16801561391057506001600160a01b0383166000908152601b602052604090205460ff16155b1561355957601a5460ff166135595760405162461bcd60e51b815260206004820152602a60248201527f456e61626c6554726164696e673a2054726164696e6720776173206e6f7420656044820152691b98589b1959081e595d60b21b6064820152608401610e69565b604080516003808252608082019092526000916020820160608036833701905050905030816000815181106139b1576139b1613dee565b60200260200101906001600160a01b031690816001600160a01b031681525050601460019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613a24573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a489190613ffa565b81600181518110613a5b57613a5b613dee565b6001600160a01b0392831660209182029290920101526008548251911690829060029081106132df576132df613dee565b600183019183908215613b125791602002820160005b83821115613ae257835183826101000a81548161ffff021916908361ffff1602179055509260200192600201602081600101049283019260010302613aa2565b8015613b105782816101000a81549061ffff0219169055600201602081600101049283019260010302613ae2565b505b50613b1e929150613b22565b5090565b5b80821115613b1e5760008155600101613b23565b6001600160a01b038116811461120057600080fd5b801515811461120057600080fd5b60008060408385031215613b6d57600080fd5b8235613b7881613b37565b91506020830135613b8881613b4c565b809150509250929050565b600060208083528351808285015260005b81811015613bc057858101830151858201604001528201613ba4565b506000604082860101526040601f19601f8301168501019250505092915050565b60008060408385031215613bf457600080fd5b8235613bff81613b37565b946020939093013593505050565b803561ffff81168114613c1f57600080fd5b919050565b600060208284031215613c3657600080fd5b6133bf82613c0d565b600080600060608486031215613c5457600080fd5b8335613c5f81613b37565b92506020840135613c6f81613b37565b929592945050506040919091013590565b600060208284031215613c9257600080fd5b5035919050565b600080600060608486031215613cae57600080fd5b613cb784613c0d565b9250613cc560208501613c0d565b9150613cd360408501613c0d565b90509250925092565b600060208284031215613cee57600080fd5b81356133bf81613b37565b600080600060608486031215613d0e57600080fd5b8335613d1981613b37565b92506020840135613d2981613b37565b91506040840135613d3981613b37565b809150509250925092565b60008060408385031215613d5757600080fd5b8235613d6281613b37565b91506020830135613b8881613b37565b600181811c90821680613d8657607f821691505b602082108103613da657634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215613dbe57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610dbf57610dbf613dc5565b634e487b7160e01b600052603260045260246000fd5b61ffff828116828216039080821115613e1f57613e1f613dc5565b5092915050565b61ffff818116838216019080821115613e1f57613e1f613dc5565b60208082526036908201527f546178657344656661756c74526f757465723a2043616e6e6f7420657863656560408201527564206d617820746f74616c20666565206f662032352560501b606082015260800190565b600060208284031215613ea957600080fd5b81516133bf81613b4c565b60208082526046908201527f546178657344656661756c74526f7574657257616c6c65743a2057616c6c657460408201527f2074617820726563697069656e742063616e6e6f74206265206120307830206160608201526564647265737360d01b608082015260a00190565b600080600080600080600080610100898b031215613f3d57600080fd5b8851613f4881613b37565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b8082028115828204841417610dbf57610dbf613dc5565b600082613fbe57634e487b7160e01b600052601260045260246000fd5b500490565b60008060408385031215613fd657600080fd5b505080516020909101519092909150565b81810381811115610dbf57610dbf613dc5565b60006020828403121561400c57600080fd5b81516133bf81613b37565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156140675784516001600160a01b031683529383019391830191600101614042565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220a64e32b37262787a27f54c1ca0854ebcf88ae3ed4c106192c7d1e4e7dde40c3264736f6c6343000813003360806040523480156200001157600080fd5b506040516200217f3803806200217f83398101604081905262000034916200026f565b6040518060400160405280600f81526020016e2234bb34b232b7322a3930b1b5b2b960891b8152506040518060400160405280600f81526020016e2234bb34b232b7322a3930b1b5b2b960891b8152508181620000a06200009a620000dd60201b60201c565b620000e1565b6004620000ae838262000339565b506005620000bd828262000339565b5050505050620000d3826200013160201b60201c565b6013555062000405565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6200013b62000211565b603c811015801562000150575062093a808111155b620001d65760405162461bcd60e51b8152602060048201526044602482018190527f4469766964656e64547261636b65723a20436c61696d20776169742074696d65908201527f206d757374206265206265747765656e2031206d696e75746520616e642037206064820152636461797360e01b608482015260a4015b60405180910390fd5b60128190556040518181527f4b0a6b82d0dc4407b3359033a4f27efd1e2105e4571b72d6a3b8f1da3e6079dd9060200160405180910390a150565b6000546001600160a01b031633146200026d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620001cd565b565b600080604083850312156200028357600080fd5b505080516020909101519092909150565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620002bf57607f821691505b602082108103620002e057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200033457600081815260208120601f850160051c810160208610156200030f5750805b601f850160051c820191505b8181101562000330578281556001016200031b565b5050505b505050565b81516001600160401b0381111562000355576200035562000294565b6200036d81620003668454620002aa565b84620002e6565b602080601f831160018114620003a557600084156200038c5750858301515b600019600386901b1c1916600185901b17855562000330565b600085815260208120601f198616915b82811015620003d657888601518255948401946001909101908401620003b5565b5085821015620003f55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611d6a80620004156000396000f3fe608060405234801561001057600080fd5b50600436106102115760003560e01c8063715018a611610125578063aafd847a116100ad578063dd62ed3e1161007c578063dd62ed3e146104bf578063e30443bc146104d2578063f2fde38b146104e5578063f7c618c1146104f8578063ffb2c4791461050b57600080fd5b8063aafd847a14610457578063be10b61414610480578063c705c56914610489578063d1fbb84e146104ac57600080fd5b806391b89fba116100f457806391b89fba1461040357806395d89b4114610416578063a457c2d71461041e578063a8b9d24014610431578063a9059cbb1461044457600080fd5b8063715018a6146103ba57806385a6b3ae146103c25780638aee8127146103cb5780638da5cb5b146103de57600080fd5b80632f7541e9116101a85780633950935111610177578063395093511461034f5780635d78650e146103625780636cc9c8f1146103755780636f2789ec1461038857806370a082311461039157600080fd5b80632f7541e9146102ca5780633009a60914610322578063313ce5671461032b5780633243c7911461033a57600080fd5b80631e83409a116101e45780631e83409a14610271578063226cfa3d1461028457806323b872dd146102a457806327ce0147146102b757600080fd5b806306fdde0314610216578063095ea7b31461023457806309bbedde1461025757806318160ddd14610269575b600080fd5b61021e610533565b60405161022b9190611a1e565b60405180910390f35b610247610242366004611a81565b6105c5565b604051901515815260200161022b565b600b545b60405190815260200161022b565b60035461025b565b61024761027f366004611aad565b6105df565b61025b610292366004611aad565b60116020526000908152604090205481565b6102476102b2366004611ad1565b610626565b61025b6102c5366004611aad565b61064a565b6102dd6102d8366004611b12565b6106a7565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e08201526101000161022b565b61025b600f5481565b6040516012815260200161022b565b61034d610348366004611b12565b6107fb565b005b61024761035d366004611a81565b6109f4565b6102dd610370366004611aad565b610a16565b61034d610383366004611b12565b610b7e565b61025b60125481565b61025b61039f366004611aad565b6001600160a01b031660009081526001602052604090205490565b61034d610c5a565b61025b60095481565b61034d6103d9366004611aad565b610c6e565b6000546001600160a01b03165b6040516001600160a01b03909116815260200161022b565b61025b610411366004611aad565b610cae565b61021e610cb9565b61024761042c366004611a81565b610cc8565b61025b61043f366004611aad565b610d43565b610247610452366004611a81565b610d6f565b61025b610465366004611aad565b6001600160a01b031660009081526008602052604090205490565b61025b60135481565b610247610497366004611aad565b60106020526000908152604090205460ff1681565b61034d6104ba366004611b39565b610d7d565b61025b6104cd366004611b7b565b610fc3565b61034d6104e0366004611a81565b610fee565b61034d6104f3366004611aad565b61110f565b600a546103eb906001600160a01b031681565b61051e610519366004611b12565b611188565b6040805192835260208301919091520161022b565b60606004805461054290611bb4565b80601f016020809104026020016040519081016040528092919081815260200182805461056e90611bb4565b80156105bb5780601f10610590576101008083540402835291602001916105bb565b820191906000526020600020905b81548152906001019060200180831161059e57829003601f168201915b5050505050905090565b6000336105d38185856112d8565b60019150505b92915050565b60006105e96113fc565b60006105f483611456565b9050801561061d5750506001600160a01b03166000908152601160205260409020429055600190565b50600092915050565b6000336106348582856115ef565b61063f858585611669565b506001949350505050565b6001600160a01b0381166000908152600760209081526040808320546001909252822054600160801b9161069d9161068e906006546106899190611c04565b6116a4565b6106989190611c1b565b6116b4565b6105d99190611c43565b600080600080600080600080600b7331ee4a53bd2c1c339662dffb973017ef81a6bad563deb3d89690916040518263ffffffff1660e01b81526004016106ef91815260200190565b602060405180830381865af415801561070c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107309190611c65565b89106107555750600096506000199550859450869350839250829150819050806107f0565b6040516368d54f3f60e11b8152600b6004820152602481018a90526000907331ee4a53bd2c1c339662dffb973017ef81a6bad59063d1aa9e7e90604401602060405180830381865af41580156107af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107d39190611c7e565b90506107de81610a16565b98509850985098509850985098509850505b919395975091939597565b600061080660035490565b1161081057600080fd5b600a546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610859573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061087d9190611c65565b600a546040516323b872dd60e01b8152336004820152306024820152604481018590529192506001600160a01b0316906323b872dd906064016020604051808303816000875af11580156108d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108f99190611c9b565b50600a546040516370a0823160e01b815230600482015260009183916001600160a01b03909116906370a0823190602401602060405180830381865afa158015610947573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061096b9190611c65565b6109759190611cb8565b905080156109ef5760035461098e600160801b83611c04565b6109989190611c43565b6006546109a59190611ccb565b60065560405181815233907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165119060200160405180910390a2806009546109eb9190611ccb565b6009555b505050565b6000336105d3818585610a078383610fc3565b610a119190611ccb565b6112d8565b6040516317e142d160e01b8152600b60048201526001600160a01b038216602482015281906000908190819081908190819081907331ee4a53bd2c1c339662dffb973017ef81a6bad5906317e142d190604401602060405180830381865af4158015610a86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aaa9190611c65565b9650600019955060008712610b0c57600f54871115610ad757600f54610ad09088611cde565b9550610b0c565b600f54600b5460009110610aec576000610afc565b600f54600b54610afc9190611cb8565b9050610b088189611c1b565b9650505b610b1588610d43565b9450610b208861064a565b6001600160a01b038916600090815260116020526040902054909450925082610b4a576000610b57565b601254610b579084611ccb565b9150428211610b67576000610b71565b610b714283611cb8565b9050919395975091939597565b610b866113fc565b603c8110158015610b9a575062093a808111155b610c1f5760405162461bcd60e51b8152602060048201526044602482018190527f4469766964656e64547261636b65723a20436c61696d20776169742074696d65908201527f206d757374206265206265747765656e2031206d696e75746520616e642037206064820152636461797360e01b608482015260a4015b60405180910390fd5b60128190556040518181527f4b0a6b82d0dc4407b3359033a4f27efd1e2105e4571b72d6a3b8f1da3e6079dd9060200160405180910390a150565b610c626113fc565b610c6c60006116c7565b565b610c766113fc565b600a546001600160a01b031615610c8c57600080fd5b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006105d982610d43565b60606005805461054290611bb4565b60003381610cd68286610fc3565b905083811015610d365760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c16565b61063f82868684036112d8565b6001600160a01b038116600090815260086020526040812054610d658361064a565b6105d99190611cb8565b6000336105d3818585611669565b610d856113fc565b8015610ec1576001600160a01b03831660009081526010602052604090205460ff1615610e1c576040805162461bcd60e51b81526020600482015260248101919091527f4469766964656e64547261636b65723a2054686973206164647265737320697360448201527f20616c7265616479206578636c756465642066726f6d206469766964656e64736064820152608401610c16565b6001600160a01b0383166000908152601060205260408120805460ff19166001179055610e4a908490611717565b60405163131836e760e21b8152600b60048201526001600160a01b03841660248201527331ee4a53bd2c1c339662dffb973017ef81a6bad590634c60db9c9060440160006040518083038186803b158015610ea457600080fd5b505af4158015610eb8573d6000803e3d6000fd5b50505050610f79565b6001600160a01b03831660009081526010602052604090205460ff16610f4f5760405162461bcd60e51b815260206004820152603e60248201527f4469766964656e64547261636b65723a2054686973206164647265737320697360448201527f20616c726561647920696e636c7564656420696e206469766964656e647300006064820152608401610c16565b6001600160a01b0383166000908152601060205260409020805460ff19169055610f798383610fee565b826001600160a01b03167fa3c7c11b2e12c4144b09a7813f3393ba646392788638998c97be8da908cf04be82604051610fb6911515815260200190565b60405180910390a2505050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610ff66113fc565b6001600160a01b03821660009081526010602052604090205460ff1661110b5760135481106110a6576110298282611717565b604051632f0ad01760e21b8152600b60048201526001600160a01b0383166024820152604481018290527331ee4a53bd2c1c339662dffb973017ef81a6bad59063bc2b405c9060640160006040518083038186803b15801561108a57600080fd5b505af415801561109e573d6000803e3d6000fd5b505050505050565b6110b1826000611717565b60405163131836e760e21b8152600b60048201526001600160a01b03831660248201527331ee4a53bd2c1c339662dffb973017ef81a6bad590634c60db9c9060440160006040518083038186803b15801561108a57600080fd5b5050565b6111176113fc565b6001600160a01b03811661117c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c16565b611185816116c7565b50565b6000806111936113fc565b600b5460008190036111ab5750600093849350915050565b600f546000805a905060009550600094505b86821080156111cb57508386105b1561129157826111da81611d05565b600b54909450841090506111ed57600092505b6000600b600001848154811061120557611205611d1e565b60009182526020808320909101546001600160a01b0316808352601190915260409091205490915061123690611766565b1561125757611244816105df565b15611257578561125381611d05565b9650505b8661126181611d05565b97505060005a9050808311156112885761127b8184611cb8565b6112859085611ccb565b93505b91506111bd9050565b600f83905560408051878152602081018790527ff78a0aac70b15fc744c16ea2c52bba9a167f030b8961e62a1d2c92588f77facf910160405180910390a150505050915091565b6001600160a01b03831661133a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c16565b6001600160a01b03821661139b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c16565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000546001600160a01b03163314610c6c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c16565b60008061146283610d43565b9050801561061d576001600160a01b03831660009081526008602052604090205461148e908290611ccb565b6001600160a01b038481166000818152600860205260409081902093909355600a54925163a9059cbb60e01b815260048101919091526024810184905291169063a9059cbb906044016020604051808303816000875af1925050508015611512575060408051601f3d908101601f1916820190925261150f91810190611c9b565b60015b611558576001600160a01b03831660009081526008602052604090205461153a908290611cb8565b6001600160a01b03841660009081526008602052604090205561061d565b80156115a857836001600160a01b03167fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d8360405161159991815260200190565b60405180910390a25092915050565b6001600160a01b0384166000908152600860205260409020546115cc908390611cb8565b6001600160a01b0385166000908152600860205260409020555050600092915050565b60006115fb8484610fc3565b9050600019811461166357818110156116565760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610c16565b61166384848484036112d8565b50505050565b60405162461bcd60e51b815260206004820152601060248201526f2337b93134b23232b71030b1ba34b7b760811b6044820152606401610c16565b600081818112156105d957600080fd5b6000808212156116c357600080fd5b5090565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166000908152600160205260409020548082111561174b576109ef836117468385611cb8565b61178d565b808210156109ef576109ef836117618484611cb8565b6117eb565b60008142101561177857506000919050565b6012546117858342611cb8565b101592915050565b6117978282611829565b6117a8816006546106899190611c04565b6001600160a01b0383166000908152600760205260409020546117cb9190611cde565b6001600160a01b0390921660009081526007602052604090209190915550565b6117f582826118ea565b611806816006546106899190611c04565b6001600160a01b0383166000908152600760205260409020546117cb9190611c1b565b6001600160a01b03821661187f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610c16565b80600360008282546118919190611ccb565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b03821661194a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610c16565b6001600160a01b038216600090815260016020526040902054818110156119be5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610c16565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600060208083528351808285015260005b81811015611a4b57858101830151858201604001528201611a2f565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461118557600080fd5b60008060408385031215611a9457600080fd5b8235611a9f81611a6c565b946020939093013593505050565b600060208284031215611abf57600080fd5b8135611aca81611a6c565b9392505050565b600080600060608486031215611ae657600080fd5b8335611af181611a6c565b92506020840135611b0181611a6c565b929592945050506040919091013590565b600060208284031215611b2457600080fd5b5035919050565b801515811461118557600080fd5b600080600060608486031215611b4e57600080fd5b8335611b5981611a6c565b9250602084013591506040840135611b7081611b2b565b809150509250925092565b60008060408385031215611b8e57600080fd5b8235611b9981611a6c565b91506020830135611ba981611a6c565b809150509250929050565b600181811c90821680611bc857607f821691505b602082108103611be857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176105d9576105d9611bee565b8082018281126000831280158216821582161715611c3b57611c3b611bee565b505092915050565b600082611c6057634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215611c7757600080fd5b5051919050565b600060208284031215611c9057600080fd5b8151611aca81611a6c565b600060208284031215611cad57600080fd5b8151611aca81611b2b565b818103818111156105d9576105d9611bee565b808201808211156105d9576105d9611bee565b8181036000831280158383131683831282161715611cfe57611cfe611bee565b5092915050565b600060018201611d1757611d17611bee565b5060010190565b634e487b7160e01b600052603260045260246000fdfea26469706673582212200a82c81f47b50208249ad44fb96bfa5d53e3bb3ded149788eadbfd966b8f426564736f6c63430008130033546178657344656661756c74526f7574657257616c6c65743a2057616c6c6574546178657344656661756c74526f757465723a2043616e6e6f742065786365652074617820726563697069656e742063616e6e6f74206265206120307830206164206d617820746f74616c20666565206f662032352500000000000000000000
Deployed Bytecode
0x6080604052600436106104095760003560e01c806379cc679011610213578063ad56c13c11610123578063dd62ed3e116100ab578063f27fd2541161007a578063f27fd25414610c4e578063f2fde38b14610c6e578063f7c618c114610c8e578063fe0697c514610cae578063ffb2c47914610cce57600080fd5b8063dd62ed3e14610bd4578063e7841ec014610bf4578063e85ceee814610c09578063f112ba7214610c3957600080fd5b8063c5f956af116100f2578063c5f956af14610b3f578063c705c56914610b5f578063d54f3ce114610b7f578063d947752614610b9f578063dc3f0d0f14610bb457600080fd5b8063ad56c13c14610a7a578063c024666814610adf578063c0a904a214610aff578063c0c53b8b14610b1f57600080fd5b80638fffabed116101a6578063a26579ad11610175578063a26579ad146109e5578063a457c2d7146109fa578063a6ddc42514610a1a578063a8b9d24014610a3a578063a9059cbb14610a5a57600080fd5b80638fffabed1461097a57806395d89b411461099a5780639adad3b1146109af5780639c1b8af5146109cf57600080fd5b80638456cb59116101e25780638456cb591461091c57806388e765ff146109315780638a8c523c146109475780638da5cb5b1461095c57600080fd5b806379cc67901461089c5780637d7a9573146108bc578063801b51d9146108dc5780638062651a146108fc57600080fd5b806342966c68116103195780635cce86cd116102a15780636843cd84116102705780636843cd84146107f75780636cc9c8f11461081757806370a0823114610837578063715018a614610857578063768565571461086c57600080fd5b80635cce86cd1461077c578063647846a5146107ac57806364b0f653146107cc57806366d602ae146107e157600080fd5b80634e71d92d116102e85780634e71d92d146106d15780634f011b83146106e65780634fbee19314610708578063502f7446146107385780635c975abb1461075d57600080fd5b806342966c6814610657578063454eab6f146106775780634796591c146106975780634ada218b146106b757600080fd5b80632be32b611161039c57806330bb4cff1161036b57806330bb4cff146105be578063313ce567146105d357806339509351146105ef5780633f4ba83a1461060f578063408ccbdf1461062457600080fd5b80632be32b611461053e5780632c1f52161461055e5780632d99d32e1461057e5780632f267e291461059e57600080fd5b80631a0e718c116103d85780631a0e718c146104b15780631c75f085146104d157806323b872dd14610509578063294aad9c1461052957600080fd5b80630483f7a01461041557806306fdde0314610437578063095ea7b31461046257806318160ddd1461049257600080fd5b3661041057005b600080fd5b34801561042157600080fd5b50610435610430366004613b5a565b610d03565b005b34801561044357600080fd5b5061044c610d19565b6040516104599190613b93565b60405180910390f35b34801561046e57600080fd5b5061048261047d366004613be1565b610dab565b6040519015158152602001610459565b34801561049e57600080fd5b506002545b604051908152602001610459565b3480156104bd57600080fd5b506104356104cc366004613c24565b610dc5565b3480156104dd57600080fd5b50600f546104f1906001600160a01b031681565b6040516001600160a01b039091168152602001610459565b34801561051557600080fd5b50610482610524366004613c3f565b610ec9565b34801561053557600080fd5b506104a3610eed565b34801561054a57600080fd5b50610435610559366004613c80565b610f60565b34801561056a57600080fd5b506006546104f1906001600160a01b031681565b34801561058a57600080fd5b50610435610599366004613b5a565b610feb565b3480156105aa57600080fd5b506104356105b9366004613c80565b611077565b3480156105ca57600080fd5b506104a361114a565b3480156105df57600080fd5b5060405160128152602001610459565b3480156105fb57600080fd5b5061048261060a366004613be1565b611194565b34801561061b57600080fd5b506104356111b6565b34801561063057600080fd5b5061064461063f366004613c80565b6111c8565b60405161ffff9091168152602001610459565b34801561066357600080fd5b50610435610672366004613c80565b6111f6565b34801561068357600080fd5b50610435610692366004613c99565b611203565b3480156106a357600080fd5b506106446106b2366004613c80565b6113ab565b3480156106c357600080fd5b50601a546104829060ff1681565b3480156106dd57600080fd5b506104826113bb565b3480156106f257600080fd5b5060095461064490600160a01b900461ffff1681565b34801561071457600080fd5b50610482610723366004613cdc565b60126020526000908152604090205460ff1681565b34801561074457600080fd5b506014546104f19061010090046001600160a01b031681565b34801561076957600080fd5b50600554600160a01b900460ff16610482565b34801561078857600080fd5b50610482610797366004613cdc565b60176020526000908152604090205460ff1681565b3480156107b857600080fd5b506009546104f1906001600160a01b031681565b3480156107d857600080fd5b506104a361142a565b3480156107ed57600080fd5b506104a360195481565b34801561080357600080fd5b506104a3610812366004613cdc565b611474565b34801561082357600080fd5b50610435610832366004613c80565b6114e4565b34801561084357600080fd5b506104a3610852366004613cdc565b61154d565b34801561086357600080fd5b50610435611568565b34801561087857600080fd5b50610482610887366004613cdc565b60166020526000908152604090205460ff1681565b3480156108a857600080fd5b506104356108b7366004613be1565b61157a565b3480156108c857600080fd5b506104356108d7366004613cdc565b61158f565b3480156108e857600080fd5b506104356108f7366004613b5a565b611627565b34801561090857600080fd5b50610435610917366004613c99565b61168f565b34801561092857600080fd5b5061043561182e565b34801561093d57600080fd5b506104a360185481565b34801561095357600080fd5b5061043561183e565b34801561096857600080fd5b506005546001600160a01b03166104f1565b34801561098657600080fd5b506015546104f1906001600160a01b031681565b3480156109a657600080fd5b5061044c6118e4565b3480156109bb57600080fd5b506106446109ca366004613c80565b6118f3565b3480156109db57600080fd5b506104a360075481565b3480156109f157600080fd5b506104a3611903565b348015610a0657600080fd5b50610482610a15366004613be1565b61194d565b348015610a2657600080fd5b50610644610a35366004613c80565b6119c8565b348015610a4657600080fd5b506104a3610a55366004613cdc565b6119d8565b348015610a6657600080fd5b50610482610a75366004613be1565b611a0b565b348015610a8657600080fd5b50610a9a610a95366004613cdc565b611a19565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610459565b348015610aeb57600080fd5b50610435610afa366004613b5a565b611ab4565b348015610b0b57600080fd5b50610435610b1a366004613b5a565b611b14565b348015610b2b57600080fd5b50610435610b3a366004613cf9565b611b26565b348015610b4b57600080fd5b50600d546104f1906001600160a01b031681565b348015610b6b57600080fd5b50610482610b7a366004613cdc565b611c1c565b348015610b8b57600080fd5b50610435610b9a366004613c99565b611c8b565b348015610bab57600080fd5b506104a3611e2a565b348015610bc057600080fd5b50610435610bcf366004613c80565b611e6a565b348015610be057600080fd5b506104a3610bef366004613d44565b611ef5565b348015610c0057600080fd5b506104a3611f20565b348015610c1557600080fd5b50610482610c24366004613cdc565b601b6020526000908152604090205460ff1681565b348015610c4557600080fd5b506104a3611f6a565b348015610c5a57600080fd5b50610a9a610c69366004613c80565b611f95565b348015610c7a57600080fd5b50610435610c89366004613cdc565b611fd7565b348015610c9a57600080fd5b506008546104f1906001600160a01b031681565b348015610cba57600080fd5b50610435610cc9366004613cdc565b61204d565b348015610cda57600080fd5b50610cee610ce9366004613c80565b6120e5565b60408051928352602083019190915201610459565b610d0b612164565b610d1582826121be565b5050565b606060038054610d2890613d72565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5490613d72565b8015610da15780601f10610d7657610100808354040283529160200191610da1565b820191906000526020600020905b815481529060010190602001808311610d8457829003601f168201915b5050505050905090565b600033610db9818585612244565b60019150505b92915050565b610dcd612164565b60008161ffff16118015610de757506101f48161ffff1611155b610e725760405162461bcd60e51b815260206004820152604b60248201527f537761705468726573686f6c643a2043616e6e6f7420657863656564206c696d60448201527f6974732066726f6d20302e30312520746f20352520666f72206e65772073776160648201526a1c081d1a1c995cda1bdb1960aa1b608482015260a4015b60405180910390fd5b6009805461ffff60a01b1916600160a01b61ffff8416908102919091179091556040519081527fcf1366790fe21e66c9df9dcf67218b1e10acd64d3c99ae8a7429a68de91f1720906020015b60405180910390a150565b600033610ed7858285612368565b610ee28585856123dc565b506001949350505050565b600654604080516318160ddd60e01b815290516000926001600160a01b0316916318160ddd9160048083019260209291908290030181865afa158015610f37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f5b9190613dac565b905090565b610f68612164565b610f70612b52565b811015610fb65760405162461bcd60e51b81526020600482015260146024820152734d617854783a204c696d697420746f6f206c6f7760601b6044820152606401610e69565b60188190556040518181527fd0459d371e1defb856088ceda9d33bfed2a31a105e0bae2113cdc7dcc9e77e9d90602001610ebe565b610ff3612164565b6015546001600160a01b039081169083160361106d5760405162461bcd60e51b815260206004820152603360248201527f44656661756c74526f757465723a2043616e6e6f742072656d6f766520696e696044820152721d1a585b081c185a5c88199c9bdb481b1a5cdd606a1b6064820152608401610e69565b610d158282612b6b565b61107f612164565b62030d40811015801561109557506207a1208111155b6111155760405162461bcd60e51b815260206004820152604560248201527f4469766964656e64547261636b65723a20676173466f7250726f63657373696e60448201527f67206d757374206265206265747765656e203230306b20616e64203530306b20606482015264756e69747360d81b608482015260a401610e69565b60078190556040518181527f1662a2324457a200b9556dfe949641639b99480ee6b448aefcfb97ee61ec241790602001610ebe565b600654604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae9160048083019260209291908290030181865afa158015610f37573d6000803e3d6000fd5b600033610db98185856111a78383611ef5565b6111b19190613ddb565b612244565b6111be612164565b6111c6612beb565b565b601381600381106111d857600080fd5b60109182820401919006600202915054906101000a900461ffff1681565b6112003382612c40565b50565b61120b612164565b60105460135484916112249161ffff9182169116613e04565b61122e9190613e26565b6013805461ffff191661ffff9283161790819055601054849261125e926201000092839004821692900416613e04565b6112689190613e26565b6013805463ffff000019166201000061ffff93841602179081905560105483926112a092600160201b92839004821692900416613e04565b6112aa9190613e26565b6013805461ffff928316600160201b0265ffff0000000019821681179092556109c49083169190921617118015906112f157506013546109c46201000090910461ffff1611155b801561130d57506013546109c4600160201b90910461ffff1611155b6113295760405162461bcd60e51b8152600401610e6990613e41565b6040805160608101825261ffff8086168252848116602083015283169181019190915261135a906010906003613a8c565b506040805161ffff808616825280851660208301528316918101919091527f1c6ab50fc52a00d75068f3ab1d9c122ccd764721f88973d737b365156ba50194906060015b60405180910390a1505050565b601081600381106111d857600080fd5b600654604051630f41a04d60e11b81523360048201526000916001600160a01b031690631e83409a906024016020604051808303816000875af1158015611406573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f5b9190613e97565b600654604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde9160048083019260209291908290030181865afa158015610f37573d6000803e3d6000fd5b6006546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b602060405180830381865afa1580156114c0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dbf9190613dac565b6114ec612164565b600654604051636cc9c8f160e01b8152600481018390526001600160a01b0390911690636cc9c8f190602401600060405180830381600087803b15801561153257600080fd5b505af1158015611546573d6000803e3d6000fd5b5050505050565b6001600160a01b031660009081526020819052604090205490565b611570612164565b6111c66000612c96565b611585823383612368565b610d158282612c40565b611597612164565b6001600160a01b0381166115bd5760405162461bcd60e51b8152600401610e6990613eb4565b600d80546001600160a01b0319166001600160a01b0383161790556115e3816001611ab4565b6115ee816001612ce8565b6040516001600160a01b03821681527fe4ed70c3d76616a0a0abd9a0dd9a70e8a5ce46146e1e644575e111330e365ce790602001610ebe565b61162f612164565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f38d2732664f4152f6b6754aa1afeaec7fa6618671b172e5430139b51dba2d1d691015b60405180910390a25050565b611697612164565b60115460135484916116b09161ffff9182169116613e04565b6116ba9190613e26565b6013805461ffff191661ffff928316179081905560115484926116ea926201000092839004821692900416613e04565b6116f49190613e26565b6013805463ffff000019166201000061ffff938416021790819055601154839261172c92600160201b92839004821692900416613e04565b6117369190613e26565b6013805461ffff928316600160201b0265ffff0000000019821681179092556109c490831691909216171180159061177d57506013546109c46201000090910461ffff1611155b801561179957506013546109c4600160201b90910461ffff1611155b6117b55760405162461bcd60e51b8152600401610e6990613e41565b6040805160608101825261ffff808616825284811660208301528316918101919091526117e6906011906003613a8c565b506040805161ffff808616825280851660208301528316918101919091527f4cc46242539a322b08449caf679672d54580fc99e4b7a4b3c6f21e322ad604689060600161139e565b611836612164565b6111c6612d40565b611846612164565b601a5460ff16156118ac5760405162461bcd60e51b815260206004820152602a60248201527f456e61626c6554726164696e673a2054726164696e672077617320656e61626c604482015269656420616c726561647960b01b6064820152608401610e69565b601a805460ff191660011790556040517f799663458a5ef2936f7fa0c99b3336c69c25890f82974f04e811e5bb359186c790600090a1565b606060048054610d2890613d72565b600e81600381106111d857600080fd5b60065460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec9160048083019260209291908290030181865afa158015610f37573d6000803e3d6000fd5b6000338161195b8286611ef5565b9050838110156119bb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610e69565b610ee28286868403612244565b601181600381106111d857600080fd5b6006546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d240906024016114a3565b600033610db98185856123dc565b600654604051632ebc328760e11b81526001600160a01b0383811660048301526000928392839283928392839283928392911690635d78650e906024015b61010060405180830381865afa158015611a75573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a999190613f20565b97509750975097509750975097509750919395975091939597565b611abc612164565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101611683565b611b1c612164565b610d158282612ce8565b600854600160a81b900460ff1680611b485750600854600160a01b900460ff16155b611bab5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610e69565b600854600160a81b900460ff16158015611bd5576008805461ffff60a01b191661010160a01b1790555b600980546001600160a01b0319166001600160a01b038616179055611bf983612d83565b611c0282612e05565b8015611c16576008805460ff60a81b191690555b50505050565b60065460405163c705c56960e01b81526001600160a01b038381166004830152600092169063c705c56990602401602060405180830381865afa158015611c67573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dbf9190613e97565b611c93612164565b600e546013548491611cac9161ffff9182169116613e04565b611cb69190613e26565b6013805461ffff191661ffff9283161790819055600e548492611ce6926201000092839004821692900416613e04565b611cf09190613e26565b6013805463ffff000019166201000061ffff938416021790819055600e548392611d2892600160201b92839004821692900416613e04565b611d329190613e26565b6013805461ffff928316600160201b0265ffff0000000019821681179092556109c4908316919092161711801590611d7957506013546109c46201000090910461ffff1611155b8015611d9557506013546109c4600160201b90910461ffff1611155b611db15760405162461bcd60e51b8152600401610e6990613e41565b6040805160608101825261ffff80861682528481166020830152831691810191909152611de290600e906003613a8c565b506040805161ffff808616825280851660208301528316918101919091527faaf77301c7ddcd55669cb55da207bf87362c0fa18fb623452c4401900c9418919060600161139e565b60095460155460009161271091600160a01b90910461ffff1690611e56906001600160a01b031661154d565b611e609190613f8a565b610f5b9190613fa1565b611e72612164565b611e7a612b52565b811015611ec05760405162461bcd60e51b81526020600482015260146024820152734d617854783a204c696d697420746f6f206c6f7760601b6044820152606401610e69565b60198190556040518181527fa0dff8a4e8bcaa27b5a2b64bc312f8b338e362bd6cad89f5fe2ae6b8389fb38a90602001610ebe565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60065460408051633009a60960e01b815290516000926001600160a01b031691633009a6099160048083019260209291908290030181865afa158015610f37573d6000803e3d6000fd5b6000600c54600b54600a546000611f819190613ddb565b611f8b9190613ddb565b610f5b9190613ddb565b600654604051632f7541e960e01b81526004810183905260009182918291829182918291829182916001600160a01b0390911690632f7541e990602401611a57565b611fdf612164565b6001600160a01b0381166120445760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e69565b61120081612c96565b612055612164565b6001600160a01b03811661207b5760405162461bcd60e51b8152600401610e6990613eb4565b600f80546001600160a01b0319166001600160a01b0383161790556120a1816001611ab4565b6120ac816001612ce8565b6040516001600160a01b03821681527f8087a30cc05fa30efdf66b0ad2f6d83af0e44a0ec1002d916ff685b6bd9de8cd90602001610ebe565b6006546040516001624d3b8760e01b031981526004810183905260009182916001600160a01b039091169063ffb2c4799060240160408051808303816000875af1158015612137573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061215b9190613fc3565b91509150915091565b6005546001600160a01b031633146111c65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e69565b6006546001600160a01b031663d1fbb84e836121d98161154d565b6040516001600160e01b031960e085901b1681526001600160a01b039092166004830152602482015283151560448201526064015b600060405180830381600087803b15801561222857600080fd5b505af115801561223c573d6000803e3d6000fd5b505050505050565b6001600160a01b0383166122a65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610e69565b6001600160a01b0382166123075760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610e69565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006123748484611ef5565b90506000198114611c1657818110156123cf5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610e69565b611c168484848403612244565b60145460ff161580156123ef5750600081115b801561240e57506014546001600160a01b038381166101009092041614155b801561243357506001600160a01b03831660009081526012602052604090205460ff16155b801561245857506001600160a01b03821660009081526012602052604090205460ff16155b1561271e576001600160a01b03831660009081526016602052604081205460039060ff16156124965760135461ffff1615612491575060005b6124e8565b6001600160a01b03841660009081526016602052604090205460ff16156124d15760135462010000900461ffff1615612491575060016124e8565b601354600160201b900461ffff16156124e8575060025b60038160ff16101561270a5761271060138260ff166003811061250d5761250d613dee565b601091828204019190066002029054906101000a900461ffff1661ffff16846125369190613f8a565b6125409190613fa1565b915061254c8284613fe7565b925060138160ff166003811061256457612564613dee565b601091828204019190066002029054906101000a900461ffff1661ffff16600e8260ff166003811061259857612598613dee565b601091828204019190066002029054906101000a900461ffff1661ffff16836125c19190613f8a565b6125cb9190613fa1565b600a60008282546125dc9190613ddb565b909155506013905060ff8216600381106125f8576125f8613dee565b601091828204019190066002029054906101000a900461ffff1661ffff1660108260ff166003811061262c5761262c613dee565b601091828204019190066002029054906101000a900461ffff1661ffff16836126559190613f8a565b61265f9190613fa1565b600b60008282546126709190613ddb565b909155506013905060ff82166003811061268c5761268c613dee565b601091828204019190066002029054906101000a900461ffff1661ffff1660118260ff16600381106126c0576126c0613dee565b601091828204019190066002029054906101000a900461ffff1661ffff16836126e99190613f8a565b6126f39190613fa1565b600c60008282546127049190613ddb565b90915550505b811561271b5761271b85308461301e565b50505b6000612728611e2a565b612730611f6a565b101580156127535750601554600090612751906001600160a01b031661154d565b115b60145490915060ff1615801561278257506001600160a01b03841660009081526016602052604090205460ff16155b80156127a157506014546001600160a01b038581166101009092041614155b80156127aa5750805b156129c8576014805460ff191660011790556000600a5411806127cf57506000600b54115b1561298e576000600b54600a5460006127e89190613ddb565b6127f29190613ddb565b905060006127ff826131cd565b6009546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015612848573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061286c9190613dac565b9050600083600a548361287f9190613f8a565b6128899190613fa1565b905080156128f657600d546128a7906001600160a01b031682613347565b925082156128f657600d54604080516001600160a01b039092168252602082018390527f275b50a8bd0736a42e895274e138875e86a8845329afc71e033e4d414aea8733910160405180910390a15b6000600a819055600b54859061290c9085613f8a565b6129169190613fa1565b9050801561298357600f54612934906001600160a01b031682613347565b9350831561298357600f54604080516001600160a01b039092168252602082018390527f28abc39c77aa8c14226d14b71f3300f9999c681302e23ebc40c3caf9fba88ee4910160405180910390a15b50506000600b555050505b6000600c541180156129a7575060006129a561142a565b115b156129bd576129b7600c546133c6565b6000600c555b6014805460ff191690555b6129d384848461301e565b6006546001600160a01b031663e30443bc856129ee8161154d565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015612a3457600080fd5b505af1158015612a48573d6000803e3d6000fd5b50506006546001600160a01b0316915063e30443bc905084612a698161154d565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015612aaf57600080fd5b505af1158015612ac3573d6000803e3d6000fd5b505060145460ff169150611c169050576006546007546040516001624d3b8760e01b031981526001600160a01b039092169163ffb2c47991612b0b9160040190815260200190565b60408051808303816000875af1925050508015612b45575060408051601f3d908101601f19168201909252612b4291810190613fc3565b60015b15611c1657505050505050565b6000612710612b6060025490565b611e60906005613f8a565b6001600160a01b0382166000908152601660205260409020805460ff19168215801591909117909155612bae57612ba38260016121be565b612bae826001612ce8565b816001600160a01b03167f911aa18ddbbbc33c9b4c704a71bdaa0984b0aa2e82726a7f51e64bad0b0a845582604051611683911515815260200190565b612bf361355e565b6005805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b612c4a82826135ae565b6006546001600160a01b031663e30443bc83612c658161154d565b6040516001600160e01b031960e085901b1681526001600160a01b039092166004830152602482015260440161220e565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc929101611683565b612d486136ec565b6005805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612c233390565b600654604051638aee812760e01b81526001600160a01b03838116600483015290911690638aee812790602401600060405180830381600087803b158015612dca57600080fd5b505af1158015612dde573d6000803e3d6000fd5b5050600880546001600160a01b0319166001600160a01b0394909416939093179092555050565b80601460016101000a8154816001600160a01b0302191690836001600160a01b03160217905550601460019054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015612e7f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ea39190613ffa565b6001600160a01b031663c9c6539630601460019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612f05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f299190613ffa565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015612f76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f9a9190613ffa565b601580546001600160a01b0319166001600160a01b0392909216919091179055612fc58160016121be565b612fd0816001612ce8565b601554612fe7906001600160a01b03166001612b6b565b6040516001600160a01b038216907fbc052db65df144ad4f71f02da93cae3d4401104c30ac374d7cc10d87ee07b60290600090a250565b6001600160a01b0383166130825760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610e69565b6001600160a01b0382166130e45760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610e69565b6130ef838383613739565b6001600160a01b038316600090815260208190526040902054818110156131675760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610e69565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611c16565b6040805160038082526080820190925260009160208201606080368337019050509050308160008151811061320457613204613dee565b60200260200101906001600160a01b031690816001600160a01b031681525050601460019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613277573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061329b9190613ffa565b816001815181106132ae576132ae613dee565b6001600160a01b0392831660209182029290920101526009548251911690829060029081106132df576132df613dee565b6001600160a01b03928316602091820292909201015260145461330a91309161010090041684612244565b601454604051635c11d79560e01b81526101009091046001600160a01b031690635c11d7959061220e908590600090869030904290600401614017565b60095460405163a9059cbb60e01b81526001600160a01b03848116600483015260248201849052600092169063a9059cbb906044016020604051808303816000875af115801561339b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133bf9190613e97565b9392505050565b6133cf8161397a565b6008546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015613418573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061343c9190613dac565b90508015610d155760085460065460405163095ea7b360e01b81526001600160a01b03918216600482015260248101849052600092919091169063095ea7b3906044016020604051808303816000875af115801561349e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134c29190613e97565b9050801561355957600654604051633243c79160e01b8152600481018490526001600160a01b0390911690633243c79190602401600060405180830381600087803b15801561351057600080fd5b505af1158015613524573d6000803e3d6000fd5b505050507f193576e9dd325a2a57e4e6e7f6afa82c4fd152eaa8d5f874b0b0f40d924b18a68260405161139e91815260200190565b505050565b600554600160a01b900460ff166111c65760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610e69565b6001600160a01b03821661360e5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610e69565b61361a82600083613739565b6001600160a01b0382166000908152602081905260409020548181101561368e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610e69565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600554600160a01b900460ff16156111c65760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610e69565b6137416136ec565b6001600160a01b03831660009081526016602052604090205460ff16801561378257506001600160a01b03821660009081526017602052604090205460ff16155b156137e4576018548111156137e45760405162461bcd60e51b815260206004820152602260248201527f4d617854783a2043616e6e6f7420657863656564206d617820627579206c696d6044820152611a5d60f21b6064820152608401610e69565b6001600160a01b03821660009081526016602052604090205460ff16801561382557506001600160a01b03831660009081526017602052604090205460ff16155b15613888576019548111156138885760405162461bcd60e51b815260206004820152602360248201527f4d617854783a2043616e6e6f7420657863656564206d61782073656c6c206c696044820152621b5a5d60ea1b6064820152608401610e69565b6001600160a01b03831660009081526016602052604090205460ff1680156138c957506001600160a01b0382166000908152601b602052604090205460ff16155b8061391057506001600160a01b03821660009081526016602052604090205460ff16801561391057506001600160a01b0383166000908152601b602052604090205460ff16155b1561355957601a5460ff166135595760405162461bcd60e51b815260206004820152602a60248201527f456e61626c6554726164696e673a2054726164696e6720776173206e6f7420656044820152691b98589b1959081e595d60b21b6064820152608401610e69565b604080516003808252608082019092526000916020820160608036833701905050905030816000815181106139b1576139b1613dee565b60200260200101906001600160a01b031690816001600160a01b031681525050601460019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613a24573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a489190613ffa565b81600181518110613a5b57613a5b613dee565b6001600160a01b0392831660209182029290920101526008548251911690829060029081106132df576132df613dee565b600183019183908215613b125791602002820160005b83821115613ae257835183826101000a81548161ffff021916908361ffff1602179055509260200192600201602081600101049283019260010302613aa2565b8015613b105782816101000a81549061ffff0219169055600201602081600101049283019260010302613ae2565b505b50613b1e929150613b22565b5090565b5b80821115613b1e5760008155600101613b23565b6001600160a01b038116811461120057600080fd5b801515811461120057600080fd5b60008060408385031215613b6d57600080fd5b8235613b7881613b37565b91506020830135613b8881613b4c565b809150509250929050565b600060208083528351808285015260005b81811015613bc057858101830151858201604001528201613ba4565b506000604082860101526040601f19601f8301168501019250505092915050565b60008060408385031215613bf457600080fd5b8235613bff81613b37565b946020939093013593505050565b803561ffff81168114613c1f57600080fd5b919050565b600060208284031215613c3657600080fd5b6133bf82613c0d565b600080600060608486031215613c5457600080fd5b8335613c5f81613b37565b92506020840135613c6f81613b37565b929592945050506040919091013590565b600060208284031215613c9257600080fd5b5035919050565b600080600060608486031215613cae57600080fd5b613cb784613c0d565b9250613cc560208501613c0d565b9150613cd360408501613c0d565b90509250925092565b600060208284031215613cee57600080fd5b81356133bf81613b37565b600080600060608486031215613d0e57600080fd5b8335613d1981613b37565b92506020840135613d2981613b37565b91506040840135613d3981613b37565b809150509250925092565b60008060408385031215613d5757600080fd5b8235613d6281613b37565b91506020830135613b8881613b37565b600181811c90821680613d8657607f821691505b602082108103613da657634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215613dbe57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610dbf57610dbf613dc5565b634e487b7160e01b600052603260045260246000fd5b61ffff828116828216039080821115613e1f57613e1f613dc5565b5092915050565b61ffff818116838216019080821115613e1f57613e1f613dc5565b60208082526036908201527f546178657344656661756c74526f757465723a2043616e6e6f7420657863656560408201527564206d617820746f74616c20666565206f662032352560501b606082015260800190565b600060208284031215613ea957600080fd5b81516133bf81613b4c565b60208082526046908201527f546178657344656661756c74526f7574657257616c6c65743a2057616c6c657460408201527f2074617820726563697069656e742063616e6e6f74206265206120307830206160608201526564647265737360d01b608082015260a00190565b600080600080600080600080610100898b031215613f3d57600080fd5b8851613f4881613b37565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b8082028115828204841417610dbf57610dbf613dc5565b600082613fbe57634e487b7160e01b600052601260045260246000fd5b500490565b60008060408385031215613fd657600080fd5b505080516020909101519092909150565b81810381811115610dbf57610dbf613dc5565b60006020828403121561400c57600080fd5b81516133bf81613b37565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156140675784516001600160a01b031683529383019391830191600101614042565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220a64e32b37262787a27f54c1ca0854ebcf88ae3ed4c106192c7d1e4e7dde40c3264736f6c63430008130033
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.