POL Price: $0.689941 (-2.36%)
 

Overview

Max Total Supply

699,012.580324 PFT

Holders

254 (0.00%)

Market

Price

$0.00 @ 0.000000 POL

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
50,161.311 PFT

Value
$0.00
0x73057568346427094534BA9911bc877D99280Ac5
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Pest Free Token (PFT) is New Zealand’s first crypto for charity. PFT is a deflationary token that rewards holders for contributing towards pest eradication.

Contract Source Code Verified (Exact Match)

Contract Name:
Pest_Free_Token

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
File 1 of 25 : Token.sol
/*
Pest Free Token Project

https://pestfreetoken.co.nz

Pest Free Token (PFT) is Web3 for native birds - a market solution to New Zealand's pest problem - rewarding tokens holders as well as those who catch pests. 
The PFT token is a deflationary charity token created by Doxxd devs and managed by formal legal documents. 
Our values are transparency, integrity, community, and service. 
Join our community and make an actual real world impact.
*/


// SPDX-License-Identifier: No License
pragma solidity 0.8.19;

import "./ERC20.sol";
import "./ERC20Burnable.sol";
import "./Ownable2Step.sol";
import "./ERC20Permit.sol";
import "./CoinDividendTracker.sol";

import "./Initializable.sol";
import "./IUniswapV2Factory.sol";
import "./IUniswapV2Pair.sol";
import "./IUniswapV2Router01.sol";
import "./IUniswapV2Router02.sol";

contract Pest_Free_Token is ERC20, ERC20Burnable, Ownable2Step, ERC20Permit, DividendTrackerFunctions, Initializable {
    
    address public charityAddress;
    uint16[3] public charityFees;

    uint16[3] public autoBurnFees;

    uint16 public swapThresholdRatio;
    
    uint256 private _charityPending;
    uint256 private _liquidityPending;
    uint256 private _rewardsPending;

    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;

    bool public tradingEnabled;
    mapping (address => bool) public isExcludedFromTradingRestriction;
 
    event charityAddressUpdated(address charityAddress);
    event charityFeesUpdated(uint16 buyFee, uint16 sellFee, uint16 transferFee);
    event charityFeeSent(address recipient, uint256 amount);

    event autoBurnFeesUpdated(uint16 buyFee, uint16 sellFee, uint16 transferFee);
    event autoBurned(uint256 amount);

    event SwapThresholdUpdated(uint16 swapThresholdRatio);

    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 TradingEnabled();
    event ExcludeFromTradingRestriction(address indexed account, bool isExcluded);
 
    constructor()
        ERC20(unicode"Pest Free Token", unicode"PFT") 
        ERC20Permit(unicode"Pest Free Token")
    {
        address supplyRecipient = 0x99e34D504B99b67520806C452675e50D07a3e272;
        
        charityAddressSetup(0xeF43c2cd2559d1EC2997163Ad99184457bf0865a);
        charityFeesSetup(0, 100, 0);

        autoBurnFeesSetup(0, 37, 0);

        updateSwapThreshold(10);

        liquidityFeesSetup(0, 100, 0);

        _deployDividendTracker(7200, 10 * (10 ** decimals()) / 10);

        gasForProcessingSetup(300000);
        rewardsFeesSetup(0, 63, 0);
        _excludeFromDividends(supplyRecipient, true);
        _excludeFromDividends(address(this), true);
        _excludeFromDividends(address(0), true);
        _excludeFromDividends(address(dividendTracker), true);

        excludeFromFees(supplyRecipient, true);
        excludeFromFees(address(this), true); 

        excludeFromTradingRestriction(supplyRecipient, true);
        excludeFromTradingRestriction(address(this), true);

        _mint(supplyRecipient, 10000000 * (10 ** decimals()) / 10);
        _transferOwnership(0x99e34D504B99b67520806C452675e50D07a3e272);
    }
    
    /*
        This token is not upgradeable, but uses both the constructor and initializer for post-deployment setup.
    */
    function initialize(address _router) initializer external {
        _updateRouterV2(_router);
    }

    receive() external payable {}

    function decimals() public pure override returns (uint8) {
        return 18;
    }
    
    function _sendInTokens(address from, address to, uint256 amount) private {
        super._transfer(from, to, amount);
    }

    function charityAddressSetup(address _newAddress) public onlyOwner {
        require(_newAddress != address(0), "TaxesDefaultRouterWallet: Wallet tax recipient cannot be a 0x0 address");

        charityAddress = _newAddress;
        excludeFromFees(_newAddress, true);

        emit charityAddressUpdated(_newAddress);
    }

    function charityFeesSetup(uint16 _buyFee, uint16 _sellFee, uint16 _transferFee) public onlyOwner {
        totalFees[0] = totalFees[0] - charityFees[0] + _buyFee;
        totalFees[1] = totalFees[1] - charityFees[1] + _sellFee;
        totalFees[2] = totalFees[2] - charityFees[2] + _transferFee;
        require(totalFees[0] <= 2500 && totalFees[1] <= 2500 && totalFees[2] <= 2500, "TaxesDefaultRouter: Cannot exceed max total fee of 25%");

        charityFees = [_buyFee, _sellFee, _transferFee];

        emit charityFeesUpdated(_buyFee, _sellFee, _transferFee);
    }

    function autoBurnFeesSetup(uint16 _buyFee, uint16 _sellFee, uint16 _transferFee) public onlyOwner {
        totalFees[0] = totalFees[0] - autoBurnFees[0] + _buyFee;
        totalFees[1] = totalFees[1] - autoBurnFees[1] + _sellFee;
        totalFees[2] = totalFees[2] - autoBurnFees[2] + _transferFee;
        require(totalFees[0] <= 2500 && totalFees[1] <= 2500 && totalFees[2] <= 2500, "TaxesDefaultRouter: Cannot exceed max total fee of 25%");

        autoBurnFees = [_buyFee, _sellFee, _transferFee];

        emit autoBurnFeesUpdated(_buyFee, _sellFee, _transferFee);
    }

    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 + _liquidityPending + _rewardsPending;
    }

    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 _sendDividends(uint256 tokenAmount) private {
        _swapTokensForCoin(tokenAmount);

        uint256 dividends = address(this).balance;
        
        if (dividends > 0) {
            (bool success,) = payable(address(dividendTracker)).call{value: dividends}("");
            if (success) emit rewardsFeeSent(dividends);
        }
    }

    function excludeFromDividends(address account, bool isExcluded) external onlyOwner {
        _excludeFromDividends(account, isExcluded);
    }

    function _excludeFromDividends(address account, bool isExcluded) internal override {
        dividendTracker.excludeFromDividends(account, balanceOf(account), isExcluded);
    }

    function rewardsFeesSetup(uint16 _buyFee, uint16 _sellFee, uint16 _transferFee) public onlyOwner {
        totalFees[0] = totalFees[0] - rewardsFees[0] + _buyFee;
        totalFees[1] = totalFees[1] - rewardsFees[1] + _sellFee;
        totalFees[2] = totalFees[2] - rewardsFees[2] + _transferFee;
        require(totalFees[0] <= 2500 && totalFees[1] <= 2500 && totalFees[2] <= 2500, "TaxesDefaultRouter: Cannot exceed max total fee of 25%");

        rewardsFees = [_buyFee, _sellFee, _transferFee];

        emit rewardsFeesUpdated(_buyFee, _sellFee, _transferFee);
    }

    function _burn(address account, uint256 amount) internal override {
        super._burn(account, amount);
        
        dividendTracker.setBalance(account, balanceOf(account));
    }

    function _mint(address account, uint256 amount) internal override {
        super._mint(account, amount);
        
        dividendTracker.setBalance(account, balanceOf(account));
    }

    function excludeFromFees(address account, bool isExcluded) public onlyOwner {
        isExcludedFromFees[account] = isExcluded;
        
        emit ExcludeFromFees(account, isExcluded);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        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) {
                
                uint256 charityPortion = 0;

                uint256 autoBurnPortion = 0;

                fees = amount * totalFees[txType] / 10000;
                amount -= fees;
                
                if (charityFees[txType] > 0) {
                    charityPortion = fees * charityFees[txType] / totalFees[txType];
                    _sendInTokens(from, charityAddress, charityPortion);
                    emit charityFeeSent(charityAddress, charityPortion);
                }

                if (autoBurnFees[txType] > 0) {
                    autoBurnPortion = fees * autoBurnFees[txType] / totalFees[txType];
                    _burn(from, autoBurnPortion);
                    emit autoBurned(autoBurnPortion);
                }

                _liquidityPending += fees * liquidityFees[txType] / totalFees[txType];

                _rewardsPending += fees * rewardsFees[txType] / totalFees[txType];

                fees = fees - charityPortion - autoBurnPortion;
            }

            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 (_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);

        _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);

        }

        emit AMMPairsUpdated(pair, isPair);
    }

    function enableTrading() external onlyOwner {
        require(!tradingEnabled, "EnableTrading: Trading was enabled already");
        tradingEnabled = true;
        
        emit TradingEnabled();
    }

    function excludeFromTradingRestriction(address account, bool isExcluded) public onlyOwner {
        isExcludedFromTradingRestriction[account] = isExcluded;
        
        emit ExcludeFromTradingRestriction(account, isExcluded);
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        override
    {
        // Interactions with DEX are disallowed prior to enabling trading by owner
        if ((AMMPairs[from] && !isExcludedFromTradingRestriction[to]) || (AMMPairs[to] && !isExcludedFromTradingRestriction[from])) {
            require(tradingEnabled, "EnableTrading: Trading was not enabled yet");
        }

        super._beforeTokenTransfer(from, to, amount);
    }

    function _afterTokenTransfer(address from, address to, uint256 amount)
        internal
        override
    {
        super._afterTokenTransfer(from, to, amount);
    }
}

File 2 of 25 : ERC20.sol
// 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 {}
}

File 3 of 25 : ERC20Burnable.sol
// 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);
    }
}

File 4 of 25 : Ownable2Step.sol
// 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);
    }
}

File 5 of 25 : ERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/ERC20Permit.sol)

pragma solidity ^0.8.0;

import "./IERC20Permit.sol";
import "./ERC20.sol";
import "./ECDSA.sol";
import "./EIP712.sol";
import "./Counters.sol";

/**
 * @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 *
 * _Available since v3.4._
 */
abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 {
    using Counters for Counters.Counter;

    mapping(address => Counters.Counter) private _nonces;

    // solhint-disable-next-line var-name-mixedcase
    bytes32 private constant _PERMIT_TYPEHASH =
        keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
    /**
     * @dev In previous versions `_PERMIT_TYPEHASH` was declared as `immutable`.
     * However, to ensure consistency with the upgradeable transpiler, we will continue
     * to reserve a slot.
     * @custom:oz-renamed-from _PERMIT_TYPEHASH
     */
    // solhint-disable-next-line var-name-mixedcase
    bytes32 private _PERMIT_TYPEHASH_DEPRECATED_SLOT;

    /**
     * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`.
     *
     * It's a good idea to use the same `name` that is defined as the ERC20 token name.
     */
    constructor(string memory name) EIP712(name, "1") {}

    /**
     * @dev See {IERC20Permit-permit}.
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public virtual override {
        require(block.timestamp <= deadline, "ERC20Permit: expired deadline");

        bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));

        bytes32 hash = _hashTypedDataV4(structHash);

        address signer = ECDSA.recover(hash, v, r, s);
        require(signer == owner, "ERC20Permit: invalid signature");

        _approve(owner, spender, value);
    }

    /**
     * @dev See {IERC20Permit-nonces}.
     */
    function nonces(address owner) public view virtual override returns (uint256) {
        return _nonces[owner].current();
    }

    /**
     * @dev See {IERC20Permit-DOMAIN_SEPARATOR}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view override returns (bytes32) {
        return _domainSeparatorV4();
    }

    /**
     * @dev "Consume a nonce": return the current value and increment.
     *
     * _Available since v4.1._
     */
    function _useNonce(address owner) internal virtual returns (uint256 current) {
        Counters.Counter storage nonce = _nonces[owner];
        current = nonce.current();
        nonce.increment();
    }
}

File 6 of 25 : CoinDividendTracker.sol
// 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;

  constructor(string memory _name, string memory _symbol) TruncatedERC20(_name, _symbol) {}

  receive() external payable {
    distributeDividends();
  }

  function distributeDividends() public payable {
    require(totalSupply() > 0);

    if (msg.value > 0) {
      magnifiedDividendPerShare = magnifiedDividendPerShare + (msg.value * magnitude / totalSupply());

      emit DividendsDistributed(msg.sender, msg.value);

      totalDividendsDistributed = totalDividendsDistributed + msg.value;
    }
  }

  function _withdrawDividend(address account) internal returns(uint256) {
    uint256 withdrawableDividend = withdrawableDividendOf(account);

    if (withdrawableDividend > 0) {
      withdrawnDividends[account] = withdrawnDividends[account] + withdrawableDividend;

      bool success = payable(account).send(withdrawableDividend);
     
      if (success) {
        emit DividendWithdrawn(account, withdrawableDividend);
        return withdrawableDividend;
      } else {
        withdrawnDividends[account] = withdrawnDividends[account] - withdrawableDividend;
      }
    }

    return 0;
  }

  function dividendOf(address account) public view override returns(uint256) {
    return withdrawableDividendOf(account);
  }

  function withdrawableDividendOf(address account) public view override returns(uint256) {
    return accumulativeDividendOf(account) - withdrawnDividends[account];
  }

  function withdrawnDividendOf(address account) public view override returns(uint256) {
    return withdrawnDividends[account];
  }

  function accumulativeDividendOf(address account) public view override returns(uint256) {
    return ((magnifiedDividendPerShare * balanceOf(account)).toInt256Safe() + magnifiedDividendCorrections[account]).toUint256Safe() / magnitude;
  }

  function _mint(address account, uint256 value) internal override {
    super._mint(account, value);

    magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account] - (magnifiedDividendPerShare * value).toInt256Safe();
  }

  function _burn(address account, uint256 value) internal override {
    super._burn(account, value);

    magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account] + (magnifiedDividendPerShare * value).toInt256Safe();
  }

  function _setBalance(address account, uint256 newBalance) internal {
    uint256 currentBalance = balanceOf(account);

    if (newBalance > currentBalance) _mint(account, newBalance - currentBalance);
    else if (newBalance < currentBalance) _burn(account, currentBalance - newBalance);
  }
}

