Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 48 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 19782820 | 674 days ago | IN | 0 ETH | 0.00357962 | ||||
| Transfer | 19782802 | 674 days ago | IN | 0 ETH | 0.00332358 | ||||
| Exclude From Div... | 19782789 | 674 days ago | IN | 0 ETH | 0.00098167 | ||||
| Transfer | 19782703 | 674 days ago | IN | 0 ETH | 0.00302126 | ||||
| Transfer | 19782345 | 674 days ago | IN | 0 ETH | 0.00265022 | ||||
| Transfer | 19782154 | 674 days ago | IN | 0 ETH | 0.0012935 | ||||
| Transfer | 19781353 | 675 days ago | IN | 2 wei | 0.00015136 | ||||
| Transfer | 19781334 | 675 days ago | IN | 0 ETH | 0.00194997 | ||||
| Transfer | 19781166 | 675 days ago | IN | 0 ETH | 0.00128975 | ||||
| Transfer | 19781153 | 675 days ago | IN | 0 ETH | 0.00134509 | ||||
| Transfer | 19781045 | 675 days ago | IN | 0 ETH | 0.00118854 | ||||
| Transfer | 19781042 | 675 days ago | IN | 0 ETH | 0.00114596 | ||||
| Approve | 19781017 | 675 days ago | IN | 0 ETH | 0.00030267 | ||||
| Approve | 19780895 | 675 days ago | IN | 0 ETH | 0.0003977 | ||||
| Update Swap Thre... | 19780488 | 675 days ago | IN | 0 ETH | 0.00013877 | ||||
| Gas For Processi... | 19780478 | 675 days ago | IN | 0 ETH | 0.00014954 | ||||
| Approve | 19775225 | 675 days ago | IN | 0 ETH | 0.00071571 | ||||
| Approve | 19775225 | 675 days ago | IN | 0 ETH | 0.00071571 | ||||
| Approve | 19775225 | 675 days ago | IN | 0 ETH | 0.00071571 | ||||
| Approve | 19775126 | 675 days ago | IN | 0 ETH | 0.00038549 | ||||
| Transfer | 19774780 | 675 days ago | IN | 0.04 ETH | 0.00022074 | ||||
| Exclude From Lim... | 19717987 | 683 days ago | IN | 0 ETH | 0.00065319 | ||||
| Exclude From Div... | 19717983 | 683 days ago | IN | 0 ETH | 0.00083113 | ||||
| Exclude From Fee... | 19717977 | 683 days ago | IN | 0 ETH | 0.00061461 | ||||
| Transfer | 19716978 | 684 days ago | IN | 0 ETH | 0.00107881 |
Latest 2 internal transactions
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| 0x60806040 | 19604356 | 699 days ago | Contract Creation | 0 ETH | |||
| 0x60806040 | 19604356 | 699 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Rewardo_Token
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity Standard Json-Input format)
/*
Rewardo Token lets you earn Tether (USDT) in your sleep. Please see RewardoToken.com for more information. Join us to the moon!
*/
// SPDX-License-Identifier: No License
pragma solidity 0.8.19;
import "./ERC20.sol";
import "./ERC20Burnable.sol";
import "./Ownable2Step.sol";
import "./TokenDividendTracker.sol";
import "./Initializable.sol";
import "./IUniswapV2Factory.sol";
import "./IUniswapV2Pair.sol";
import "./IUniswapV2Router01.sol";
import "./IUniswapV2Router02.sol";
contract Rewardo_Token is ERC20, ERC20Burnable, Ownable2Step, DividendTrackerFunctions, Initializable {
IERC20 public feeToken;
uint16 public swapThresholdRatio;
uint256 private _marketingPending;
uint256 private _liquidityPending;
uint256 private _rewardsPending;
address public marketingAddress;
uint16[3] public marketingFees;
uint16[3] public liquidityFees;
uint16[3] public rewardsFees;
mapping (address => bool) public isExcludedFromFees;
uint16[3] public totalFees;
bool private _swapping;
IUniswapV2Router02 public routerV2;
address public pairV2;
mapping (address => bool) public AMMPairs;
mapping (address => bool) public isExcludedFromLimits;
uint256 public maxWalletAmount;
event SwapThresholdUpdated(uint16 swapThresholdRatio);
event marketingAddressUpdated(address marketingAddress);
event marketingFeesUpdated(uint16 buyFee, uint16 sellFee, uint16 transferFee);
event marketingFeeSent(address recipient, uint256 amount);
event liquidityFeesUpdated(uint16 buyFee, uint16 sellFee, uint16 transferFee);
event liquidityAdded(uint amountToken, uint amountCoin, uint liquidity);
event ForceLiquidityAdded(uint256 leftoverTokens, uint256 unaddedTokens);
event rewardsFeesUpdated(uint16 buyFee, uint16 sellFee, uint16 transferFee);
event rewardsFeeSent(uint256 amount);
event ExcludeFromFees(address indexed account, bool isExcluded);
event RouterV2Updated(address indexed routerV2);
event AMMPairsUpdated(address indexed AMMPair, bool isPair);
event ExcludeFromLimits(address indexed account, bool isExcluded);
event MaxWalletAmountUpdated(uint256 maxWalletAmount);
constructor()
ERC20(unicode"Rewardo Token", unicode"REWARDO")
{
address supplyRecipient = 0xb2d4Ba59F8ffcEBE5E0110EAa959436B8A0F8CEc;
updateSwapThreshold(50);
marketingAddressSetup(0x4a23d21CCfAB481C6AaBB6a49b806F8E2F181Cd1);
marketingFeesSetup(100, 100, 100);
liquidityFeesSetup(100, 100, 100);
_deployDividendTracker(7200, 100 * (10 ** decimals()) / 10);
gasForProcessingSetup(300000);
rewardsFeesSetup(200, 200, 200);
_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);
updateMaxWalletAmount(200000000 * (10 ** decimals()) / 10);
_mint(supplyRecipient, 10000000000 * (10 ** decimals()) / 10);
_transferOwnership(0xb2d4Ba59F8ffcEBE5E0110EAa959436B8A0F8CEc);
}
/*
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 _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 + _marketingPending + _liquidityPending + _rewardsPending;
}
function marketingAddressSetup(address _newAddress) public onlyOwner {
require(_newAddress != address(0), "TaxesDefaultRouterWallet: Wallet tax recipient cannot be a 0x0 address");
marketingAddress = _newAddress;
excludeFromFees(_newAddress, true);
_excludeFromLimits(_newAddress, true);
emit marketingAddressUpdated(_newAddress);
}
function marketingFeesSetup(uint16 _buyFee, uint16 _sellFee, uint16 _transferFee) public onlyOwner {
totalFees[0] = totalFees[0] - marketingFees[0] + _buyFee;
totalFees[1] = totalFees[1] - marketingFees[1] + _sellFee;
totalFees[2] = totalFees[2] - marketingFees[2] + _transferFee;
require(totalFees[0] <= 2500 && totalFees[1] <= 2500 && totalFees[2] <= 2500, "TaxesDefaultRouter: Cannot exceed max total fee of 25%");
marketingFees = [_buyFee, _sellFee, _transferFee];
emit marketingFeesUpdated(_buyFee, _sellFee, _transferFee);
}
function _swapTokensForCoin(uint256 tokenAmount) private {
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = routerV2.WETH();
_approve(address(this), address(routerV2), tokenAmount);
routerV2.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount, 0, path, address(this), block.timestamp);
}
function _swapAndLiquify(uint256 tokenAmount) private returns (uint256 leftover) {
// Sub-optimal method for supplying liquidity
uint256 halfAmount = tokenAmount / 2;
uint256 otherHalf = tokenAmount - halfAmount;
_swapTokensForCoin(halfAmount);
uint256 coinBalance = address(this).balance;
if (coinBalance > 0) {
(uint amountToken, uint amountCoin, uint liquidity) = _addLiquidity(otherHalf, coinBalance);
emit liquidityAdded(amountToken, amountCoin, liquidity);
return otherHalf - amountToken;
} else {
return otherHalf;
}
}
function _addLiquidity(uint256 tokenAmount, uint256 coinAmount) private returns (uint, uint, uint) {
_approve(address(this), address(routerV2), tokenAmount);
return routerV2.addLiquidityETH{value: coinAmount}(address(this), tokenAmount, 0, 0, address(0), block.timestamp);
}
function addLiquidityFromLeftoverTokens() external {
uint256 leftoverTokens = balanceOf(address(this)) - getAllPending();
uint256 unaddedTokens = _swapAndLiquify(leftoverTokens);
emit ForceLiquidityAdded(leftoverTokens, unaddedTokens);
}
function liquidityFeesSetup(uint16 _buyFee, uint16 _sellFee, uint16 _transferFee) public onlyOwner {
totalFees[0] = totalFees[0] - liquidityFees[0] + _buyFee;
totalFees[1] = totalFees[1] - liquidityFees[1] + _sellFee;
totalFees[2] = totalFees[2] - liquidityFees[2] + _transferFee;
require(totalFees[0] <= 2500 && totalFees[1] <= 2500 && totalFees[2] <= 2500, "TaxesDefaultRouter: Cannot exceed max total fee of 25%");
liquidityFees = [_buyFee, _sellFee, _transferFee];
emit liquidityFeesUpdated(_buyFee, _sellFee, _transferFee);
}
function _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;
_marketingPending += fees * marketingFees[txType] / totalFees[txType];
_liquidityPending += fees * liquidityFees[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 || _marketingPending > 0) {
uint256 token2Swap = 0 + _marketingPending;
bool success = false;
_swapTokensForOtherTokens(token2Swap);
uint256 tokensReceived = feeToken.balanceOf(address(this));
uint256 marketingPortion = tokensReceived * _marketingPending / token2Swap;
if (marketingPortion > 0) {
success = _sendInOtherTokens(marketingAddress, marketingPortion);
if (success) {
emit marketingFeeSent(marketingAddress, marketingPortion);
}
}
_marketingPending = 0;
}
if (_liquidityPending > 0) {
_swapAndLiquify(_liquidityPending);
_liquidityPending = 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 updateMaxWalletAmount(uint256 _maxWalletAmount) public onlyOwner {
require(_maxWalletAmount >= _maxWalletSafeLimit(), "MaxWallet: Limit too low");
maxWalletAmount = _maxWalletAmount;
emit MaxWalletAmountUpdated(_maxWalletAmount);
}
function _maxWalletSafeLimit() private view returns (uint256) {
return totalSupply() / 1000;
}
function _beforeTokenTransfer(address from, address to, uint256 amount)
internal
override
{
super._beforeTokenTransfer(from, to, amount);
}
function _afterTokenTransfer(address from, address to, uint256 amount)
internal
override
{
if (!isExcludedFromLimits[to]) {
require(balanceOf(to) <= maxWalletAmount, "MaxWallet: Cannot exceed max wallet limit");
}
super._afterTokenTransfer(from, to, amount);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the default value returned by this function, unless
* it's overridden.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(address from, address to, uint256 amount) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_balances[to] += amount;
}
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
unchecked {
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
_balances[account] += amount;
}
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_totalSupply -= amount;
}
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)
pragma solidity ^0.8.0;
import "./ERC20.sol";
import "./Context.sol";
/**
* @dev Extension of {ERC20} that allows token holders to destroy both their own
* tokens and those that they have an allowance for, in a way that can be
* recognized off-chain (via event analysis).
*/
abstract contract ERC20Burnable is Context, ERC20 {
/**
* @dev Destroys `amount` tokens from the caller.
*
* See {ERC20-_burn}.
*/
function burn(uint256 amount) public virtual {
_burn(_msgSender(), amount);
}
/**
* @dev Destroys `amount` tokens from `account`, deducting from the caller's
* allowance.
*
* See {ERC20-_burn} and {ERC20-allowance}.
*
* Requirements:
*
* - the caller must have allowance for ``accounts``'s tokens of at least
* `amount`.
*/
function burnFrom(address account, uint256 amount) public virtual {
_spendAllowance(account, _msgSender(), amount);
_burn(account, amount);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable2Step.sol)
pragma solidity ^0.8.0;
import "./Ownable.sol";
/**
* @dev Contract module which provides 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} and {acceptOwnership}.
*
* This module is used through inheritance. It will make available all functions
* from parent (Ownable).
*/
abstract contract Ownable2Step is Ownable {
address private _pendingOwner;
event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner);
/**
* @dev Returns the address of the pending owner.
*/
function pendingOwner() public view virtual returns (address) {
return _pendingOwner;
}
/**
* @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual override onlyOwner {
_pendingOwner = newOwner;
emit OwnershipTransferStarted(owner(), newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual override {
delete _pendingOwner;
super._transferOwnership(newOwner);
}
/**
* @dev The new owner accepts the ownership transfer.
*/
function acceptOwnership() public virtual {
address sender = _msgSender();
require(pendingOwner() == sender, "Ownable2Step: caller is not the new owner");
_transferOwnership(sender);
}
}// SPDX-License-Identifier: No License
import "./IERC20.sol";
import "./Ownable2Step.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);
}
}
contract TruncatedERC20 {
mapping(address => uint256) private _balances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @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 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 returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual 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 returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual returns (uint256) {
return _balances[account];
}
/** @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");
_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);
}
/**
* @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");
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);
}
}
/// @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 TruncatedERC20, 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) TruncatedERC20(_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 _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 Ownable2Step {
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 (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.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);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (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;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}{
"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
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"AMMPair","type":"address"},{"indexed":false,"internalType":"bool","name":"isPair","type":"bool"}],"name":"AMMPairsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"dividendTracker","type":"address"}],"name":"DeployedDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"leftoverTokens","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"unaddedTokens","type":"uint256"}],"name":"ForceLiquidityAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"gasForProcessing","type":"uint256"}],"name":"GasForProcessingUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWalletAmount","type":"uint256"}],"name":"MaxWalletAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"routerV2","type":"address"}],"name":"RouterV2Updated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"swapThresholdRatio","type":"uint16"}],"name":"SwapThresholdUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountToken","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountCoin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"liquidity","type":"uint256"}],"name":"liquidityAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"buyFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"sellFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"transferFee","type":"uint16"}],"name":"liquidityFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"marketingAddress","type":"address"}],"name":"marketingAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"marketingFeeSent","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":"marketingFeesUpdated","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"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"AMMPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"addLiquidityFromLeftoverTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"claimWait","type":"uint256"}],"name":"claimWaitSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"excludeFromDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"excludeFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"uint256","name":"","type":"uint256"}],"name":"liquidityFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_buyFee","type":"uint16"},{"internalType":"uint16","name":"_sellFee","type":"uint16"},{"internalType":"uint16","name":"_transferFee","type":"uint16"}],"name":"liquidityFeesSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"marketingAddressSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"marketingFees","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":"marketingFeesSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairV2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"gas","type":"uint256"}],"name":"process","outputs":[{"internalType":"uint256","name":"iterations","type":"uint256"},{"internalType":"uint256","name":"claims","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"totalFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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
60806040523480156200001157600080fd5b506040518060400160405280600d81526020016c2932bbb0b93237902a37b5b2b760991b815250604051806040016040528060078152602001665245574152444f60c81b8152508160039081620000699190620011dc565b506004620000788282620011dc565b505050620000956200008f6200025760201b60201c565b6200025b565b73b2d4ba59f8ffcebe5e0110eaa959436b8a0f8cec620000b6603262000279565b620000d5734a23d21ccfab481c6aabb6a49b806f8e2f181cd162000381565b620000e36064808062000487565b620000f16064808062000679565b62000126611c20600a62000107601282620013bd565b62000114906064620013d5565b620001209190620013ef565b62000863565b62000134620493e0620008e8565b6200014260c88080620009c1565b6200014f81600162000bab565b6200015c30600162000bab565b6200016a6000600162000bab565b60075462000183906001600160a01b0316600162000bab565b6200019081600162000c4a565b6200019d30600162000c4a565b620001aa81600162000cb4565b620001b730600162000cb4565b620001c56000600162000cb4565b620001fa600a620001d8601282620013bd565b620001e890630bebc200620013d5565b620001f49190620013ef565b62000d0d565b6200023181600a6200020e601282620013bd565b6200021f906402540be400620013d5565b6200022b9190620013ef565b62000da8565b6200025073b2d4ba59f8ffcebe5e0110eaa959436b8a0f8cec6200025b565b506200146b565b3390565b600680546001600160a01b0319169055620002768162000e18565b50565b6200028362000e6a565b60008161ffff161180156200029e57506101f48161ffff1611155b6200032a5760405162461bcd60e51b815260206004820152604b60248201527f537761705468726573686f6c643a2043616e6e6f7420657863656564206c696d60448201527f6974732066726f6d20302e30312520746f20352520666f72206e65772073776160648201526a1c081d1a1c995cda1bdb1960aa1b608482015260a4015b60405180910390fd5b600a805461ffff60a01b1916600160a01b61ffff8416908102919091179091556040519081527fcf1366790fe21e66c9df9dcf67218b1e10acd64d3c99ae8a7429a68de91f1720906020015b60405180910390a150565b6200038b62000e6a565b6001600160a01b038116620004185760405162461bcd60e51b815260206004820152604660248201527f546178657344656661756c74526f7574657257616c6c65743a2057616c6c657460448201527f2074617820726563697069656e742063616e6e6f74206265206120307830206160648201526564647265737360d01b608482015260a40162000321565b600e80546001600160a01b0319166001600160a01b0383161790556200044081600162000c4a565b6200044d81600162000cb4565b6040516001600160a01b03821681527feaf1986d341c3096d2d5d32f86ed29a21fee4e0d8365cd2b6fa85c0ec6889cf69060200162000376565b6200049162000e6a565b600f546013548491620004ac9161ffff918216911662001412565b620004b8919062001437565b6013805461ffff191661ffff9283161790819055600f548492620004ea92620100009283900482169290041662001412565b620004f6919062001437565b6013805463ffff000019166201000061ffff938416021790819055600f54839262000531926401000000009283900482169290041662001412565b6200053d919062001437565b6013805461ffff9283166401000000000261ffff60201b19821681179092556109c49083169190921617118015906200058557506013546109c46201000090910461ffff1611155b8015620005a357506013546109c464010000000090910461ffff1611155b620005f55760405162461bcd60e51b8152602060048201526036602482015260008051602062006f53833981519152604482015260008051602062006f73833981519152606482015260840162000321565b6040805160608101825261ffff808616825284811660208301528316918101919091526200062890600f9060036200107e565b506040805161ffff808616825280851660208301528316918101919091527f1e5d76e30cd4303515f118e75cbf9d9440bb68ab78b2c2fa46984200dc11ad64906060015b60405180910390a1505050565b6200068362000e6a565b60105460135484916200069e9161ffff918216911662001412565b620006aa919062001437565b6013805461ffff191661ffff92831617908190556010548492620006dc92620100009283900482169290041662001412565b620006e8919062001437565b6013805463ffff000019166201000061ffff938416021790819055601054839262000723926401000000009283900482169290041662001412565b6200072f919062001437565b6013805461ffff9283166401000000000261ffff60201b19821681179092556109c49083169190921617118015906200077757506013546109c46201000090910461ffff1611155b80156200079557506013546109c464010000000090910461ffff1611155b620007e75760405162461bcd60e51b8152602060048201526036602482015260008051602062006f53833981519152604482015260008051602062006f73833981519152606482015260840162000321565b6040805160608101825261ffff808616825284811660208301528316918101919091526200081a9060109060036200107e565b506040805161ffff808616825280851660208301528316918101919091527f2524ccb75260c9a50c71af1740c212c049a01232ef122061416b51815ec57a18906060016200066c565b818160405162000873906200111b565b9182526020820152604001604051809103906000f0801580156200089b573d6000803e3d6000fd5b50600780546001600160a01b0319166001600160a01b039290921691821790556040517f5a9eee832e9ca9f7d2110f2cee781d010262c4c3d74b9f1e4ca1b8e3861a8d0190600090a25050565b620008f262000e6a565b62030d4081101580156200090957506207a1208111155b6200098b5760405162461bcd60e51b815260206004820152604560248201527f4469766964656e64547261636b65723a20676173466f7250726f63657373696e60448201527f67206d757374206265206265747765656e203230306b20616e64203530306b20606482015264756e69747360d81b608482015260a40162000321565b60088190556040518181527f1662a2324457a200b9556dfe949641639b99480ee6b448aefcfb97ee61ec24179060200162000376565b620009cb62000e6a565b6011546013548491620009e69161ffff918216911662001412565b620009f2919062001437565b6013805461ffff191661ffff9283161790819055601154849262000a2492620100009283900482169290041662001412565b62000a30919062001437565b6013805463ffff000019166201000061ffff938416021790819055601154839262000a6b926401000000009283900482169290041662001412565b62000a77919062001437565b6013805461ffff9283166401000000000261ffff60201b19821681179092556109c490831691909216171180159062000abf57506013546109c46201000090910461ffff1611155b801562000add57506013546109c464010000000090910461ffff1611155b62000b2f5760405162461bcd60e51b8152602060048201526036602482015260008051602062006f53833981519152604482015260008051602062006f73833981519152606482015260840162000321565b6040805160608101825261ffff8086168252848116602083015283169181019190915262000b629060119060036200107e565b506040805161ffff808616825280851660208301528316918101919091527f4cc46242539a322b08449caf679672d54580fc99e4b7a4b3c6f21e322ad60468906060016200066c565b6007546001600160a01b031663d1fbb84e8362000bdd816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b039092166004830152602482015283151560448201526064015b600060405180830381600087803b15801562000c2d57600080fd5b505af115801562000c42573d6000803e3d6000fd5b505050505050565b62000c5462000e6a565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92910162000ca8565b62000d1762000e6a565b62000d2162000ec8565b81101562000d725760405162461bcd60e51b815260206004820152601860248201527f4d617857616c6c65743a204c696d697420746f6f206c6f770000000000000000604482015260640162000321565b60188190556040518181527f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e0019060200162000376565b62000db4828262000ee8565b6007546001600160a01b031663e30443bc8362000de6816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b039092166004830152602482015260440162000c12565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b0316331462000ec65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000321565b565b60006103e862000ed760025490565b62000ee39190620013ef565b905090565b6001600160a01b03821662000f405760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000321565b62000f4e6000838362000fc7565b806002600082825462000f62919062001455565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a362000fc36000838362000fdf565b5050565b62000fda8383836001600160e01b038416565b505050565b6001600160a01b03821660009081526017602052604090205460ff1662000fc7576018546001600160a01b038316600090815260208190526040902054111562000fc75760405162461bcd60e51b815260206004820152602960248201527f4d617857616c6c65743a2043616e6e6f7420657863656564206d61782077616c6044820152681b195d081b1a5b5a5d60ba1b606482015260840162000321565b600183019183908215620011095791602002820160005b83821115620010d757835183826101000a81548161ffff021916908361ffff160217905550926020019260020160208160010104928301926001030262001095565b8015620011075782816101000a81549061ffff0219169055600201602081600101049283019260010302620010d7565b505b506200111792915062001129565b5090565b611d6a80620051e983390190565b5b808211156200111757600081556001016200112a565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200116b57607f821691505b6020821081036200118c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000fda57600081815260208120601f850160051c81016020861015620011bb5750805b601f850160051c820191505b8181101562000c4257828155600101620011c7565b81516001600160401b03811115620011f857620011f862001140565b620012108162001209845462001156565b8462001192565b602080601f8311600181146200124857600084156200122f5750858301515b600019600386901b1c1916600185901b17855562000c42565b600085815260208120601f198616915b82811015620012795788860151825594840194600190910190840162001258565b5085821015620012985787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620012ff578160001904821115620012e357620012e3620012a8565b80851615620012f157918102915b93841c9390800290620012c3565b509250929050565b6000826200131857506001620013b7565b816200132757506000620013b7565b81600181146200134057600281146200134b576200136b565b6001915050620013b7565b60ff8411156200135f576200135f620012a8565b50506001821b620013b7565b5060208310610133831016604e8410600b841016171562001390575081810a620013b7565b6200139c8383620012be565b8060001904821115620013b357620013b3620012a8565b0290505b92915050565b6000620013ce60ff84168362001307565b9392505050565b8082028115828204841417620013b757620013b7620012a8565b6000826200140d57634e487b7160e01b600052601260045260246000fd5b500490565b61ffff828116828216039080821115620014305762001430620012a8565b5092915050565b61ffff818116838216019080821115620014305762001430620012a8565b80820180821115620013b757620013b7620012a8565b613d6e806200147b6000396000f3fe6080604052600436106103b15760003560e01c80638062651a116101e7578063c02466681161010d578063e30c3978116100a0578063f27fd2541161006f578063f27fd25414610b20578063f2fde38b14610b40578063f7c618c114610b60578063ffb2c47914610b8057600080fd5b8063e30c397814610ab8578063e626815814610ad6578063e7841ec014610af6578063f112ba7214610b0b57600080fd5b8063c400f5e7116100dc578063c400f5e714610a43578063c705c56914610a63578063d947752614610a83578063dd62ed3e14610a9857600080fd5b8063c0246668146109c3578063c0a904a2146109e3578063c0c53b8b14610a03578063c18bc19514610a2357600080fd5b8063a26579ad11610185578063a8b9d24011610154578063a8b9d24014610908578063a9059cbb14610928578063aa4bde2814610948578063ad56c13c1461095e57600080fd5b8063a26579ad14610893578063a457c2d7146108a8578063a5ece941146108c8578063a6ddc425146108e857600080fd5b80638fffabed116101c15780638fffabed1461082857806395d89b4114610848578063966b53c41461085d5780639c1b8af51461087d57600080fd5b80638062651a146107ca5780638da5cb5b146107ea5780638e749a8f1461080857600080fd5b806342966c68116102d757806364b0f6531161026a578063715018a611610239578063715018a614610750578063768565571461076557806379ba50971461079557806379cc6790146107aa57600080fd5b806364b0f653146106db5780636843cd84146106f05780636cc9c8f11461071057806370a082311461073057600080fd5b80634fbee193116102a65780634fbee19314610636578063502f7446146106665780635cce86cd1461068b578063647846a5146106bb57600080fd5b806342966c68146105bf5780634a4dd9cd146105df5780634e71d92d146105ff5780634f011b831461061457600080fd5b8063294aad9c1161034f57806330bb4cff1161031e57806330bb4cff1461053b578063313ce56714610550578063395093511461056c578063408ccbdf1461058c57600080fd5b8063294aad9c146104ae5780632c1f5216146104c35780632d99d32e146104fb5780632f267e291461051b57600080fd5b806318160ddd1161038b57806318160ddd1461043a5780631a0e718c146104595780631af3c61d1461047957806323b872dd1461048e57600080fd5b80630483f7a0146103bd57806306fdde03146103df578063095ea7b31461040a57600080fd5b366103b857005b600080fd5b3480156103c957600080fd5b506103dd6103d8366004613848565b610bb5565b005b3480156103eb57600080fd5b506103f4610bcb565b6040516104019190613881565b60405180910390f35b34801561041657600080fd5b5061042a6104253660046138cf565b610c5d565b6040519015158152602001610401565b34801561044657600080fd5b506002545b604051908152602001610401565b34801561046557600080fd5b506103dd610474366004613912565b610c77565b34801561048557600080fd5b506103dd610d7b565b34801561049a57600080fd5b5061042a6104a936600461392d565b610de5565b3480156104ba57600080fd5b5061044b610e09565b3480156104cf57600080fd5b506007546104e3906001600160a01b031681565b6040516001600160a01b039091168152602001610401565b34801561050757600080fd5b506103dd610516366004613848565b610e7c565b34801561052757600080fd5b506103dd61053636600461396e565b610f08565b34801561054757600080fd5b5061044b610fdb565b34801561055c57600080fd5b5060405160128152602001610401565b34801561057857600080fd5b5061042a6105873660046138cf565b611025565b34801561059857600080fd5b506105ac6105a736600461396e565b611047565b60405161ffff9091168152602001610401565b3480156105cb57600080fd5b506103dd6105da36600461396e565b611075565b3480156105eb57600080fd5b506103dd6105fa366004613987565b611082565b34801561060b57600080fd5b5061042a61122a565b34801561062057600080fd5b50600a546105ac90600160a01b900461ffff1681565b34801561064257600080fd5b5061042a6106513660046139ca565b60126020526000908152604090205460ff1681565b34801561067257600080fd5b506014546104e39061010090046001600160a01b031681565b34801561069757600080fd5b5061042a6106a63660046139ca565b60176020526000908152604090205460ff1681565b3480156106c757600080fd5b50600a546104e3906001600160a01b031681565b3480156106e757600080fd5b5061044b611299565b3480156106fc57600080fd5b5061044b61070b3660046139ca565b6112e3565b34801561071c57600080fd5b506103dd61072b36600461396e565b611353565b34801561073c57600080fd5b5061044b61074b3660046139ca565b6113bc565b34801561075c57600080fd5b506103dd6113d7565b34801561077157600080fd5b5061042a6107803660046139ca565b60166020526000908152604090205460ff1681565b3480156107a157600080fd5b506103dd6113eb565b3480156107b657600080fd5b506103dd6107c53660046138cf565b611462565b3480156107d657600080fd5b506103dd6107e5366004613987565b611477565b3480156107f657600080fd5b506005546001600160a01b03166104e3565b34801561081457600080fd5b506105ac61082336600461396e565b611616565b34801561083457600080fd5b506015546104e3906001600160a01b031681565b34801561085457600080fd5b506103f4611626565b34801561086957600080fd5b506105ac61087836600461396e565b611635565b34801561088957600080fd5b5061044b60085481565b34801561089f57600080fd5b5061044b611645565b3480156108b457600080fd5b5061042a6108c33660046138cf565b61168f565b3480156108d457600080fd5b50600e546104e3906001600160a01b031681565b3480156108f457600080fd5b506105ac61090336600461396e565b61170a565b34801561091457600080fd5b5061044b6109233660046139ca565b61171a565b34801561093457600080fd5b5061042a6109433660046138cf565b61174d565b34801561095457600080fd5b5061044b60185481565b34801561096a57600080fd5b5061097e6109793660046139ca565b61175b565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610401565b3480156109cf57600080fd5b506103dd6109de366004613848565b6117f6565b3480156109ef57600080fd5b506103dd6109fe366004613848565b61185e565b348015610a0f57600080fd5b506103dd610a1e3660046139e7565b611870565b348015610a2f57600080fd5b506103dd610a3e36600461396e565b611966565b348015610a4f57600080fd5b506103dd610a5e3660046139ca565b6119fa565b348015610a6f57600080fd5b5061042a610a7e3660046139ca565b611af7565b348015610a8f57600080fd5b5061044b611b66565b348015610aa457600080fd5b5061044b610ab3366004613a32565b611ba6565b348015610ac457600080fd5b506006546001600160a01b03166104e3565b348015610ae257600080fd5b506103dd610af1366004613987565b611bd1565b348015610b0257600080fd5b5061044b611d70565b348015610b1757600080fd5b5061044b611dba565b348015610b2c57600080fd5b5061097e610b3b36600461396e565b611de5565b348015610b4c57600080fd5b506103dd610b5b3660046139ca565b611e27565b348015610b6c57600080fd5b506009546104e3906001600160a01b031681565b348015610b8c57600080fd5b50610ba0610b9b36600461396e565b611e98565b60408051928352602083019190915201610401565b610bbd611f17565b610bc78282611f71565b5050565b606060038054610bda90613a60565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0690613a60565b8015610c535780601f10610c2857610100808354040283529160200191610c53565b820191906000526020600020905b815481529060010190602001808311610c3657829003601f168201915b5050505050905090565b600033610c6b818585611ff7565b60019150505b92915050565b610c7f611f17565b60008161ffff16118015610c9957506101f48161ffff1611155b610d245760405162461bcd60e51b815260206004820152604b60248201527f537761705468726573686f6c643a2043616e6e6f7420657863656564206c696d60448201527f6974732066726f6d20302e30312520746f20352520666f72206e65772073776160648201526a1c081d1a1c995cda1bdb1960aa1b608482015260a4015b60405180910390fd5b600a805461ffff60a01b1916600160a01b61ffff8416908102919091179091556040519081527fcf1366790fe21e66c9df9dcf67218b1e10acd64d3c99ae8a7429a68de91f1720906020015b60405180910390a150565b6000610d85611dba565b610d8e306113bc565b610d989190613ab0565b90506000610da58261211b565b60408051848152602081018390529192507f5c3340567bf85cd43734028361fe821eac789fbe397b8d1a4f9ebb3ab4c81ef7910160405180910390a15050565b600033610df38582856121bf565b610dfe858585612233565b506001949350505050565b600754604080516318160ddd60e01b815290516000926001600160a01b0316916318160ddd9160048083019260209291908290030181865afa158015610e53573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e779190613ac3565b905090565b610e84611f17565b6015546001600160a01b0390811690831603610efe5760405162461bcd60e51b815260206004820152603360248201527f44656661756c74526f757465723a2043616e6e6f742072656d6f766520696e696044820152721d1a585b081c185a5c88199c9bdb481b1a5cdd606a1b6064820152608401610d1b565b610bc78282612917565b610f10611f17565b62030d408110158015610f2657506207a1208111155b610fa65760405162461bcd60e51b815260206004820152604560248201527f4469766964656e64547261636b65723a20676173466f7250726f63657373696e60448201527f67206d757374206265206265747765656e203230306b20616e64203530306b20606482015264756e69747360d81b608482015260a401610d1b565b60088190556040518181527f1662a2324457a200b9556dfe949641639b99480ee6b448aefcfb97ee61ec241790602001610d70565b600754604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae9160048083019260209291908290030181865afa158015610e53573d6000803e3d6000fd5b600033610c6b8185856110388383611ba6565b6110429190613adc565b611ff7565b6013816003811061105757600080fd5b60109182820401919006600202915054906101000a900461ffff1681565b61107f3382612997565b50565b61108a611f17565b600f5460135484916110a39161ffff9182169116613b05565b6110ad9190613b27565b6013805461ffff191661ffff9283161790819055600f5484926110dd926201000092839004821692900416613b05565b6110e79190613b27565b6013805463ffff000019166201000061ffff938416021790819055600f54839261111f92600160201b92839004821692900416613b05565b6111299190613b27565b6013805461ffff928316600160201b0265ffff0000000019821681179092556109c490831691909216171180159061117057506013546109c46201000090910461ffff1611155b801561118c57506013546109c4600160201b90910461ffff1611155b6111a85760405162461bcd60e51b8152600401610d1b90613b42565b6040805160608101825261ffff808616825284811660208301528316918101919091526111d990600f90600361377a565b506040805161ffff808616825280851660208301528316918101919091527f1e5d76e30cd4303515f118e75cbf9d9440bb68ab78b2c2fa46984200dc11ad64906060015b60405180910390a1505050565b600754604051630f41a04d60e11b81523360048201526000916001600160a01b031690631e83409a906024016020604051808303816000875af1158015611275573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e779190613b98565b600754604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde9160048083019260209291908290030181865afa158015610e53573d6000803e3d6000fd5b6007546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b602060405180830381865afa15801561132f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c719190613ac3565b61135b611f17565b600754604051636cc9c8f160e01b8152600481018390526001600160a01b0390911690636cc9c8f190602401600060405180830381600087803b1580156113a157600080fd5b505af11580156113b5573d6000803e3d6000fd5b5050505050565b6001600160a01b031660009081526020819052604090205490565b6113df611f17565b6113e960006129ed565b565b60065433906001600160a01b031681146114595760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b6064820152608401610d1b565b61107f816129ed565b61146d8233836121bf565b610bc78282612997565b61147f611f17565b60115460135484916114989161ffff9182169116613b05565b6114a29190613b27565b6013805461ffff191661ffff928316179081905560115484926114d2926201000092839004821692900416613b05565b6114dc9190613b27565b6013805463ffff000019166201000061ffff938416021790819055601154839261151492600160201b92839004821692900416613b05565b61151e9190613b27565b6013805461ffff928316600160201b0265ffff0000000019821681179092556109c490831691909216171180159061156557506013546109c46201000090910461ffff1611155b801561158157506013546109c4600160201b90910461ffff1611155b61159d5760405162461bcd60e51b8152600401610d1b90613b42565b6040805160608101825261ffff808616825284811660208301528316918101919091526115ce90601190600361377a565b506040805161ffff808616825280851660208301528316918101919091527f4cc46242539a322b08449caf679672d54580fc99e4b7a4b3c6f21e322ad604689060600161121d565b600f816003811061105757600080fd5b606060048054610bda90613a60565b6010816003811061105757600080fd5b60075460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec9160048083019260209291908290030181865afa158015610e53573d6000803e3d6000fd5b6000338161169d8286611ba6565b9050838110156116fd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610d1b565b610dfe8286868403611ff7565b6011816003811061105757600080fd5b6007546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d24090602401611312565b600033610c6b818585612233565b600754604051632ebc328760e11b81526001600160a01b0383811660048301526000928392839283928392839283928392911690635d78650e906024015b61010060405180830381865afa1580156117b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117db9190613bb5565b97509750975097509750975097509750919395975091939597565b6117fe611f17565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b611866611f17565b610bc78282612a06565b600954600160a81b900460ff16806118925750600954600160a01b900460ff16155b6118f55760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610d1b565b600954600160a81b900460ff1615801561191f576009805461ffff60a01b191661010160a01b1790555b600a80546001600160a01b0319166001600160a01b03861617905561194383612a5e565b61194c82612ae0565b8015611960576009805460ff60a81b191690555b50505050565b61196e611f17565b611976612cf9565b8110156119c55760405162461bcd60e51b815260206004820152601860248201527f4d617857616c6c65743a204c696d697420746f6f206c6f7700000000000000006044820152606401610d1b565b60188190556040518181527f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e00190602001610d70565b611a02611f17565b6001600160a01b038116611a8d5760405162461bcd60e51b815260206004820152604660248201527f546178657344656661756c74526f7574657257616c6c65743a2057616c6c657460448201527f2074617820726563697069656e742063616e6e6f74206265206120307830206160648201526564647265737360d01b608482015260a401610d1b565b600e80546001600160a01b0319166001600160a01b038316179055611ab38160016117f6565b611abe816001612a06565b6040516001600160a01b03821681527feaf1986d341c3096d2d5d32f86ed29a21fee4e0d8365cd2b6fa85c0ec6889cf690602001610d70565b60075460405163c705c56960e01b81526001600160a01b038381166004830152600092169063c705c56990602401602060405180830381865afa158015611b42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c719190613b98565b600a5460155460009161271091600160a01b90910461ffff1690611b92906001600160a01b03166113bc565b611b9c9190613c1f565b610e779190613c36565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611bd9611f17565b6010546013548491611bf29161ffff9182169116613b05565b611bfc9190613b27565b6013805461ffff191661ffff92831617908190556010548492611c2c926201000092839004821692900416613b05565b611c369190613b27565b6013805463ffff000019166201000061ffff9384160217908190556010548392611c6e92600160201b92839004821692900416613b05565b611c789190613b27565b6013805461ffff928316600160201b0265ffff0000000019821681179092556109c4908316919092161711801590611cbf57506013546109c46201000090910461ffff1611155b8015611cdb57506013546109c4600160201b90910461ffff1611155b611cf75760405162461bcd60e51b8152600401610d1b90613b42565b6040805160608101825261ffff80861682528481166020830152831691810191909152611d2890601090600361377a565b506040805161ffff808616825280851660208301528316918101919091527f2524ccb75260c9a50c71af1740c212c049a01232ef122061416b51815ec57a189060600161121d565b60075460408051633009a60960e01b815290516000926001600160a01b031691633009a6099160048083019260209291908290030181865afa158015610e53573d6000803e3d6000fd5b6000600d54600c54600b546000611dd19190613adc565b611ddb9190613adc565b610e779190613adc565b600754604051632f7541e960e01b81526004810183905260009182918291829182918291829182916001600160a01b0390911690632f7541e990602401611799565b611e2f611f17565b600680546001600160a01b0383166001600160a01b03199091168117909155611e606005546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6007546040516001624d3b8760e01b031981526004810183905260009182916001600160a01b039091169063ffb2c4799060240160408051808303816000875af1158015611eea573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f0e9190613c58565b91509150915091565b6005546001600160a01b031633146113e95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1b565b6007546001600160a01b031663d1fbb84e83611f8c816113bc565b6040516001600160e01b031960e085901b1681526001600160a01b039092166004830152602482015283151560448201526064015b600060405180830381600087803b158015611fdb57600080fd5b505af1158015611fef573d6000803e3d6000fd5b505050505050565b6001600160a01b0383166120595760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610d1b565b6001600160a01b0382166120ba5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610d1b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600080612129600284613c36565b905060006121378285613ab0565b905061214282612d07565b4780156121b75760008060006121588585612e4e565b604080518481526020810184905290810182905292955090935091507f3db50c324c27fb39c451e35d4d23abba3e20d96d036e7a40f4adc681c1ce30139060600160405180910390a16121ab8386613ab0565b98975050505050505050565b509392505050565b60006121cb8484611ba6565b9050600019811461196057818110156122265760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610d1b565b6119608484848403611ff7565b60145460ff161580156122465750600081115b801561226557506014546001600160a01b038381166101009092041614155b801561228a57506001600160a01b03831660009081526012602052604090205460ff16155b80156122af57506001600160a01b03821660009081526012602052604090205460ff16155b15612571576001600160a01b03831660009081526016602052604081205460039060ff16156122ed5760135461ffff16156122e8575060005b61233f565b6001600160a01b03841660009081526016602052604090205460ff16156123285760135462010000900461ffff16156122e85750600161233f565b601354600160201b900461ffff161561233f575060025b60038160ff16101561255d5761271060138260ff166003811061236457612364613aef565b601091828204019190066002029054906101000a900461ffff1661ffff168461238d9190613c1f565b6123979190613c36565b91506123a38284613ab0565b925060138160ff16600381106123bb576123bb613aef565b601081049091015461ffff6002600f938416026101000a909104169060ff8316600381106123eb576123eb613aef565b601091828204019190066002029054906101000a900461ffff1661ffff16836124149190613c1f565b61241e9190613c36565b600b600082825461242f9190613adc565b909155506013905060ff82166003811061244b5761244b613aef565b601091828204019190066002029054906101000a900461ffff1661ffff1660108260ff166003811061247f5761247f613aef565b601091828204019190066002029054906101000a900461ffff1661ffff16836124a89190613c1f565b6124b29190613c36565b600c60008282546124c39190613adc565b909155506013905060ff8216600381106124df576124df613aef565b601091828204019190066002029054906101000a900461ffff1661ffff1660118260ff166003811061251357612513613aef565b601091828204019190066002029054906101000a900461ffff1661ffff168361253c9190613c1f565b6125469190613c36565b600d60008282546125579190613adc565b90915550505b811561256e5761256e853084612f16565b50505b600061257b611b66565b612583611dba565b101580156125a657506015546000906125a4906001600160a01b03166113bc565b115b60145490915060ff161580156125d557506001600160a01b03841660009081526016602052604090205460ff16155b80156125f457506014546001600160a01b038581166101009092041614155b80156125fd5750805b1561278d576014805460ff191660011790556000600b541115612739576000600b54600061262b9190613adc565b90506000612638826130c0565b600a546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015612681573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126a59190613ac3565b9050600083600b54836126b89190613c1f565b6126c29190613c36565b9050801561272f57600e546126e0906001600160a01b03168261323a565b9250821561272f57600e54604080516001600160a01b039092168252602082018390527f3e6afd69feef8f4cc1adbe6d3905e477db85aa5aa28d02674dc4bc6d39237fe4910160405180910390a15b50506000600b5550505b600c54156127535761274c600c5461211b565b506000600c555b6000600d5411801561276c5750600061276a611299565b115b156127825761277c600d546132b9565b6000600d555b6014805460ff191690555b612798848484612f16565b6007546001600160a01b031663e30443bc856127b3816113bc565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156127f957600080fd5b505af115801561280d573d6000803e3d6000fd5b50506007546001600160a01b0316915063e30443bc90508461282e816113bc565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561287457600080fd5b505af1158015612888573d6000803e3d6000fd5b505060145460ff1691506119609050576007546008546040516001624d3b8760e01b031981526001600160a01b039092169163ffb2c479916128d09160040190815260200190565b60408051808303816000875af192505050801561290a575060408051601f3d908101601f1916820190925261290791810190613c58565b60015b1561196057505050505050565b6001600160a01b0382166000908152601660205260409020805460ff1916821580159190911790915561295a5761294f826001611f71565b61295a826001612a06565b816001600160a01b03167f911aa18ddbbbc33c9b4c704a71bdaa0984b0aa2e82726a7f51e64bad0b0a845582604051611852911515815260200190565b6129a18282613451565b6007546001600160a01b031663e30443bc836129bc816113bc565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401611fc1565b600680546001600160a01b031916905561107f8161358a565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc929101611852565b600754604051638aee812760e01b81526001600160a01b03838116600483015290911690638aee812790602401600060405180830381600087803b158015612aa557600080fd5b505af1158015612ab9573d6000803e3d6000fd5b5050600980546001600160a01b0319166001600160a01b0394909416939093179092555050565b80601460016101000a8154816001600160a01b0302191690836001600160a01b03160217905550601460019054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b5a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b7e9190613c7c565b6001600160a01b031663c9c6539630601460019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612be0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c049190613c7c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015612c51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c759190613c7c565b601580546001600160a01b0319166001600160a01b0392909216919091179055612ca0816001611f71565b612cab816001612a06565b601554612cc2906001600160a01b03166001612917565b6040516001600160a01b038216907fbc052db65df144ad4f71f02da93cae3d4401104c30ac374d7cc10d87ee07b60290600090a250565b60006103e8611b9c60025490565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612d3c57612d3c613aef565b60200260200101906001600160a01b031690816001600160a01b031681525050601460019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612daf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612dd39190613c7c565b81600181518110612de657612de6613aef565b6001600160a01b039283166020918202929092010152601454612e1191309161010090041684611ff7565b60145460405163791ac94760e01b81526101009091046001600160a01b03169063791ac94790611fc1908590600090869030904290600401613c99565b6000806000612e7330601460019054906101000a90046001600160a01b031687611ff7565b60145460405163f305d71960e01b8152306004820152602481018790526000604482018190526064820181905260848201524260a48201526101009091046001600160a01b03169063f305d71990869060c40160606040518083038185885af1158015612ee4573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612f099190613d0a565b9250925092509250925092565b6001600160a01b038316612f7a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610d1b565b6001600160a01b038216612fdc5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610d1b565b6001600160a01b038316600090815260208190526040902054818110156130545760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610d1b565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36119608484846135dc565b604080516003808252608082019092526000916020820160608036833701905050905030816000815181106130f7576130f7613aef565b60200260200101906001600160a01b031690816001600160a01b031681525050601460019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561316a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061318e9190613c7c565b816001815181106131a1576131a1613aef565b6001600160a01b039283166020918202929092010152600a548251911690829060029081106131d2576131d2613aef565b6001600160a01b0392831660209182029290920101526014546131fd91309161010090041684611ff7565b601454604051635c11d79560e01b81526101009091046001600160a01b031690635c11d79590611fc1908590600090869030904290600401613c99565b600a5460405163a9059cbb60e01b81526001600160a01b03848116600483015260248201849052600092169063a9059cbb906044016020604051808303816000875af115801561328e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132b29190613b98565b9392505050565b6132c281613668565b6009546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa15801561330b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061332f9190613ac3565b90508015610bc75760095460075460405163095ea7b360e01b81526001600160a01b03918216600482015260248101849052600092919091169063095ea7b3906044016020604051808303816000875af1158015613391573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133b59190613b98565b9050801561344c57600754604051633243c79160e01b8152600481018490526001600160a01b0390911690633243c79190602401600060405180830381600087803b15801561340357600080fd5b505af1158015613417573d6000803e3d6000fd5b505050507f193576e9dd325a2a57e4e6e7f6afa82c4fd152eaa8d5f874b0b0f40d924b18a68260405161121d91815260200190565b505050565b6001600160a01b0382166134b15760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610d1b565b6001600160a01b038216600090815260208190526040902054818110156135255760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610d1b565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361344c836000846135dc565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526017602052604090205460ff1661344c57601854613608836113bc565b111561344c5760405162461bcd60e51b815260206004820152602960248201527f4d617857616c6c65743a2043616e6e6f7420657863656564206d61782077616c6044820152681b195d081b1a5b5a5d60ba1b6064820152608401610d1b565b6040805160038082526080820190925260009160208201606080368337019050509050308160008151811061369f5761369f613aef565b60200260200101906001600160a01b031690816001600160a01b031681525050601460019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613712573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137369190613c7c565b8160018151811061374957613749613aef565b6001600160a01b0392831660209182029290920101526009548251911690829060029081106131d2576131d2613aef565b6001830191839082156138005791602002820160005b838211156137d057835183826101000a81548161ffff021916908361ffff1602179055509260200192600201602081600101049283019260010302613790565b80156137fe5782816101000a81549061ffff02191690556002016020816001010492830192600103026137d0565b505b5061380c929150613810565b5090565b5b8082111561380c5760008155600101613811565b6001600160a01b038116811461107f57600080fd5b801515811461107f57600080fd5b6000806040838503121561385b57600080fd5b823561386681613825565b915060208301356138768161383a565b809150509250929050565b600060208083528351808285015260005b818110156138ae57858101830151858201604001528201613892565b506000604082860101526040601f19601f8301168501019250505092915050565b600080604083850312156138e257600080fd5b82356138ed81613825565b946020939093013593505050565b803561ffff8116811461390d57600080fd5b919050565b60006020828403121561392457600080fd5b6132b2826138fb565b60008060006060848603121561394257600080fd5b833561394d81613825565b9250602084013561395d81613825565b929592945050506040919091013590565b60006020828403121561398057600080fd5b5035919050565b60008060006060848603121561399c57600080fd5b6139a5846138fb565b92506139b3602085016138fb565b91506139c1604085016138fb565b90509250925092565b6000602082840312156139dc57600080fd5b81356132b281613825565b6000806000606084860312156139fc57600080fd5b8335613a0781613825565b92506020840135613a1781613825565b91506040840135613a2781613825565b809150509250925092565b60008060408385031215613a4557600080fd5b8235613a5081613825565b9150602083013561387681613825565b600181811c90821680613a7457607f821691505b602082108103613a9457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b81810381811115610c7157610c71613a9a565b600060208284031215613ad557600080fd5b5051919050565b80820180821115610c7157610c71613a9a565b634e487b7160e01b600052603260045260246000fd5b61ffff828116828216039080821115613b2057613b20613a9a565b5092915050565b61ffff818116838216019080821115613b2057613b20613a9a565b60208082526036908201527f546178657344656661756c74526f757465723a2043616e6e6f7420657863656560408201527564206d617820746f74616c20666565206f662032352560501b606082015260800190565b600060208284031215613baa57600080fd5b81516132b28161383a565b600080600080600080600080610100898b031215613bd257600080fd5b8851613bdd81613825565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b8082028115828204841417610c7157610c71613a9a565b600082613c5357634e487b7160e01b600052601260045260246000fd5b500490565b60008060408385031215613c6b57600080fd5b505080516020909101519092909150565b600060208284031215613c8e57600080fd5b81516132b281613825565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015613ce95784516001600160a01b031683529383019391830191600101613cc4565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215613d1f57600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122008fdd01e800f75ca1f490c1a54f5b2f25882e2c40e1944877b3133b3b646125964736f6c6343000813003360806040523480156200001157600080fd5b5060405162001d6a38038062001d6a83398101604081905262000034916200026f565b6040518060400160405280600f81526020016e2234bb34b232b7322a3930b1b5b2b960891b8152506040518060400160405280600f81526020016e2234bb34b232b7322a3930b1b5b2b960891b8152508181620000a06200009a620000dd60201b60201c565b620000e1565b6003620000ae838262000339565b506004620000bd828262000339565b5050505050620000d3826200013160201b60201c565b6012555062000405565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6200013b62000211565b603c811015801562000150575062093a808111155b620001d65760405162461bcd60e51b8152602060048201526044602482018190527f4469766964656e64547261636b65723a20436c61696d20776169742074696d65908201527f206d757374206265206265747765656e2031206d696e75746520616e642037206064820152636461797360e01b608482015260a4015b60405180910390fd5b60118190556040518181527f4b0a6b82d0dc4407b3359033a4f27efd1e2105e4571b72d6a3b8f1da3e6079dd9060200160405180910390a150565b6000546001600160a01b031633146200026d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620001cd565b565b600080604083850312156200028357600080fd5b505080516020909101519092909150565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620002bf57607f821691505b602082108103620002e057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200033457600081815260208120601f850160051c810160208610156200030f5750805b601f850160051c820191505b8181101562000330578281556001016200031b565b5050505b505050565b81516001600160401b0381111562000355576200035562000294565b6200036d81620003668454620002aa565b84620002e6565b602080601f831160018114620003a557600084156200038c5750858301515b600019600386901b1c1916600185901b17855562000330565b600085815260208120601f198616915b82811015620003d657888601518255948401946001909101908401620003b5565b5085821015620003f55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61195580620004156000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063715018a611610104578063aafd847a116100a2578063e30443bc11610071578063e30443bc1461041e578063f2fde38b14610431578063f7c618c114610444578063ffb2c4791461045757600080fd5b8063aafd847a146103b6578063be10b614146103df578063c705c569146103e8578063d1fbb84e1461040b57600080fd5b80638da5cb5b116100de5780638da5cb5b1461036357806391b89fba1461038857806395d89b411461039b578063a8b9d240146103a357600080fd5b8063715018a61461033f57806385a6b3ae146103475780638aee81271461035057600080fd5b80633009a609116101715780635d78650e1161014b5780635d78650e146102e75780636cc9c8f1146102fa5780636f2789ec1461030d57806370a082311461031657600080fd5b80633009a609146102ba578063313ce567146102c35780633243c791146102d257600080fd5b80631e83409a116101ad5780631e83409a1461020c578063226cfa3d1461022f57806327ce01471461024f5780632f7541e91461026257600080fd5b806306fdde03146101d457806309bbedde146101f257806318160ddd14610204575b600080fd5b6101dc61047f565b6040516101e99190611683565b60405180910390f35b600a545b6040519081526020016101e9565b6002546101f6565b61021f61021a3660046116e6565b610511565b60405190151581526020016101e9565b6101f661023d3660046116e6565b60106020526000908152604090205481565b6101f661025d3660046116e6565b610558565b61027561027036600461170a565b6105bb565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e0820152610100016101e9565b6101f6600e5481565b604051601281526020016101e9565b6102e56102e036600461170a565b61070f565b005b6102756102f53660046116e6565b610908565b6102e561030836600461170a565b610a70565b6101f660115481565b6101f66103243660046116e6565b6001600160a01b031660009081526001602052604090205490565b6102e5610b4c565b6101f660085481565b6102e561035e3660046116e6565b610b60565b6000546001600160a01b03165b6040516001600160a01b0390911681526020016101e9565b6101f66103963660046116e6565b610ba0565b6101dc610bab565b6101f66103b13660046116e6565b610bba565b6101f66103c43660046116e6565b6001600160a01b031660009081526007602052604090205490565b6101f660125481565b61021f6103f63660046116e6565b600f6020526000908152604090205460ff1681565b6102e5610419366004611731565b610be6565b6102e561042c366004611773565b610e2c565b6102e561043f3660046116e6565b610f4d565b600954610370906001600160a01b031681565b61046a61046536600461170a565b610fc6565b604080519283526020830191909152016101e9565b60606003805461048e9061179f565b80601f01602080910402602001604051908101604052809291908181526020018280546104ba9061179f565b80156105075780601f106104dc57610100808354040283529160200191610507565b820191906000526020600020905b8154815290600101906020018083116104ea57829003601f168201915b5050505050905090565b600061051b611116565b600061052683611170565b9050801561054f5750506001600160a01b03166000908152601060205260409020429055600190565b50600092915050565b6001600160a01b0381166000908152600660209081526040808320546001909252822054600160801b916105ab9161059c9060055461059791906117ef565b611309565b6105a69190611806565b611319565b6105b5919061182e565b92915050565b600080600080600080600080600a7331ee4a53bd2c1c339662dffb973017ef81a6bad563deb3d89690916040518263ffffffff1660e01b815260040161060391815260200190565b602060405180830381865af4158015610620573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106449190611850565b8910610669575060009650600019955085945086935083925082915081905080610704565b6040516368d54f3f60e11b8152600a6004820152602481018a90526000907331ee4a53bd2c1c339662dffb973017ef81a6bad59063d1aa9e7e90604401602060405180830381865af41580156106c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106e79190611869565b90506106f281610908565b98509850985098509850985098509850505b919395975091939597565b600061071a60025490565b1161072457600080fd5b6009546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa15801561076d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107919190611850565b6009546040516323b872dd60e01b8152336004820152306024820152604481018590529192506001600160a01b0316906323b872dd906064016020604051808303816000875af11580156107e9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061080d9190611886565b506009546040516370a0823160e01b815230600482015260009183916001600160a01b03909116906370a0823190602401602060405180830381865afa15801561085b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061087f9190611850565b61088991906118a3565b90508015610903576002546108a2600160801b836117ef565b6108ac919061182e565b6005546108b991906118b6565b60055560405181815233907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165119060200160405180910390a2806008546108ff91906118b6565b6008555b505050565b6040516317e142d160e01b8152600a60048201526001600160a01b038216602482015281906000908190819081908190819081907331ee4a53bd2c1c339662dffb973017ef81a6bad5906317e142d190604401602060405180830381865af4158015610978573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061099c9190611850565b96506000199550600087126109fe57600e548711156109c957600e546109c290886118c9565b95506109fe565b600e54600a54600091106109de5760006109ee565b600e54600a546109ee91906118a3565b90506109fa8189611806565b9650505b610a0788610bba565b9450610a1288610558565b6001600160a01b038916600090815260106020526040902054909450925082610a3c576000610a49565b601154610a4990846118b6565b9150428211610a59576000610a63565b610a6342836118a3565b9050919395975091939597565b610a78611116565b603c8110158015610a8c575062093a808111155b610b115760405162461bcd60e51b8152602060048201526044602482018190527f4469766964656e64547261636b65723a20436c61696d20776169742074696d65908201527f206d757374206265206265747765656e2031206d696e75746520616e642037206064820152636461797360e01b608482015260a4015b60405180910390fd5b60118190556040518181527f4b0a6b82d0dc4407b3359033a4f27efd1e2105e4571b72d6a3b8f1da3e6079dd9060200160405180910390a150565b610b54611116565b610b5e600061132c565b565b610b68611116565b6009546001600160a01b031615610b7e57600080fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b60006105b582610bba565b60606004805461048e9061179f565b6001600160a01b038116600090815260076020526040812054610bdc83610558565b6105b591906118a3565b610bee611116565b8015610d2a576001600160a01b0383166000908152600f602052604090205460ff1615610c85576040805162461bcd60e51b81526020600482015260248101919091527f4469766964656e64547261636b65723a2054686973206164647265737320697360448201527f20616c7265616479206578636c756465642066726f6d206469766964656e64736064820152608401610b08565b6001600160a01b0383166000908152600f60205260408120805460ff19166001179055610cb390849061137c565b60405163131836e760e21b8152600a60048201526001600160a01b03841660248201527331ee4a53bd2c1c339662dffb973017ef81a6bad590634c60db9c9060440160006040518083038186803b158015610d0d57600080fd5b505af4158015610d21573d6000803e3d6000fd5b50505050610de2565b6001600160a01b0383166000908152600f602052604090205460ff16610db85760405162461bcd60e51b815260206004820152603e60248201527f4469766964656e64547261636b65723a2054686973206164647265737320697360448201527f20616c726561647920696e636c7564656420696e206469766964656e647300006064820152608401610b08565b6001600160a01b0383166000908152600f60205260409020805460ff19169055610de28383610e2c565b826001600160a01b03167fa3c7c11b2e12c4144b09a7813f3393ba646392788638998c97be8da908cf04be82604051610e1f911515815260200190565b60405180910390a2505050565b610e34611116565b6001600160a01b0382166000908152600f602052604090205460ff16610f49576012548110610ee457610e67828261137c565b604051632f0ad01760e21b8152600a60048201526001600160a01b0383166024820152604481018290527331ee4a53bd2c1c339662dffb973017ef81a6bad59063bc2b405c9060640160006040518083038186803b158015610ec857600080fd5b505af4158015610edc573d6000803e3d6000fd5b505050505050565b610eef82600061137c565b60405163131836e760e21b8152600a60048201526001600160a01b03831660248201527331ee4a53bd2c1c339662dffb973017ef81a6bad590634c60db9c9060440160006040518083038186803b158015610ec857600080fd5b5050565b610f55611116565b6001600160a01b038116610fba5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b08565b610fc38161132c565b50565b600080610fd1611116565b600a546000819003610fe95750600093849350915050565b600e546000805a905060009550600094505b868210801561100957508386105b156110cf5782611018816118f0565b600a549094508410905061102b57600092505b6000600a600001848154811061104357611043611909565b60009182526020808320909101546001600160a01b03168083526010909152604090912054909150611074906113cb565b156110955761108281610511565b156110955785611091816118f0565b9650505b8661109f816118f0565b97505060005a9050808311156110c6576110b981846118a3565b6110c390856118b6565b93505b9150610ffb9050565b600e83905560408051878152602081018790527ff78a0aac70b15fc744c16ea2c52bba9a167f030b8961e62a1d2c92588f77facf910160405180910390a150505050915091565b6000546001600160a01b03163314610b5e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b08565b60008061117c83610bba565b9050801561054f576001600160a01b0383166000908152600760205260409020546111a89082906118b6565b6001600160a01b038481166000818152600760205260409081902093909355600954925163a9059cbb60e01b815260048101919091526024810184905291169063a9059cbb906044016020604051808303816000875af192505050801561122c575060408051601f3d908101601f1916820190925261122991810190611886565b60015b611272576001600160a01b0383166000908152600760205260409020546112549082906118a3565b6001600160a01b03841660009081526007602052604090205561054f565b80156112c257836001600160a01b03167fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d836040516112b391815260200190565b60405180910390a25092915050565b6001600160a01b0384166000908152600760205260409020546112e69083906118a3565b6001600160a01b0385166000908152600760205260409020555050600092915050565b600081818112156105b557600080fd5b60008082121561132857600080fd5b5090565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216600090815260016020526040902054808211156113b057610903836113ab83856118a3565b6113f2565b8082101561090357610903836113c684846118a3565b611450565b6000814210156113dd57506000919050565b6011546113ea83426118a3565b101592915050565b6113fc828261148e565b61140d8160055461059791906117ef565b6001600160a01b03831660009081526006602052604090205461143091906118c9565b6001600160a01b0390921660009081526006602052604090209190915550565b61145a828261154f565b61146b8160055461059791906117ef565b6001600160a01b0383166000908152600660205260409020546114309190611806565b6001600160a01b0382166114e45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610b08565b80600260008282546114f691906118b6565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0382166115af5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610b08565b6001600160a01b038216600090815260016020526040902054818110156116235760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610b08565b6001600160a01b03831660008181526001602090815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600060208083528351808285015260005b818110156116b057858101830151858201604001528201611694565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610fc357600080fd5b6000602082840312156116f857600080fd5b8135611703816116d1565b9392505050565b60006020828403121561171c57600080fd5b5035919050565b8015158114610fc357600080fd5b60008060006060848603121561174657600080fd5b8335611751816116d1565b925060208401359150604084013561176881611723565b809150509250925092565b6000806040838503121561178657600080fd5b8235611791816116d1565b946020939093013593505050565b600181811c908216806117b357607f821691505b6020821081036117d357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176105b5576105b56117d9565b8082018281126000831280158216821582161715611826576118266117d9565b505092915050565b60008261184b57634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561186257600080fd5b5051919050565b60006020828403121561187b57600080fd5b8151611703816116d1565b60006020828403121561189857600080fd5b815161170381611723565b818103818111156105b5576105b56117d9565b808201808211156105b5576105b56117d9565b81810360008312801583831316838312821617156118e9576118e96117d9565b5092915050565b600060018201611902576119026117d9565b5060010190565b634e487b7160e01b600052603260045260246000fdfea26469706673582212202ec194cb40b8ebf38ef5aa4932eefb47e11f0c0155539ea4f938464c00b1265a64736f6c63430008130033546178657344656661756c74526f757465723a2043616e6e6f7420657863656564206d617820746f74616c20666565206f662032352500000000000000000000
Deployed Bytecode
0x6080604052600436106103b15760003560e01c80638062651a116101e7578063c02466681161010d578063e30c3978116100a0578063f27fd2541161006f578063f27fd25414610b20578063f2fde38b14610b40578063f7c618c114610b60578063ffb2c47914610b8057600080fd5b8063e30c397814610ab8578063e626815814610ad6578063e7841ec014610af6578063f112ba7214610b0b57600080fd5b8063c400f5e7116100dc578063c400f5e714610a43578063c705c56914610a63578063d947752614610a83578063dd62ed3e14610a9857600080fd5b8063c0246668146109c3578063c0a904a2146109e3578063c0c53b8b14610a03578063c18bc19514610a2357600080fd5b8063a26579ad11610185578063a8b9d24011610154578063a8b9d24014610908578063a9059cbb14610928578063aa4bde2814610948578063ad56c13c1461095e57600080fd5b8063a26579ad14610893578063a457c2d7146108a8578063a5ece941146108c8578063a6ddc425146108e857600080fd5b80638fffabed116101c15780638fffabed1461082857806395d89b4114610848578063966b53c41461085d5780639c1b8af51461087d57600080fd5b80638062651a146107ca5780638da5cb5b146107ea5780638e749a8f1461080857600080fd5b806342966c68116102d757806364b0f6531161026a578063715018a611610239578063715018a614610750578063768565571461076557806379ba50971461079557806379cc6790146107aa57600080fd5b806364b0f653146106db5780636843cd84146106f05780636cc9c8f11461071057806370a082311461073057600080fd5b80634fbee193116102a65780634fbee19314610636578063502f7446146106665780635cce86cd1461068b578063647846a5146106bb57600080fd5b806342966c68146105bf5780634a4dd9cd146105df5780634e71d92d146105ff5780634f011b831461061457600080fd5b8063294aad9c1161034f57806330bb4cff1161031e57806330bb4cff1461053b578063313ce56714610550578063395093511461056c578063408ccbdf1461058c57600080fd5b8063294aad9c146104ae5780632c1f5216146104c35780632d99d32e146104fb5780632f267e291461051b57600080fd5b806318160ddd1161038b57806318160ddd1461043a5780631a0e718c146104595780631af3c61d1461047957806323b872dd1461048e57600080fd5b80630483f7a0146103bd57806306fdde03146103df578063095ea7b31461040a57600080fd5b366103b857005b600080fd5b3480156103c957600080fd5b506103dd6103d8366004613848565b610bb5565b005b3480156103eb57600080fd5b506103f4610bcb565b6040516104019190613881565b60405180910390f35b34801561041657600080fd5b5061042a6104253660046138cf565b610c5d565b6040519015158152602001610401565b34801561044657600080fd5b506002545b604051908152602001610401565b34801561046557600080fd5b506103dd610474366004613912565b610c77565b34801561048557600080fd5b506103dd610d7b565b34801561049a57600080fd5b5061042a6104a936600461392d565b610de5565b3480156104ba57600080fd5b5061044b610e09565b3480156104cf57600080fd5b506007546104e3906001600160a01b031681565b6040516001600160a01b039091168152602001610401565b34801561050757600080fd5b506103dd610516366004613848565b610e7c565b34801561052757600080fd5b506103dd61053636600461396e565b610f08565b34801561054757600080fd5b5061044b610fdb565b34801561055c57600080fd5b5060405160128152602001610401565b34801561057857600080fd5b5061042a6105873660046138cf565b611025565b34801561059857600080fd5b506105ac6105a736600461396e565b611047565b60405161ffff9091168152602001610401565b3480156105cb57600080fd5b506103dd6105da36600461396e565b611075565b3480156105eb57600080fd5b506103dd6105fa366004613987565b611082565b34801561060b57600080fd5b5061042a61122a565b34801561062057600080fd5b50600a546105ac90600160a01b900461ffff1681565b34801561064257600080fd5b5061042a6106513660046139ca565b60126020526000908152604090205460ff1681565b34801561067257600080fd5b506014546104e39061010090046001600160a01b031681565b34801561069757600080fd5b5061042a6106a63660046139ca565b60176020526000908152604090205460ff1681565b3480156106c757600080fd5b50600a546104e3906001600160a01b031681565b3480156106e757600080fd5b5061044b611299565b3480156106fc57600080fd5b5061044b61070b3660046139ca565b6112e3565b34801561071c57600080fd5b506103dd61072b36600461396e565b611353565b34801561073c57600080fd5b5061044b61074b3660046139ca565b6113bc565b34801561075c57600080fd5b506103dd6113d7565b34801561077157600080fd5b5061042a6107803660046139ca565b60166020526000908152604090205460ff1681565b3480156107a157600080fd5b506103dd6113eb565b3480156107b657600080fd5b506103dd6107c53660046138cf565b611462565b3480156107d657600080fd5b506103dd6107e5366004613987565b611477565b3480156107f657600080fd5b506005546001600160a01b03166104e3565b34801561081457600080fd5b506105ac61082336600461396e565b611616565b34801561083457600080fd5b506015546104e3906001600160a01b031681565b34801561085457600080fd5b506103f4611626565b34801561086957600080fd5b506105ac61087836600461396e565b611635565b34801561088957600080fd5b5061044b60085481565b34801561089f57600080fd5b5061044b611645565b3480156108b457600080fd5b5061042a6108c33660046138cf565b61168f565b3480156108d457600080fd5b50600e546104e3906001600160a01b031681565b3480156108f457600080fd5b506105ac61090336600461396e565b61170a565b34801561091457600080fd5b5061044b6109233660046139ca565b61171a565b34801561093457600080fd5b5061042a6109433660046138cf565b61174d565b34801561095457600080fd5b5061044b60185481565b34801561096a57600080fd5b5061097e6109793660046139ca565b61175b565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610401565b3480156109cf57600080fd5b506103dd6109de366004613848565b6117f6565b3480156109ef57600080fd5b506103dd6109fe366004613848565b61185e565b348015610a0f57600080fd5b506103dd610a1e3660046139e7565b611870565b348015610a2f57600080fd5b506103dd610a3e36600461396e565b611966565b348015610a4f57600080fd5b506103dd610a5e3660046139ca565b6119fa565b348015610a6f57600080fd5b5061042a610a7e3660046139ca565b611af7565b348015610a8f57600080fd5b5061044b611b66565b348015610aa457600080fd5b5061044b610ab3366004613a32565b611ba6565b348015610ac457600080fd5b506006546001600160a01b03166104e3565b348015610ae257600080fd5b506103dd610af1366004613987565b611bd1565b348015610b0257600080fd5b5061044b611d70565b348015610b1757600080fd5b5061044b611dba565b348015610b2c57600080fd5b5061097e610b3b36600461396e565b611de5565b348015610b4c57600080fd5b506103dd610b5b3660046139ca565b611e27565b348015610b6c57600080fd5b506009546104e3906001600160a01b031681565b348015610b8c57600080fd5b50610ba0610b9b36600461396e565b611e98565b60408051928352602083019190915201610401565b610bbd611f17565b610bc78282611f71565b5050565b606060038054610bda90613a60565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0690613a60565b8015610c535780601f10610c2857610100808354040283529160200191610c53565b820191906000526020600020905b815481529060010190602001808311610c3657829003601f168201915b5050505050905090565b600033610c6b818585611ff7565b60019150505b92915050565b610c7f611f17565b60008161ffff16118015610c9957506101f48161ffff1611155b610d245760405162461bcd60e51b815260206004820152604b60248201527f537761705468726573686f6c643a2043616e6e6f7420657863656564206c696d60448201527f6974732066726f6d20302e30312520746f20352520666f72206e65772073776160648201526a1c081d1a1c995cda1bdb1960aa1b608482015260a4015b60405180910390fd5b600a805461ffff60a01b1916600160a01b61ffff8416908102919091179091556040519081527fcf1366790fe21e66c9df9dcf67218b1e10acd64d3c99ae8a7429a68de91f1720906020015b60405180910390a150565b6000610d85611dba565b610d8e306113bc565b610d989190613ab0565b90506000610da58261211b565b60408051848152602081018390529192507f5c3340567bf85cd43734028361fe821eac789fbe397b8d1a4f9ebb3ab4c81ef7910160405180910390a15050565b600033610df38582856121bf565b610dfe858585612233565b506001949350505050565b600754604080516318160ddd60e01b815290516000926001600160a01b0316916318160ddd9160048083019260209291908290030181865afa158015610e53573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e779190613ac3565b905090565b610e84611f17565b6015546001600160a01b0390811690831603610efe5760405162461bcd60e51b815260206004820152603360248201527f44656661756c74526f757465723a2043616e6e6f742072656d6f766520696e696044820152721d1a585b081c185a5c88199c9bdb481b1a5cdd606a1b6064820152608401610d1b565b610bc78282612917565b610f10611f17565b62030d408110158015610f2657506207a1208111155b610fa65760405162461bcd60e51b815260206004820152604560248201527f4469766964656e64547261636b65723a20676173466f7250726f63657373696e60448201527f67206d757374206265206265747765656e203230306b20616e64203530306b20606482015264756e69747360d81b608482015260a401610d1b565b60088190556040518181527f1662a2324457a200b9556dfe949641639b99480ee6b448aefcfb97ee61ec241790602001610d70565b600754604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae9160048083019260209291908290030181865afa158015610e53573d6000803e3d6000fd5b600033610c6b8185856110388383611ba6565b6110429190613adc565b611ff7565b6013816003811061105757600080fd5b60109182820401919006600202915054906101000a900461ffff1681565b61107f3382612997565b50565b61108a611f17565b600f5460135484916110a39161ffff9182169116613b05565b6110ad9190613b27565b6013805461ffff191661ffff9283161790819055600f5484926110dd926201000092839004821692900416613b05565b6110e79190613b27565b6013805463ffff000019166201000061ffff938416021790819055600f54839261111f92600160201b92839004821692900416613b05565b6111299190613b27565b6013805461ffff928316600160201b0265ffff0000000019821681179092556109c490831691909216171180159061117057506013546109c46201000090910461ffff1611155b801561118c57506013546109c4600160201b90910461ffff1611155b6111a85760405162461bcd60e51b8152600401610d1b90613b42565b6040805160608101825261ffff808616825284811660208301528316918101919091526111d990600f90600361377a565b506040805161ffff808616825280851660208301528316918101919091527f1e5d76e30cd4303515f118e75cbf9d9440bb68ab78b2c2fa46984200dc11ad64906060015b60405180910390a1505050565b600754604051630f41a04d60e11b81523360048201526000916001600160a01b031690631e83409a906024016020604051808303816000875af1158015611275573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e779190613b98565b600754604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde9160048083019260209291908290030181865afa158015610e53573d6000803e3d6000fd5b6007546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b602060405180830381865afa15801561132f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c719190613ac3565b61135b611f17565b600754604051636cc9c8f160e01b8152600481018390526001600160a01b0390911690636cc9c8f190602401600060405180830381600087803b1580156113a157600080fd5b505af11580156113b5573d6000803e3d6000fd5b5050505050565b6001600160a01b031660009081526020819052604090205490565b6113df611f17565b6113e960006129ed565b565b60065433906001600160a01b031681146114595760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b6064820152608401610d1b565b61107f816129ed565b61146d8233836121bf565b610bc78282612997565b61147f611f17565b60115460135484916114989161ffff9182169116613b05565b6114a29190613b27565b6013805461ffff191661ffff928316179081905560115484926114d2926201000092839004821692900416613b05565b6114dc9190613b27565b6013805463ffff000019166201000061ffff938416021790819055601154839261151492600160201b92839004821692900416613b05565b61151e9190613b27565b6013805461ffff928316600160201b0265ffff0000000019821681179092556109c490831691909216171180159061156557506013546109c46201000090910461ffff1611155b801561158157506013546109c4600160201b90910461ffff1611155b61159d5760405162461bcd60e51b8152600401610d1b90613b42565b6040805160608101825261ffff808616825284811660208301528316918101919091526115ce90601190600361377a565b506040805161ffff808616825280851660208301528316918101919091527f4cc46242539a322b08449caf679672d54580fc99e4b7a4b3c6f21e322ad604689060600161121d565b600f816003811061105757600080fd5b606060048054610bda90613a60565b6010816003811061105757600080fd5b60075460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec9160048083019260209291908290030181865afa158015610e53573d6000803e3d6000fd5b6000338161169d8286611ba6565b9050838110156116fd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610d1b565b610dfe8286868403611ff7565b6011816003811061105757600080fd5b6007546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d24090602401611312565b600033610c6b818585612233565b600754604051632ebc328760e11b81526001600160a01b0383811660048301526000928392839283928392839283928392911690635d78650e906024015b61010060405180830381865afa1580156117b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117db9190613bb5565b97509750975097509750975097509750919395975091939597565b6117fe611f17565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b611866611f17565b610bc78282612a06565b600954600160a81b900460ff16806118925750600954600160a01b900460ff16155b6118f55760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610d1b565b600954600160a81b900460ff1615801561191f576009805461ffff60a01b191661010160a01b1790555b600a80546001600160a01b0319166001600160a01b03861617905561194383612a5e565b61194c82612ae0565b8015611960576009805460ff60a81b191690555b50505050565b61196e611f17565b611976612cf9565b8110156119c55760405162461bcd60e51b815260206004820152601860248201527f4d617857616c6c65743a204c696d697420746f6f206c6f7700000000000000006044820152606401610d1b565b60188190556040518181527f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e00190602001610d70565b611a02611f17565b6001600160a01b038116611a8d5760405162461bcd60e51b815260206004820152604660248201527f546178657344656661756c74526f7574657257616c6c65743a2057616c6c657460448201527f2074617820726563697069656e742063616e6e6f74206265206120307830206160648201526564647265737360d01b608482015260a401610d1b565b600e80546001600160a01b0319166001600160a01b038316179055611ab38160016117f6565b611abe816001612a06565b6040516001600160a01b03821681527feaf1986d341c3096d2d5d32f86ed29a21fee4e0d8365cd2b6fa85c0ec6889cf690602001610d70565b60075460405163c705c56960e01b81526001600160a01b038381166004830152600092169063c705c56990602401602060405180830381865afa158015611b42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c719190613b98565b600a5460155460009161271091600160a01b90910461ffff1690611b92906001600160a01b03166113bc565b611b9c9190613c1f565b610e779190613c36565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611bd9611f17565b6010546013548491611bf29161ffff9182169116613b05565b611bfc9190613b27565b6013805461ffff191661ffff92831617908190556010548492611c2c926201000092839004821692900416613b05565b611c369190613b27565b6013805463ffff000019166201000061ffff9384160217908190556010548392611c6e92600160201b92839004821692900416613b05565b611c789190613b27565b6013805461ffff928316600160201b0265ffff0000000019821681179092556109c4908316919092161711801590611cbf57506013546109c46201000090910461ffff1611155b8015611cdb57506013546109c4600160201b90910461ffff1611155b611cf75760405162461bcd60e51b8152600401610d1b90613b42565b6040805160608101825261ffff80861682528481166020830152831691810191909152611d2890601090600361377a565b506040805161ffff808616825280851660208301528316918101919091527f2524ccb75260c9a50c71af1740c212c049a01232ef122061416b51815ec57a189060600161121d565b60075460408051633009a60960e01b815290516000926001600160a01b031691633009a6099160048083019260209291908290030181865afa158015610e53573d6000803e3d6000fd5b6000600d54600c54600b546000611dd19190613adc565b611ddb9190613adc565b610e779190613adc565b600754604051632f7541e960e01b81526004810183905260009182918291829182918291829182916001600160a01b0390911690632f7541e990602401611799565b611e2f611f17565b600680546001600160a01b0383166001600160a01b03199091168117909155611e606005546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6007546040516001624d3b8760e01b031981526004810183905260009182916001600160a01b039091169063ffb2c4799060240160408051808303816000875af1158015611eea573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f0e9190613c58565b91509150915091565b6005546001600160a01b031633146113e95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1b565b6007546001600160a01b031663d1fbb84e83611f8c816113bc565b6040516001600160e01b031960e085901b1681526001600160a01b039092166004830152602482015283151560448201526064015b600060405180830381600087803b158015611fdb57600080fd5b505af1158015611fef573d6000803e3d6000fd5b505050505050565b6001600160a01b0383166120595760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610d1b565b6001600160a01b0382166120ba5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610d1b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600080612129600284613c36565b905060006121378285613ab0565b905061214282612d07565b4780156121b75760008060006121588585612e4e565b604080518481526020810184905290810182905292955090935091507f3db50c324c27fb39c451e35d4d23abba3e20d96d036e7a40f4adc681c1ce30139060600160405180910390a16121ab8386613ab0565b98975050505050505050565b509392505050565b60006121cb8484611ba6565b9050600019811461196057818110156122265760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610d1b565b6119608484848403611ff7565b60145460ff161580156122465750600081115b801561226557506014546001600160a01b038381166101009092041614155b801561228a57506001600160a01b03831660009081526012602052604090205460ff16155b80156122af57506001600160a01b03821660009081526012602052604090205460ff16155b15612571576001600160a01b03831660009081526016602052604081205460039060ff16156122ed5760135461ffff16156122e8575060005b61233f565b6001600160a01b03841660009081526016602052604090205460ff16156123285760135462010000900461ffff16156122e85750600161233f565b601354600160201b900461ffff161561233f575060025b60038160ff16101561255d5761271060138260ff166003811061236457612364613aef565b601091828204019190066002029054906101000a900461ffff1661ffff168461238d9190613c1f565b6123979190613c36565b91506123a38284613ab0565b925060138160ff16600381106123bb576123bb613aef565b601081049091015461ffff6002600f938416026101000a909104169060ff8316600381106123eb576123eb613aef565b601091828204019190066002029054906101000a900461ffff1661ffff16836124149190613c1f565b61241e9190613c36565b600b600082825461242f9190613adc565b909155506013905060ff82166003811061244b5761244b613aef565b601091828204019190066002029054906101000a900461ffff1661ffff1660108260ff166003811061247f5761247f613aef565b601091828204019190066002029054906101000a900461ffff1661ffff16836124a89190613c1f565b6124b29190613c36565b600c60008282546124c39190613adc565b909155506013905060ff8216600381106124df576124df613aef565b601091828204019190066002029054906101000a900461ffff1661ffff1660118260ff166003811061251357612513613aef565b601091828204019190066002029054906101000a900461ffff1661ffff168361253c9190613c1f565b6125469190613c36565b600d60008282546125579190613adc565b90915550505b811561256e5761256e853084612f16565b50505b600061257b611b66565b612583611dba565b101580156125a657506015546000906125a4906001600160a01b03166113bc565b115b60145490915060ff161580156125d557506001600160a01b03841660009081526016602052604090205460ff16155b80156125f457506014546001600160a01b038581166101009092041614155b80156125fd5750805b1561278d576014805460ff191660011790556000600b541115612739576000600b54600061262b9190613adc565b90506000612638826130c0565b600a546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015612681573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126a59190613ac3565b9050600083600b54836126b89190613c1f565b6126c29190613c36565b9050801561272f57600e546126e0906001600160a01b03168261323a565b9250821561272f57600e54604080516001600160a01b039092168252602082018390527f3e6afd69feef8f4cc1adbe6d3905e477db85aa5aa28d02674dc4bc6d39237fe4910160405180910390a15b50506000600b5550505b600c54156127535761274c600c5461211b565b506000600c555b6000600d5411801561276c5750600061276a611299565b115b156127825761277c600d546132b9565b6000600d555b6014805460ff191690555b612798848484612f16565b6007546001600160a01b031663e30443bc856127b3816113bc565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156127f957600080fd5b505af115801561280d573d6000803e3d6000fd5b50506007546001600160a01b0316915063e30443bc90508461282e816113bc565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561287457600080fd5b505af1158015612888573d6000803e3d6000fd5b505060145460ff1691506119609050576007546008546040516001624d3b8760e01b031981526001600160a01b039092169163ffb2c479916128d09160040190815260200190565b60408051808303816000875af192505050801561290a575060408051601f3d908101601f1916820190925261290791810190613c58565b60015b1561196057505050505050565b6001600160a01b0382166000908152601660205260409020805460ff1916821580159190911790915561295a5761294f826001611f71565b61295a826001612a06565b816001600160a01b03167f911aa18ddbbbc33c9b4c704a71bdaa0984b0aa2e82726a7f51e64bad0b0a845582604051611852911515815260200190565b6129a18282613451565b6007546001600160a01b031663e30443bc836129bc816113bc565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401611fc1565b600680546001600160a01b031916905561107f8161358a565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc929101611852565b600754604051638aee812760e01b81526001600160a01b03838116600483015290911690638aee812790602401600060405180830381600087803b158015612aa557600080fd5b505af1158015612ab9573d6000803e3d6000fd5b5050600980546001600160a01b0319166001600160a01b0394909416939093179092555050565b80601460016101000a8154816001600160a01b0302191690836001600160a01b03160217905550601460019054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b5a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b7e9190613c7c565b6001600160a01b031663c9c6539630601460019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612be0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c049190613c7c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015612c51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c759190613c7c565b601580546001600160a01b0319166001600160a01b0392909216919091179055612ca0816001611f71565b612cab816001612a06565b601554612cc2906001600160a01b03166001612917565b6040516001600160a01b038216907fbc052db65df144ad4f71f02da93cae3d4401104c30ac374d7cc10d87ee07b60290600090a250565b60006103e8611b9c60025490565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612d3c57612d3c613aef565b60200260200101906001600160a01b031690816001600160a01b031681525050601460019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612daf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612dd39190613c7c565b81600181518110612de657612de6613aef565b6001600160a01b039283166020918202929092010152601454612e1191309161010090041684611ff7565b60145460405163791ac94760e01b81526101009091046001600160a01b03169063791ac94790611fc1908590600090869030904290600401613c99565b6000806000612e7330601460019054906101000a90046001600160a01b031687611ff7565b60145460405163f305d71960e01b8152306004820152602481018790526000604482018190526064820181905260848201524260a48201526101009091046001600160a01b03169063f305d71990869060c40160606040518083038185885af1158015612ee4573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612f099190613d0a565b9250925092509250925092565b6001600160a01b038316612f7a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610d1b565b6001600160a01b038216612fdc5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610d1b565b6001600160a01b038316600090815260208190526040902054818110156130545760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610d1b565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36119608484846135dc565b604080516003808252608082019092526000916020820160608036833701905050905030816000815181106130f7576130f7613aef565b60200260200101906001600160a01b031690816001600160a01b031681525050601460019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561316a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061318e9190613c7c565b816001815181106131a1576131a1613aef565b6001600160a01b039283166020918202929092010152600a548251911690829060029081106131d2576131d2613aef565b6001600160a01b0392831660209182029290920101526014546131fd91309161010090041684611ff7565b601454604051635c11d79560e01b81526101009091046001600160a01b031690635c11d79590611fc1908590600090869030904290600401613c99565b600a5460405163a9059cbb60e01b81526001600160a01b03848116600483015260248201849052600092169063a9059cbb906044016020604051808303816000875af115801561328e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132b29190613b98565b9392505050565b6132c281613668565b6009546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa15801561330b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061332f9190613ac3565b90508015610bc75760095460075460405163095ea7b360e01b81526001600160a01b03918216600482015260248101849052600092919091169063095ea7b3906044016020604051808303816000875af1158015613391573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133b59190613b98565b9050801561344c57600754604051633243c79160e01b8152600481018490526001600160a01b0390911690633243c79190602401600060405180830381600087803b15801561340357600080fd5b505af1158015613417573d6000803e3d6000fd5b505050507f193576e9dd325a2a57e4e6e7f6afa82c4fd152eaa8d5f874b0b0f40d924b18a68260405161121d91815260200190565b505050565b6001600160a01b0382166134b15760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610d1b565b6001600160a01b038216600090815260208190526040902054818110156135255760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610d1b565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361344c836000846135dc565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526017602052604090205460ff1661344c57601854613608836113bc565b111561344c5760405162461bcd60e51b815260206004820152602960248201527f4d617857616c6c65743a2043616e6e6f7420657863656564206d61782077616c6044820152681b195d081b1a5b5a5d60ba1b6064820152608401610d1b565b6040805160038082526080820190925260009160208201606080368337019050509050308160008151811061369f5761369f613aef565b60200260200101906001600160a01b031690816001600160a01b031681525050601460019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613712573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137369190613c7c565b8160018151811061374957613749613aef565b6001600160a01b0392831660209182029290920101526009548251911690829060029081106131d2576131d2613aef565b6001830191839082156138005791602002820160005b838211156137d057835183826101000a81548161ffff021916908361ffff1602179055509260200192600201602081600101049283019260010302613790565b80156137fe5782816101000a81549061ffff02191690556002016020816001010492830192600103026137d0565b505b5061380c929150613810565b5090565b5b8082111561380c5760008155600101613811565b6001600160a01b038116811461107f57600080fd5b801515811461107f57600080fd5b6000806040838503121561385b57600080fd5b823561386681613825565b915060208301356138768161383a565b809150509250929050565b600060208083528351808285015260005b818110156138ae57858101830151858201604001528201613892565b506000604082860101526040601f19601f8301168501019250505092915050565b600080604083850312156138e257600080fd5b82356138ed81613825565b946020939093013593505050565b803561ffff8116811461390d57600080fd5b919050565b60006020828403121561392457600080fd5b6132b2826138fb565b60008060006060848603121561394257600080fd5b833561394d81613825565b9250602084013561395d81613825565b929592945050506040919091013590565b60006020828403121561398057600080fd5b5035919050565b60008060006060848603121561399c57600080fd5b6139a5846138fb565b92506139b3602085016138fb565b91506139c1604085016138fb565b90509250925092565b6000602082840312156139dc57600080fd5b81356132b281613825565b6000806000606084860312156139fc57600080fd5b8335613a0781613825565b92506020840135613a1781613825565b91506040840135613a2781613825565b809150509250925092565b60008060408385031215613a4557600080fd5b8235613a5081613825565b9150602083013561387681613825565b600181811c90821680613a7457607f821691505b602082108103613a9457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b81810381811115610c7157610c71613a9a565b600060208284031215613ad557600080fd5b5051919050565b80820180821115610c7157610c71613a9a565b634e487b7160e01b600052603260045260246000fd5b61ffff828116828216039080821115613b2057613b20613a9a565b5092915050565b61ffff818116838216019080821115613b2057613b20613a9a565b60208082526036908201527f546178657344656661756c74526f757465723a2043616e6e6f7420657863656560408201527564206d617820746f74616c20666565206f662032352560501b606082015260800190565b600060208284031215613baa57600080fd5b81516132b28161383a565b600080600080600080600080610100898b031215613bd257600080fd5b8851613bdd81613825565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b8082028115828204841417610c7157610c71613a9a565b600082613c5357634e487b7160e01b600052601260045260246000fd5b500490565b60008060408385031215613c6b57600080fd5b505080516020909101519092909150565b600060208284031215613c8e57600080fd5b81516132b281613825565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015613ce95784516001600160a01b031683529383019391830191600101613cc4565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215613d1f57600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122008fdd01e800f75ca1f490c1a54f5b2f25882e2c40e1944877b3133b3b646125964736f6c63430008130033
Loading...
Loading
Loading...
Loading
Net Worth in USD
$78.63
Net Worth in ETH
0.039977
Token Allocations
ETH
100.00%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $1,965.7 | 0.04 | $78.63 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.