ETH Price: $2,358.90 (+0.76%)

Token

Dividend_Tracker (Dividend_Tracker)
 

Overview

Max Total Supply

111,292,921,537,006.831833624610248241 Dividend_Tracker

Holders

189

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
10,000,000,000 Dividend_Tracker

Value
$0.00
0x233bc86025d3b3ba7f7649c9f7119946940df553
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
DividendTracker

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-03-16
*/

/**
 *Submitted for verification at Etherscan.io on 2024-03-09
*/

pragma solidity 0.8.19;

// SPDX-License-Identifier: MIT

interface IERC20 {
    function totalSupply() external view returns (uint256);

    function balanceOf(address account) external view returns (uint256);

    function transfer(address recipient, uint256 amount) external returns (bool);

    function allowance(address owner, address spender) external view returns (uint256);

    function approve(address spender, uint256 amount) external returns (bool);

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);

    event Approval(address indexed owner, address indexed spender, uint256 value);
}

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    constructor() {
        _setOwner(_msgSender());
    }

    function owner() public view virtual returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


interface IFactory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IRouter {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

/**
 * @title SafeMathInt
 * @dev Math operations for int256 with overflow safety checks.
 */
library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

/**
 * @title SafeMathUint
 * @dev Math operations with safety checks that revert on error
 */
library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}

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

contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;

    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}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }


    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(
            amount,
            "ERC20: burn amount exceeds balance"
        );
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}


contract CAWELON is Context, ERC20, Ownable {
    using SafeMath for uint256;

    IRouter public router;

    address public uniswapV2Pair;

    bool private swapping;

    struct airDropWallets {
        uint256 amount;
        uint256 unlockTime;
    }

    mapping(address =>  airDropWallets) public airDropWalletsData;

    mapping(address => bool) public  _isExcludedFromFee;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    mapping(address => bool) public automatedMarketMakerPairs;

    uint256 private ethRewardsBuyFee = 4;
    uint256 private devBuyFee = 2;
    uint256 private nativeBurnBuyFee = 2;
    uint256 private nativeBurnSellFee = 4;
    uint256 private cawBurnSellFee = 4;

    uint256 public totalBuyFees = ethRewardsBuyFee.add(devBuyFee).add(nativeBurnBuyFee);
    uint256 public totalSellFees = nativeBurnSellFee.add(cawBurnSellFee);

    uint256 private countETHRewardFees = 0;
    uint256 private countCAWBurnFee = 0;
    uint256 private countNativeBurnFee = 0;
    
    address public  cawCollectWallet = payable(0xbf38fA464F04f18568938d24B72feA56da76bC4A);
    address public  devWallet = payable(0xB19171D64A218Bee27b6a9E88919857a86A90e2C);
    

    DividendTracker public dividendTracker;

    uint256 public swapTokensAtAmount = 210000000000 * 10**18; //0.05%

    address constant deadWallet = 0x000000000000000000000000000000000000dEaD;
    address public immutable CAW = address(0xf3b9569F82B18aEf890De263B84189bd33EBe452); // CAW

    event SendDividends(uint256 tokenAmount, uint256 ethAmount);

    constructor() ERC20("CAW Supporter", "CAWELON"){

        dividendTracker = new  DividendTracker();


        // exclude from receiving dividends
        dividendTracker.excludeFromDividends(address(dividendTracker));
        dividendTracker.excludeFromDividends(address(this));
        dividendTracker.excludeFromDividends(deadWallet);
        
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[0x2975466283CB67e37067CB4D53E5960002b39547] = true;
        _isExcludedFromFee[deadWallet] = true;

        _mint(0x2975466283CB67e37067CB4D53E5960002b39547, 420000000000000 * (10**18));
      
    }
    
    receive() external payable {}

    function createPair() external  onlyOwner {

      IRouter _router = IRouter(address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D));
        address _pair = IFactory(_router.factory()).createPair(address(this), _router.WETH());

        router = _router;
        uniswapV2Pair = _pair;

        automatedMarketMakerPairs[uniswapV2Pair] = true;

         dividendTracker.excludeFromDividends(uniswapV2Pair);

    }

    function airDrop (address[] calldata recipients, uint256[] calldata amount, uint256 _unlockTime) public onlyOwner{

        for (uint256 i = 0; i < recipients.length; i++){

            IERC20(address(this)).transferFrom(msg.sender, recipients[i], amount[i] * (10**18));
             airDropWalletsData[recipients[i]].amount = amount[i] * (10**18);
             airDropWalletsData[recipients[i]].unlockTime = block.timestamp.add(_unlockTime * 86400);

        }
    }

    /// @dev It will send all ETH to dev which are sended accidentally
    function recoverETH() external onlyOwner {
    
        uint256 ETHbalance = address(this).balance;
        (bool success, ) = payable(owner()).call{value: ETHbalance}("");
        require(success);
        
    }

    function excludeFromDividends(address account) public onlyOwner {
        dividendTracker.excludeFromDividends(account);

    }

    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }

    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner{
        require(newAmount >= totalSupply() / 2000, "SwapTokensAtAmount must be greater than or equal to 0.05% of total supply"); 
        swapTokensAtAmount = newAmount * 10**18;
    }

    function updateDividendTracker(address newAddress) public onlyOwner {
       require(newAddress != address(dividendTracker), " The dividend tracker already has that address");

       dividendTracker.recoverETH();

       DividendTracker newDividendTracker = DividendTracker(payable(newAddress));
        newDividendTracker.excludeFromDividends(
            address(newDividendTracker)
        );

        newDividendTracker.excludeFromDividends(address(this));
        newDividendTracker.excludeFromDividends(uniswapV2Pair);
        newDividendTracker.excludeFromDividends(deadWallet);
        dividendTracker = newDividendTracker;
    }

    function claim() external {
        dividendTracker.processAccount(payable(msg.sender), false);
    }

    uint256 private devFeeActual;
    uint256 private cawBurnFeeActual;
    uint256 private nativeBurnFeeActual;
    uint256 private ETHRewardsFeeActual;
    
    
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");

        if(from != uniswapV2Pair){
            require(to != address(this), "You cannot send tokens to the contract address!");
        }

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        } else if (
            !swapping && !_isExcludedFromFee[from] && !_isExcludedFromFee[to]
        ) {
            bool isSelling = automatedMarketMakerPairs[to];
            bool isBuying = automatedMarketMakerPairs[from];


            if (
                isSelling && // sells only by detecting transfer to automated market maker pair
                from != address(router) //router -> pair is removing liquidity which shouldn't have max
            ) {
                if(block.timestamp <= airDropWalletsData[from].unlockTime && airDropWalletsData[from].amount > 0){
                  require(amount <= (balanceOf(from).sub(airDropWalletsData[from].amount)));
                }

                devFeeActual = 0;
                ETHRewardsFeeActual = 0;
                cawBurnFeeActual = cawBurnSellFee;
                nativeBurnFeeActual = nativeBurnSellFee;
            }

            else if (
                isBuying &&
                to != address(router)
            ) {
                 devFeeActual = devBuyFee;
                 nativeBurnFeeActual = nativeBurnBuyFee;
                 ETHRewardsFeeActual = ethRewardsBuyFee;
               
            }
            
            else {

                if(block.timestamp <= airDropWalletsData[from].unlockTime && airDropWalletsData[from].amount > 0){
                  require(amount <= (balanceOf(from).sub(airDropWalletsData[from].amount)), "wait for unlock period");
                }
            } 
            

            uint256 contractTokenBalance = balanceOf(address(this));

            bool canSwap = contractTokenBalance >= swapTokensAtAmount;
            
            if (canSwap && !automatedMarketMakerPairs[from]) {
                swapping = true;

                burnNativeTokens(countNativeBurnFee);

                buyCAWTokens(countCAWBurnFee);

                swapTokensForDividendETH(countETHRewardFees);

                swapAndSendDevETH();

                swapping = false;
            }

            uint256 devFeeAmount = amount.mul(devFeeActual).div(100);
            uint256 nativeFeeAmount = amount.mul(nativeBurnFeeActual).div(100);
            uint256 cawFeeAmount = amount.mul(cawBurnFeeActual).div(100);
            uint256 ETHRewardsFeeAmount = amount.mul(ETHRewardsFeeActual).div(100);
            
            countNativeBurnFee += nativeFeeAmount;
            countCAWBurnFee += cawFeeAmount;
            countETHRewardFees += ETHRewardsFeeAmount;

            uint256 fees = devFeeAmount + nativeFeeAmount + cawFeeAmount + ETHRewardsFeeAmount;
            amount = amount.sub(fees);
            super._transfer(from, address(this), fees);
            
        }

        super._transfer(from, to, amount);

        try dividendTracker.setBalance(payable(from), balanceOf(from)) {} catch {}
        try dividendTracker.setBalance(payable(to), balanceOf(to)) {} catch {}
        
    }

    function burnNativeTokens(uint256 tokenAmount) private {
          

        uint256 contractBalance = balanceOf(address(this));
        
        if(tokenAmount > contractBalance){
            return;
        }
        
        uint256 initialBalance = balanceOf(deadWallet);

        bool success = IERC20(address(this)).transfer(deadWallet, tokenAmount);

        uint256 swappedBalance = balanceOf(deadWallet).sub(initialBalance);
       
       if(success){
          _burn(deadWallet, swappedBalance);  
           countNativeBurnFee -= tokenAmount;
       }
    }

    
    function buyCAWTokens(uint256 tokenAmount) private {

        address[] memory path = new address[](3);
        path[0] = address(this);
        path[1] = router.WETH();
        path[2] = CAW;

        _approve(address(this), address(router), tokenAmount);

        // make the swap
        router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            cawCollectWallet,
            block.timestamp
        );

        countCAWBurnFee -= tokenAmount;
    }

    function swapTokensForDividendETH(uint256 tokenAmount) private {
        
        uint256 beforeSwap;
        uint256 afterSwapDelta;
        
        beforeSwap = address(this).balance;
        uint256 contractBalance = balanceOf(address(this));
        
        if(tokenAmount > contractBalance){
            return;
        }

        swapTokensForETH(tokenAmount, payable(address(this)));
        afterSwapDelta = address(this).balance - beforeSwap;
        countETHRewardFees -= tokenAmount;
        uint256 ETHRewards = afterSwapDelta;

        (bool success, ) = address(dividendTracker).call{value: ETHRewards}("");
        
        if(success){
           emit SendDividends(tokenAmount, ETHRewards);
        }

    }

    function swapTokensForETH(uint256 tokenAmount, address wallet) private {
        // generate the pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();

        _approve(address(this), address(router), tokenAmount);

        // make the swap
        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            payable(wallet),
            block.timestamp
        );
    }

    function swapAndSendDevETH() private  {
       
        uint256 contractBalance = balanceOf(address(this));
        
        if(contractBalance <= 0){
            return;
        }

        swapTokensForETH(contractBalance, devWallet);

    }
}