library IterableMapping {
  // Iterable mapping from address to uint;
  struct Map {
    address[] keys;
    mapping(address => uint) values;
    mapping(address => uint) indexOf;
    mapping(address => bool) inserted;
  }

  function get(Map storage map, address key) public view returns (uint) {
    return map.values[key];
  }

  function getIndexOfKey(Map storage map, address key) public view returns (int) {
    if(!map.inserted[key]) {
        return -1;
    }
    return int(map.indexOf[key]);
  }

  function getKeyAtIndex(Map storage map, uint index) public view returns (address) {
    return map.keys[index];
  }

  function size(Map storage map) public view returns (uint) {
    return map.keys.length;
  }

  function set(Map storage map, address key, uint val) public {
    if (map.inserted[key]) {
      map.values[key] = val;
    } else {
      map.inserted[key] = true;
      map.values[key] = val;
      map.indexOf[key] = map.keys.length;
      map.keys.push(key);
    }
  }

  function remove(Map storage map, address key) public {
    if (!map.inserted[key]) {
      return;
    }

    delete map.inserted[key];
    delete map.values[key];

    uint index = map.indexOf[key];
    uint lastIndex = map.keys.length - 1;
    address lastKey = map.keys[lastIndex];

    map.indexOf[lastKey] = index;
    delete map.indexOf[key];

    map.keys[index] = lastKey;
    map.keys.pop();
  }
}

contract DividendTracker is Ownable, DividendPayingToken {
  using IterableMapping for IterableMapping.Map;

  IterableMapping.Map private tokenHoldersMap;
  uint256 public lastProcessedIndex;

  mapping(address => bool) public isExcludedFromDividends;
  mapping(address => uint256) public lastClaimTimes;

  uint256 public claimWait;
  uint256 public minimumTokenBalanceForDividends;

  event ExcludeFromDividends(address indexed account, bool isExcluded);
  event ClaimWaitUpdated(uint256 claimWait);
  event ProcessedDividendTracker(uint256 iterations, uint256 claims);

  constructor(uint256 _claimWait, uint256 _minimumTokenBalance) DividendPayingToken("DividendTracker", "DividendTracker") {
    claimWaitSetup(_claimWait);
    minimumTokenBalanceForDividends = _minimumTokenBalance;
  }

  function excludeFromDividends(address account, uint256 balance, bool isExcluded) external onlyOwner {
    if (isExcluded) {
      require(!isExcludedFromDividends[account], "DividendTracker: This address is already excluded from dividends");
      isExcludedFromDividends[account] = true;

      _setBalance(account, 0);
      tokenHoldersMap.remove(account);
    } else {
      require(isExcludedFromDividends[account], "DividendTracker: This address is already included in dividends");
      isExcludedFromDividends[account] = false;

      setBalance(account, balance);
    }

    emit ExcludeFromDividends(account, isExcluded);
  }

  function claimWaitSetup(uint256 newClaimWait) public onlyOwner {
    require(newClaimWait >= 60 && newClaimWait <= 7 days, "DividendTracker: Claim wait time must be between 1 minute and 7 days");

    claimWait = newClaimWait;

    emit ClaimWaitUpdated(newClaimWait);
  }

  function getNumberOfTokenHolders() external view returns (uint256) {
    return tokenHoldersMap.keys.length;
  }

  function getAccountData(address _account) public view returns (
      address account,
      int256 index,
      int256 iterationsUntilProcessed,
      uint256 withdrawableDividends,
      uint256 totalDividends,
      uint256 lastClaimTime,
      uint256 nextClaimTime,
      uint256 secondsUntilAutoClaimAvailable
    )
  {
    account = _account;
    index = tokenHoldersMap.getIndexOfKey(account);
    iterationsUntilProcessed = -1;

    if (index >= 0) {
      if (uint256(index) > lastProcessedIndex) {
        iterationsUntilProcessed = index - int256(lastProcessedIndex);
      } else {
        uint256 processesUntilEndOfArray = tokenHoldersMap.keys.length > lastProcessedIndex ? tokenHoldersMap.keys.length - lastProcessedIndex : 0;
        iterationsUntilProcessed = index + int256(processesUntilEndOfArray);
      }
    }

    withdrawableDividends = withdrawableDividendOf(account);
    totalDividends = accumulativeDividendOf(account);
    lastClaimTime = lastClaimTimes[account];
    nextClaimTime = lastClaimTime > 0 ? lastClaimTime + claimWait : 0;
    secondsUntilAutoClaimAvailable = nextClaimTime > block.timestamp ? nextClaimTime - block.timestamp : 0;
  }

  function getAccountDataAtIndex(uint256 index) public view returns (
      address,
      int256,
      int256,
      uint256,
      uint256,
      uint256,
      uint256,
      uint256
    )
  {
    if (index >= tokenHoldersMap.size()) return (address(0), -1, -1, 0, 0, 0, 0, 0);

    address account = tokenHoldersMap.getKeyAtIndex(index);

    return getAccountData(account);
  }

  function claim(address account) public onlyOwner returns (bool) {
    uint256 amount = _withdrawDividend(account);

    if (amount > 0) {
      lastClaimTimes[account] = block.timestamp;
      return true;
    }
    return false;
  }

  function _canAutoClaim(uint256 lastClaimTime) private view returns (bool) {
    if (block.timestamp < lastClaimTime) return false;
    
    return block.timestamp - lastClaimTime >= claimWait;
  }

  function setBalance(address account, uint256 newBalance) public onlyOwner {
    if (!isExcludedFromDividends[account]) {

      if (newBalance >= minimumTokenBalanceForDividends) {
        _setBalance(account, newBalance);
        tokenHoldersMap.set(account, newBalance);
      } else {
        _setBalance(account, 0);
        tokenHoldersMap.remove(account);
      }

    }
  }

  function process(uint256 gas) external onlyOwner returns(uint256 iterations, uint256 claims) {
    uint256 numberOfTokenHolders = tokenHoldersMap.keys.length;

    if (numberOfTokenHolders == 0) return (0, 0);

    uint256 _lastProcessedIndex = lastProcessedIndex;
    uint256 gasUsed = 0;
    uint256 gasLeft = gasleft();

    iterations = 0;
    claims = 0;

    while (gasUsed < gas && iterations < numberOfTokenHolders) {
      _lastProcessedIndex++;

      if (_lastProcessedIndex >= tokenHoldersMap.keys.length) _lastProcessedIndex = 0;

      address account = tokenHoldersMap.keys[_lastProcessedIndex];

      if (_canAutoClaim(lastClaimTimes[account])) {
        if (claim(account)) {
          claims++;
        }
      }

      iterations++;

      uint256 newGasLeft = gasleft();

      if (gasLeft > newGasLeft) gasUsed = gasUsed + (gasLeft - newGasLeft);

      gasLeft = newGasLeft;
    }

    lastProcessedIndex = _lastProcessedIndex;

    emit ProcessedDividendTracker(iterations, claims);
  }
}

abstract contract DividendTrackerFunctions is Ownable2Step {
  DividendTracker public dividendTracker;

  uint256 public gasForProcessing;

  event DeployedDividendTracker(address indexed dividendTracker);
  event GasForProcessingUpdated(uint256 gasForProcessing);

  function _deployDividendTracker(uint256 claimWait, uint256 minimumTokenBalance) internal {
    dividendTracker = new DividendTracker(claimWait, minimumTokenBalance);

    emit DeployedDividendTracker(address(dividendTracker));
  }

  function gasForProcessingSetup(uint256 _gasForProcessing) public onlyOwner {
    require(_gasForProcessing >= 200_000 && _gasForProcessing <= 500_000, "DividendTracker: gasForProcessing must be between 200k and 500k units");
    
    gasForProcessing = _gasForProcessing;

    emit GasForProcessingUpdated(_gasForProcessing);
  }

  function claimWaitSetup(uint256 claimWait) external onlyOwner {
    dividendTracker.claimWaitSetup(claimWait);
  }

  function _excludeFromDividends(address account, bool isExcluded) internal virtual;

  function isExcludedFromDividends(address account) public view returns (bool) {
    return dividendTracker.isExcludedFromDividends(account);
  }

  function claim() external returns(bool) {
    return dividendTracker.claim(msg.sender);
  }
  
  function getClaimWait() external view returns (uint256) {
    return dividendTracker.claimWait();
  }

  function getTotalDividendsDistributed() external view returns (uint256) {
    return dividendTracker.totalDividendsDistributed();
  }

  function withdrawableDividendOf(address account) public view returns (uint256) {
    return dividendTracker.withdrawableDividendOf(account);
  }

  function dividendTokenBalanceOf(address account) public view returns (uint256) {
    return dividendTracker.balanceOf(account);
  }

  function dividendTokenTotalSupply() public view returns (uint256) {
    return dividendTracker.totalSupply();
  }

  function getAccountDividendsInfo(address account) external view returns (
      address,
      int256,
      int256,
      uint256,
      uint256,
      uint256,
      uint256,
      uint256
    ) {
    return dividendTracker.getAccountData(account);
  }

  function getAccountDividendsInfoAtIndex(uint256 index) external view returns (
      address,
      int256,
      int256,
      uint256,
      uint256,
      uint256,
      uint256,
      uint256
    ) {
    return dividendTracker.getAccountDataAtIndex(index);
  }

  function getLastProcessedIndex() external view returns (uint256) {
    return dividendTracker.lastProcessedIndex();
  }

  function getNumberOfDividendTokenHolders() public view returns (uint256) {
    return dividendTracker.getNumberOfTokenHolders();
  }

  function process(uint256 gas) external returns(uint256 iterations, uint256 claims) {
    return dividendTracker.process(gas);
  }
}

File 7 of 25 : Initializable.sol
// 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;
        }
    }
}

File 8 of 25 : IUniswapV2Factory.sol
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;
}

File 9 of 25 : IUniswapV2Pair.sol
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;
}

File 10 of 25 : IUniswapV2Router01.sol
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);
}

File 11 of 25 : IUniswapV2Router02.sol
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;
}

File 12 of 25 : Ownable.sol
// 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);
    }
}

File 13 of 25 : IERC20.sol
// 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);
}

File 14 of 25 : IERC20Metadata.sol
// 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);
}

File 15 of 25 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 16 of 25 : IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

File 17 of 25 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "./Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV // Deprecated in v4.8
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 message) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, "\x19Ethereum Signed Message:\n32")
            mstore(0x1c, hash)
            message := keccak256(0x00, 0x3c)
        }
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 data) {
        /// @solidity memory-safe-assembly
        assembly {
            let ptr := mload(0x40)
            mstore(ptr, "\x19\x01")
            mstore(add(ptr, 0x02), domainSeparator)
            mstore(add(ptr, 0x22), structHash)
            data := keccak256(ptr, 0x42)
        }
    }

    /**
     * @dev Returns an Ethereum Signed Data with intended validator, created from a
     * `validator` and `data` according to the version 0 of EIP-191.
     *
     * See {recover}.
     */
    function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x00", validator, data));
    }
}

File 18 of 25 : EIP712.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/EIP712.sol)

pragma solidity ^0.8.8;

import "./ECDSA.sol";
import "./ShortStrings.sol";
import "./IERC5267.sol";

/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * NOTE: In the upgradeable version of this contract, the cached values will correspond to the address, and the domain
 * separator of the implementation contract. This will cause the `_domainSeparatorV4` function to always rebuild the
 * separator from the immutable values, which is cheaper than accessing a cached version in cold storage.
 *
 * _Available since v3.4._
 *
 * @custom:oz-upgrades-unsafe-allow state-variable-immutable state-variable-assignment
 */
abstract contract EIP712 is IERC5267 {
    using ShortStrings for *;

    bytes32 private constant _TYPE_HASH =
        keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)");

    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _cachedDomainSeparator;
    uint256 private immutable _cachedChainId;
    address private immutable _cachedThis;

    bytes32 private immutable _hashedName;
    bytes32 private immutable _hashedVersion;

    ShortString private immutable _name;
    ShortString private immutable _version;
    string private _nameFallback;
    string private _versionFallback;

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        _name = name.toShortStringWithFallback(_nameFallback);
        _version = version.toShortStringWithFallback(_versionFallback);
        _hashedName = keccak256(bytes(name));
        _hashedVersion = keccak256(bytes(version));

        _cachedChainId = block.chainid;
        _cachedDomainSeparator = _buildDomainSeparator();
        _cachedThis = address(this);
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (address(this) == _cachedThis && block.chainid == _cachedChainId) {
            return _cachedDomainSeparator;
        } else {
            return _buildDomainSeparator();
        }
    }

    function _buildDomainSeparator() private view returns (bytes32) {
        return keccak256(abi.encode(_TYPE_HASH, _hashedName, _hashedVersion, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }

    /**
     * @dev See {EIP-5267}.
     *
     * _Available since v4.9._
     */
    function eip712Domain()
        public
        view
        virtual
        override
        returns (
            bytes1 fields,
            string memory name,
            string memory version,
            uint256 chainId,
            address verifyingContract,
            bytes32 salt,
            uint256[] memory extensions
        )
    {
        return (
            hex"0f", // 01111
            _name.toStringWithFallback(_nameFallback),
            _version.toStringWithFallback(_versionFallback),
            block.chainid,
            address(this),
            bytes32(0),
            new uint256[](0)
        );
    }
}

File 19 of 25 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 20 of 25 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./Math.sol";
import "./SignedMath.sol";

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

File 21 of 25 : ShortStrings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/ShortStrings.sol)

pragma solidity ^0.8.8;

import "./StorageSlot.sol";

// | string  | 0xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA   |
// | length  | 0x                                                              BB |
type ShortString is bytes32;

/**
 * @dev This library provides functions to convert short memory strings
 * into a `ShortString` type that can be used as an immutable variable.
 *
 * Strings of arbitrary length can be optimized using this library if
 * they are short enough (up to 31 bytes) by packing them with their
 * length (1 byte) in a single EVM word (32 bytes). Additionally, a
 * fallback mechanism can be used for every other case.
 *
 * Usage example:
 *
 * ```solidity
 * contract Named {
 *     using ShortStrings for *;
 *
 *     ShortString private immutable _name;
 *     string private _nameFallback;
 *
 *     constructor(string memory contractName) {
 *         _name = contractName.toShortStringWithFallback(_nameFallback);
 *     }
 *
 *     function name() external view returns (string memory) {
 *         return _name.toStringWithFallback(_nameFallback);
 *     }
 * }
 * ```
 */
library ShortStrings {
    // Used as an identifier for strings longer than 31 bytes.
    bytes32 private constant _FALLBACK_SENTINEL = 0x00000000000000000000000000000000000000000000000000000000000000FF;

    error StringTooLong(string str);
    error InvalidShortString();

    /**
     * @dev Encode a string of at most 31 chars into a `ShortString`.
     *
     * This will trigger a `StringTooLong` error is the input string is too long.
     */
    function toShortString(string memory str) internal pure returns (ShortString) {
        bytes memory bstr = bytes(str);
        if (bstr.length > 31) {
            revert StringTooLong(str);
        }
        return ShortString.wrap(bytes32(uint256(bytes32(bstr)) | bstr.length));
    }

    /**
     * @dev Decode a `ShortString` back to a "normal" string.
     */
    function toString(ShortString sstr) internal pure returns (string memory) {
        uint256 len = byteLength(sstr);
        // using `new string(len)` would work locally but is not memory safe.
        string memory str = new string(32);
        /// @solidity memory-safe-assembly
        assembly {
            mstore(str, len)
            mstore(add(str, 0x20), sstr)
        }
        return str;
    }

    /**
     * @dev Return the length of a `ShortString`.
     */
    function byteLength(ShortString sstr) internal pure returns (uint256) {
        uint256 result = uint256(ShortString.unwrap(sstr)) & 0xFF;
        if (result > 31) {
            revert InvalidShortString();
        }
        return result;
    }

    /**
     * @dev Encode a string into a `ShortString`, or write it to storage if it is too long.
     */
    function toShortStringWithFallback(string memory value, string storage store) internal returns (ShortString) {
        if (bytes(value).length < 32) {
            return toShortString(value);
        } else {
            StorageSlot.getStringSlot(store).value = value;
            return ShortString.wrap(_FALLBACK_SENTINEL);
        }
    }

    /**
     * @dev Decode a string that was encoded to `ShortString` or written to storage using {setWithFallback}.
     */
    function toStringWithFallback(ShortString value, string storage store) internal pure returns (string memory) {
        if (ShortString.unwrap(value) != _FALLBACK_SENTINEL) {
            return toString(value);
        } else {
            return store;
        }
    }

    /**
     * @dev Return the length of a string that was encoded to `ShortString` or written to storage using {setWithFallback}.
     *
     * WARNING: This will return the "byte length" of the string. This may not reflect the actual length in terms of
     * actual characters as the UTF-8 encoding of a single character can span over multiple bytes.
     */
    function byteLengthWithFallback(ShortString value, string storage store) internal view returns (uint256) {
        if (ShortString.unwrap(value) != _FALLBACK_SENTINEL) {
            return byteLength(value);
        } else {
            return bytes(store).length;
        }
    }
}

File 22 of 25 : IERC5267.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC5267.sol)

pragma solidity ^0.8.0;

interface IERC5267 {
    /**
     * @dev MAY be emitted to signal that the domain could have changed.
     */
    event EIP712DomainChanged();

    /**
     * @dev returns the fields and values that describe the domain separator used by this contract for EIP-712
     * signature.
     */
    function eip712Domain()
        external
        view
        returns (
            bytes1 fields,
            string memory name,
            string memory version,
            uint256 chainId,
            address verifyingContract,
            bytes32 salt,
            uint256[] memory extensions
        );
}

File 23 of 25 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

File 24 of 25 : SignedMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

File 25 of 25 : StorageSlot.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/StorageSlot.sol)
// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.

pragma solidity ^0.8.0;

/**
 * @dev Library for reading and writing primitive types to specific storage slots.
 *
 * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
 * This library helps with reading and writing to such slots without the need for inline assembly.
 *
 * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
 *
 * Example usage to set ERC1967 implementation slot:
 * ```solidity
 * contract ERC1967 {
 *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
 *
 *     function _getImplementation() internal view returns (address) {
 *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
 *     }
 *
 *     function _setImplementation(address newImplementation) internal {
 *         require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
 *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
 *     }
 * }
 * ```
 *
 * _Available since v4.1 for `address`, `bool`, `bytes32`, `uint256`._
 * _Available since v4.9 for `string`, `bytes`._
 */
library StorageSlot {
    struct AddressSlot {
        address value;
    }

    struct BooleanSlot {
        bool value;
    }

    struct Bytes32Slot {
        bytes32 value;
    }

    struct Uint256Slot {
        uint256 value;
    }

    struct StringSlot {
        string value;
    }

    struct BytesSlot {
        bytes value;
    }

    /**
     * @dev Returns an `AddressSlot` with member `value` located at `slot`.
     */
    function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BooleanSlot` with member `value` located at `slot`.
     */
    function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
     */
    function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Uint256Slot` with member `value` located at `slot`.
     */
    function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `StringSlot` with member `value` located at `slot`.
     */
    function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `StringSlot` representation of the string storage pointer `store`.
     */
    function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := store.slot
        }
    }

    /**
     * @dev Returns an `BytesSlot` with member `value` located at `slot`.
     */
    function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.
     */
    function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := store.slot
        }
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {
    "CoinDividendTracker.sol": {
      "IterableMapping": "0x31ee4a53Bd2C1c339662DfFB973017EF81A6bad5"
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"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":[],"name":"EIP712DomainChanged","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":"ExcludeFromTradingRestriction","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":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":[],"name":"TradingEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"buyFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"sellFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"transferFee","type":"uint16"}],"name":"autoBurnFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"autoBurned","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"charityAddress","type":"address"}],"name":"charityAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"charityFeeSent","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":"charityFeesUpdated","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":"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":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"uint256","name":"","type":"uint256"}],"name":"autoBurnFees","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":"autoBurnFeesSetup","outputs":[],"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":"charityAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"charityAddressSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"charityFees","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":"charityFeesSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"claimWait","type":"uint256"}],"name":"claimWaitSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"dividendTokenBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTokenTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract DividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"excludeFromDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"excludeFromTradingRestriction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gasForProcessing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_gasForProcessing","type":"uint256"}],"name":"gasForProcessingSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountDividendsInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getAccountDividendsInfoAtIndex","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAllPending","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getClaimWait","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastProcessedIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfDividendTokenHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"_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":"isExcludedFromTradingRestriction","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"gas","type":"uint256"}],"name":"process","outputs":[{"internalType":"uint256","name":"iterations","type":"uint256"},{"internalType":"uint256","name":"claims","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rewardsFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_buyFee","type":"uint16"},{"internalType":"uint16","name":"_sellFee","type":"uint16"},{"internalType":"uint16","name":"_transferFee","type":"uint16"}],"name":"rewardsFeesSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"routerV2","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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"}]