interface DividendPayingTokenOptionalInterface {
    /// @notice View the amount of dividend in wei that an address can withdraw.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` can withdraw.
    function withdrawableDividendOf(address _owner)
        external
        view
        returns (uint256);

    /// @notice View the amount of dividend in wei that an address has withdrawn.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` has withdrawn.
    function withdrawnDividendOf(address _owner)
        external
        view
        returns (uint256);

    /// @notice View the amount of dividend in wei that an address has earned in total.
    /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` has earned in total.
    function accumulativeDividendOf(address _owner)
        external
        view
        returns (uint256);
}

interface DividendPayingTokenInterface {
    /// @notice View the amount of dividend in wei that an address can withdraw.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` can withdraw.
    function dividendOf(address _owner) external view returns (uint256);

    /// @notice Distributes ether to token holders as dividends.
    /// @dev SHOULD distribute the paid ether to token holders as dividends.
    ///  SHOULD NOT directly transfer ether to token holders in this function.
    ///  MUST emit a `DividendsDistributed` event when the amount of distributed ether is greater than 0.
    function distributeDividends() external payable;

    /// @notice Withdraws the ether distributed to the sender.
    /// @dev SHOULD transfer `dividendOf(msg.sender)` wei to `msg.sender`, and `dividendOf(msg.sender)` SHOULD be 0 after the transfer.
    ///  MUST emit a `DividendWithdrawn` event if the amount of ether transferred is greater than 0.
    function withdrawDividend() external;

    /// @dev This event MUST emit when ether is distributed to token holders.
    /// @param from The address which sends ether to this contract.
    /// @param weiAmount The amount of distributed ether in wei.
    event DividendsDistributed(address indexed from, uint256 weiAmount);

    /// @dev This event MUST emit when an address withdraws their dividend.
    /// @param to The address which withdraws ether from this contract.
    /// @param weiAmount The amount of withdrawn ether in wei.
    event DividendWithdrawn(address indexed to, uint256 weiAmount);
}