6101606040523480156200001257600080fd5b506040518060400160405280600f81526020016e2832b9ba10233932b2902a37b5b2b760891b81525080604051806040016040528060018152602001603160f81b8152506040518060400160405280600f81526020016e2832b9ba10233932b2902a37b5b2b760891b8152506040518060400160405280600381526020016214119560ea1b8152508160039081620000ab91906200148c565b506004620000ba82826200148c565b50620000cc915083905060056200030f565b61012052620000dd8160066200030f565b61014052815160208084019190912060e052815190820120610100524660a0526200016b60e05161010051604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201529081019290925260608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b60805250503060c0526200017f3362000348565b507399e34d504b99b67520806c452675e50d07a3e272620001b473ef43c2cd2559d1ec2997163ad99184457bf0865a62000366565b620001c3600060648162000470565b620001d2600060258162000662565b620001de600a6200084c565b620001ed60006064816200093e565b62000222611c20600a620002036012826200166b565b6200021090600a62001683565b6200021c91906200169d565b62000b28565b62000230620493e062000bad565b6200023f6000603f8162000c86565b6200024c81600162000e70565b6200025930600162000e70565b620002676000600162000e70565b600b5462000280906001600160a01b0316600162000e70565b6200028d81600162000f0f565b6200029a30600162000f0f565b620002a781600162000f79565b620002b430600162000f79565b620002e981600a620002c86012826200166b565b620002d7906298968062001683565b620002e391906200169d565b62000fdc565b620003087399e34d504b99b67520806c452675e50d07a3e27262000348565b506200178e565b60006020835110156200032f5762000327836200104c565b905062000342565b816200033c84826200148c565b5060ff90505b92915050565b600880546001600160a01b031916905562000363816200108f565b50565b62000370620010e1565b6001600160a01b038116620004015760405162461bcd60e51b815260206004820152604660248201527f546178657344656661756c74526f7574657257616c6c65743a2057616c6c657460448201527f2074617820726563697069656e742063616e6e6f74206265206120307830206160648201526564647265737360d01b608482015260a4015b60405180910390fd5b600d805462010000600160b01b031916620100006001600160a01b038416021790556200043081600162000f0f565b6040516001600160a01b03821681527f36103056ceaf264dc41397abacce03d7648cbc2f0b2077e3567062533e8b20ed906020015b60405180910390a150565b6200047a620010e1565b600e546017548491620004959161ffff9182169116620016c0565b620004a19190620016e5565b6017805461ffff191661ffff9283161790819055600e548492620004d3926201000092839004821692900416620016c0565b620004df9190620016e5565b6017805463ffff000019166201000061ffff938416021790819055600e5483926200051a9264010000000092839004821692900416620016c0565b620005269190620016e5565b6017805461ffff9283166401000000000261ffff60201b19821681179092556109c49083169190921617118015906200056e57506017546109c46201000090910461ffff1611155b80156200058c57506017546109c464010000000090910461ffff1611155b620005de5760405162461bcd60e51b815260206004820152603660248201526000805160206200776a83398151915260448201526000805160206200778a8339815191526064820152608401620003f8565b6040805160608101825261ffff808616825284811660208301528316918101919091526200061190600e9060036200132e565b506040805161ffff808616825280851660208301528316918101919091527f353fa11d3ea4e1bac31044fdcd36caa4e380f5732dfe9409ba78be0a4216e989906060015b60405180910390a1505050565b6200066c620010e1565b600f546017548491620006879161ffff9182169116620016c0565b620006939190620016e5565b6017805461ffff191661ffff9283161790819055600f548492620006c5926201000092839004821692900416620016c0565b620006d19190620016e5565b6017805463ffff000019166201000061ffff938416021790819055600f5483926200070c9264010000000092839004821692900416620016c0565b620007189190620016e5565b6017805461ffff9283166401000000000261ffff60201b19821681179092556109c49083169190921617118015906200076057506017546109c46201000090910461ffff1611155b80156200077e57506017546109c464010000000090910461ffff1611155b620007d05760405162461bcd60e51b815260206004820152603660248201526000805160206200776a83398151915260448201526000805160206200778a8339815191526064820152608401620003f8565b6040805160608101825261ffff808616825284811660208301528316918101919091526200080390600f9060036200132e565b506040805161ffff808616825280851660208301528316918101919091527f5c6dd066977d1639216aedea00d1204fef7166f3c39e50c26ea04bfd41e561c89060600162000655565b62000856620010e1565b60008161ffff161180156200087157506101f48161ffff1611155b620008f95760405162461bcd60e51b815260206004820152604b60248201527f537761705468726573686f6c643a2043616e6e6f7420657863656564206c696d60448201527f6974732066726f6d20302e30312520746f20352520666f72206e65772073776160648201526a1c081d1a1c995cda1bdb1960aa1b608482015260a401620003f8565b6010805461ffff191661ffff83169081179091556040519081527fcf1366790fe21e66c9df9dcf67218b1e10acd64d3c99ae8a7429a68de91f17209060200162000465565b62000948620010e1565b6014546017548491620009639161ffff9182169116620016c0565b6200096f9190620016e5565b6017805461ffff191661ffff92831617908190556014548492620009a1926201000092839004821692900416620016c0565b620009ad9190620016e5565b6017805463ffff000019166201000061ffff9384160217908190556014548392620009e89264010000000092839004821692900416620016c0565b620009f49190620016e5565b6017805461ffff9283166401000000000261ffff60201b19821681179092556109c490831691909216171180159062000a3c57506017546109c46201000090910461ffff1611155b801562000a5a57506017546109c464010000000090910461ffff1611155b62000aac5760405162461bcd60e51b815260206004820152603660248201526000805160206200776a83398151915260448201526000805160206200778a8339815191526064820152608401620003f8565b6040805160608101825261ffff8086168252848116602083015283169181019190915262000adf9060149060036200132e565b506040805161ffff808616825280851660208301528316918101919091527f2524ccb75260c9a50c71af1740c212c049a01232ef122061416b51815ec57a189060600162000655565b818160405162000b3890620013cb565b9182526020820152604001604051809103906000f08015801562000b60573d6000803e3d6000fd5b50600b80546001600160a01b0319166001600160a01b039290921691821790556040517f5a9eee832e9ca9f7d2110f2cee781d010262c4c3d74b9f1e4ca1b8e3861a8d0190600090a25050565b62000bb7620010e1565b62030d40811015801562000bce57506207a1208111155b62000c505760405162461bcd60e51b815260206004820152604560248201527f4469766964656e64547261636b65723a20676173466f7250726f63657373696e60448201527f67206d757374206265206265747765656e203230306b20616e64203530306b20606482015264756e69747360d81b608482015260a401620003f8565b600c8190556040518181527f1662a2324457a200b9556dfe949641639b99480ee6b448aefcfb97ee61ec24179060200162000465565b62000c90620010e1565b601554601754849162000cab9161ffff9182169116620016c0565b62000cb79190620016e5565b6017805461ffff191661ffff9283161790819055601554849262000ce9926201000092839004821692900416620016c0565b62000cf59190620016e5565b6017805463ffff000019166201000061ffff938416021790819055601554839262000d309264010000000092839004821692900416620016c0565b62000d3c9190620016e5565b6017805461ffff9283166401000000000261ffff60201b19821681179092556109c490831691909216171180159062000d8457506017546109c46201000090910461ffff1611155b801562000da257506017546109c464010000000090910461ffff1611155b62000df45760405162461bcd60e51b815260206004820152603660248201526000805160206200776a83398151915260448201526000805160206200778a8339815191526064820152608401620003f8565b6040805160608101825261ffff8086168252848116602083015283169181019190915262000e279060159060036200132e565b506040805161ffff808616825280851660208301528316918101919091527f4cc46242539a322b08449caf679672d54580fc99e4b7a4b3c6f21e322ad604689060600162000655565b600b546001600160a01b031663d1fbb84e8362000ea2816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b039092166004830152602482015283151560448201526064015b600060405180830381600087803b15801562000ef257600080fd5b505af115801562000f07573d6000803e3d6000fd5b505050505050565b62000f19620010e1565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b62000f83620010e1565b6001600160a01b0382166000818152601c6020908152604091829020805460ff191685151590811790915591519182527f38d2732664f4152f6b6754aa1afeaec7fa6618671b172e5430139b51dba2d1d6910162000f6d565b62000fe882826200113f565b600b546001600160a01b031663e30443bc836200101a816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b039092166004830152602482015260440162000ed7565b600080829050601f815111156200107a578260405163305a27a960e01b8152600401620003f8919062001703565b8051620010878262001753565b179392505050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b031633146200113d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620003f8565b565b6001600160a01b038216620011975760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003f8565b620011a5600083836200121e565b8060026000828254620011b9919062001778565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36200121a6000838362001316565b5050565b6001600160a01b0383166000908152601a602052604090205460ff1680156200126057506001600160a01b0382166000908152601c602052604090205460ff16155b80620012a957506001600160a01b0382166000908152601a602052604090205460ff168015620012a957506001600160a01b0383166000908152601c602052604090205460ff16155b156200131657601b5460ff16620013165760405162461bcd60e51b815260206004820152602a60248201527f456e61626c6554726164696e673a2054726164696e6720776173206e6f7420656044820152691b98589b1959081e595d60b21b6064820152608401620003f8565b620013298383836001600160e01b038416565b505050565b600183019183908215620013b95791602002820160005b838211156200138757835183826101000a81548161ffff021916908361ffff160217905550926020019260020160208160010104928301926001030262001345565b8015620013b75782816101000a81549061ffff021916905560020160208160010104928301926001030262001387565b505b50620013c7929150620013d9565b5090565b611bff8062005b6b83390190565b5b80821115620013c75760008155600101620013da565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200141b57607f821691505b6020821081036200143c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200132957600081815260208120601f850160051c810160208610156200146b5750805b601f850160051c820191505b8181101562000f075782815560010162001477565b81516001600160401b03811115620014a857620014a8620013f0565b620014c081620014b9845462001406565b8462001442565b602080601f831160018114620014f85760008415620014df5750858301515b600019600386901b1c1916600185901b17855562000f07565b600085815260208120601f198616915b82811015620015295788860151825594840194600190910190840162001508565b5085821015620015485787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620015af57816000190482111562001593576200159362001558565b80851615620015a157918102915b93841c939080029062001573565b509250929050565b600082620015c85750600162000342565b81620015d75750600062000342565b8160018114620015f05760028114620015fb576200161b565b600191505062000342565b60ff8411156200160f576200160f62001558565b50506001821b62000342565b5060208310610133831016604e8410600b841016171562001640575081810a62000342565b6200164c83836200156e565b806000190482111562001663576200166362001558565b029392505050565b60006200167c60ff841683620015b7565b9392505050565b808202811582820484141762000342576200034262001558565b600082620016bb57634e487b7160e01b600052601260045260246000fd5b500490565b61ffff828116828216039080821115620016de57620016de62001558565b5092915050565b61ffff818116838216019080821115620016de57620016de62001558565b600060208083528351808285015260005b81811015620017325785810183015185820160400152820162001714565b506000604082860101526040601f19601f8301168501019250505092915050565b805160208083015191908110156200143c5760001960209190910360031b1b16919050565b8082018082111562000342576200034262001558565b60805160a05160c05160e051610100516101205161014051614382620017e9600039600061186d0152600061184201526000612f5301526000612f2b01526000612e8601526000612eb001526000612eda01526143826000f3fe6080604052600436106103dd5760003560e01c8063801b51d9116101fd578063c024666811610118578063e7841ec0116100ab578063f2fde38b1161007a578063f2fde38b14610ba1578063f4070ba314610bc1578063f50906de14610be1578063f7dcdcce14610c01578063ffb2c47914610c2157600080fd5b8063e7841ec014610b27578063e85ceee814610b3c578063f112ba7214610b6c578063f27fd25414610b8157600080fd5b8063d9477526116100e7578063d947752614610ab4578063dd62ed3e14610ac9578063e30c397814610ae9578063e626815814610b0757600080fd5b8063c024666814610a34578063c4d66de814610a54578063c705c56914610a74578063d505accf14610a9457600080fd5b80639c1b8af511610190578063a8b9d2401161015f578063a8b9d24014610969578063a9059cbb14610989578063ad56c13c146109a9578063afcf2fc414610a0e57600080fd5b80639c1b8af5146108fe578063a26579ad14610914578063a457c2d714610929578063a6ddc4251461094957600080fd5b80638da5cb5b116101cc5780638da5cb5b1461088b5780638fffabed146108a957806395d89b41146108c9578063966b53c4146108de57600080fd5b8063801b51d91461080e5780638062651a1461082e57806384b0196e1461084e5780638a8c523c1461087657600080fd5b806342966c68116102f85780636843cd841161028b578063715018a61161025a578063715018a614610774578063768565571461078957806379ba5097146107b957806379cc6790146107ce5780637ecebe00146107ee57600080fd5b80636843cd84146106f45780636c9e28aa146107145780636cc9c8f11461073457806370a082311461075457600080fd5b80634fbee193116102c75780634fbee1931461066a578063502f74461461069a578063637e0f55146106bf57806364b0f653146106df57600080fd5b806342966c68146106005780634ada218b146106205780634e71d92d1461063a5780634f011b831461064f57600080fd5b80632c1f521611610370578063313ce5671161033f578063313ce5671461057c5780633644e5151461059857806339509351146105ad578063408ccbdf146105cd57600080fd5b80632c1f5216146104ef5780632d99d32e146105275780632f267e291461054757806330bb4cff1461056757600080fd5b80631a0e718c116103ac5780631a0e718c146104855780631af3c61d146104a557806323b872dd146104ba578063294aad9c146104da57600080fd5b80630483f7a0146103e957806306fdde031461040b578063095ea7b31461043657806318160ddd1461046657600080fd5b366103e457005b600080fd5b3480156103f557600080fd5b50610409610404366004613d78565b610c56565b005b34801561041757600080fd5b50610420610c6c565b60405161042d9190613df7565b60405180910390f35b34801561044257600080fd5b50610456610451366004613e11565b610cfe565b604051901515815260200161042d565b34801561047257600080fd5b506002545b60405190815260200161042d565b34801561049157600080fd5b506104096104a0366004613e54565b610d18565b3480156104b157600080fd5b50610409610e10565b3480156104c657600080fd5b506104566104d5366004613e6f565b610e7a565b3480156104e657600080fd5b50610477610e9e565b3480156104fb57600080fd5b50600b5461050f906001600160a01b031681565b6040516001600160a01b03909116815260200161042d565b34801561053357600080fd5b50610409610542366004613d78565b610f11565b34801561055357600080fd5b50610409610562366004613eb0565b610f9d565b34801561057357600080fd5b50610477611070565b34801561058857600080fd5b506040516012815260200161042d565b3480156105a457600080fd5b506104776110ba565b3480156105b957600080fd5b506104566105c8366004613e11565b6110c4565b3480156105d957600080fd5b506105ed6105e8366004613eb0565b6110e6565b60405161ffff909116815260200161042d565b34801561060c57600080fd5b5061040961061b366004613eb0565b611114565b34801561062c57600080fd5b50601b546104569060ff1681565b34801561064657600080fd5b50610456611121565b34801561065b57600080fd5b506010546105ed9061ffff1681565b34801561067657600080fd5b50610456610685366004613ec9565b60166020526000908152604090205460ff1681565b3480156106a657600080fd5b5060185461050f9061010090046001600160a01b031681565b3480156106cb57600080fd5b506104096106da366004613ec9565b611190565b3480156106eb57600080fd5b50610477611289565b34801561070057600080fd5b5061047761070f366004613ec9565b6112d3565b34801561072057600080fd5b5061040961072f366004613ee6565b611343565b34801561074057600080fd5b5061040961074f366004613eb0565b6114eb565b34801561076057600080fd5b5061047761076f366004613ec9565b611554565b34801561078057600080fd5b5061040961156f565b34801561079557600080fd5b506104566107a4366004613ec9565b601a6020526000908152604090205460ff1681565b3480156107c557600080fd5b50610409611583565b3480156107da57600080fd5b506104096107e9366004613e11565b6115fa565b3480156107fa57600080fd5b50610477610809366004613ec9565b61160f565b34801561081a57600080fd5b50610409610829366004613d78565b61162d565b34801561083a57600080fd5b50610409610849366004613ee6565b611695565b34801561085a57600080fd5b50610863611834565b60405161042d9796959493929190613f29565b34801561088257600080fd5b506104096118bd565b34801561089757600080fd5b506007546001600160a01b031661050f565b3480156108b557600080fd5b5060195461050f906001600160a01b031681565b3480156108d557600080fd5b50610420611963565b3480156108ea57600080fd5b506105ed6108f9366004613eb0565b611972565b34801561090a57600080fd5b50610477600c5481565b34801561092057600080fd5b50610477611982565b34801561093557600080fd5b50610456610944366004613e11565b6119cc565b34801561095557600080fd5b506105ed610964366004613eb0565b611a47565b34801561097557600080fd5b50610477610984366004613ec9565b611a57565b34801561099557600080fd5b506104566109a4366004613e11565b611a8a565b3480156109b557600080fd5b506109c96109c4366004613ec9565b611a98565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e08201526101000161042d565b348015610a1a57600080fd5b50600d5461050f906201000090046001600160a01b031681565b348015610a4057600080fd5b50610409610a4f366004613d78565b611b33565b348015610a6057600080fd5b50610409610a6f366004613ec9565b611b93565b348015610a8057600080fd5b50610456610a8f366004613ec9565b611c4f565b348015610aa057600080fd5b50610409610aaf366004613fbf565b611cbe565b348015610ac057600080fd5b50610477611e22565b348015610ad557600080fd5b50610477610ae4366004614036565b611e5c565b348015610af557600080fd5b506008546001600160a01b031661050f565b348015610b1357600080fd5b50610409610b22366004613ee6565b611e87565b348015610b3357600080fd5b50610477612026565b348015610b4857600080fd5b50610456610b57366004613ec9565b601c6020526000908152604090205460ff1681565b348015610b7857600080fd5b50610477612070565b348015610b8d57600080fd5b506109c9610b9c366004613eb0565b61208e565b348015610bad57600080fd5b50610409610bbc366004613ec9565b6120d0565b348015610bcd57600080fd5b506105ed610bdc366004613eb0565b612141565b348015610bed57600080fd5b50610409610bfc366004613ee6565b612151565b348015610c0d57600080fd5b506105ed610c1c366004613eb0565b6122f0565b348015610c2d57600080fd5b50610c41610c3c366004613eb0565b612300565b6040805192835260208301919091520161042d565b610c5e61237f565b610c6882826123d9565b5050565b606060038054610c7b90614064565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca790614064565b8015610cf45780601f10610cc957610100808354040283529160200191610cf4565b820191906000526020600020905b815481529060010190602001808311610cd757829003601f168201915b5050505050905090565b600033610d0c81858561245f565b60019150505b92915050565b610d2061237f565b60008161ffff16118015610d3a57506101f48161ffff1611155b610dc55760405162461bcd60e51b815260206004820152604b60248201527f537761705468726573686f6c643a2043616e6e6f7420657863656564206c696d60448201527f6974732066726f6d20302e30312520746f20352520666f72206e65772073776160648201526a1c081d1a1c995cda1bdb1960aa1b608482015260a4015b60405180910390fd5b6010805461ffff191661ffff83169081179091556040519081527fcf1366790fe21e66c9df9dcf67218b1e10acd64d3c99ae8a7429a68de91f1720906020015b60405180910390a150565b6000610e1a612070565b610e2330611554565b610e2d91906140ae565b90506000610e3a82612583565b60408051848152602081018390529192507f5c3340567bf85cd43734028361fe821eac789fbe397b8d1a4f9ebb3ab4c81ef7910160405180910390a15050565b600033610e88858285612627565b610e938585856126a1565b506001949350505050565b600b54604080516318160ddd60e01b815290516000926001600160a01b0316916318160ddd9160048083019260209291908290030181865afa158015610ee8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f0c91906140c1565b905090565b610f1961237f565b6019546001600160a01b0390811690831603610f935760405162461bcd60e51b815260206004820152603360248201527f44656661756c74526f757465723a2043616e6e6f742072656d6f766520696e696044820152721d1a585b081c185a5c88199c9bdb481b1a5cdd606a1b6064820152608401610dbc565b610c688282612e04565b610fa561237f565b62030d408110158015610fbb57506207a1208111155b61103b5760405162461bcd60e51b815260206004820152604560248201527f4469766964656e64547261636b65723a20676173466f7250726f63657373696e60448201527f67206d757374206265206265747765656e203230306b20616e64203530306b20606482015264756e69747360d81b608482015260a401610dbc565b600c8190556040518181527f1662a2324457a200b9556dfe949641639b99480ee6b448aefcfb97ee61ec241790602001610e05565b600b54604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae9160048083019260209291908290030181865afa158015610ee8573d6000803e3d6000fd5b6000610f0c612e79565b600033610d0c8185856110d78383611e5c565b6110e191906140da565b61245f565b601781600381106110f657600080fd5b60109182820401919006600202915054906101000a900461ffff1681565b61111e3382612fa4565b50565b600b54604051630f41a04d60e11b81523360048201526000916001600160a01b031690631e83409a906024016020604051808303816000875af115801561116c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f0c91906140ed565b61119861237f565b6001600160a01b0381166112235760405162461bcd60e51b815260206004820152604660248201527f546178657344656661756c74526f7574657257616c6c65743a2057616c6c657460448201527f2074617820726563697069656e742063616e6e6f74206265206120307830206160648201526564647265737360d01b608482015260a401610dbc565b600d805462010000600160b01b031916620100006001600160a01b03841602179055611250816001611b33565b6040516001600160a01b03821681527f36103056ceaf264dc41397abacce03d7648cbc2f0b2077e3567062533e8b20ed90602001610e05565b600b54604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde9160048083019260209291908290030181865afa158015610ee8573d6000803e3d6000fd5b600b546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b602060405180830381865afa15801561131f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d1291906140c1565b61134b61237f565b600f5460175484916113649161ffff9182169116614120565b61136e9190614142565b6017805461ffff191661ffff9283161790819055600f54849261139e926201000092839004821692900416614120565b6113a89190614142565b6017805463ffff000019166201000061ffff938416021790819055600f5483926113e092600160201b92839004821692900416614120565b6113ea9190614142565b6017805461ffff928316600160201b0265ffff0000000019821681179092556109c490831691909216171180159061143157506017546109c46201000090910461ffff1611155b801561144d57506017546109c4600160201b90910461ffff1611155b6114695760405162461bcd60e51b8152600401610dbc9061415d565b6040805160608101825261ffff8086168252848116602083015283169181019190915261149a90600f906003613caa565b506040805161ffff808616825280851660208301528316918101919091527f5c6dd066977d1639216aedea00d1204fef7166f3c39e50c26ea04bfd41e561c8906060015b60405180910390a1505050565b6114f361237f565b600b54604051636cc9c8f160e01b8152600481018390526001600160a01b0390911690636cc9c8f190602401600060405180830381600087803b15801561153957600080fd5b505af115801561154d573d6000803e3d6000fd5b5050505050565b6001600160a01b031660009081526020819052604090205490565b61157761237f565b6115816000612ffa565b565b60085433906001600160a01b031681146115f15760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b6064820152608401610dbc565b61111e81612ffa565b611605823383612627565b610c688282612fa4565b6001600160a01b038116600090815260096020526040812054610d12565b61163561237f565b6001600160a01b0382166000818152601c6020908152604091829020805460ff191685151590811790915591519182527f38d2732664f4152f6b6754aa1afeaec7fa6618671b172e5430139b51dba2d1d691015b60405180910390a25050565b61169d61237f565b60155460175484916116b69161ffff9182169116614120565b6116c09190614142565b6017805461ffff191661ffff928316179081905560155484926116f0926201000092839004821692900416614120565b6116fa9190614142565b6017805463ffff000019166201000061ffff938416021790819055601554839261173292600160201b92839004821692900416614120565b61173c9190614142565b6017805461ffff928316600160201b0265ffff0000000019821681179092556109c490831691909216171180159061178357506017546109c46201000090910461ffff1611155b801561179f57506017546109c4600160201b90910461ffff1611155b6117bb5760405162461bcd60e51b8152600401610dbc9061415d565b6040805160608101825261ffff808616825284811660208301528316918101919091526117ec906015906003613caa565b506040805161ffff808616825280851660208301528316918101919091527f4cc46242539a322b08449caf679672d54580fc99e4b7a4b3c6f21e322ad60468906060016114de565b6000606080828080836118687f00000000000000000000000000000000000000000000000000000000000000006005613013565b6118937f00000000000000000000000000000000000000000000000000000000000000006006613013565b60408051600080825260208201909252600f60f81b9b939a50919850469750309650945092509050565b6118c561237f565b601b5460ff161561192b5760405162461bcd60e51b815260206004820152602a60248201527f456e61626c6554726164696e673a2054726164696e672077617320656e61626c604482015269656420616c726561647960b01b6064820152608401610dbc565b601b805460ff191660011790556040517f799663458a5ef2936f7fa0c99b3336c69c25890f82974f04e811e5bb359186c790600090a1565b606060048054610c7b90614064565b601481600381106110f657600080fd5b600b5460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec9160048083019260209291908290030181865afa158015610ee8573d6000803e3d6000fd5b600033816119da8286611e5c565b905083811015611a3a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610dbc565b610e93828686840361245f565b601581600381106110f657600080fd5b600b546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d24090602401611302565b600033610d0c8185856126a1565b600b54604051632ebc328760e11b81526001600160a01b0383811660048301526000928392839283928392839283928392911690635d78650e906024015b61010060405180830381865afa158015611af4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b1891906141b3565b97509750975097509750975097509750919395975091939597565b611b3b61237f565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101611689565b600d54610100900460ff1680611bac5750600d5460ff16155b611c0f5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610dbc565b600d54610100900460ff16158015611c3157600d805461ffff19166101011790555b611c3a826130be565b8015610c6857600d805461ff00191690555050565b600b5460405163c705c56960e01b81526001600160a01b038381166004830152600092169063c705c56990602401602060405180830381865afa158015611c9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d1291906140ed565b83421115611d0e5760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152606401610dbc565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9888888611d3d8c6132cc565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090506000611d98826132f4565b90506000611da882878787613321565b9050896001600160a01b0316816001600160a01b031614611e0b5760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610dbc565b611e168a8a8a61245f565b50505050505050505050565b6010546019546000916127109161ffff90911690611e48906001600160a01b0316611554565b611e52919061421d565b610f0c9190614234565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611e8f61237f565b6014546017548491611ea89161ffff9182169116614120565b611eb29190614142565b6017805461ffff191661ffff92831617908190556014548492611ee2926201000092839004821692900416614120565b611eec9190614142565b6017805463ffff000019166201000061ffff9384160217908190556014548392611f2492600160201b92839004821692900416614120565b611f2e9190614142565b6017805461ffff928316600160201b0265ffff0000000019821681179092556109c4908316919092161711801590611f7557506017546109c46201000090910461ffff1611155b8015611f9157506017546109c4600160201b90910461ffff1611155b611fad5760405162461bcd60e51b8152600401610dbc9061415d565b6040805160608101825261ffff80861682528481166020830152831691810191909152611fde906014906003613caa565b506040805161ffff808616825280851660208301528316918101919091527f2524ccb75260c9a50c71af1740c212c049a01232ef122061416b51815ec57a18906060016114de565b600b5460408051633009a60960e01b815290516000926001600160a01b031691633009a6099160048083019260209291908290030181865afa158015610ee8573d6000803e3d6000fd5b6000601354601254600061208491906140da565b610f0c91906140da565b600b54604051632f7541e960e01b81526004810183905260009182918291829182918291829182916001600160a01b0390911690632f7541e990602401611ad6565b6120d861237f565b600880546001600160a01b0383166001600160a01b031990911681179091556121096007546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b600e81600381106110f657600080fd5b61215961237f565b600e5460175484916121729161ffff9182169116614120565b61217c9190614142565b6017805461ffff191661ffff9283161790819055600e5484926121ac926201000092839004821692900416614120565b6121b69190614142565b6017805463ffff000019166201000061ffff938416021790819055600e5483926121ee92600160201b92839004821692900416614120565b6121f89190614142565b6017805461ffff928316600160201b0265ffff0000000019821681179092556109c490831691909216171180159061223f57506017546109c46201000090910461ffff1611155b801561225b57506017546109c4600160201b90910461ffff1611155b6122775760405162461bcd60e51b8152600401610dbc9061415d565b6040805160608101825261ffff808616825284811660208301528316918101919091526122a890600e906003613caa565b506040805161ffff808616825280851660208301528316918101919091527f353fa11d3ea4e1bac31044fdcd36caa4e380f5732dfe9409ba78be0a4216e989906060016114de565b600f81600381106110f657600080fd5b600b546040516001624d3b8760e01b031981526004810183905260009182916001600160a01b039091169063ffb2c4799060240160408051808303816000875af1158015612352573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123769190614256565b91509150915091565b6007546001600160a01b031633146115815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dbc565b600b546001600160a01b031663d1fbb84e836123f481611554565b6040516001600160e01b031960e085901b1681526001600160a01b039092166004830152602482015283151560448201526064015b600060405180830381600087803b15801561244357600080fd5b505af1158015612457573d6000803e3d6000fd5b505050505050565b6001600160a01b0383166124c15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610dbc565b6001600160a01b0382166125225760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610dbc565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600080612591600284614234565b9050600061259f82856140ae565b90506125aa82613349565b47801561261f5760008060006125c08585613490565b604080518481526020810184905290810182905292955090935091507f3db50c324c27fb39c451e35d4d23abba3e20d96d036e7a40f4adc681c1ce30139060600160405180910390a161261383866140ae565b98975050505050505050565b509392505050565b60006126338484611e5c565b9050600019811461269b578181101561268e5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610dbc565b61269b848484840361245f565b50505050565b60185460ff161580156126b45750600081115b80156126d357506018546001600160a01b038381166101009092041614155b80156126f857506001600160a01b03831660009081526016602052604090205460ff16155b801561271d57506001600160a01b03821660009081526016602052604090205460ff16155b15612b88576001600160a01b0383166000908152601a602052604081205460039060ff161561275b5760175461ffff1615612756575060005b6127ad565b6001600160a01b0384166000908152601a602052604090205460ff16156127965760175462010000900461ffff1615612756575060016127ad565b601754600160201b900461ffff16156127ad575060025b60038160ff161015612b745760008061271060178460ff16600381106127d5576127d561410a565b601091828204019190066002029054906101000a900461ffff1661ffff16866127fe919061421d565b6128089190614234565b935061281484866140ae565b94506000600e8460ff166003811061282e5761282e61410a565b601091828204019190066002029054906101000a900461ffff1661ffff16111561293d5760178360ff16600381106128685761286861410a565b601091828204019190066002029054906101000a900461ffff1661ffff16600e8460ff166003811061289c5761289c61410a565b601091828204019190066002029054906101000a900461ffff1661ffff16856128c5919061421d565b6128cf9190614234565b91506128f187600d60029054906101000a90046001600160a01b031684613558565b600d5460408051620100009092046001600160a01b03168252602082018490527f11eb6f0af6446ac7857ea735bc3fd61a33db1a5ba8c5187136e82d34a23ace75910160405180910390a15b6000600f8460ff16600381106129555761295561410a565b601091828204019190066002029054906101000a900461ffff1661ffff161115612a325760178360ff166003811061298f5761298f61410a565b601081049091015461ffff6002600f938416026101000a909104169060ff8516600381106129bf576129bf61410a565b601091828204019190066002029054906101000a900461ffff1661ffff16856129e8919061421d565b6129f29190614234565b90506129fe8782612fa4565b6040518181527f7c76b725c3bdd88cc239c1cbdc4c37e260fc0650dd4784ce22d4fbd64d98c4d99060200160405180910390a15b60178360ff1660038110612a4857612a4861410a565b601091828204019190066002029054906101000a900461ffff1661ffff1660148460ff1660038110612a7c57612a7c61410a565b601091828204019190066002029054906101000a900461ffff1661ffff1685612aa5919061421d565b612aaf9190614234565b60126000828254612ac091906140da565b909155506017905060ff841660038110612adc57612adc61410a565b601091828204019190066002029054906101000a900461ffff1661ffff1660158460ff1660038110612b1057612b1061410a565b601091828204019190066002029054906101000a900461ffff1661ffff1685612b39919061421d565b612b439190614234565b60136000828254612b5491906140da565b90915550819050612b6583866140ae565b612b6f91906140ae565b935050505b8115612b8557612b85853084613568565b50505b6000612b92611e22565b612b9a612070565b10158015612bbd5750601954600090612bbb906001600160a01b0316611554565b115b60185490915060ff16158015612bec57506001600160a01b0384166000908152601a602052604090205460ff16155b8015612c0b57506018546001600160a01b038581166101009092041614155b8015612c145750805b15612c7a576018805460ff1916600117905560125415612c4057612c39601254612583565b5060006012555b6000601354118015612c5957506000612c57611289565b115b15612c6f57612c69601354613717565b60006013555b6018805460ff191690555b612c85848484613568565b600b546001600160a01b031663e30443bc85612ca081611554565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015612ce657600080fd5b505af1158015612cfa573d6000803e3d6000fd5b5050600b546001600160a01b0316915063e30443bc905084612d1b81611554565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015612d6157600080fd5b505af1158015612d75573d6000803e3d6000fd5b505060185460ff16915061269b905057600b54600c546040516001624d3b8760e01b031981526001600160a01b039092169163ffb2c47991612dbd9160040190815260200190565b60408051808303816000875af1925050508015612df7575060408051601f3d908101601f19168201909252612df491810190614256565b60015b1561269b57505050505050565b6001600160a01b0382166000908152601a60205260409020805460ff19168215801591909117909155612e3c57612e3c8260016123d9565b816001600160a01b03167f911aa18ddbbbc33c9b4c704a71bdaa0984b0aa2e82726a7f51e64bad0b0a845582604051611689911515815260200190565b6000306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148015612ed257507f000000000000000000000000000000000000000000000000000000000000000046145b15612efc57507f000000000000000000000000000000000000000000000000000000000000000090565b610f0c604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f0000000000000000000000000000000000000000000000000000000000000000918101919091527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b612fae82826137b3565b600b546001600160a01b031663e30443bc83612fc981611554565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401612429565b600880546001600160a01b031916905561111e816138f1565b606060ff831461302d5761302683613943565b9050610d12565b81805461303990614064565b80601f016020809104026020016040519081016040528092919081815260200182805461306590614064565b80156130b25780601f10613087576101008083540402835291602001916130b2565b820191906000526020600020905b81548152906001019060200180831161309557829003601f168201915b50505050509050610d12565b80601860016101000a8154816001600160a01b0302191690836001600160a01b03160217905550601860019054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015613138573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061315c919061427a565b6001600160a01b031663c9c6539630601860019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156131be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131e2919061427a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801561322f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613253919061427a565b601980546001600160a01b0319166001600160a01b039290921691909117905561327e8160016123d9565b601954613295906001600160a01b03166001612e04565b6040516001600160a01b038216907fbc052db65df144ad4f71f02da93cae3d4401104c30ac374d7cc10d87ee07b60290600090a250565b6001600160a01b03811660009081526009602052604090208054600181018255905b50919050565b6000610d12613301612e79565b8360405161190160f01b8152600281019290925260228201526042902090565b600080600061333287878787613982565b9150915061333f81613a46565b5095945050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061337e5761337e61410a565b60200260200101906001600160a01b031690816001600160a01b031681525050601860019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156133f1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613415919061427a565b816001815181106134285761342861410a565b6001600160a01b0392831660209182029290920101526018546134539130916101009004168461245f565b60185460405163791ac94760e01b81526101009091046001600160a01b03169063791ac94790612429908590600090869030904290600401614297565b60008060006134b530601860019054906101000a90046001600160a01b03168761245f565b60185460405163f305d71960e01b8152306004820152602481018790526000604482018190526064820181905260848201524260a48201526101009091046001600160a01b03169063f305d71990869060c40160606040518083038185885af1158015613526573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061354b9190614308565b9250925092509250925092565b613563838383613568565b505050565b6001600160a01b0383166135cc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610dbc565b6001600160a01b03821661362e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610dbc565b613639838383613b90565b6001600160a01b038316600090815260208190526040902054818110156136b15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610dbc565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361269b565b61372081613349565b478015610c6857600b546040516000916001600160a01b03169083908381818185875af1925050503d8060008114613774576040519150601f19603f3d011682016040523d82523d6000602084013e613779565b606091505b505090508015613563576040518281527f193576e9dd325a2a57e4e6e7f6afa82c4fd152eaa8d5f874b0b0f40d924b18a6906020016114de565b6001600160a01b0382166138135760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610dbc565b61381f82600083613b90565b6001600160a01b038216600090815260208190526040902054818110156138935760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610dbc565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6060600061395083613c82565b604080516020808252818301909252919250600091906020820181803683375050509182525060208101929092525090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156139b95750600090506003613a3d565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015613a0d573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116613a3657600060019250925050613a3d565b9150600090505b94509492505050565b6000816004811115613a5a57613a5a614336565b03613a625750565b6001816004811115613a7657613a76614336565b03613ac35760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610dbc565b6002816004811115613ad757613ad7614336565b03613b245760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610dbc565b6003816004811115613b3857613b38614336565b0361111e5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610dbc565b6001600160a01b0383166000908152601a602052604090205460ff168015613bd157506001600160a01b0382166000908152601c602052604090205460ff16155b80613c1857506001600160a01b0382166000908152601a602052604090205460ff168015613c1857506001600160a01b0383166000908152601c602052604090205460ff16155b1561356357601b5460ff166135635760405162461bcd60e51b815260206004820152602a60248201527f456e61626c6554726164696e673a2054726164696e6720776173206e6f7420656044820152691b98589b1959081e595d60b21b6064820152608401610dbc565b600060ff8216601f811115610d1257604051632cd44ac360e21b815260040160405180910390fd5b600183019183908215613d305791602002820160005b83821115613d0057835183826101000a81548161ffff021916908361ffff1602179055509260200192600201602081600101049283019260010302613cc0565b8015613d2e5782816101000a81549061ffff0219169055600201602081600101049283019260010302613d00565b505b50613d3c929150613d40565b5090565b5b80821115613d3c5760008155600101613d41565b6001600160a01b038116811461111e57600080fd5b801515811461111e57600080fd5b60008060408385031215613d8b57600080fd5b8235613d9681613d55565b91506020830135613da681613d6a565b809150509250929050565b6000815180845260005b81811015613dd757602081850181015186830182015201613dbb565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000613e0a6020830184613db1565b9392505050565b60008060408385031215613e2457600080fd5b8235613e2f81613d55565b946020939093013593505050565b803561ffff81168114613e4f57600080fd5b919050565b600060208284031215613e6657600080fd5b613e0a82613e3d565b600080600060608486031215613e8457600080fd5b8335613e8f81613d55565b92506020840135613e9f81613d55565b929592945050506040919091013590565b600060208284031215613ec257600080fd5b5035919050565b600060208284031215613edb57600080fd5b8135613e0a81613d55565b600080600060608486031215613efb57600080fd5b613f0484613e3d565b9250613f1260208501613e3d565b9150613f2060408501613e3d565b90509250925092565b60ff60f81b881681526000602060e081840152613f4960e084018a613db1565b8381036040850152613f5b818a613db1565b606085018990526001600160a01b038816608086015260a0850187905284810360c0860152855180825283870192509083019060005b81811015613fad57835183529284019291840191600101613f91565b50909c9b505050505050505050505050565b600080600080600080600060e0888a031215613fda57600080fd5b8735613fe581613d55565b96506020880135613ff581613d55565b95506040880135945060608801359350608088013560ff8116811461401957600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561404957600080fd5b823561405481613d55565b91506020830135613da681613d55565b600181811c9082168061407857607f821691505b6020821081036132ee57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b81810381811115610d1257610d12614098565b6000602082840312156140d357600080fd5b5051919050565b80820180821115610d1257610d12614098565b6000602082840312156140ff57600080fd5b8151613e0a81613d6a565b634e487b7160e01b600052603260045260246000fd5b61ffff82811682821603908082111561413b5761413b614098565b5092915050565b61ffff81811683821601908082111561413b5761413b614098565b60208082526036908201527f546178657344656661756c74526f757465723a2043616e6e6f7420657863656560408201527564206d617820746f74616c20666565206f662032352560501b606082015260800190565b600080600080600080600080610100898b0312156141d057600080fd5b88516141db81613d55565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b8082028115828204841417610d1257610d12614098565b60008261425157634e487b7160e01b600052601260045260246000fd5b500490565b6000806040838503121561426957600080fd5b505080516020909101519092909150565b60006020828403121561428c57600080fd5b8151613e0a81613d55565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156142e75784516001600160a01b0316835293830193918301916001016142c2565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561431d57600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052602160045260246000fdfea2646970667358221220df454bfd980d4e407f76ae94dffb21a327c4e93eac88a2b0ac69efe362f8d46a64736f6c6343000813003360806040523480156200001157600080fd5b5060405162001bff38038062001bff83398101604081905262000034916200026f565b6040518060400160405280600f81526020016e2234bb34b232b7322a3930b1b5b2b960891b8152506040518060400160405280600f81526020016e2234bb34b232b7322a3930b1b5b2b960891b8152508181620000a06200009a620000dd60201b60201c565b620000e1565b6003620000ae838262000339565b506004620000bd828262000339565b5050505050620000d3826200013160201b60201c565b6011555062000405565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6200013b62000211565b603c811015801562000150575062093a808111155b620001d65760405162461bcd60e51b8152602060048201526044602482018190527f4469766964656e64547261636b65723a20436c61696d20776169742074696d65908201527f206d757374206265206265747765656e2031206d696e75746520616e642037206064820152636461797360e01b608482015260a4015b60405180910390fd5b60108190556040518181527f4b0a6b82d0dc4407b3359033a4f27efd1e2105e4571b72d6a3b8f1da3e6079dd9060200160405180910390a150565b6000546001600160a01b031633146200026d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620001cd565b565b600080604083850312156200028357600080fd5b505080516020909101519092909150565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620002bf57607f821691505b602082108103620002e057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200033457600081815260208120601f850160051c810160208610156200030f5750805b601f850160051c820191505b8181101562000330578281556001016200031b565b5050505b505050565b81516001600160401b0381111562000355576200035562000294565b6200036d81620003668454620002aa565b84620002e6565b602080601f831160018114620003a557600084156200038c5750858301515b600019600386901b1c1916600185901b17855562000330565b600085815260208120601f198616915b82811015620003d657888601518255948401946001909101908401620003b5565b5085821015620003f55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6117ea80620004156000396000f3fe6080604052600436106101a05760003560e01c806370a08231116100ec578063aafd847a1161008a578063d1fbb84e11610064578063d1fbb84e146104df578063e30443bc146104ff578063f2fde38b1461051f578063ffb2c4791461053f57600080fd5b8063aafd847a14610463578063be10b61414610499578063c705c569146104af57600080fd5b80638da5cb5b116100c65780638da5cb5b146103e657806391b89fba1461040e57806395d89b411461042e578063a8b9d2401461044357600080fd5b806370a0823114610385578063715018a6146103bb57806385a6b3ae146103d057600080fd5b806327ce014711610159578063313ce56711610133578063313ce567146103135780635d78650e1461032f5780636cc9c8f11461034f5780636f2789ec1461036f57600080fd5b806327ce0147146102785780632f7541e9146102985780633009a609146102fd57600080fd5b806303c83302146101b457806306fdde03146101bc57806309bbedde146101e757806318160ddd146102065780631e83409a1461021b578063226cfa3d1461024b57600080fd5b366101af576101ad610574565b005b600080fd5b6101ad610574565b3480156101c857600080fd5b506101d1610603565b6040516101de919061153e565b60405180910390f35b3480156101f357600080fd5b506009545b6040519081526020016101de565b34801561021257600080fd5b506002546101f8565b34801561022757600080fd5b5061023b6102363660046115a1565b610695565b60405190151581526020016101de565b34801561025757600080fd5b506101f86102663660046115a1565b600f6020526000908152604090205481565b34801561028457600080fd5b506101f86102933660046115a1565b6106dc565b3480156102a457600080fd5b506102b86102b33660046115c5565b61073f565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e0820152610100016101de565b34801561030957600080fd5b506101f8600d5481565b34801561031f57600080fd5b50604051601281526020016101de565b34801561033b57600080fd5b506102b861034a3660046115a1565b610893565b34801561035b57600080fd5b506101ad61036a3660046115c5565b6109fb565b34801561037b57600080fd5b506101f860105481565b34801561039157600080fd5b506101f86103a03660046115a1565b6001600160a01b031660009081526001602052604090205490565b3480156103c757600080fd5b506101ad610ad7565b3480156103dc57600080fd5b506101f860085481565b3480156103f257600080fd5b506000546040516001600160a01b0390911681526020016101de565b34801561041a57600080fd5b506101f86104293660046115a1565b610ae9565b34801561043a57600080fd5b506101d1610af4565b34801561044f57600080fd5b506101f861045e3660046115a1565b610b03565b34801561046f57600080fd5b506101f861047e3660046115a1565b6001600160a01b031660009081526007602052604090205490565b3480156104a557600080fd5b506101f860115481565b3480156104bb57600080fd5b5061023b6104ca3660046115a1565b600e6020526000908152604090205460ff1681565b3480156104eb57600080fd5b506101ad6104fa3660046115de565b610b2f565b34801561050b57600080fd5b506101ad61051a366004611625565b610d75565b34801561052b57600080fd5b506101ad61053a3660046115a1565b610e96565b34801561054b57600080fd5b5061055f61055a3660046115c5565b610f0f565b604080519283526020830191909152016101de565b600061057f60025490565b1161058957600080fd5b3415610601576002546105a0600160801b34611667565b6105aa919061167e565b6005546105b791906116a0565b60055560405134815233907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165119060200160405180910390a2346008546105fd91906116a0565b6008555b565b606060038054610612906116b3565b80601f016020809104026020016040519081016040528092919081815260200182805461063e906116b3565b801561068b5780601f106106605761010080835404028352916020019161068b565b820191906000526020600020905b81548152906001019060200180831161066e57829003601f168201915b5050505050905090565b600061069f61105f565b60006106aa836110b9565b905080156106d35750506001600160a01b03166000908152600f60205260409020429055600190565b50600092915050565b6001600160a01b0381166000908152600660209081526040808320546001909252822054600160801b9161072f916107209060055461071b9190611667565b6111bf565b61072a91906116ed565b6111cf565b610739919061167e565b92915050565b60008060008060008060008060097331ee4a53bd2c1c339662dffb973017ef81a6bad563deb3d89690916040518263ffffffff1660e01b815260040161078791815260200190565b602060405180830381865af41580156107a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c89190611715565b89106107ed575060009650600019955085945086935083925082915081905080610888565b6040516368d54f3f60e11b815260096004820152602481018a90526000907331ee4a53bd2c1c339662dffb973017ef81a6bad59063d1aa9e7e90604401602060405180830381865af4158015610847573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061086b919061172e565b905061087681610893565b98509850985098509850985098509850505b919395975091939597565b6040516317e142d160e01b8152600960048201526001600160a01b038216602482015281906000908190819081908190819081907331ee4a53bd2c1c339662dffb973017ef81a6bad5906317e142d190604401602060405180830381865af4158015610903573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109279190611715565b965060001995506000871261098957600d5487111561095457600d5461094d908861174b565b9550610989565b600d5460095460009110610969576000610979565b600d546009546109799190611772565b905061098581896116ed565b9650505b61099288610b03565b945061099d886106dc565b6001600160a01b0389166000908152600f60205260409020549094509250826109c75760006109d4565b6010546109d490846116a0565b91504282116109e45760006109ee565b6109ee4283611772565b9050919395975091939597565b610a0361105f565b603c8110158015610a17575062093a808111155b610a9c5760405162461bcd60e51b8152602060048201526044602482018190527f4469766964656e64547261636b65723a20436c61696d20776169742074696d65908201527f206d757374206265206265747765656e2031206d696e75746520616e642037206064820152636461797360e01b608482015260a4015b60405180910390fd5b60108190556040518181527f4b0a6b82d0dc4407b3359033a4f27efd1e2105e4571b72d6a3b8f1da3e6079dd9060200160405180910390a150565b610adf61105f565b61060160006111e2565b600061073982610b03565b606060048054610612906116b3565b6001600160a01b038116600090815260076020526040812054610b25836106dc565b6107399190611772565b610b3761105f565b8015610c73576001600160a01b0383166000908152600e602052604090205460ff1615610bce576040805162461bcd60e51b81526020600482015260248101919091527f4469766964656e64547261636b65723a2054686973206164647265737320697360448201527f20616c7265616479206578636c756465642066726f6d206469766964656e64736064820152608401610a93565b6001600160a01b0383166000908152600e60205260408120805460ff19166001179055610bfc908490611232565b60405163131836e760e21b8152600960048201526001600160a01b03841660248201527331ee4a53bd2c1c339662dffb973017ef81a6bad590634c60db9c9060440160006040518083038186803b158015610c5657600080fd5b505af4158015610c6a573d6000803e3d6000fd5b50505050610d2b565b6001600160a01b0383166000908152600e602052604090205460ff16610d015760405162461bcd60e51b815260206004820152603e60248201527f4469766964656e64547261636b65723a2054686973206164647265737320697360448201527f20616c726561647920696e636c7564656420696e206469766964656e647300006064820152608401610a93565b6001600160a01b0383166000908152600e60205260409020805460ff19169055610d2b8383610d75565b826001600160a01b03167fa3c7c11b2e12c4144b09a7813f3393ba646392788638998c97be8da908cf04be82604051610d68911515815260200190565b60405180910390a2505050565b610d7d61105f565b6001600160a01b0382166000908152600e602052604090205460ff16610e92576011548110610e2d57610db08282611232565b604051632f0ad01760e21b8152600960048201526001600160a01b0383166024820152604481018290527331ee4a53bd2c1c339662dffb973017ef81a6bad59063bc2b405c9060640160006040518083038186803b158015610e1157600080fd5b505af4158015610e25573d6000803e3d6000fd5b505050505050565b610e38826000611232565b60405163131836e760e21b8152600960048201526001600160a01b03831660248201527331ee4a53bd2c1c339662dffb973017ef81a6bad590634c60db9c9060440160006040518083038186803b158015610e1157600080fd5b5050565b610e9e61105f565b6001600160a01b038116610f035760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a93565b610f0c816111e2565b50565b600080610f1a61105f565b6009546000819003610f325750600093849350915050565b600d546000805a905060009550600094505b8682108015610f5257508386105b156110185782610f6181611785565b60095490945084109050610f7457600092505b600060096000018481548110610f8c57610f8c61179e565b60009182526020808320909101546001600160a01b0316808352600f909152604090912054909150610fbd90611286565b15610fde57610fcb81610695565b15610fde5785610fda81611785565b9650505b86610fe881611785565b97505060005a90508083111561100f576110028184611772565b61100c90856116a0565b93505b9150610f449050565b600d83905560408051878152602081018790527ff78a0aac70b15fc744c16ea2c52bba9a167f030b8961e62a1d2c92588f77facf910160405180910390a150505050915091565b6000546001600160a01b031633146106015760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a93565b6000806110c583610b03565b905080156106d3576001600160a01b0383166000908152600760205260409020546110f19082906116a0565b6001600160a01b03841660008181526007602052604080822093909355915183156108fc0290849084818181858888f193505050509050801561117857836001600160a01b03167fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d8360405161116991815260200190565b60405180910390a25092915050565b6001600160a01b03841660009081526007602052604090205461119c908390611772565b6001600160a01b0385166000908152600760205260409020555050600092915050565b6000818181121561073957600080fd5b6000808212156111de57600080fd5b5090565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166000908152600160205260409020548082111561126b57611266836112618385611772565b6112ad565b505050565b8082101561126657611266836112818484611772565b61130b565b60008142101561129857506000919050565b6010546112a58342611772565b101592915050565b6112b78282611349565b6112c88160055461071b9190611667565b6001600160a01b0383166000908152600660205260409020546112eb919061174b565b6001600160a01b0390921660009081526006602052604090209190915550565b611315828261140a565b6113268160055461071b9190611667565b6001600160a01b0383166000908152600660205260409020546112eb91906116ed565b6001600160a01b03821661139f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610a93565b80600260008282546113b191906116a0565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b03821661146a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610a93565b6001600160a01b038216600090815260016020526040902054818110156114de5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610a93565b6001600160a01b03831660008181526001602090815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600060208083528351808285015260005b8181101561156b5785810183015185820160400152820161154f565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610f0c57600080fd5b6000602082840312156115b357600080fd5b81356115be8161158c565b9392505050565b6000602082840312156115d757600080fd5b5035919050565b6000806000606084860312156115f357600080fd5b83356115fe8161158c565b9250602084013591506040840135801515811461161a57600080fd5b809150509250925092565b6000806040838503121561163857600080fd5b82356116438161158c565b946020939093013593505050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761073957610739611651565b60008261169b57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561073957610739611651565b600181811c908216806116c757607f821691505b6020821081036116e757634e487b7160e01b600052602260045260246000fd5b50919050565b808201828112600083128015821682158216171561170d5761170d611651565b505092915050565b60006020828403121561172757600080fd5b5051919050565b60006020828403121561174057600080fd5b81516115be8161158c565b818103600083128015838313168383128216171561176b5761176b611651565b5092915050565b8181038181111561073957610739611651565b60006001820161179757611797611651565b5060010190565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220aa488c638610977d2c4da21ae5b80ec1a84fc7e909589f3b0d0f003dfffc42df64736f6c63430008130033546178657344656661756c74526f757465723a2043616e6e6f7420657863656564206d617820746f74616c20666565206f662032352500000000000000000000

Deployed Bytecode

0x6080604052600436106103dd5760003560e01c8063801b51d9116101fd578063c024666811610118578063e7841ec0116100ab578063f2fde38b1161007a578063f2fde38b14610ba1578063f4070ba314610bc1578063f50906de14610be1578063f7dcdcce14610c01578063ffb2c47914610c2157600080fd5b8063e7841ec014610b27578063e85ceee814610b3c578063f112ba7214610b6c578063f27fd25414610b8157600080fd5b8063d9477526116100e7578063d947752614610ab4578063dd62ed3e14610ac9578063e30c397814610ae9578063e626815814610b0757600080fd5b8063c024666814610a34578063c4d66de814610a54578063c705c56914610a74578063d505accf14610a9457600080fd5b80639c1b8af511610190578063a8b9d2401161015f578063a8b9d24014610969578063a9059cbb14610989578063ad56c13c146109a9578063afcf2fc414610a0e57600080fd5b80639c1b8af5146108fe578063a26579ad14610914578063a457c2d714610929578063a6ddc4251461094957600080fd5b80638da5cb5b116101cc5780638da5cb5b1461088b5780638fffabed146108a957806395d89b41146108c9578063966b53c4146108de57600080fd5b8063801b51d91461080e5780638062651a1461082e57806384b0196e1461084e5780638a8c523c1461087657600080fd5b806342966c68116102f85780636843cd841161028b578063715018a61161025a578063715018a614610774578063768565571461078957806379ba5097146107b957806379cc6790146107ce5780637ecebe00146107ee57600080fd5b80636843cd84146106f45780636c9e28aa146107145780636cc9c8f11461073457806370a082311461075457600080fd5b80634fbee193116102c75780634fbee1931461066a578063502f74461461069a578063637e0f55146106bf57806364b0f653146106df57600080fd5b806342966c68146106005780634ada218b146106205780634e71d92d1461063a5780634f011b831461064f57600080fd5b80632c1f521611610370578063313ce5671161033f578063313ce5671461057c5780633644e5151461059857806339509351146105ad578063408ccbdf146105cd57600080fd5b80632c1f5216146104ef5780632d99d32e146105275780632f267e291461054757806330bb4cff1461056757600080fd5b80631a0e718c116103ac5780631a0e718c146104855780631af3c61d146104a557806323b872dd146104ba578063294aad9c146104da57600080fd5b80630483f7a0146103e957806306fdde031461040b578063095ea7b31461043657806318160ddd1461046657600080fd5b366103e457005b600080fd5b3480156103f557600080fd5b50610409610404366004613d78565b610c56565b005b34801561041757600080fd5b50610420610c6c565b60405161042d9190613df7565b60405180910390f35b34801561044257600080fd5b50610456610451366004613e11565b610cfe565b604051901515815260200161042d565b34801561047257600080fd5b506002545b60405190815260200161042d565b34801561049157600080fd5b506104096104a0366004613e54565b610d18565b3480156104b157600080fd5b50610409610e10565b3480156104c657600080fd5b506104566104d5366004613e6f565b610e7a565b3480156104e657600080fd5b50610477610e9e565b3480156104fb57600080fd5b50600b5461050f906001600160a01b031681565b6040516001600160a01b03909116815260200161042d565b34801561053357600080fd5b50610409610542366004613d78565b610f11565b34801561055357600080fd5b50610409610562366004613eb0565b610f9d565b34801561057357600080fd5b50610477611070565b34801561058857600080fd5b506040516012815260200161042d565b3480156105a457600080fd5b506104776110ba565b3480156105b957600080fd5b506104566105c8366004613e11565b6110c4565b3480156105d957600080fd5b506105ed6105e8366004613eb0565b6110e6565b60405161ffff909116815260200161042d565b34801561060c57600080fd5b5061040961061b366004613eb0565b611114565b34801561062c57600080fd5b50601b546104569060ff1681565b34801561064657600080fd5b50610456611121565b34801561065b57600080fd5b506010546105ed9061ffff1681565b34801561067657600080fd5b50610456610685366004613ec9565b60166020526000908152604090205460ff1681565b3480156106a657600080fd5b5060185461050f9061010090046001600160a01b031681565b3480156106cb57600080fd5b506104096106da366004613ec9565b611190565b3480156106eb57600080fd5b50610477611289565b34801561070057600080fd5b5061047761070f366004613ec9565b6112d3565b34801561072057600080fd5b5061040961072f366004613ee6565b611343565b34801561074057600080fd5b5061040961074f366004613eb0565b6114eb565b34801561076057600080fd5b5061047761076f366004613ec9565b611554565b34801561078057600080fd5b5061040961156f565b34801561079557600080fd5b506104566107a4366004613ec9565b601a6020526000908152604090205460ff1681565b3480156107c557600080fd5b50610409611583565b3480156107da57600080fd5b506104096107e9366004613e11565b6115fa565b3480156107fa57600080fd5b50610477610809366004613ec9565b61160f565b34801561081a57600080fd5b50610409610829366004613d78565b61162d565b34801561083a57600080fd5b50610409610849366004613ee6565b611695565b34801561085a57600080fd5b50610863611834565b60405161042d9796959493929190613f29565b34801561088257600080fd5b506104096118bd565b34801561089757600080fd5b506007546001600160a01b031661050f565b3480156108b557600080fd5b5060195461050f906001600160a01b031681565b3480156108d557600080fd5b50610420611963565b3480156108ea57600080fd5b506105ed6108f9366004613eb0565b611972565b34801561090a57600080fd5b50610477600c5481565b34801561092057600080fd5b50610477611982565b34801561093557600080fd5b50610456610944366004613e11565b6119cc565b34801561095557600080fd5b506105ed610964366004613eb0565b611a47565b34801561097557600080fd5b50610477610984366004613ec9565b611a57565b34801561099557600080fd5b506104566109a4366004613e11565b611a8a565b3480156109b557600080fd5b506109c96109c4366004613ec9565b611a98565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e08201526101000161042d565b348015610a1a57600080fd5b50600d5461050f906201000090046001600160a01b031681565b348015610a4057600080fd5b50610409610a4f366004613d78565b611b33565b348015610a6057600080fd5b50610409610a6f366004613ec9565b611b93565b348015610a8057600080fd5b50610456610a8f366004613ec9565b611c4f565b348015610aa057600080fd5b50610409610aaf366004613fbf565b611cbe565b348015610ac057600080fd5b50610477611e22565b348015610ad557600080fd5b50610477610ae4366004614036565b611e5c565b348015610af557600080fd5b506008546001600160a01b031661050f565b348015610b1357600080fd5b50610409610b22366004613ee6565b611e87565b348015610b3357600080fd5b50610477612026565b348015610b4857600080fd5b50610456610b57366004613ec9565b601c6020526000908152604090205460ff1681565b348015610b7857600080fd5b50610477612070565b348015610b8d57600080fd5b506109c9610b9c366004613eb0565b61208e565b348015610bad57600080fd5b50610409610bbc366004613ec9565b6120d0565b348015610bcd57600080fd5b506105ed610bdc366004613eb0565b612141565b348015610bed57600080fd5b50610409610bfc366004613ee6565b612151565b348015610c0d57600080fd5b506105ed610c1c366004613eb0565b6122f0565b348015610c2d57600080fd5b50610c41610c3c366004613eb0565b612300565b6040805192835260208301919091520161042d565b610c5e61237f565b610c6882826123d9565b5050565b606060038054610c7b90614064565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca790614064565b8015610cf45780601f10610cc957610100808354040283529160200191610cf4565b820191906000526020600020905b815481529060010190602001808311610cd757829003601f168201915b5050505050905090565b600033610d0c81858561245f565b60019150505b92915050565b610d2061237f565b60008161ffff16118015610d3a57506101f48161ffff1611155b610dc55760405162461bcd60e51b815260206004820152604b60248201527f537761705468726573686f6c643a2043616e6e6f7420657863656564206c696d60448201527f6974732066726f6d20302e30312520746f20352520666f72206e65772073776160648201526a1c081d1a1c995cda1bdb1960aa1b608482015260a4015b60405180910390fd5b6010805461ffff191661ffff83169081179091556040519081527fcf1366790fe21e66c9df9dcf67218b1e10acd64d3c99ae8a7429a68de91f1720906020015b60405180910390a150565b6000610e1a612070565b610e2330611554565b610e2d91906140ae565b90506000610e3a82612583565b60408051848152602081018390529192507f5c3340567bf85cd43734028361fe821eac789fbe397b8d1a4f9ebb3ab4c81ef7910160405180910390a15050565b600033610e88858285612627565b610e938585856126a1565b506001949350505050565b600b54604080516318160ddd60e01b815290516000926001600160a01b0316916318160ddd9160048083019260209291908290030181865afa158015610ee8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f0c91906140c1565b905090565b610f1961237f565b6019546001600160a01b0390811690831603610f935760405162461bcd60e51b815260206004820152603360248201527f44656661756c74526f757465723a2043616e6e6f742072656d6f766520696e696044820152721d1a585b081c185a5c88199c9bdb481b1a5cdd606a1b6064820152608401610dbc565b610c688282612e04565b610fa561237f565b62030d408110158015610fbb57506207a1208111155b61103b5760405162461bcd60e51b815260206004820152604560248201527f4469766964656e64547261636b65723a20676173466f7250726f63657373696e60448201527f67206d757374206265206265747765656e203230306b20616e64203530306b20606482015264756e69747360d81b608482015260a401610dbc565b600c8190556040518181527f1662a2324457a200b9556dfe949641639b99480ee6b448aefcfb97ee61ec241790602001610e05565b600b54604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae9160048083019260209291908290030181865afa158015610ee8573d6000803e3d6000fd5b6000610f0c612e79565b600033610d0c8185856110d78383611e5c565b6110e191906140da565b61245f565b601781600381106110f657600080fd5b60109182820401919006600202915054906101000a900461ffff1681565b61111e3382612fa4565b50565b600b54604051630f41a04d60e11b81523360048201526000916001600160a01b031690631e83409a906024016020604051808303816000875af115801561116c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f0c91906140ed565b61119861237f565b6001600160a01b0381166112235760405162461bcd60e51b815260206004820152604660248201527f546178657344656661756c74526f7574657257616c6c65743a2057616c6c657460448201527f2074617820726563697069656e742063616e6e6f74206265206120307830206160648201526564647265737360d01b608482015260a401610dbc565b600d805462010000600160b01b031916620100006001600160a01b03841602179055611250816001611b33565b6040516001600160a01b03821681527f36103056ceaf264dc41397abacce03d7648cbc2f0b2077e3567062533e8b20ed90602001610e05565b600b54604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde9160048083019260209291908290030181865afa158015610ee8573d6000803e3d6000fd5b600b546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b602060405180830381865afa15801561131f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d1291906140c1565b61134b61237f565b600f5460175484916113649161ffff9182169116614120565b61136e9190614142565b6017805461ffff191661ffff9283161790819055600f54849261139e926201000092839004821692900416614120565b6113a89190614142565b6017805463ffff000019166201000061ffff938416021790819055600f5483926113e092600160201b92839004821692900416614120565b6113ea9190614142565b6017805461ffff928316600160201b0265ffff0000000019821681179092556109c490831691909216171180159061143157506017546109c46201000090910461ffff1611155b801561144d57506017546109c4600160201b90910461ffff1611155b6114695760405162461bcd60e51b8152600401610dbc9061415d565b6040805160608101825261ffff8086168252848116602083015283169181019190915261149a90600f906003613caa565b506040805161ffff808616825280851660208301528316918101919091527f5c6dd066977d1639216aedea00d1204fef7166f3c39e50c26ea04bfd41e561c8906060015b60405180910390a1505050565b6114f361237f565b600b54604051636cc9c8f160e01b8152600481018390526001600160a01b0390911690636cc9c8f190602401600060405180830381600087803b15801561153957600080fd5b505af115801561154d573d6000803e3d6000fd5b5050505050565b6001600160a01b031660009081526020819052604090205490565b61157761237f565b6115816000612ffa565b565b60085433906001600160a01b031681146115f15760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b6064820152608401610dbc565b61111e81612ffa565b611605823383612627565b610c688282612fa4565b6001600160a01b038116600090815260096020526040812054610d12565b61163561237f565b6001600160a01b0382166000818152601c6020908152604091829020805460ff191685151590811790915591519182527f38d2732664f4152f6b6754aa1afeaec7fa6618671b172e5430139b51dba2d1d691015b60405180910390a25050565b61169d61237f565b60155460175484916116b69161ffff9182169116614120565b6116c09190614142565b6017805461ffff191661ffff928316179081905560155484926116f0926201000092839004821692900416614120565b6116fa9190614142565b6017805463ffff000019166201000061ffff938416021790819055601554839261173292600160201b92839004821692900416614120565b61173c9190614142565b6017805461ffff928316600160201b0265ffff0000000019821681179092556109c490831691909216171180159061178357506017546109c46201000090910461ffff1611155b801561179f57506017546109c4600160201b90910461ffff1611155b6117bb5760405162461bcd60e51b8152600401610dbc9061415d565b6040805160608101825261ffff808616825284811660208301528316918101919091526117ec906015906003613caa565b506040805161ffff808616825280851660208301528316918101919091527f4cc46242539a322b08449caf679672d54580fc99e4b7a4b3c6f21e322ad60468906060016114de565b6000606080828080836118687f50657374204672656520546f6b656e000000000000000000000000000000000f6005613013565b6118937f31000000000000000000000000000000000000000000000000000000000000016006613013565b60408051600080825260208201909252600f60f81b9b939a50919850469750309650945092509050565b6118c561237f565b601b5460ff161561192b5760405162461bcd60e51b815260206004820152602a60248201527f456e61626c6554726164696e673a2054726164696e672077617320656e61626c604482015269656420616c726561647960b01b6064820152608401610dbc565b601b805460ff191660011790556040517f799663458a5ef2936f7fa0c99b3336c69c25890f82974f04e811e5bb359186c790600090a1565b606060048054610c7b90614064565b601481600381106110f657600080fd5b600b5460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec9160048083019260209291908290030181865afa158015610ee8573d6000803e3d6000fd5b600033816119da8286611e5c565b905083811015611a3a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610dbc565b610e93828686840361245f565b601581600381106110f657600080fd5b600b546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d24090602401611302565b600033610d0c8185856126a1565b600b54604051632ebc328760e11b81526001600160a01b0383811660048301526000928392839283928392839283928392911690635d78650e906024015b61010060405180830381865afa158015611af4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b1891906141b3565b97509750975097509750975097509750919395975091939597565b611b3b61237f565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101611689565b600d54610100900460ff1680611bac5750600d5460ff16155b611c0f5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610dbc565b600d54610100900460ff16158015611c3157600d805461ffff19166101011790555b611c3a826130be565b8015610c6857600d805461ff00191690555050565b600b5460405163c705c56960e01b81526001600160a01b038381166004830152600092169063c705c56990602401602060405180830381865afa158015611c9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d1291906140ed565b83421115611d0e5760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152606401610dbc565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9888888611d3d8c6132cc565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090506000611d98826132f4565b90506000611da882878787613321565b9050896001600160a01b0316816001600160a01b031614611e0b5760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610dbc565b611e168a8a8a61245f565b50505050505050505050565b6010546019546000916127109161ffff90911690611e48906001600160a01b0316611554565b611e52919061421d565b610f0c9190614234565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611e8f61237f565b6014546017548491611ea89161ffff9182169116614120565b611eb29190614142565b6017805461ffff191661ffff92831617908190556014548492611ee2926201000092839004821692900416614120565b611eec9190614142565b6017805463ffff000019166201000061ffff9384160217908190556014548392611f2492600160201b92839004821692900416614120565b611f2e9190614142565b6017805461ffff928316600160201b0265ffff0000000019821681179092556109c4908316919092161711801590611f7557506017546109c46201000090910461ffff1611155b8015611f9157506017546109c4600160201b90910461ffff1611155b611fad5760405162461bcd60e51b8152600401610dbc9061415d565b6040805160608101825261ffff80861682528481166020830152831691810191909152611fde906014906003613caa565b506040805161ffff808616825280851660208301528316918101919091527f2524ccb75260c9a50c71af1740c212c049a01232ef122061416b51815ec57a18906060016114de565b600b5460408051633009a60960e01b815290516000926001600160a01b031691633009a6099160048083019260209291908290030181865afa158015610ee8573d6000803e3d6000fd5b6000601354601254600061208491906140da565b610f0c91906140da565b600b54604051632f7541e960e01b81526004810183905260009182918291829182918291829182916001600160a01b0390911690632f7541e990602401611ad6565b6120d861237f565b600880546001600160a01b0383166001600160a01b031990911681179091556121096007546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b600e81600381106110f657600080fd5b61215961237f565b600e5460175484916121729161ffff9182169116614120565b61217c9190614142565b6017805461ffff191661ffff9283161790819055600e5484926121ac926201000092839004821692900416614120565b6121b69190614142565b6017805463ffff000019166201000061ffff938416021790819055600e5483926121ee92600160201b92839004821692900416614120565b6121f89190614142565b6017805461ffff928316600160201b0265ffff0000000019821681179092556109c490831691909216171180159061223f57506017546109c46201000090910461ffff1611155b801561225b57506017546109c4600160201b90910461ffff1611155b6122775760405162461bcd60e51b8152600401610dbc9061415d565b6040805160608101825261ffff808616825284811660208301528316918101919091526122a890600e906003613caa565b506040805161ffff808616825280851660208301528316918101919091527f353fa11d3ea4e1bac31044fdcd36caa4e380f5732dfe9409ba78be0a4216e989906060016114de565b600f81600381106110f657600080fd5b600b546040516001624d3b8760e01b031981526004810183905260009182916001600160a01b039091169063ffb2c4799060240160408051808303816000875af1158015612352573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123769190614256565b91509150915091565b6007546001600160a01b031633146115815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dbc565b600b546001600160a01b031663d1fbb84e836123f481611554565b6040516001600160e01b031960e085901b1681526001600160a01b039092166004830152602482015283151560448201526064015b600060405180830381600087803b15801561244357600080fd5b505af1158015612457573d6000803e3d6000fd5b505050505050565b6001600160a01b0383166124c15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610dbc565b6001600160a01b0382166125225760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610dbc565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600080612591600284614234565b9050600061259f82856140ae565b90506125aa82613349565b47801561261f5760008060006125c08585613490565b604080518481526020810184905290810182905292955090935091507f3db50c324c27fb39c451e35d4d23abba3e20d96d036e7a40f4adc681c1ce30139060600160405180910390a161261383866140ae565b98975050505050505050565b509392505050565b60006126338484611e5c565b9050600019811461269b578181101561268e5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610dbc565b61269b848484840361245f565b50505050565b60185460ff161580156126b45750600081115b80156126d357506018546001600160a01b038381166101009092041614155b80156126f857506001600160a01b03831660009081526016602052604090205460ff16155b801561271d57506001600160a01b03821660009081526016602052604090205460ff16155b15612b88576001600160a01b0383166000908152601a602052604081205460039060ff161561275b5760175461ffff1615612756575060005b6127ad565b6001600160a01b0384166000908152601a602052604090205460ff16156127965760175462010000900461ffff1615612756575060016127ad565b601754600160201b900461ffff16156127ad575060025b60038160ff161015612b745760008061271060178460ff16600381106127d5576127d561410a565b601091828204019190066002029054906101000a900461ffff1661ffff16866127fe919061421d565b6128089190614234565b935061281484866140ae565b94506000600e8460ff166003811061282e5761282e61410a565b601091828204019190066002029054906101000a900461ffff1661ffff16111561293d5760178360ff16600381106128685761286861410a565b601091828204019190066002029054906101000a900461ffff1661ffff16600e8460ff166003811061289c5761289c61410a565b601091828204019190066002029054906101000a900461ffff1661ffff16856128c5919061421d565b6128cf9190614234565b91506128f187600d60029054906101000a90046001600160a01b031684613558565b600d5460408051620100009092046001600160a01b03168252602082018490527f11eb6f0af6446ac7857ea735bc3fd61a33db1a5ba8c5187136e82d34a23ace75910160405180910390a15b6000600f8460ff16600381106129555761295561410a565b601091828204019190066002029054906101000a900461ffff1661ffff161115612a325760178360ff166003811061298f5761298f61410a565b601081049091015461ffff6002600f938416026101000a909104169060ff8516600381106129bf576129bf61410a565b601091828204019190066002029054906101000a900461ffff1661ffff16856129e8919061421d565b6129f29190614234565b90506129fe8782612fa4565b6040518181527f7c76b725c3bdd88cc239c1cbdc4c37e260fc0650dd4784ce22d4fbd64d98c4d99060200160405180910390a15b60178360ff1660038110612a4857612a4861410a565b601091828204019190066002029054906101000a900461ffff1661ffff1660148460ff1660038110612a7c57612a7c61410a565b601091828204019190066002029054906101000a900461ffff1661ffff1685612aa5919061421d565b612aaf9190614234565b60126000828254612ac091906140da565b909155506017905060ff841660038110612adc57612adc61410a565b601091828204019190066002029054906101000a900461ffff1661ffff1660158460ff1660038110612b1057612b1061410a565b601091828204019190066002029054906101000a900461ffff1661ffff1685612b39919061421d565b612b439190614234565b60136000828254612b5491906140da565b90915550819050612b6583866140ae565b612b6f91906140ae565b935050505b8115612b8557612b85853084613568565b50505b6000612b92611e22565b612b9a612070565b10158015612bbd5750601954600090612bbb906001600160a01b0316611554565b115b60185490915060ff16158015612bec57506001600160a01b0384166000908152601a602052604090205460ff16155b8015612c0b57506018546001600160a01b038581166101009092041614155b8015612c145750805b15612c7a576018805460ff1916600117905560125415612c4057612c39601254612583565b5060006012555b6000601354118015612c5957506000612c57611289565b115b15612c6f57612c69601354613717565b60006013555b6018805460ff191690555b612c85848484613568565b600b546001600160a01b031663e30443bc85612ca081611554565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015612ce657600080fd5b505af1158015612cfa573d6000803e3d6000fd5b5050600b546001600160a01b0316915063e30443bc905084612d1b81611554565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015612d6157600080fd5b505af1158015612d75573d6000803e3d6000fd5b505060185460ff16915061269b905057600b54600c546040516001624d3b8760e01b031981526001600160a01b039092169163ffb2c47991612dbd9160040190815260200190565b60408051808303816000875af1925050508015612df7575060408051601f3d908101601f19168201909252612df491810190614256565b60015b1561269b57505050505050565b6001600160a01b0382166000908152601a60205260409020805460ff19168215801591909117909155612e3c57612e3c8260016123d9565b816001600160a01b03167f911aa18ddbbbc33c9b4c704a71bdaa0984b0aa2e82726a7f51e64bad0b0a845582604051611689911515815260200190565b6000306001600160a01b037f000000000000000000000000e6f0523b9dd59ca6166ececc3ae7e7cedf77a73116148015612ed257507f000000000000000000000000000000000000000000000000000000000000008946145b15612efc57507fc2702dd2e247278fb34d4387e68adf627d7b7c036f48334c508316b283e7f71690565b610f0c604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527fb843775028b9174af3e55bfd9752677edd87cdfa06b9ca71d6a84915c7355ec7918101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b612fae82826137b3565b600b546001600160a01b031663e30443bc83612fc981611554565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401612429565b600880546001600160a01b031916905561111e816138f1565b606060ff831461302d5761302683613943565b9050610d12565b81805461303990614064565b80601f016020809104026020016040519081016040528092919081815260200182805461306590614064565b80156130b25780601f10613087576101008083540402835291602001916130b2565b820191906000526020600020905b81548152906001019060200180831161309557829003601f168201915b50505050509050610d12565b80601860016101000a8154816001600160a01b0302191690836001600160a01b03160217905550601860019054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015613138573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061315c919061427a565b6001600160a01b031663c9c6539630601860019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156131be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131e2919061427a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801561322f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613253919061427a565b601980546001600160a01b0319166001600160a01b039290921691909117905561327e8160016123d9565b601954613295906001600160a01b03166001612e04565b6040516001600160a01b038216907fbc052db65df144ad4f71f02da93cae3d4401104c30ac374d7cc10d87ee07b60290600090a250565b6001600160a01b03811660009081526009602052604090208054600181018255905b50919050565b6000610d12613301612e79565b8360405161190160f01b8152600281019290925260228201526042902090565b600080600061333287878787613982565b9150915061333f81613a46565b5095945050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061337e5761337e61410a565b60200260200101906001600160a01b031690816001600160a01b031681525050601860019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156133f1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613415919061427a565b816001815181106134285761342861410a565b6001600160a01b0392831660209182029290920101526018546134539130916101009004168461245f565b60185460405163791ac94760e01b81526101009091046001600160a01b03169063791ac94790612429908590600090869030904290600401614297565b60008060006134b530601860019054906101000a90046001600160a01b03168761245f565b60185460405163f305d71960e01b8152306004820152602481018790526000604482018190526064820181905260848201524260a48201526101009091046001600160a01b03169063f305d71990869060c40160606040518083038185885af1158015613526573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061354b9190614308565b9250925092509250925092565b613563838383613568565b505050565b6001600160a01b0383166135cc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610dbc565b6001600160a01b03821661362e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610dbc565b613639838383613b90565b6001600160a01b038316600090815260208190526040902054818110156136b15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610dbc565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361269b565b61372081613349565b478015610c6857600b546040516000916001600160a01b03169083908381818185875af1925050503d8060008114613774576040519150601f19603f3d011682016040523d82523d6000602084013e613779565b606091505b505090508015613563576040518281527f193576e9dd325a2a57e4e6e7f6afa82c4fd152eaa8d5f874b0b0f40d924b18a6906020016114de565b6001600160a01b0382166138135760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610dbc565b61381f82600083613b90565b6001600160a01b038216600090815260208190526040902054818110156138935760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610dbc565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6060600061395083613c82565b604080516020808252818301909252919250600091906020820181803683375050509182525060208101929092525090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156139b95750600090506003613a3d565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015613a0d573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116613a3657600060019250925050613a3d565b9150600090505b94509492505050565b6000816004811115613a5a57613a5a614336565b03613a625750565b6001816004811115613a7657613a76614336565b03613ac35760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610dbc565b6002816004811115613ad757613ad7614336565b03613b245760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610dbc565b6003816004811115613b3857613b38614336565b0361111e5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610dbc565b6001600160a01b0383166000908152601a602052604090205460ff168015613bd157506001600160a01b0382166000908152601c602052604090205460ff16155b80613c1857506001600160a01b0382166000908152601a602052604090205460ff168015613c1857506001600160a01b0383166000908152601c602052604090205460ff16155b1561356357601b5460ff166135635760405162461bcd60e51b815260206004820152602a60248201527f456e61626c6554726164696e673a2054726164696e6720776173206e6f7420656044820152691b98589b1959081e595d60b21b6064820152608401610dbc565b600060ff8216601f811115610d1257604051632cd44ac360e21b815260040160405180910390fd5b600183019183908215613d305791602002820160005b83821115613d0057835183826101000a81548161ffff021916908361ffff1602179055509260200192600201602081600101049283019260010302613cc0565b8015613d2e5782816101000a81549061ffff0219169055600201602081600101049283019260010302613d00565b505b50613d3c929150613d40565b5090565b5b80821115613d3c5760008155600101613d41565b6001600160a01b038116811461111e57600080fd5b801515811461111e57600080fd5b60008060408385031215613d8b57600080fd5b8235613d9681613d55565b91506020830135613da681613d6a565b809150509250929050565b6000815180845260005b81811015613dd757602081850181015186830182015201613dbb565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000613e0a6020830184613db1565b9392505050565b60008060408385031215613e2457600080fd5b8235613e2f81613d55565b946020939093013593505050565b803561ffff81168114613e4f57600080fd5b919050565b600060208284031215613e6657600080fd5b613e0a82613e3d565b600080600060608486031215613e8457600080fd5b8335613e8f81613d55565b92506020840135613e9f81613d55565b929592945050506040919091013590565b600060208284031215613ec257600080fd5b5035919050565b600060208284031215613edb57600080fd5b8135613e0a81613d55565b600080600060608486031215613efb57600080fd5b613f0484613e3d565b9250613f1260208501613e3d565b9150613f2060408501613e3d565b90509250925092565b60ff60f81b881681526000602060e081840152613f4960e084018a613db1565b8381036040850152613f5b818a613db1565b606085018990526001600160a01b038816608086015260a0850187905284810360c0860152855180825283870192509083019060005b81811015613fad57835183529284019291840191600101613f91565b50909c9b505050505050505050505050565b600080600080600080600060e0888a031215613fda57600080fd5b8735613fe581613d55565b96506020880135613ff581613d55565b95506040880135945060608801359350608088013560ff8116811461401957600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561404957600080fd5b823561405481613d55565b91506020830135613da681613d55565b600181811c9082168061407857607f821691505b6020821081036132ee57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b81810381811115610d1257610d12614098565b6000602082840312156140d357600080fd5b5051919050565b80820180821115610d1257610d12614098565b6000602082840312156140ff57600080fd5b8151613e0a81613d6a565b634e487b7160e01b600052603260045260246000fd5b61ffff82811682821603908082111561413b5761413b614098565b5092915050565b61ffff81811683821601908082111561413b5761413b614098565b60208082526036908201527f546178657344656661756c74526f757465723a2043616e6e6f7420657863656560408201527564206d617820746f74616c20666565206f662032352560501b606082015260800190565b600080600080600080600080610100898b0312156141d057600080fd5b88516141db81613d55565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b8082028115828204841417610d1257610d12614098565b60008261425157634e487b7160e01b600052601260045260246000fd5b500490565b6000806040838503121561426957600080fd5b505080516020909101519092909150565b60006020828403121561428c57600080fd5b8151613e0a81613d55565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156142e75784516001600160a01b0316835293830193918301916001016142c2565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561431d57600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052602160045260246000fdfea2646970667358221220df454bfd980d4e407f76ae94dffb21a327c4e93eac88a2b0ac69efe362f8d46a64736f6c63430008130033

Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.