contract DividendPayingToken is
    ERC20,
    DividendPayingTokenInterface,
    DividendPayingTokenOptionalInterface
{
    using SafeMath for uint256;
    using SafeMathUint for uint256;
    using SafeMathInt for int256;

    // With `magnitude`, we can properly distribute dividends even if the amount of received ether is small.
    // For more discussion about choosing the value of `magnitude`,
    //  see https://github.com/ethereum/EIPs/issues/1726#issuecomment-472352728
    uint256 internal constant magnitude = 2**128;

    uint256 internal magnifiedDividendPerShare;

    // About dividendCorrection:
    // If the token balance of a `_user` is never changed, the dividend of `_user` can be computed with:
    //   `dividendOf(_user) = dividendPerShare * balanceOf(_user)`.
    // When `balanceOf(_user)` is changed (via minting/burning/transferring tokens),
    //   `dividendOf(_user)` should not be changed,
    //   but the computed value of `dividendPerShare * balanceOf(_user)` is changed.
    // To keep the `dividendOf(_user)` unchanged, we add a correction term:
    //   `dividendOf(_user) = dividendPerShare * balanceOf(_user) + dividendCorrectionOf(_user)`,
    //   where `dividendCorrectionOf(_user)` is updated whenever `balanceOf(_user)` is changed:
    //   `dividendCorrectionOf(_user) = dividendPerShare * (old balanceOf(_user)) - (new balanceOf(_user))`.
    // So now `dividendOf(_user)` returns the same value before and after `balanceOf(_user)` is changed.
    mapping(address => int256) internal magnifiedDividendCorrections;
    mapping(address => uint256) internal withdrawnDividends;

    uint256 public totalDividendsDistributed;

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

    /// @dev Distributes dividends whenever ether is paid to this contract.
    receive() external payable {
        distributeDividends();
    }

    /// @notice Distributes ether to token holders as dividends.
    /// @dev It reverts if the total supply of tokens is 0.
    /// It emits the `DividendsDistributed` event if the amount of received ether is greater than 0.
    /// About undistributed ether:
    ///   In each distribution, there is a small amount of ether not distributed,
    ///     the magnified amount of which is
    ///     `(msg.value * magnitude) % totalSupply()`.
    ///   With a well-chosen `magnitude`, the amount of undistributed ether
    ///     (de-magnified) in a distribution can be less than 1 wei.
    ///   We can actually keep track of the undistributed ether in a distribution
    ///     and try to distribute it in the next distribution,
    ///     but keeping track of such data on-chain costs much more than
    ///     the saved ether, so we don't do that.
    function distributeDividends() public payable override {
        require(totalSupply() > 0);

        if (msg.value > 0) {
            magnifiedDividendPerShare = magnifiedDividendPerShare.add(
                (msg.value).mul(magnitude) / totalSupply()
            );
            emit DividendsDistributed(msg.sender, msg.value);

            totalDividendsDistributed = totalDividendsDistributed.add(
                msg.value
            );
        }
    }

    /// @notice Withdraws the ether distributed to the sender.
    /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0.
    function withdrawDividend() public virtual override {
        _withdrawDividendOfUser(payable(msg.sender));
    }

    /// @notice Withdraws the ether distributed to the sender.
    /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0.
    function _withdrawDividendOfUser(address payable user)
        internal
        virtual
        returns (uint256)
    {
        uint256 _withdrawableDividend = withdrawableDividendOf(user);
        if (_withdrawableDividend > 0) {
            withdrawnDividends[user] = withdrawnDividends[user].add(
                _withdrawableDividend
            );
            emit DividendWithdrawn(user, _withdrawableDividend);
            (bool success, ) = user.call{
                value: _withdrawableDividend,
                gas: 3000
            }("");

            if (!success) {
                withdrawnDividends[user] = withdrawnDividends[user].sub(
                    _withdrawableDividend
                );
                return 0;
            }

            return _withdrawableDividend;
        }

        return 0;
    }

    /// @notice View the amount of dividend in wei that an address can withdraw.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` can withdraw.
    function dividendOf(address _owner) public view override returns (uint256) {
        return withdrawableDividendOf(_owner);
    }

    /// @notice View the amount of dividend in wei that an address can withdraw.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` can withdraw.
    function withdrawableDividendOf(address _owner)
        public
        view
        override
        returns (uint256)
    {
        return accumulativeDividendOf(_owner).sub(withdrawnDividends[_owner]);
    }

    /// @notice View the amount of dividend in wei that an address has withdrawn.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` has withdrawn.
    function withdrawnDividendOf(address _owner)
        public
        view
        override
        returns (uint256)
    {
        return withdrawnDividends[_owner];
    }

    /// @notice View the amount of dividend in wei that an address has earned in total.
    /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
    /// = (magnifiedDividendPerShare * balanceOf(_owner) + magnifiedDividendCorrections[_owner]) / magnitude
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` has earned in total.
    function accumulativeDividendOf(address _owner)
        public
        view
        override
        returns (uint256)
    {
        return
            magnifiedDividendPerShare
                .mul(balanceOf(_owner))
                .toInt256Safe()
                .add(magnifiedDividendCorrections[_owner])
                .toUint256Safe() / magnitude;
    }

    /// @dev Internal function that mints tokens to an account.
    /// Update magnifiedDividendCorrections to keep dividends unchanged.
    /// @param account The account that will receive the created tokens.
    /// @param value The amount that will be created.
    function _mint(address account, uint256 value) internal override {
        super._mint(account, value);

        magnifiedDividendCorrections[account] = magnifiedDividendCorrections[
            account
        ].sub((magnifiedDividendPerShare.mul(value)).toInt256Safe());
    }

    /// @dev Internal function that burns an amount of the token of a given account.
    /// Update magnifiedDividendCorrections to keep dividends unchanged.
    /// @param account The account whose tokens will be burnt.
    /// @param value The amount that will be burnt.
    function _burn(address account, uint256 value) internal override {
        super._burn(account, value);

        magnifiedDividendCorrections[account] = magnifiedDividendCorrections[
            account
        ].add((magnifiedDividendPerShare.mul(value)).toInt256Safe());
    }

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

        if (newBalance > currentBalance) {
            uint256 mintAmount = newBalance.sub(currentBalance);
            _mint(account, mintAmount);
        } else if (newBalance < currentBalance) {
            uint256 burnAmount = currentBalance.sub(newBalance);
            _burn(account, burnAmount);
        }
    }
}

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


library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}


contract DividendTracker is DividendPayingToken, Ownable {
    using SafeMath for uint256;
    using SafeMathInt for int256;
    using IterableMapping for IterableMapping.Map;

    IterableMapping.Map private tokenHoldersMap;

    mapping (address => bool) public excludedFromDividends;

    mapping (address => uint256) public lastClaimTimes;

    uint256 public claimWait;
    uint256 public  minimumTokenBalanceForDividends;

    event ExcludeFromDividends(address indexed account);
    event ClaimWaitUpdated(uint256 indexed newValue, uint256 indexed oldValue);

    event Claim(address indexed account, uint256 amount, bool indexed automatic);

    constructor()  DividendPayingToken("Dividend_Tracker", "Dividend_Tracker") {
    	claimWait = 24 hours;
        minimumTokenBalanceForDividends = 10000 * (10**18); //must hold 10000+ tokens
    }

    function _transfer(address, address, uint256) internal pure override {
        require(false, "Dividend_Tracker: No transfers allowed");
    }

    function withdrawDividend() public pure override {
        require(false, "Dividend_Tracker: withdrawDividend disabled. Use the 'claim' function on the main  contract.");
    }

    /// @dev It will send all ETH to curent contracty owner
    function recoverETH() external onlyOwner {
    
        uint256 ETHbalance = address(this).balance;
        (bool success, ) = payable(owner()).call{value: ETHbalance}("");
        require(success);
        
    }
    
    function excludeFromDividends(address account) external onlyOwner {
    	require(!excludedFromDividends[account]);
    	excludedFromDividends[account] = true;

    	_setBalance(account, 0);
    	tokenHoldersMap.remove(account);

    	emit ExcludeFromDividends(account);
    }

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

    function getAccount(address _account)
        public view returns (
            address account,
            int256 index,
            uint256 withdrawableDividends,
            uint256 totalDividends,
            uint256 lastClaimTime,
            uint256 nextClaimTime,
            uint256 secondsUntilNextClaimAvailable) {
        account = _account;

        index = tokenHoldersMap.getIndexOfKey(account);

        withdrawableDividends = withdrawableDividendOf(account);
        totalDividends = accumulativeDividendOf(account);

        lastClaimTime = lastClaimTimes[account];

        nextClaimTime = lastClaimTime > 0 ?
                                    lastClaimTime.add(claimWait) :
                                    0;

        secondsUntilNextClaimAvailable = nextClaimTime > block.timestamp ?
                                                    nextClaimTime.sub(block.timestamp) :
                                                    0;
    }

    function getAccountAtIndex(uint256 index)
        public view returns (
            address,
            int256,
            uint256,
            uint256,
            uint256,
            uint256,
            uint256) {
    	if(index >= 10) {
            return (0x0000000000000000000000000000000000000000, -1, 0, 0, 0, 0, 0);
        }

        address account = tokenHoldersMap.getKeyAtIndex(index);

        return getAccount(account);
    }

    function setBalance(address payable account, uint256 newBalance) external onlyOwner {
    	if(excludedFromDividends[account]) {
    		return;
    	}

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

    function processAccount(address payable account, bool automatic) public onlyOwner returns (bool) {
        uint256 amount = _withdrawDividendOfUser(account);

    	if(amount > 0) {
    		lastClaimTimes[account] = block.timestamp;
            emit Claim(account, amount, automatic);
    		return true;
    	}

    	return false;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"bool","name":"automatic","type":"bool"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"ClaimWaitUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"weiAmount","type":"uint256"}],"name":"DividendWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"weiAmount","type":"uint256"}],"name":"DividendsDistributed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"ExcludeFromDividends","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"accumulativeDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimWait","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"distributeDividends","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"dividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedFromDividends","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getAccount","outputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"int256","name":"index","type":"int256"},{"internalType":"uint256","name":"withdrawableDividends","type":"uint256"},{"internalType":"uint256","name":"totalDividends","type":"uint256"},{"internalType":"uint256","name":"lastClaimTime","type":"uint256"},{"internalType":"uint256","name":"nextClaimTime","type":"uint256"},{"internalType":"uint256","name":"secondsUntilNextClaimAvailable","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getAccountAtIndex","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"getNumberOfTokenHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastClaimTimes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minimumTokenBalanceForDividends","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"},{"internalType":"bool","name":"automatic","type":"bool"}],"name":"processAccount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"recoverETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"},{"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"setBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawDividend","outputs":[],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"withdrawnDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b5060408051808201825260108082526f2234bb34b232b7322faa3930b1b5b2b960811b602080840182905284518086019095529184529083015290818160036200005c8382620001a0565b5060046200006b8282620001a0565b50505050506200008a62000084620000a560201b60201c565b620000a9565b6201518060105569021e19e0c9bab24000006011556200026c565b3390565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200012657607f821691505b6020821081036200014757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200019b57600081815260208120601f850160051c81016020861015620001765750805b601f850160051c820191505b81811015620001975782815560010162000182565b5050505b505050565b81516001600160401b03811115620001bc57620001bc620000fb565b620001d481620001cd845462000111565b846200014d565b602080601f8311600181146200020c5760008415620001f35750858301515b600019600386901b1c1916600185901b17855562000197565b600085815260208120601f198616915b828110156200023d578886015182559484019460019091019084016200021c565b50858210156200025c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611a98806200027c6000396000f3fe6080604052600436106101d15760003560e01c806370a08231116100f7578063a9059cbb11610095578063dd62ed3e11610064578063dd62ed3e1461055e578063e30443bc146105a4578063f2fde38b146105c4578063fbcbc0f1146105e457600080fd5b8063a9059cbb146104d2578063aafd847a146104f2578063bc4c4b3714610528578063be10b6141461054857600080fd5b80638da5cb5b116100d15780638da5cb5b1461045557806391b89fba1461047d57806395d89b411461049d578063a8b9d240146104b257600080fd5b806370a08231146103f4578063715018a61461042a57806385a6b3ae1461043f57600080fd5b806323b872dd1161016f5780634e7b827f1161013e5780634e7b827f1461033a5780635183d6fd1461036a5780636a474002146103c95780636f2789ec146103de57600080fd5b806323b872dd146102be57806327ce0147146102de578063313ce567146102fe57806331e79db01461031a57600080fd5b8063095ea7b3116101ab578063095ea7b31461022d57806309bbedde1461025d57806318160ddd1461027c578063226cfa3d1461029157600080fd5b806303c83302146101e55780630614117a146101ed57806306fdde031461020257600080fd5b366101e0576101de610604565b005b600080fd5b6101de610604565b3480156101f957600080fd5b506101de610697565b34801561020e57600080fd5b50610217610740565b6040516102249190611744565b60405180910390f35b34801561023957600080fd5b5061024d6102483660046117a7565b6107d2565b6040519015158152602001610224565b34801561026957600080fd5b50600a545b604051908152602001610224565b34801561028857600080fd5b5060025461026e565b34801561029d57600080fd5b5061026e6102ac3660046117d3565b600f6020526000908152604090205481565b3480156102ca57600080fd5b5061024d6102d93660046117f0565b6107e9565b3480156102ea57600080fd5b5061026e6102f93660046117d3565b610852565b34801561030a57600080fd5b5060405160128152602001610224565b34801561032657600080fd5b506101de6103353660046117d3565b6108ae565b34801561034657600080fd5b5061024d6103553660046117d3565b600e6020526000908152604090205460ff1681565b34801561037657600080fd5b5061038a610385366004611831565b6109d5565b604080516001600160a01b0390981688526020880196909652948601939093526060850191909152608084015260a083015260c082015260e001610224565b3480156103d557600080fd5b506101de610aa8565b3480156103ea57600080fd5b5061026e60105481565b34801561040057600080fd5b5061026e61040f3660046117d3565b6001600160a01b031660009081526020819052604090205490565b34801561043657600080fd5b506101de610b3c565b34801561044b57600080fd5b5061026e60085481565b34801561046157600080fd5b506009546040516001600160a01b039091168152602001610224565b34801561048957600080fd5b5061026e6104983660046117d3565b610b70565b3480156104a957600080fd5b50610217610b7b565b3480156104be57600080fd5b5061026e6104cd3660046117d3565b610b8a565b3480156104de57600080fd5b5061024d6104ed3660046117a7565b610bb6565b3480156104fe57600080fd5b5061026e61050d3660046117d3565b6001600160a01b031660009081526007602052604090205490565b34801561053457600080fd5b5061024d61054336600461184a565b610bc3565b34801561055457600080fd5b5061026e60115481565b34801561056a57600080fd5b5061026e610579366004611888565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156105b057600080fd5b506101de6105bf3660046117a7565b610c71565b3480156105d057600080fd5b506101de6105df3660046117d3565b610d9e565b3480156105f057600080fd5b5061038a6105ff3660046117d3565b610e39565b600061060f60025490565b1161061957600080fd5b34156106955761064c61062b60025490565b61063934600160801b610f40565b61064391906118cc565b60055490610fc9565b60055560405134815233907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165119060200160405180910390a26008546106919034610fc9565b6008555b565b6009546001600160a01b031633146106ca5760405162461bcd60e51b81526004016106c1906118ee565b60405180910390fd5b4760006106df6009546001600160a01b031690565b6001600160a01b03168260405160006040518083038185875af1925050503d8060008114610729576040519150601f19603f3d011682016040523d82523d6000602084013e61072e565b606091505b505090508061073c57600080fd5b5050565b60606003805461074f90611923565b80601f016020809104026020016040519081016040528092919081815260200182805461077b90611923565b80156107c85780601f1061079d576101008083540402835291602001916107c8565b820191906000526020600020905b8154815290600101906020018083116107ab57829003601f168201915b5050505050905090565b60006107df338484611028565b5060015b92915050565b60006107f684848461114c565b610848843361084385604051806060016040528060288152602001611a3b602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906111a8565b611028565b5060019392505050565b6001600160a01b03811660009081526006602090815260408083205491839052822054600554600160801b926108a49261089f92610899916108949190610f40565b6111e2565b906111f2565b611230565b6107e391906118cc565b6009546001600160a01b031633146108d85760405162461bcd60e51b81526004016106c1906118ee565b6001600160a01b0381166000908152600e602052604090205460ff16156108fe57600080fd5b6001600160a01b0381166000908152600e60205260408120805460ff1916600117905561092c908290611243565b60405163131836e760e21b8152600a60048201526001600160a01b03821660248201527365be24c6a3b30a23c49d16ea71efb08c281f8ce390634c60db9c9060440160006040518083038186803b15801561098657600080fd5b505af415801561099a573d6000803e3d6000fd5b50506040516001600160a01b03841692507fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b259150600090a250565b6000806000806000806000600a8810610a04575060009550600019945085935083925082915081905080610a9d565b6040516368d54f3f60e11b8152600a6004820152602481018990526000907365be24c6a3b30a23c49d16ea71efb08c281f8ce39063d1aa9e7e90604401602060405180830381865af4158015610a5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a82919061195d565b9050610a8d81610e39565b9750975097509750975097509750505b919395979092949650565b60405162461bcd60e51b815260206004820152605c60248201527f4469766964656e645f547261636b65723a20776974686472617744697669646560448201527f6e642064697361626c65642e20557365207468652027636c61696d272066756e60648201527f6374696f6e206f6e20746865206d61696e2020636f6e74726163742e00000000608482015260a4016106c1565b6009546001600160a01b03163314610b665760405162461bcd60e51b81526004016106c1906118ee565b61069560006112a2565b60006107e382610b8a565b60606004805461074f90611923565b6001600160a01b0381166000908152600760205260408120546107e390610bb084610852565b906112f4565b60006107df33848461114c565b6009546000906001600160a01b03163314610bf05760405162461bcd60e51b81526004016106c1906118ee565b6000610bfb84611336565b90508015610c67576001600160a01b0384166000818152600f6020526040908190204290555184151591907fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf09290610c559085815260200190565b60405180910390a360019150506107e3565b5060009392505050565b6009546001600160a01b03163314610c9b5760405162461bcd60e51b81526004016106c1906118ee565b6001600160a01b0382166000908152600e602052604090205460ff1661073c576011548110610d4c57610cce8282611243565b604051632f0ad01760e21b8152600a60048201526001600160a01b0383166024820152604481018290527365be24c6a3b30a23c49d16ea71efb08c281f8ce39063bc2b405c906064015b60006040518083038186803b158015610d3057600080fd5b505af4158015610d44573d6000803e3d6000fd5b505050505050565b610d57826000611243565b60405163131836e760e21b8152600a60048201526001600160a01b03831660248201527365be24c6a3b30a23c49d16ea71efb08c281f8ce390634c60db9c90604401610d18565b6009546001600160a01b03163314610dc85760405162461bcd60e51b81526004016106c1906118ee565b6001600160a01b038116610e2d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106c1565b610e36816112a2565b50565b6040516317e142d160e01b8152600a60048201526001600160a01b03821660248201528190600090819081908190819081907365be24c6a3b30a23c49d16ea71efb08c281f8ce3906317e142d190604401602060405180830381865af4158015610ea7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ecb919061197a565b9550610ed687610b8a565b9450610ee187610852565b6001600160a01b0388166000908152600f6020526040902054909450925082610f0b576000610f19565b601054610f19908490610fc9565b9150428211610f29576000610f33565b610f3382426112f4565b9050919395979092949650565b600082600003610f52575060006107e3565b6000610f5e8385611993565b905082610f6b85836118cc565b14610fc25760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016106c1565b9392505050565b600080610fd683856119aa565b905083811015610fc25760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016106c1565b6001600160a01b03831661108a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106c1565b6001600160a01b0382166110eb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106c1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60405162461bcd60e51b815260206004820152602660248201527f4469766964656e645f547261636b65723a204e6f207472616e736665727320616044820152651b1b1bddd95960d21b60648201526084016106c1565b505050565b600081848411156111cc5760405162461bcd60e51b81526004016106c19190611744565b5060006111d984866119bd565b95945050505050565b600081818112156107e357600080fd5b6000806111ff83856119d0565b9050600083121580156112125750838112155b80611227575060008312801561122757508381125b610fc257600080fd5b60008082121561123f57600080fd5b5090565b6001600160a01b0382166000908152602081905260409020548082111561128257600061127083836112f4565b905061127c848261147c565b50505050565b808210156111a357600061129682846112f4565b905061127c84826114e0565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000610fc283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506111a8565b60008061134283610b8a565b90508015611473576001600160a01b03831660009081526007602052604090205461136d9082610fc9565b6001600160a01b038416600081815260076020526040908190209290925590517fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d906113bc9084815260200190565b60405180910390a26000836001600160a01b031682610bb890604051600060405180830381858888f193505050503d8060008114611416576040519150601f19603f3d011682016040523d82523d6000602084013e61141b565b606091505b505090508061146c576001600160a01b03841660009081526007602052604090205461144790836112f4565b6001600160a01b03909416600090815260076020526040812094909455509192915050565b5092915050565b50600092915050565b6114868282611524565b6114c06114a161089483600554610f4090919063ffffffff16565b6001600160a01b03841660009081526006602052604090205490611603565b6001600160a01b0390921660009081526006602052604090209190915550565b6114ea8282611640565b6114c061150561089483600554610f4090919063ffffffff16565b6001600160a01b038416600090815260066020526040902054906111f2565b6001600160a01b03821661157a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016106c1565b6002546115879082610fc9565b6002556001600160a01b0382166000908152602081905260409020546115ad9082610fc9565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91015b60405180910390a35050565b60008061161083856119f8565b9050600083121580156116235750838113155b8061122757506000831280156112275750838113610fc257600080fd5b6001600160a01b0382166116a05760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016106c1565b6116dd81604051806060016040528060228152602001611a19602291396001600160a01b03851660009081526020819052604090205491906111a8565b6001600160a01b03831660009081526020819052604090205560025461170390826112f4565b6002556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016115f7565b600060208083528351808285015260005b8181101561177157858101830151858201604001528201611755565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610e3657600080fd5b600080604083850312156117ba57600080fd5b82356117c581611792565b946020939093013593505050565b6000602082840312156117e557600080fd5b8135610fc281611792565b60008060006060848603121561180557600080fd5b833561181081611792565b9250602084013561182081611792565b929592945050506040919091013590565b60006020828403121561184357600080fd5b5035919050565b6000806040838503121561185d57600080fd5b823561186881611792565b91506020830135801515811461187d57600080fd5b809150509250929050565b6000806040838503121561189b57600080fd5b82356118a681611792565b9150602083013561187d81611792565b634e487b7160e01b600052601160045260246000fd5b6000826118e957634e487b7160e01b600052601260045260246000fd5b500490565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061193757607f821691505b60208210810361195757634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561196f57600080fd5b8151610fc281611792565b60006020828403121561198c57600080fd5b5051919050565b80820281158282048414176107e3576107e36118b6565b808201808211156107e3576107e36118b6565b818103818111156107e3576107e36118b6565b80820182811260008312801582168215821617156119f0576119f06118b6565b505092915050565b818103600083128015838313168383128216171561146c5761146c6118b656fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220afa9414a8b43f72a06226a5750c204ae873fb796fefee21954022751dc0f227964736f6c63430008130033

Deployed Bytecode

0x6080604052600436106101d15760003560e01c806370a08231116100f7578063a9059cbb11610095578063dd62ed3e11610064578063dd62ed3e1461055e578063e30443bc146105a4578063f2fde38b146105c4578063fbcbc0f1146105e457600080fd5b8063a9059cbb146104d2578063aafd847a146104f2578063bc4c4b3714610528578063be10b6141461054857600080fd5b80638da5cb5b116100d15780638da5cb5b1461045557806391b89fba1461047d57806395d89b411461049d578063a8b9d240146104b257600080fd5b806370a08231146103f4578063715018a61461042a57806385a6b3ae1461043f57600080fd5b806323b872dd1161016f5780634e7b827f1161013e5780634e7b827f1461033a5780635183d6fd1461036a5780636a474002146103c95780636f2789ec146103de57600080fd5b806323b872dd146102be57806327ce0147146102de578063313ce567146102fe57806331e79db01461031a57600080fd5b8063095ea7b3116101ab578063095ea7b31461022d57806309bbedde1461025d57806318160ddd1461027c578063226cfa3d1461029157600080fd5b806303c83302146101e55780630614117a146101ed57806306fdde031461020257600080fd5b366101e0576101de610604565b005b600080fd5b6101de610604565b3480156101f957600080fd5b506101de610697565b34801561020e57600080fd5b50610217610740565b6040516102249190611744565b60405180910390f35b34801561023957600080fd5b5061024d6102483660046117a7565b6107d2565b6040519015158152602001610224565b34801561026957600080fd5b50600a545b604051908152602001610224565b34801561028857600080fd5b5060025461026e565b34801561029d57600080fd5b5061026e6102ac3660046117d3565b600f6020526000908152604090205481565b3480156102ca57600080fd5b5061024d6102d93660046117f0565b6107e9565b3480156102ea57600080fd5b5061026e6102f93660046117d3565b610852565b34801561030a57600080fd5b5060405160128152602001610224565b34801561032657600080fd5b506101de6103353660046117d3565b6108ae565b34801561034657600080fd5b5061024d6103553660046117d3565b600e6020526000908152604090205460ff1681565b34801561037657600080fd5b5061038a610385366004611831565b6109d5565b604080516001600160a01b0390981688526020880196909652948601939093526060850191909152608084015260a083015260c082015260e001610224565b3480156103d557600080fd5b506101de610aa8565b3480156103ea57600080fd5b5061026e60105481565b34801561040057600080fd5b5061026e61040f3660046117d3565b6001600160a01b031660009081526020819052604090205490565b34801561043657600080fd5b506101de610b3c565b34801561044b57600080fd5b5061026e60085481565b34801561046157600080fd5b506009546040516001600160a01b039091168152602001610224565b34801561048957600080fd5b5061026e6104983660046117d3565b610b70565b3480156104a957600080fd5b50610217610b7b565b3480156104be57600080fd5b5061026e6104cd3660046117d3565b610b8a565b3480156104de57600080fd5b5061024d6104ed3660046117a7565b610bb6565b3480156104fe57600080fd5b5061026e61050d3660046117d3565b6001600160a01b031660009081526007602052604090205490565b34801561053457600080fd5b5061024d61054336600461184a565b610bc3565b34801561055457600080fd5b5061026e60115481565b34801561056a57600080fd5b5061026e610579366004611888565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156105b057600080fd5b506101de6105bf3660046117a7565b610c71565b3480156105d057600080fd5b506101de6105df3660046117d3565b610d9e565b3480156105f057600080fd5b5061038a6105ff3660046117d3565b610e39565b600061060f60025490565b1161061957600080fd5b34156106955761064c61062b60025490565b61063934600160801b610f40565b61064391906118cc565b60055490610fc9565b60055560405134815233907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165119060200160405180910390a26008546106919034610fc9565b6008555b565b6009546001600160a01b031633146106ca5760405162461bcd60e51b81526004016106c1906118ee565b60405180910390fd5b4760006106df6009546001600160a01b031690565b6001600160a01b03168260405160006040518083038185875af1925050503d8060008114610729576040519150601f19603f3d011682016040523d82523d6000602084013e61072e565b606091505b505090508061073c57600080fd5b5050565b60606003805461074f90611923565b80601f016020809104026020016040519081016040528092919081815260200182805461077b90611923565b80156107c85780601f1061079d576101008083540402835291602001916107c8565b820191906000526020600020905b8154815290600101906020018083116107ab57829003601f168201915b5050505050905090565b60006107df338484611028565b5060015b92915050565b60006107f684848461114c565b610848843361084385604051806060016040528060288152602001611a3b602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906111a8565b611028565b5060019392505050565b6001600160a01b03811660009081526006602090815260408083205491839052822054600554600160801b926108a49261089f92610899916108949190610f40565b6111e2565b906111f2565b611230565b6107e391906118cc565b6009546001600160a01b031633146108d85760405162461bcd60e51b81526004016106c1906118ee565b6001600160a01b0381166000908152600e602052604090205460ff16156108fe57600080fd5b6001600160a01b0381166000908152600e60205260408120805460ff1916600117905561092c908290611243565b60405163131836e760e21b8152600a60048201526001600160a01b03821660248201527365be24c6a3b30a23c49d16ea71efb08c281f8ce390634c60db9c9060440160006040518083038186803b15801561098657600080fd5b505af415801561099a573d6000803e3d6000fd5b50506040516001600160a01b03841692507fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b259150600090a250565b6000806000806000806000600a8810610a04575060009550600019945085935083925082915081905080610a9d565b6040516368d54f3f60e11b8152600a6004820152602481018990526000907365be24c6a3b30a23c49d16ea71efb08c281f8ce39063d1aa9e7e90604401602060405180830381865af4158015610a5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a82919061195d565b9050610a8d81610e39565b9750975097509750975097509750505b919395979092949650565b60405162461bcd60e51b815260206004820152605c60248201527f4469766964656e645f547261636b65723a20776974686472617744697669646560448201527f6e642064697361626c65642e20557365207468652027636c61696d272066756e60648201527f6374696f6e206f6e20746865206d61696e2020636f6e74726163742e00000000608482015260a4016106c1565b6009546001600160a01b03163314610b665760405162461bcd60e51b81526004016106c1906118ee565b61069560006112a2565b60006107e382610b8a565b60606004805461074f90611923565b6001600160a01b0381166000908152600760205260408120546107e390610bb084610852565b906112f4565b60006107df33848461114c565b6009546000906001600160a01b03163314610bf05760405162461bcd60e51b81526004016106c1906118ee565b6000610bfb84611336565b90508015610c67576001600160a01b0384166000818152600f6020526040908190204290555184151591907fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf09290610c559085815260200190565b60405180910390a360019150506107e3565b5060009392505050565b6009546001600160a01b03163314610c9b5760405162461bcd60e51b81526004016106c1906118ee565b6001600160a01b0382166000908152600e602052604090205460ff1661073c576011548110610d4c57610cce8282611243565b604051632f0ad01760e21b8152600a60048201526001600160a01b0383166024820152604481018290527365be24c6a3b30a23c49d16ea71efb08c281f8ce39063bc2b405c906064015b60006040518083038186803b158015610d3057600080fd5b505af4158015610d44573d6000803e3d6000fd5b505050505050565b610d57826000611243565b60405163131836e760e21b8152600a60048201526001600160a01b03831660248201527365be24c6a3b30a23c49d16ea71efb08c281f8ce390634c60db9c90604401610d18565b6009546001600160a01b03163314610dc85760405162461bcd60e51b81526004016106c1906118ee565b6001600160a01b038116610e2d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106c1565b610e36816112a2565b50565b6040516317e142d160e01b8152600a60048201526001600160a01b03821660248201528190600090819081908190819081907365be24c6a3b30a23c49d16ea71efb08c281f8ce3906317e142d190604401602060405180830381865af4158015610ea7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ecb919061197a565b9550610ed687610b8a565b9450610ee187610852565b6001600160a01b0388166000908152600f6020526040902054909450925082610f0b576000610f19565b601054610f19908490610fc9565b9150428211610f29576000610f33565b610f3382426112f4565b9050919395979092949650565b600082600003610f52575060006107e3565b6000610f5e8385611993565b905082610f6b85836118cc565b14610fc25760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016106c1565b9392505050565b600080610fd683856119aa565b905083811015610fc25760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016106c1565b6001600160a01b03831661108a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106c1565b6001600160a01b0382166110eb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106c1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60405162461bcd60e51b815260206004820152602660248201527f4469766964656e645f547261636b65723a204e6f207472616e736665727320616044820152651b1b1bddd95960d21b60648201526084016106c1565b505050565b600081848411156111cc5760405162461bcd60e51b81526004016106c19190611744565b5060006111d984866119bd565b95945050505050565b600081818112156107e357600080fd5b6000806111ff83856119d0565b9050600083121580156112125750838112155b80611227575060008312801561122757508381125b610fc257600080fd5b60008082121561123f57600080fd5b5090565b6001600160a01b0382166000908152602081905260409020548082111561128257600061127083836112f4565b905061127c848261147c565b50505050565b808210156111a357600061129682846112f4565b905061127c84826114e0565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000610fc283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506111a8565b60008061134283610b8a565b90508015611473576001600160a01b03831660009081526007602052604090205461136d9082610fc9565b6001600160a01b038416600081815260076020526040908190209290925590517fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d906113bc9084815260200190565b60405180910390a26000836001600160a01b031682610bb890604051600060405180830381858888f193505050503d8060008114611416576040519150601f19603f3d011682016040523d82523d6000602084013e61141b565b606091505b505090508061146c576001600160a01b03841660009081526007602052604090205461144790836112f4565b6001600160a01b03909416600090815260076020526040812094909455509192915050565b5092915050565b50600092915050565b6114868282611524565b6114c06114a161089483600554610f4090919063ffffffff16565b6001600160a01b03841660009081526006602052604090205490611603565b6001600160a01b0390921660009081526006602052604090209190915550565b6114ea8282611640565b6114c061150561089483600554610f4090919063ffffffff16565b6001600160a01b038416600090815260066020526040902054906111f2565b6001600160a01b03821661157a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016106c1565b6002546115879082610fc9565b6002556001600160a01b0382166000908152602081905260409020546115ad9082610fc9565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91015b60405180910390a35050565b60008061161083856119f8565b9050600083121580156116235750838113155b8061122757506000831280156112275750838113610fc257600080fd5b6001600160a01b0382166116a05760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016106c1565b6116dd81604051806060016040528060228152602001611a19602291396001600160a01b03851660009081526020819052604090205491906111a8565b6001600160a01b03831660009081526020819052604090205560025461170390826112f4565b6002556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016115f7565b600060208083528351808285015260005b8181101561177157858101830151858201604001528201611755565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610e3657600080fd5b600080604083850312156117ba57600080fd5b82356117c581611792565b946020939093013593505050565b6000602082840312156117e557600080fd5b8135610fc281611792565b60008060006060848603121561180557600080fd5b833561181081611792565b9250602084013561182081611792565b929592945050506040919091013590565b60006020828403121561184357600080fd5b5035919050565b6000806040838503121561185d57600080fd5b823561186881611792565b91506020830135801515811461187d57600080fd5b809150509250929050565b6000806040838503121561189b57600080fd5b82356118a681611792565b9150602083013561187d81611792565b634e487b7160e01b600052601160045260246000fd5b6000826118e957634e487b7160e01b600052601260045260246000fd5b500490565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061193757607f821691505b60208210810361195757634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561196f57600080fd5b8151610fc281611792565b60006020828403121561198c57600080fd5b5051919050565b80820281158282048414176107e3576107e36118b6565b808201808211156107e3576107e36118b6565b818103818111156107e3576107e36118b6565b80820182811260008312801582168215821617156119f0576119f06118b6565b505092915050565b818103600083128015838313168383128216171561146c5761146c6118b656fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220afa9414a8b43f72a06226a5750c204ae873fb796fefee21954022751dc0f227964736f6c63430008130033

Libraries Used


Deployed Bytecode Sourcemap

42106:4164:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29443:21;:19;:21::i;:::-;42106:4164;;;;;30349:471;;;:::i;43384:219::-;;;;;;;;;;;;;:::i;5985:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8293:210;;;;;;;;;;-1:-1:-1;8293:210:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;8293:210:0;1023:187:1;43906:119:0;;;;;;;;;;-1:-1:-1;43990:15:0;:27;43906:119;;;1361:25:1;;;1349:2;1334:18;43906:119:0;1215:177:1;7105:108:0;;;;;;;;;;-1:-1:-1;7193:12:0;;7105:108;;42407:50;;;;;;;;;;-1:-1:-1;42407:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;8985:454;;;;;;;;;;-1:-1:-1;8985:454:0;;;;;:::i;:::-;;:::i;33777:372::-;;;;;;;;;;-1:-1:-1;33777:372:0;;;;;:::i;:::-;;:::i;6947:93::-;;;;;;;;;;-1:-1:-1;6947:93:0;;7030:2;2252:36:1;;2240:2;2225:18;6947:93:0;2110:184:1;43615:283:0;;;;;;;;;;-1:-1:-1;43615:283:0;;;;;:::i;:::-;;:::i;42344:54::-;;;;;;;;;;-1:-1:-1;42344:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;45027:460;;;;;;;;;;-1:-1:-1;45027:460:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;2815:32:1;;;2797:51;;2879:2;2864:18;;2857:34;;;;2907:18;;;2900:34;;;;2965:2;2950:18;;2943:34;;;;3008:3;2993:19;;2986:35;2835:3;3037:19;;3030:35;3096:3;3081:19;;3074:35;2784:3;2769:19;45027:460:0;2484:631:1;43137:178:0;;;;;;;;;;;;;:::i;42466:24::-;;;;;;;;;;;;;;;;7276:177;;;;;;;;;;-1:-1:-1;7276:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;7427:18:0;7395:7;7427:18;;;;;;;;;;;;7276:177;1693:94;;;;;;;;;;;;;:::i;29177:40::-;;;;;;;;;;;;;;;;1470:87;;;;;;;;;;-1:-1:-1;1543:6:0;;1470:87;;-1:-1:-1;;;;;1543:6:0;;;3266:51:1;;3254:2;3239:18;1470:87:0;3120:203:1;32362:131:0;;;;;;;;;;-1:-1:-1;32362:131:0;;;;;:::i;:::-;;:::i;6204:104::-;;;;;;;;;;;;;:::i;32712:216::-;;;;;;;;;;-1:-1:-1;32712:216:0;;;;;:::i;:::-;;:::i;7666:::-;;;;;;;;;;-1:-1:-1;7666:216:0;;;;;:::i;:::-;;:::i;33149:177::-;;;;;;;;;;-1:-1:-1;33149:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;33292:26:0;33260:7;33292:26;;;:18;:26;;;;;;;33149:177;45924:343;;;;;;;;;;-1:-1:-1;45924:343:0;;;;;:::i;:::-;;:::i;42497:47::-;;;;;;;;;;;;;;;;7945:201;;;;;;;;;;-1:-1:-1;7945:201:0;;;;;:::i;:::-;-1:-1:-1;;;;;8111:18:0;;;8079:7;8111:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7945:201;45495:421;;;;;;;;;;-1:-1:-1;45495:421:0;;;;;:::i;:::-;;:::i;1795:192::-;;;;;;;;;;-1:-1:-1;1795:192:0;;;;;:::i;:::-;;:::i;44033:986::-;;;;;;;;;;-1:-1:-1;44033:986:0;;;;;:::i;:::-;;:::i;30349:471::-;30439:1;30423:13;7193:12;;;7105:108;30423:13;:17;30415:26;;;;;;30458:9;:13;30454:359;;30516:105;30593:13;7193:12;;;7105:108;30593:13;30564:26;30565:9;-1:-1:-1;;;30564:15:0;:26::i;:::-;:42;;;;:::i;:::-;30516:25;;;:29;:105::i;:::-;30488:25;:133;30641:43;;30674:9;1361:25:1;;30662:10:0;;30641:43;;1349:2:1;1334:18;30641:43:0;;;;;;;30729:25;;:72;;30777:9;30729:29;:72::i;:::-;30701:25;:100;30454:359;30349:471::o;43384:219::-;1543:6;;-1:-1:-1;;;;;1543:6:0;971:10;1605:23;1597:68;;;;-1:-1:-1;;;1597:68:0;;;;;;;:::i;:::-;;;;;;;;;43463:21:::1;43442:18;43522:7;1543:6:::0;;-1:-1:-1;;;;;1543:6:0;;1470:87;43522:7:::1;-1:-1:-1::0;;;;;43514:21:0::1;43543:10;43514:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43495:63;;;43577:7;43569:16;;;::::0;::::1;;43425:178;;43384:219::o:0;5985:100::-;6039:13;6072:5;6065:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5985:100;:::o;8293:210::-;8412:4;8434:39;971:10;8457:7;8466:6;8434:8;:39::i;:::-;-1:-1:-1;8491:4:0;8293:210;;;;;:::o;8985:454::-;9125:4;9142:36;9152:6;9160:9;9171:6;9142:9;:36::i;:::-;9189:220;9212:6;971:10;9260:138;9316:6;9260:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9260:19:0;;;;;;:11;:19;;;;;;;;971:10;9260:33;;;;;;;;;;:37;:138::i;:::-;9189:8;:220::i;:::-;-1:-1:-1;9427:4:0;8985:454;;;;;:::o;33777:372::-;-1:-1:-1;;;;;34058:36:0;;33891:7;34058:36;;;:28;:36;;;;;;;;;7427:18;;;;;;;33936:25;;-1:-1:-1;;;28053:6:0;33936:193;;:159;;:99;;:66;;:25;:47;:66::i;:::-;:97;:99::i;:::-;:121;;:159::i;:::-;:191;:193::i;:::-;:205;;;;:::i;43615:283::-;1543:6;;-1:-1:-1;;;;;1543:6:0;971:10;1605:23;1597:68;;;;-1:-1:-1;;;1597:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43698:30:0;::::1;;::::0;;;:21:::1;:30;::::0;;;;;::::1;;43697:31;43689:40;;;::::0;::::1;;-1:-1:-1::0;;;;;43737:30:0;::::1;;::::0;;;:21:::1;:30;::::0;;;;:37;;-1:-1:-1;;43737:37:0::1;43770:4;43737:37;::::0;;43784:23:::1;::::0;43759:7;;43784:11:::1;:23::i;:::-;43815:31;::::0;-1:-1:-1;;;43815:31:0;;:15:::1;:31;::::0;::::1;5992:25:1::0;-1:-1:-1;;;;;6053:32:1;;6033:18;;;6026:60;43815:22:0::1;::::0;::::1;::::0;5965:18:1;;43815:31:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;43861:29:0::1;::::0;-1:-1:-1;;;;;43861:29:0;::::1;::::0;-1:-1:-1;43861:29:0::1;::::0;-1:-1:-1;43861:29:0;;::::1;43615:283:::0;:::o;45027:460::-;45113:7;45135:6;45156:7;45178;45200;45222;45244;45273:2;45264:5;:11;45261:113;;-1:-1:-1;45300:42:0;;-1:-1:-1;;;45344:2:0;-1:-1:-1;45300:42:0;;-1:-1:-1;45300:42:0;;-1:-1:-1;45300:42:0;;-1:-1:-1;45300:42:0;;-1:-1:-1;45300:42:0;45292:70;;45261:113;45404:36;;-1:-1:-1;;;45404:36:0;;:15;:36;;;6301:25:1;6342:18;;;6335:34;;;45386:15:0;;45404:29;;;;6274:18:1;;45404:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45386:54;;45460:19;45471:7;45460:10;:19::i;:::-;45453:26;;;;;;;;;;;;;;;45027:460;;;;;;;;;;:::o;43137:178::-;43197:110;;-1:-1:-1;;;43197:110:0;;6838:2:1;43197:110:0;;;6820:21:1;6877:2;6857:18;;;6850:30;6916:34;6896:18;;;6889:62;6987:34;6967:18;;;6960:62;7059:30;7038:19;;;7031:59;7107:19;;43197:110:0;6636:496:1;1693:94:0;1543:6;;-1:-1:-1;;;;;1543:6:0;971:10;1605:23;1597:68;;;;-1:-1:-1;;;1597:68:0;;;;;;;:::i;:::-;1758:21:::1;1776:1;1758:9;:21::i;32362:131::-:0;32428:7;32455:30;32478:6;32455:22;:30::i;6204:104::-;6260:13;6293:7;6286:14;;;;;:::i;32712:216::-;-1:-1:-1;;;;;32893:26:0;;32826:7;32893:26;;;:18;:26;;;;;;32858:62;;:30;32912:6;32858:22;:30::i;:::-;:34;;:62::i;7666:216::-;7788:4;7810:42;971:10;7834:9;7845:6;7810:9;:42::i;45924:343::-;1543:6;;46015:4;;-1:-1:-1;;;;;1543:6:0;971:10;1605:23;1597:68;;;;-1:-1:-1;;;1597:68:0;;;;;;;:::i;:::-;46032:14:::1;46049:32;46073:7;46049:23;:32::i;:::-;46032:49:::0;-1:-1:-1;46094:10:0;;46091:147:::1;;-1:-1:-1::0;;;;;46115:23:0;::::1;;::::0;;;:14:::1;:23;::::0;;;;;;46141:15:::1;46115:41:::0;;46176:33;;::::1;;::::0;46115:23;46176:33:::1;::::0;::::1;::::0;46191:6;1361:25:1;;1349:2;1334:18;;1215:177;46176:33:0::1;;;;;;;;46225:4;46218:11;;;;;46091:147;-1:-1:-1::0;46254:5:0::1;::::0;45924:343;-1:-1:-1;;;45924:343:0:o;45495:421::-;1543:6;;-1:-1:-1;;;;;1543:6:0;971:10;1605:23;1597:68;;;;-1:-1:-1;;;1597:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45590:30:0;::::1;;::::0;;;:21:::1;:30;::::0;;;;;::::1;;45631:7;45587:59;45672:31;;45658:10;:45;45655:254;;45720:32;45732:7;45741:10;45720:11;:32::i;:::-;45761:40;::::0;-1:-1:-1;;;45761:40:0;;:15:::1;:40;::::0;::::1;7377:25:1::0;-1:-1:-1;;;;;7438:32:1;;7418:18;;;7411:60;7487:18;;;7480:34;;;45761:19:0::1;::::0;::::1;::::0;7350:18:1;;45761:40:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;43425:178;;43384:219::o:0;45655:254::-:1;45837:23;45849:7;45858:1;45837:11;:23::i;:::-;45869:31;::::0;-1:-1:-1;;;45869:31:0;;:15:::1;:31;::::0;::::1;5992:25:1::0;-1:-1:-1;;;;;6053:32:1;;6033:18;;;6026:60;45869:22:0::1;::::0;::::1;::::0;5965:18:1;;45869:31:0::1;5788:304:1::0;1795:192:0;1543:6;;-1:-1:-1;;;;;1543:6:0;971:10;1605:23;1597:68;;;;-1:-1:-1;;;1597:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;1884:22:0;::::1;1876:73;;;::::0;-1:-1:-1;;;1876:73:0;;8044:2:1;1876:73:0::1;::::0;::::1;8026:21:1::0;8083:2;8063:18;;;8056:30;8122:34;8102:18;;;8095:62;-1:-1:-1;;;8173:18:1;;;8166:36;8219:19;;1876:73:0::1;7842:402:1::0;1876:73:0::1;1960:19;1970:8;1960:9;:19::i;:::-;1795:192:::0;:::o;44033:986::-;44415:38;;-1:-1:-1;;;44415:38:0;;:15;:38;;;5992:25:1;-1:-1:-1;;;;;6053:32:1;;6033:18;;;6026:60;44386:8:0;;44115:15;;;;;;;;;;;;44415:29;;;;5965:18:1;;44415:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44407:46;;44490:31;44513:7;44490:22;:31::i;:::-;44466:55;;44549:31;44572:7;44549:22;:31::i;:::-;-1:-1:-1;;;;;44609:23:0;;;;;;:14;:23;;;;;;44532:48;;-1:-1:-1;44609:23:0;-1:-1:-1;44661:17:0;:126;;44786:1;44661:126;;;44736:9;;44718:28;;:13;;:17;:28::i;:::-;44645:142;;44849:15;44833:13;:31;:178;;45010:1;44833:178;;;44920:34;:13;44938:15;44920:17;:34::i;:::-;44800:211;;44033:986;;;;;;;;;:::o;38998:471::-;39056:7;39301:1;39306;39301:6;39297:47;;-1:-1:-1;39331:1:0;39324:8;;39297:47;39356:9;39368:5;39372:1;39368;:5;:::i;:::-;39356:17;-1:-1:-1;39401:1:0;39392:5;39396:1;39356:17;39392:5;:::i;:::-;:10;39384:56;;;;-1:-1:-1;;;39384:56:0;;8812:2:1;39384:56:0;;;8794:21:1;8851:2;8831:18;;;8824:30;8890:34;8870:18;;;8863:62;-1:-1:-1;;;8941:18:1;;;8934:31;8982:19;;39384:56:0;8610:397:1;39384:56:0;39460:1;38998:471;-1:-1:-1;;;38998:471:0:o;37644:181::-;37702:7;;37734:5;37738:1;37734;:5;:::i;:::-;37722:17;;37763:1;37758;:6;;37750:46;;;;-1:-1:-1;;;37750:46:0;;9344:2:1;37750:46:0;;;9326:21:1;9383:2;9363:18;;;9356:30;9422:29;9402:18;;;9395:57;9469:18;;37750:46:0;9142:351:1;12432:380:0;-1:-1:-1;;;;;12568:19:0;;12560:68;;;;-1:-1:-1;;;12560:68:0;;9700:2:1;12560:68:0;;;9682:21:1;9739:2;9719:18;;;9712:30;9778:34;9758:18;;;9751:62;-1:-1:-1;;;9829:18:1;;;9822:34;9873:19;;12560:68:0;9498:400:1;12560:68:0;-1:-1:-1;;;;;12647:21:0;;12639:68;;;;-1:-1:-1;;;12639:68:0;;10105:2:1;12639:68:0;;;10087:21:1;10144:2;10124:18;;;10117:30;10183:34;10163:18;;;10156:62;-1:-1:-1;;;10234:18:1;;;10227:32;10276:19;;12639:68:0;9903:398:1;12639:68:0;-1:-1:-1;;;;;12720:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;12772:32;;1361:25:1;;;12772:32:0;;1334:18:1;12772:32:0;;;;;;;12432:380;;;:::o;42985:144::-;43065:56;;-1:-1:-1;;;43065:56:0;;10508:2:1;43065:56:0;;;10490:21:1;10547:2;10527:18;;;10520:30;10586:34;10566:18;;;10559:62;-1:-1:-1;;;10637:18:1;;;10630:36;10683:19;;43065:56:0;10306:402:1;43065:56:0;42985:144;;;:::o;38547:192::-;38633:7;38669:12;38661:6;;;;38653:29;;;;-1:-1:-1;;;38653:29:0;;;;;;;;:::i;:::-;-1:-1:-1;38693:9:0;38705:5;38709:1;38705;:5;:::i;:::-;38693:17;38547:192;-1:-1:-1;;;;;38547:192:0:o;4605:134::-;4661:6;4694:1;4711:6;;;;4703:15;;;;;4162:176;4218:6;;4248:5;4252:1;4248;:5;:::i;:::-;4237:16;;4278:1;4273;:6;;:16;;;;;4288:1;4283;:6;;4273:16;4272:38;;;;4299:1;4295;:5;:14;;;;;4308:1;4304;:5;4295:14;4264:47;;;;;4346:127;4402:7;4435:1;4430;:6;;4422:15;;;;;;-1:-1:-1;4463:1:0;4346:127::o;35286:451::-;-1:-1:-1;;;;;7427:18:0;;35364:22;7427:18;;;;;;;;;;;35424:27;;;35420:310;;;35468:18;35489:30;:10;35504:14;35489;:30::i;:::-;35468:51;;35534:26;35540:7;35549:10;35534:5;:26::i;:::-;35453:119;42985:144;;;:::o;35420:310::-;35595:14;35582:10;:27;35578:152;;;35626:18;35647:30;:14;35666:10;35647:18;:30::i;:::-;35626:51;;35692:26;35698:7;35707:10;35692:5;:26::i;1995:173::-;2070:6;;;-1:-1:-1;;;;;2087:17:0;;;-1:-1:-1;;;;;;2087:17:0;;;;;;;2120:40;;2070:6;;;2087:17;2070:6;;2120:40;;2051:16;;2120:40;2040:128;1995:173;:::o;38108:136::-;38166:7;38193:43;38197:1;38200;38193:43;;;;;;;;;;;;;;;;;:3;:43::i;31285:858::-;31393:7;31418:29;31450:28;31473:4;31450:22;:28::i;:::-;31418:60;-1:-1:-1;31493:25:0;;31489:626;;-1:-1:-1;;;;;31562:24:0;;;;;;:18;:24;;;;;;:83;;31609:21;31562:28;:83::i;:::-;-1:-1:-1;;;;;31535:24:0;;;;;;:18;:24;;;;;;;:110;;;;31665:46;;;;;;31689:21;1361:25:1;;1349:2;1334:18;;1215:177;31665:46:0;;;;;;;;31727:12;31745:4;-1:-1:-1;;;;;31745:9:0;31780:21;31825:4;31745:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31726:122;;;31870:7;31865:194;;-1:-1:-1;;;;;31925:24:0;;;;;;:18;:24;;;;;;:91;;31976:21;31925:28;:91::i;:::-;-1:-1:-1;;;;;31898:24:0;;;;;;;:18;:24;;;;;:118;;;;-1:-1:-1;31898:24:0;;31285:858;-1:-1:-1;;31285:858:0:o;31865:194::-;-1:-1:-1;32082:21:0;31285:858;-1:-1:-1;;31285:858:0:o;31489:626::-;-1:-1:-1;32134:1:0;;31285:858;-1:-1:-1;;31285:858:0:o;34425:284::-;34501:27;34513:7;34522:5;34501:11;:27::i;:::-;34581:120;34647:53;34648:36;34678:5;34648:25;;:29;;:36;;;;:::i;34647:53::-;-1:-1:-1;;;;;34581:61:0;;;;;;:28;:61;;;;;;;:65;:120::i;:::-;-1:-1:-1;;;;;34541:37:0;;;;;;;:28;:37;;;;;:160;;;;-1:-1:-1;34425:284:0:o;34994:::-;35070:27;35082:7;35091:5;35070:11;:27::i;:::-;35150:120;35216:53;35217:36;35247:5;35217:25;;:29;;:36;;;;:::i;35216:53::-;-1:-1:-1;;;;;35150:61:0;;;;;;:28;:61;;;;;;;:65;:120::i;10828:378::-;-1:-1:-1;;;;;10912:21:0;;10904:65;;;;-1:-1:-1;;;10904:65:0;;11269:2:1;10904:65:0;;;11251:21:1;11308:2;11288:18;;;11281:30;11347:33;11327:18;;;11320:61;11398:18;;10904:65:0;11067:355:1;10904:65:0;11059:12;;:24;;11076:6;11059:16;:24::i;:::-;11044:12;:39;-1:-1:-1;;;;;11115:18:0;;:9;:18;;;;;;;;;;;:30;;11138:6;11115:22;:30::i;:::-;-1:-1:-1;;;;;11094:18:0;;:9;:18;;;;;;;;;;;:51;;;;11161:37;;1361:25:1;;;11094:18:0;;:9;;11161:37;;1334:18:1;11161:37:0;;;;;;;;10828:378;;:::o;3898:176::-;3954:6;;3984:5;3988:1;3984;:5;:::i;:::-;3973:16;;4014:1;4009;:6;;:16;;;;;4024:1;4019;:6;;4009:16;4008:38;;;;4035:1;4031;:5;:14;;;;;4044:1;4040;:5;4000:47;;;;;11539:455;-1:-1:-1;;;;;11623:21:0;;11615:67;;;;-1:-1:-1;;;11615:67:0;;11834:2:1;11615:67:0;;;11816:21:1;11873:2;11853:18;;;11846:30;11912:34;11892:18;;;11885:62;-1:-1:-1;;;11963:18:1;;;11956:31;12004:19;;11615:67:0;11632:397:1;11615:67:0;11778:105;11815:6;11778:105;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11778:18:0;;:9;:18;;;;;;;;;;;;:105;:22;:105::i;:::-;-1:-1:-1;;;;;11757:18:0;;:9;:18;;;;;;;;;;:126;11909:12;;:24;;11926:6;11909:16;:24::i;:::-;11894:12;:39;11949:37;;1361:25:1;;;11975:1:0;;-1:-1:-1;;;;;11949:37:0;;;;;1349:2:1;1334:18;11949:37:0;1215:177:1;14:548;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:247::-;1456:6;1509:2;1497:9;1488:7;1484:23;1480:32;1477:52;;;1525:1;1522;1515:12;1477:52;1564:9;1551:23;1583:31;1608:5;1583:31;:::i;1649:456::-;1726:6;1734;1742;1795:2;1783:9;1774:7;1770:23;1766:32;1763:52;;;1811:1;1808;1801:12;1763:52;1850:9;1837:23;1869:31;1894:5;1869:31;:::i;:::-;1919:5;-1:-1:-1;1976:2:1;1961:18;;1948:32;1989:33;1948:32;1989:33;:::i;:::-;1649:456;;2041:7;;-1:-1:-1;;;2095:2:1;2080:18;;;;2067:32;;1649:456::o;2299:180::-;2358:6;2411:2;2399:9;2390:7;2386:23;2382:32;2379:52;;;2427:1;2424;2417:12;2379:52;-1:-1:-1;2450:23:1;;2299:180;-1:-1:-1;2299:180:1:o;3328:424::-;3401:6;3409;3462:2;3450:9;3441:7;3437:23;3433:32;3430:52;;;3478:1;3475;3468:12;3430:52;3517:9;3504:23;3536:31;3561:5;3536:31;:::i;:::-;3586:5;-1:-1:-1;3643:2:1;3628:18;;3615:32;3685:15;;3678:23;3666:36;;3656:64;;3716:1;3713;3706:12;3656:64;3739:7;3729:17;;;3328:424;;;;;:::o;3757:388::-;3825:6;3833;3886:2;3874:9;3865:7;3861:23;3857:32;3854:52;;;3902:1;3899;3892:12;3854:52;3941:9;3928:23;3960:31;3985:5;3960:31;:::i;:::-;4010:5;-1:-1:-1;4067:2:1;4052:18;;4039:32;4080:33;4039:32;4080:33;:::i;4478:127::-;4539:10;4534:3;4530:20;4527:1;4520:31;4570:4;4567:1;4560:15;4594:4;4591:1;4584:15;4610:217;4650:1;4676;4666:132;;4720:10;4715:3;4711:20;4708:1;4701:31;4755:4;4752:1;4745:15;4783:4;4780:1;4773:15;4666:132;-1:-1:-1;4812:9:1;;4610:217::o;4832:356::-;5034:2;5016:21;;;5053:18;;;5046:30;5112:34;5107:2;5092:18;;5085:62;5179:2;5164:18;;4832:356::o;5403:380::-;5482:1;5478:12;;;;5525;;;5546:61;;5600:4;5592:6;5588:17;5578:27;;5546:61;5653:2;5645:6;5642:14;5622:18;5619:38;5616:161;;5699:10;5694:3;5690:20;5687:1;5680:31;5734:4;5731:1;5724:15;5762:4;5759:1;5752:15;5616:161;;5403:380;;;:::o;6380:251::-;6450:6;6503:2;6491:9;6482:7;6478:23;6474:32;6471:52;;;6519:1;6516;6509:12;6471:52;6551:9;6545:16;6570:31;6595:5;6570:31;:::i;8249:183::-;8318:6;8371:2;8359:9;8350:7;8346:23;8342:32;8339:52;;;8387:1;8384;8377:12;8339:52;-1:-1:-1;8410:16:1;;8249:183;-1:-1:-1;8249:183:1:o;8437:168::-;8510:9;;;8541;;8558:15;;;8552:22;;8538:37;8528:71;;8579:18;;:::i;9012:125::-;9077:9;;;9098:10;;;9095:36;;;9111:18;;:::i;10713:128::-;10780:9;;;10801:11;;;10798:37;;;10815:18;;:::i;10846:216::-;10910:9;;;10938:11;;;10885:3;10968:9;;10996:10;;10992:19;;11021:10;;11013:19;;10989:44;10986:70;;;11036:18;;:::i;:::-;10986:70;;10846:216;;;;:::o;11427:200::-;11493:9;;;11466:4;11521:9;;11549:10;;11561:12;;;11545:29;11584:12;;;11576:21;;11542:56;11539:82;;;11601:18;;:::i

Swarm Source

ipfs://afa9414a8b43f72a06226a5750c204ae873fb796fefee21954022751dc0f2279
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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