ETH Price: $2,673.45 (+2.57%)

Token

EverETH (EETH)
 

Overview

Max Total Supply

1,000,000,000 EETH

Holders

221 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 EETH

Value
$0.00
0x2724921b32aa53605068d15774f42298d17b8006
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Building dApps and protocols for the Ethereum network .

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
EverETH

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-16
*/

/**

███████ ███████ ████████ ██   ██ 
██      ██         ██    ██   ██ 
█████   █████      ██    ███████ 
██      ██         ██    ██   ██ 
███████ ███████    ██    ██   ██ 
                                                                 
*/
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);
    }
}



/**
 * @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 EverETH is Context, ERC20, Ownable {
    using SafeMath for uint256;

    EverETHDividendTracker public dividendTracker;
    address constant deadWallet = 0x000000000000000000000000000000000000dEaD;

    constructor() ERC20("EverETH", "EETH"){

          dividendTracker = new  EverETHDividendTracker();

        // exclude from receiving dividends
        dividendTracker.excludeFromDividends(address(dividendTracker));
        dividendTracker.excludeFromDividends(address(this));
        dividendTracker.excludeFromDividends(deadWallet);
        _mint(owner(), 1000000000 * (10**18));
      
    }
    
    receive() external payable {}

    /// @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 recoverERC20(address tokenAddress, uint256 tokenAmount) external  onlyOwner {
        require(tokenAddress != address(this), "Cannot withdraw contract's own tokens");
        IERC20(tokenAddress).transfer(owner(), tokenAmount);
    
    }

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

    }

    function updateDividendTracker(address newAddress) public onlyOwner {

       dividendTracker.recoverETH();

       EverETHDividendTracker newDividendTracker = EverETHDividendTracker(payable(newAddress));
        newDividendTracker.excludeFromDividends(
            address(newDividendTracker)
        );
        newDividendTracker.excludeFromDividends(address(this));
        newDividendTracker.excludeFromDividends(owner());
        newDividendTracker.excludeFromDividends(deadWallet);
        dividendTracker = newDividendTracker;
    }

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

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

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

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

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

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

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

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

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

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        super._transfer(from, to, amount);
          try dividendTracker.setBalance(payable(from), balanceOf(from)) {} catch {}
          try dividendTracker.setBalance(payable(to), balanceOf(to)) {} catch {}

        
    }
}


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 EverETHDividendTracker 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("EverETH_Dividend_Tracker", "EverETH_Dividend_Tracker") {
    	claimWait = 24 hours;
        minimumTokenBalanceForDividends = 10000 * (10**18); //must hold 10000+ tokens
    }

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

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

    function updateMinimumTokenBalanceForDividends(uint256 _newMinimumBalance) external onlyOwner {
        minimumTokenBalanceForDividends = _newMinimumBalance * (10**18);
    }

    /// @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 updateClaimWait(uint256 newClaimWait) external onlyOwner {
        require(newClaimWait >= 24 hours && newClaimWait <= 7 days, "EverETH_Dividend_Tracker: claimWait must be updated to between 24 hours and 7 days");
        require(newClaimWait != claimWait, "EverETH_Dividend_Tracker: Cannot update claimWait to same value");
        emit ClaimWaitUpdated(newClaimWait, claimWait);
        claimWait = newClaimWait;
    }

    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 >= tokenHoldersMap.size()) {
            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":"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"},{"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":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"dividendTokenBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract EverETHDividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountDividendsInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getAccountDividendsInfoAtIndex","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"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":"getNumberOfDividendTokenHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"recoverETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"uint256","name":"claimWait","type":"uint256"}],"name":"updateClaimWait","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b506040518060400160405280600781526020017f45766572455448000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f454554480000000000000000000000000000000000000000000000000000000081525081600390816200008f9190620008c6565b508060049081620000a19190620008c6565b505050620000c4620000b86200033a60201b60201c565b6200034260201b60201c565b604051620000d2906200063e565b604051809103906000f080158015620000ef573d6000803e3d6000fd5b50600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401620001af9190620009f2565b600060405180830381600087803b158015620001ca57600080fd5b505af1158015620001df573d6000803e3d6000fd5b50505050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0306040518263ffffffff1660e01b8152600401620002409190620009f2565b600060405180830381600087803b1580156200025b57600080fd5b505af115801562000270573d6000803e3d6000fd5b50505050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db061dead6040518263ffffffff1660e01b8152600401620002d39190620009f2565b600060405180830381600087803b158015620002ee57600080fd5b505af115801562000303573d6000803e3d6000fd5b50505050620003346200031b6200040860201b60201c565b6b033b2e3c9fd0803ce80000006200043260201b60201c565b62000b9c565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200049b9062000a70565b60405180910390fd5b620004b860008383620005d660201b60201c565b620004cf81600254620005db60201b90919060201c565b60028190555062000528816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620005db60201b90919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620005ca919062000aa3565b60405180910390a35050565b505050565b6000808284620005ec919062000aef565b90508381101562000634576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200062b9062000b7a565b60405180910390fd5b8091505092915050565b613c6380620036d683390190565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006ce57607f821691505b602082108103620006e457620006e362000686565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200074e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200070f565b6200075a86836200070f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620007a7620007a16200079b8462000772565b6200077c565b62000772565b9050919050565b6000819050919050565b620007c38362000786565b620007db620007d282620007ae565b8484546200071c565b825550505050565b600090565b620007f2620007e3565b620007ff818484620007b8565b505050565b5b8181101562000827576200081b600082620007e8565b60018101905062000805565b5050565b601f82111562000876576200084081620006ea565b6200084b84620006ff565b810160208510156200085b578190505b620008736200086a85620006ff565b83018262000804565b50505b505050565b600082821c905092915050565b60006200089b600019846008026200087b565b1980831691505092915050565b6000620008b6838362000888565b9150826002028217905092915050565b620008d1826200064c565b67ffffffffffffffff811115620008ed57620008ec62000657565b5b620008f98254620006b5565b620009068282856200082b565b600060209050601f8311600181146200093e576000841562000929578287015190505b620009358582620008a8565b865550620009a5565b601f1984166200094e86620006ea565b60005b82811015620009785784890151825560018201915060208501945060208101905062000951565b8683101562000998578489015162000994601f89168262000888565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620009da82620009ad565b9050919050565b620009ec81620009cd565b82525050565b600060208201905062000a096000830184620009e1565b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000a58601f8362000a0f565b915062000a658262000a20565b602082019050919050565b6000602082019050818103600083015262000a8b8162000a49565b9050919050565b62000a9d8162000772565b82525050565b600060208201905062000aba600083018462000a92565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000afc8262000772565b915062000b098362000772565b925082820190508082111562000b245762000b2362000ac0565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062000b62601b8362000a0f565b915062000b6f8262000b2a565b602082019050919050565b6000602082019050818103600083015262000b958162000b53565b9050919050565b612b2a8062000bac6000396000f3fe60806040526004361061016a5760003560e01c806370a08231116100d1578063a8b9d2401161008a578063dd62ed3e11610064578063dd62ed3e1461053f578063e98030c71461057c578063f27fd254146105a5578063f2fde38b146105e857610171565b8063a8b9d24014610482578063a9059cbb146104bf578063ad56c13c146104fc57610171565b806370a0823114610386578063715018a6146103c357806388bdd9be146103da5780638980f11f146104035780638da5cb5b1461042c57806395d89b411461045757610171565b806330bb4cff1161012357806330bb4cff14610288578063313ce567146102b357806331e79db0146102de5780634e71d92d1461030757806364b0f6531461031e5780636843cd841461034957610171565b80630614117a1461017657806306fdde031461018d578063095ea7b3146101b857806318160ddd146101f557806323b872dd146102205780632c1f52161461025d57610171565b3661017157005b600080fd5b34801561018257600080fd5b5061018b610611565b005b34801561019957600080fd5b506101a2610713565b6040516101af9190611f60565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da919061201b565b6107a5565b6040516101ec9190612076565b60405180910390f35b34801561020157600080fd5b5061020a6107c3565b60405161021791906120a0565b60405180910390f35b34801561022c57600080fd5b50610247600480360381019061024291906120bb565b6107cd565b6040516102549190612076565b60405180910390f35b34801561026957600080fd5b506102726108a6565b60405161027f919061216d565b60405180910390f35b34801561029457600080fd5b5061029d6108cc565b6040516102aa91906120a0565b60405180910390f35b3480156102bf57600080fd5b506102c8610964565b6040516102d591906121a4565b60405180910390f35b3480156102ea57600080fd5b50610305600480360381019061030091906121bf565b61096d565b005b34801561031357600080fd5b5061031c610a79565b005b34801561032a57600080fd5b50610333610b1d565b60405161034091906120a0565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b91906121bf565b610bb5565b60405161037d91906120a0565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a891906121bf565b610c5a565b6040516103ba91906120a0565b60405180910390f35b3480156103cf57600080fd5b506103d8610ca2565b005b3480156103e657600080fd5b5061040160048036038101906103fc91906121bf565b610d2a565b005b34801561040f57600080fd5b5061042a6004803603810190610425919061201b565b611027565b005b34801561043857600080fd5b5061044161119b565b60405161044e91906121fb565b60405180910390f35b34801561046357600080fd5b5061046c6111c5565b6040516104799190611f60565b60405180910390f35b34801561048e57600080fd5b506104a960048036038101906104a491906121bf565b611257565b6040516104b691906120a0565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e1919061201b565b6112fc565b6040516104f39190612076565b60405180910390f35b34801561050857600080fd5b50610523600480360381019061051e91906121bf565b61131a565b604051610536979695949392919061222f565b60405180910390f35b34801561054b57600080fd5b506105666004803603810190610561919061229e565b6113da565b60405161057391906120a0565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e91906122de565b611461565b005b3480156105b157600080fd5b506105cc60048036038101906105c791906122de565b61156d565b6040516105df979695949392919061222f565b60405180910390f35b3480156105f457600080fd5b5061060f600480360381019061060a91906121bf565b61162d565b005b610619611724565b73ffffffffffffffffffffffffffffffffffffffff1661063761119b565b73ffffffffffffffffffffffffffffffffffffffff161461068d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068490612357565b60405180910390fd5b6000479050600061069c61119b565b73ffffffffffffffffffffffffffffffffffffffff16826040516106bf906123a8565b60006040518083038185875af1925050503d80600081146106fc576040519150601f19603f3d011682016040523d82523d6000602084013e610701565b606091505b505090508061070f57600080fd5b5050565b606060038054610722906123ec565b80601f016020809104026020016040519081016040528092919081815260200182805461074e906123ec565b801561079b5780601f106107705761010080835404028352916020019161079b565b820191906000526020600020905b81548152906001019060200180831161077e57829003601f168201915b5050505050905090565b60006107b96107b2611724565b848461172c565b6001905092915050565b6000600254905090565b60006107da8484846118f5565b61089b846107e6611724565b61089685604051806060016040528060288152602001612acd60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061084c611724565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ab09092919063ffffffff16565b61172c565b600190509392505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166385a6b3ae6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561093b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095f9190612432565b905090565b60006012905090565b610975611724565b73ffffffffffffffffffffffffffffffffffffffff1661099361119b565b73ffffffffffffffffffffffffffffffffffffffff16146109e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e090612357565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0826040518263ffffffff1660e01b8152600401610a4491906121fb565b600060405180830381600087803b158015610a5e57600080fd5b505af1158015610a72573d6000803e3d6000fd5b5050505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bc4c4b373360006040518363ffffffff1660e01b8152600401610ad7929190612480565b6020604051808303816000875af1158015610af6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b1a91906124d5565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166309bbedde6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb09190612432565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b8152600401610c1291906121fb565b602060405180830381865afa158015610c2f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c539190612432565b9050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610caa611724565b73ffffffffffffffffffffffffffffffffffffffff16610cc861119b565b73ffffffffffffffffffffffffffffffffffffffff1614610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1590612357565b60405180910390fd5b610d286000611b14565b565b610d32611724565b73ffffffffffffffffffffffffffffffffffffffff16610d5061119b565b73ffffffffffffffffffffffffffffffffffffffff1614610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d90612357565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630614117a6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610e1057600080fd5b505af1158015610e24573d6000803e3d6000fd5b5050505060008190508073ffffffffffffffffffffffffffffffffffffffff166331e79db0826040518263ffffffff1660e01b8152600401610e6691906121fb565b600060405180830381600087803b158015610e8057600080fd5b505af1158015610e94573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff166331e79db0306040518263ffffffff1660e01b8152600401610ed191906121fb565b600060405180830381600087803b158015610eeb57600080fd5b505af1158015610eff573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff166331e79db0610f2761119b565b6040518263ffffffff1660e01b8152600401610f4391906121fb565b600060405180830381600087803b158015610f5d57600080fd5b505af1158015610f71573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff166331e79db061dead6040518263ffffffff1660e01b8152600401610fb091906121fb565b600060405180830381600087803b158015610fca57600080fd5b505af1158015610fde573d6000803e3d6000fd5b5050505080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b61102f611724565b73ffffffffffffffffffffffffffffffffffffffff1661104d61119b565b73ffffffffffffffffffffffffffffffffffffffff16146110a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109a90612357565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611111576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110890612574565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61113561119b565b836040518363ffffffff1660e01b8152600401611153929190612594565b6020604051808303816000875af1158015611172573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061119691906124d5565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546111d4906123ec565b80601f0160208091040260200160405190810160405280929190818152602001828054611200906123ec565b801561124d5780601f106112225761010080835404028352916020019161124d565b820191906000526020600020905b81548152906001019060200180831161123057829003601f168201915b5050505050905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a8b9d240836040518263ffffffff1660e01b81526004016112b491906121fb565b602060405180830381865afa1580156112d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112f59190612432565b9050919050565b6000611310611309611724565b84846118f5565b6001905092915050565b6000806000806000806000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fbcbc0f1896040518263ffffffff1660e01b815260040161138091906121fb565b60e060405180830381865afa15801561139d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113c191906125fe565b9650965096509650965096509650919395979092949650565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611469611724565b73ffffffffffffffffffffffffffffffffffffffff1661148761119b565b73ffffffffffffffffffffffffffffffffffffffff16146114dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d490612357565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e98030c7826040518263ffffffff1660e01b815260040161153891906120a0565b600060405180830381600087803b15801561155257600080fd5b505af1158015611566573d6000803e3d6000fd5b5050505050565b6000806000806000806000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635183d6fd896040518263ffffffff1660e01b81526004016115d391906120a0565b60e060405180830381865afa1580156115f0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061161491906125fe565b9650965096509650965096509650919395979092949650565b611635611724565b73ffffffffffffffffffffffffffffffffffffffff1661165361119b565b73ffffffffffffffffffffffffffffffffffffffff16146116a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a090612357565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170f90612712565b60405180910390fd5b61172181611b14565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361179b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611792906127a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361180a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180190612836565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516118e891906120a0565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195b906128c8565b60405180910390fd5b6000810361197d5761197883836000611bda565b611aab565b611988838383611bda565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc846119d086610c5a565b6040518363ffffffff1660e01b81526004016119ed9291906128e8565b600060405180830381600087803b158015611a0757600080fd5b505af1925050508015611a18575060015b50600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc83611a6185610c5a565b6040518363ffffffff1660e01b8152600401611a7e9291906128e8565b600060405180830381600087803b158015611a9857600080fd5b505af1925050508015611aa9575060015b505b505050565b6000838311158290611af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aef9190611f60565b60405180910390fd5b5060008385611b079190612940565b9050809150509392505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c40906128c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caf906129e6565b60405180910390fd5b611cc3838383611e6d565b611d2e81604051806060016040528060268152602001612aa7602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ab09092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611dc1816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e7290919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611e6091906120a0565b60405180910390a3505050565b505050565b6000808284611e819190612a06565b905083811015611ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebd90612a86565b60405180910390fd5b8091505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611f0a578082015181840152602081019050611eef565b60008484015250505050565b6000601f19601f8301169050919050565b6000611f3282611ed0565b611f3c8185611edb565b9350611f4c818560208601611eec565b611f5581611f16565b840191505092915050565b60006020820190508181036000830152611f7a8184611f27565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611fb282611f87565b9050919050565b611fc281611fa7565b8114611fcd57600080fd5b50565b600081359050611fdf81611fb9565b92915050565b6000819050919050565b611ff881611fe5565b811461200357600080fd5b50565b60008135905061201581611fef565b92915050565b6000806040838503121561203257612031611f82565b5b600061204085828601611fd0565b925050602061205185828601612006565b9150509250929050565b60008115159050919050565b6120708161205b565b82525050565b600060208201905061208b6000830184612067565b92915050565b61209a81611fe5565b82525050565b60006020820190506120b56000830184612091565b92915050565b6000806000606084860312156120d4576120d3611f82565b5b60006120e286828701611fd0565b93505060206120f386828701611fd0565b925050604061210486828701612006565b9150509250925092565b6000819050919050565b600061213361212e61212984611f87565b61210e565b611f87565b9050919050565b600061214582612118565b9050919050565b60006121578261213a565b9050919050565b6121678161214c565b82525050565b6000602082019050612182600083018461215e565b92915050565b600060ff82169050919050565b61219e81612188565b82525050565b60006020820190506121b96000830184612195565b92915050565b6000602082840312156121d5576121d4611f82565b5b60006121e384828501611fd0565b91505092915050565b6121f581611fa7565b82525050565b600060208201905061221060008301846121ec565b92915050565b6000819050919050565b61222981612216565b82525050565b600060e082019050612244600083018a6121ec565b6122516020830189612220565b61225e6040830188612091565b61226b6060830187612091565b6122786080830186612091565b61228560a0830185612091565b61229260c0830184612091565b98975050505050505050565b600080604083850312156122b5576122b4611f82565b5b60006122c385828601611fd0565b92505060206122d485828601611fd0565b9150509250929050565b6000602082840312156122f4576122f3611f82565b5b600061230284828501612006565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612341602083611edb565b915061234c8261230b565b602082019050919050565b6000602082019050818103600083015261237081612334565b9050919050565b600081905092915050565b50565b6000612392600083612377565b915061239d82612382565b600082019050919050565b60006123b382612385565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061240457607f821691505b602082108103612417576124166123bd565b5b50919050565b60008151905061242c81611fef565b92915050565b60006020828403121561244857612447611f82565b5b60006124568482850161241d565b91505092915050565b600061246a82611f87565b9050919050565b61247a8161245f565b82525050565b60006040820190506124956000830185612471565b6124a26020830184612067565b9392505050565b6124b28161205b565b81146124bd57600080fd5b50565b6000815190506124cf816124a9565b92915050565b6000602082840312156124eb576124ea611f82565b5b60006124f9848285016124c0565b91505092915050565b7f43616e6e6f7420776974686472617720636f6e74726163742773206f776e207460008201527f6f6b656e73000000000000000000000000000000000000000000000000000000602082015250565b600061255e602583611edb565b915061256982612502565b604082019050919050565b6000602082019050818103600083015261258d81612551565b9050919050565b60006040820190506125a960008301856121ec565b6125b66020830184612091565b9392505050565b6000815190506125cc81611fb9565b92915050565b6125db81612216565b81146125e657600080fd5b50565b6000815190506125f8816125d2565b92915050565b600080600080600080600060e0888a03121561261d5761261c611f82565b5b600061262b8a828b016125bd565b975050602061263c8a828b016125e9565b965050604061264d8a828b0161241d565b955050606061265e8a828b0161241d565b945050608061266f8a828b0161241d565b93505060a06126808a828b0161241d565b92505060c06126918a828b0161241d565b91505092959891949750929550565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006126fc602683611edb565b9150612707826126a0565b604082019050919050565b6000602082019050818103600083015261272b816126ef565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061278e602483611edb565b915061279982612732565b604082019050919050565b600060208201905081810360008301526127bd81612781565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612820602283611edb565b915061282b826127c4565b604082019050919050565b6000602082019050818103600083015261284f81612813565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006128b2602583611edb565b91506128bd82612856565b604082019050919050565b600060208201905081810360008301526128e1816128a5565b9050919050565b60006040820190506128fd6000830185612471565b61290a6020830184612091565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061294b82611fe5565b915061295683611fe5565b925082820390508181111561296e5761296d612911565b5b92915050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006129d0602383611edb565b91506129db82612974565b604082019050919050565b600060208201905081810360008301526129ff816129c3565b9050919050565b6000612a1182611fe5565b9150612a1c83611fe5565b9250828201905080821115612a3457612a33612911565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000612a70601b83611edb565b9150612a7b82612a3a565b602082019050919050565b60006020820190508181036000830152612a9f81612a63565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220f85afcff8425bec023b4fec772eefa08dd0bd104aaebb26c134e323385c8bdb064736f6c6343000813003360806040523480156200001157600080fd5b506040518060400160405280601881526020017f457665724554485f4469766964656e645f547261636b657200000000000000008152506040518060400160405280601881526020017f457665724554485f4469766964656e645f547261636b657200000000000000008152508181816003908162000091919062000431565b508060049081620000a3919062000431565b5050505050620000c8620000bc620000e960201b60201c565b620000f160201b60201c565b6201518060108190555069021e19e0c9bab240000060118190555062000518565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200023957607f821691505b6020821081036200024f576200024e620001f1565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002b97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200027a565b620002c586836200027a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003126200030c6200030684620002dd565b620002e7565b620002dd565b9050919050565b6000819050919050565b6200032e83620002f1565b620003466200033d8262000319565b84845462000287565b825550505050565b600090565b6200035d6200034e565b6200036a81848462000323565b505050565b5b8181101562000392576200038660008262000353565b60018101905062000370565b5050565b601f821115620003e157620003ab8162000255565b620003b6846200026a565b81016020851015620003c6578190505b620003de620003d5856200026a565b8301826200036f565b50505b505050565b600082821c905092915050565b60006200040660001984600802620003e6565b1980831691505092915050565b6000620004218383620003f3565b9150826002028217905092915050565b6200043c82620001b7565b67ffffffffffffffff811115620004585762000457620001c2565b5b62000464825462000220565b6200047182828562000396565b600060209050601f831160018114620004a9576000841562000494578287015190505b620004a0858262000413565b86555062000510565b601f198416620004b98662000255565b60005b82811015620004e357848901518255600182019150602085019450602081019050620004bc565b86831015620005035784890151620004ff601f891682620003f3565b8355505b6001600288020188555050505b505050505050565b61373b80620005286000396000f3fe6080604052600436106101e75760003560e01c806370a0823111610102578063aafd847a11610095578063e30443bc11610064578063e30443bc1461073e578063e98030c714610767578063f2fde38b14610790578063fbcbc0f1146107b9576101f6565b8063aafd847a1461065c578063bc4c4b3714610699578063be10b614146106d6578063dd62ed3e14610701576101f6565b806391b89fba116100d157806391b89fba1461057a57806395d89b41146105b7578063a8b9d240146105e2578063a9059cbb1461061f576101f6565b806370a08231146104d0578063715018a61461050d57806385a6b3ae146105245780638da5cb5b1461054f576101f6565b806323b872dd1161017a5780634e7b827f116101495780634e7b827f1461040e5780635183d6fd1461044b5780636a4740021461048e5780636f2789ec146104a5576101f6565b806323b872dd1461034057806327ce01471461037d578063313ce567146103ba57806331e79db0146103e5576101f6565b806309bbedde116101b657806309bbedde146102845780630dcb2e89146102af57806318160ddd146102d8578063226cfa3d14610303576101f6565b806303c83302146101fb5780630614117a1461020557806306fdde031461021c578063095ea7b314610247576101f6565b366101f6576101f46107fc565b005b600080fd5b6102036107fc565b005b34801561021157600080fd5b5061021a6108d5565b005b34801561022857600080fd5b506102316109d7565b60405161023e9190612734565b60405180910390f35b34801561025357600080fd5b5061026e600480360381019061026991906127ef565b610a69565b60405161027b919061284a565b60405180910390f35b34801561029057600080fd5b50610299610a87565b6040516102a69190612874565b60405180910390f35b3480156102bb57600080fd5b506102d660048036038101906102d1919061288f565b610a97565b005b3480156102e457600080fd5b506102ed610b30565b6040516102fa9190612874565b60405180910390f35b34801561030f57600080fd5b5061032a600480360381019061032591906128bc565b610b3a565b6040516103379190612874565b60405180910390f35b34801561034c57600080fd5b50610367600480360381019061036291906128e9565b610b52565b604051610374919061284a565b60405180910390f35b34801561038957600080fd5b506103a4600480360381019061039f91906128bc565b610c2b565b6040516103b19190612874565b60405180910390f35b3480156103c657600080fd5b506103cf610cce565b6040516103dc9190612958565b60405180910390f35b3480156103f157600080fd5b5061040c600480360381019061040791906128bc565b610cd7565b005b34801561041a57600080fd5b50610435600480360381019061043091906128bc565b610ebf565b604051610442919061284a565b60405180910390f35b34801561045757600080fd5b50610472600480360381019061046d919061288f565b610edf565b604051610485979695949392919061299b565b60405180910390f35b34801561049a57600080fd5b506104a361104e565b005b3480156104b157600080fd5b506104ba611091565b6040516104c79190612874565b60405180910390f35b3480156104dc57600080fd5b506104f760048036038101906104f291906128bc565b611097565b6040516105049190612874565b60405180910390f35b34801561051957600080fd5b506105226110df565b005b34801561053057600080fd5b50610539611167565b6040516105469190612874565b60405180910390f35b34801561055b57600080fd5b5061056461116d565b6040516105719190612a0a565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c91906128bc565b611197565b6040516105ae9190612874565b60405180910390f35b3480156105c357600080fd5b506105cc6111a9565b6040516105d99190612734565b60405180910390f35b3480156105ee57600080fd5b50610609600480360381019061060491906128bc565b61123b565b6040516106169190612874565b60405180910390f35b34801561062b57600080fd5b50610646600480360381019061064191906127ef565b61129e565b604051610653919061284a565b60405180910390f35b34801561066857600080fd5b50610683600480360381019061067e91906128bc565b6112bc565b6040516106909190612874565b60405180910390f35b3480156106a557600080fd5b506106c060048036038101906106bb9190612a8f565b611305565b6040516106cd919061284a565b60405180910390f35b3480156106e257600080fd5b506106eb611444565b6040516106f89190612874565b60405180910390f35b34801561070d57600080fd5b5061072860048036038101906107239190612acf565b61144a565b6040516107359190612874565b60405180910390f35b34801561074a57600080fd5b5061076560048036038101906107609190612b0f565b6114d1565b005b34801561077357600080fd5b5061078e6004803603810190610789919061288f565b6116a1565b005b34801561079c57600080fd5b506107b760048036038101906107b291906128bc565b6117f0565b005b3480156107c557600080fd5b506107e060048036038101906107db91906128bc565b6118e7565b6040516107f3979695949392919061299b565b60405180910390f35b6000610806610b30565b1161081057600080fd5b60003411156108d357610863610824610b30565b61084870010000000000000000000000000000000034611a2290919063ffffffff16565b6108529190612bad565b600554611a9c90919063ffffffff16565b6005819055503373ffffffffffffffffffffffffffffffffffffffff167fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d78454116511346040516108af9190612874565b60405180910390a26108cc34600854611a9c90919063ffffffff16565b6008819055505b565b6108dd611afa565b73ffffffffffffffffffffffffffffffffffffffff166108fb61116d565b73ffffffffffffffffffffffffffffffffffffffff1614610951576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094890612c2a565b60405180910390fd5b6000479050600061096061116d565b73ffffffffffffffffffffffffffffffffffffffff168260405161098390612c7b565b60006040518083038185875af1925050503d80600081146109c0576040519150601f19603f3d011682016040523d82523d6000602084013e6109c5565b606091505b50509050806109d357600080fd5b5050565b6060600380546109e690612cbf565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1290612cbf565b8015610a5f5780601f10610a3457610100808354040283529160200191610a5f565b820191906000526020600020905b815481529060010190602001808311610a4257829003601f168201915b5050505050905090565b6000610a7d610a76611afa565b8484611b02565b6001905092915050565b6000600a60000180549050905090565b610a9f611afa565b73ffffffffffffffffffffffffffffffffffffffff16610abd61116d565b73ffffffffffffffffffffffffffffffffffffffff1614610b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0a90612c2a565b60405180910390fd5b670de0b6b3a764000081610b279190612cf0565b60118190555050565b6000600254905090565b600f6020528060005260406000206000915090505481565b6000610b5f848484611ccb565b610c2084610b6b611afa565b610c1b856040518060600160405280602881526020016136de60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610bd1611afa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d119092919063ffffffff16565b611b02565b600190509392505050565b6000700100000000000000000000000000000000610cbd610cb8600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610caa610ca5610c9488611097565b600554611a2290919063ffffffff16565b611d75565b611d9290919063ffffffff16565b611ddd565b610cc79190612bad565b9050919050565b60006012905090565b610cdf611afa565b73ffffffffffffffffffffffffffffffffffffffff16610cfd61116d565b73ffffffffffffffffffffffffffffffffffffffff1614610d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4a90612c2a565b60405180910390fd5b600e60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610daa57600080fd5b6001600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610e0d816000611df4565b600a733e83c94127a6a31caf05c8e4998178acea7066ce634c60db9c9091836040518363ffffffff1660e01b8152600401610e49929190612d48565b60006040518083038186803b158015610e6157600080fd5b505af4158015610e75573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff167fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b2560405160405180910390a250565b600e6020528060005260406000206000915054906101000a900460ff1681565b6000806000806000806000600a733e83c94127a6a31caf05c8e4998178acea7066ce63deb3d89690916040518263ffffffff1660e01b8152600401610f249190612d71565b602060405180830381865af4158015610f41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f659190612da1565b8810610fa95760007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60008060008060009650965096509650965096509650611043565b6000600a733e83c94127a6a31caf05c8e4998178acea7066ce63d1aa9e7e90918b6040518363ffffffff1660e01b8152600401610fe7929190612ddd565b602060405180830381865af4158015611004573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110289190612e1b565b9050611033816118e7565b9750975097509750975097509750505b919395979092949650565b600061108f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108690612f06565b60405180910390fd5b565b60105481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110e7611afa565b73ffffffffffffffffffffffffffffffffffffffff1661110561116d565b73ffffffffffffffffffffffffffffffffffffffff161461115b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115290612c2a565b60405180910390fd5b6111656000611e61565b565b60085481565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006111a28261123b565b9050919050565b6060600480546111b890612cbf565b80601f01602080910402602001604051908101604052809291908181526020018280546111e490612cbf565b80156112315780601f1061120657610100808354040283529160200191611231565b820191906000526020600020905b81548152906001019060200180831161121457829003601f168201915b5050505050905090565b6000611297600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461128984610c2b565b611f2790919063ffffffff16565b9050919050565b60006112b26112ab611afa565b8484611ccb565b6001905092915050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600061130f611afa565b73ffffffffffffffffffffffffffffffffffffffff1661132d61116d565b73ffffffffffffffffffffffffffffffffffffffff1614611383576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137a90612c2a565b60405180910390fd5b600061138e84611f71565b905060008111156114385742600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508215158473ffffffffffffffffffffffffffffffffffffffff167fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf092836040516114269190612874565b60405180910390a3600191505061143e565b60009150505b92915050565b60115481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6114d9611afa565b73ffffffffffffffffffffffffffffffffffffffff166114f761116d565b73ffffffffffffffffffffffffffffffffffffffff161461154d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154490612c2a565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661169d576011548110611624576115b18282611df4565b600a733e83c94127a6a31caf05c8e4998178acea7066ce63bc2b405c909184846040518463ffffffff1660e01b81526004016115ef93929190612f85565b60006040518083038186803b15801561160757600080fd5b505af415801561161b573d6000803e3d6000fd5b5050505061169c565b61162f826000611df4565b600a733e83c94127a6a31caf05c8e4998178acea7066ce634c60db9c9091846040518363ffffffff1660e01b815260040161166b929190612fbc565b60006040518083038186803b15801561168357600080fd5b505af4158015611697573d6000803e3d6000fd5b505050505b5b5050565b6116a9611afa565b73ffffffffffffffffffffffffffffffffffffffff166116c761116d565b73ffffffffffffffffffffffffffffffffffffffff161461171d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171490612c2a565b60405180910390fd5b620151808110158015611733575062093a808111155b611772576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117699061307d565b60405180910390fd5b60105481036117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ad9061310f565b60405180910390fd5b601054817f474ea64804364a1e29a4487ddb63c3342a2dd826ccd8acf48825e680a0e6f20f60405160405180910390a38060108190555050565b6117f8611afa565b73ffffffffffffffffffffffffffffffffffffffff1661181661116d565b73ffffffffffffffffffffffffffffffffffffffff161461186c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186390612c2a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d2906131a1565b60405180910390fd5b6118e481611e61565b50565b6000806000806000806000879650600a733e83c94127a6a31caf05c8e4998178acea7066ce6317e142d19091896040518363ffffffff1660e01b8152600401611931929190612d48565b602060405180830381865af415801561194e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061197291906131ed565b955061197d8761123b565b945061198887610c2b565b9350600f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549250600083116119db5760006119f1565b6119f060105484611a9c90919063ffffffff16565b5b9150428211611a01576000611a15565b611a144283611f2790919063ffffffff16565b5b9050919395979092949650565b6000808303611a345760009050611a96565b60008284611a429190612cf0565b9050828482611a519190612bad565b14611a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a889061328c565b60405180910390fd5b809150505b92915050565b6000808284611aab91906132ac565b905083811015611af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae79061332c565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b68906133be565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd790613450565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611cbe9190612874565b60405180910390a3505050565b6000611d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d03906134e2565b60405180910390fd5b505050565b6000838311158290611d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d509190612734565b60405180910390fd5b5060008385611d689190613502565b9050809150509392505050565b6000808290506000811215611d8957600080fd5b80915050919050565b6000808284611da19190613536565b905060008312158015611db45750838112155b80611dca5750600083128015611dc957508381125b5b611dd357600080fd5b8091505092915050565b600080821215611dec57600080fd5b819050919050565b6000611dff83611097565b905080821115611e30576000611e1e8284611f2790919063ffffffff16565b9050611e2a8482612196565b50611e5c565b80821015611e5b576000611e4d8383611f2790919063ffffffff16565b9050611e598482612255565b505b5b505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611f6983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611d11565b905092915050565b600080611f7d8361123b565b9050600081111561218b57611fda81600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a9c90919063ffffffff16565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff167fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d826040516120639190612874565b60405180910390a260008373ffffffffffffffffffffffffffffffffffffffff1682610bb89060405161209590612c7b565b600060405180830381858888f193505050503d80600081146120d3576040519150601f19603f3d011682016040523d82523d6000602084013e6120d8565b606091505b50509050806121815761213382600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f2790919063ffffffff16565b600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600092505050612191565b8192505050612191565b60009150505b919050565b6121a08282612314565b61220e6121c06121bb83600554611a2290919063ffffffff16565b611d75565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124a790919063ffffffff16565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b61225f82826124f2565b6122cd61227f61227a83600554611a2290919063ffffffff16565b611d75565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d9290919063ffffffff16565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612383576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237a906135c6565b60405180910390fd5b61238f6000838361269f565b6123a481600254611a9c90919063ffffffff16565b6002819055506123fb816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a9c90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161249b9190612874565b60405180910390a35050565b60008082846124b691906135e6565b9050600083121580156124c95750838113155b806124df57506000831280156124de57508381135b5b6124e857600080fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612561576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125589061369b565b60405180910390fd5b61256d8260008361269f565b6125d8816040518060600160405280602281526020016136bc602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d119092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061262f81600254611f2790919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516126939190612874565b60405180910390a35050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156126de5780820151818401526020810190506126c3565b60008484015250505050565b6000601f19601f8301169050919050565b6000612706826126a4565b61271081856126af565b93506127208185602086016126c0565b612729816126ea565b840191505092915050565b6000602082019050818103600083015261274e81846126fb565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127868261275b565b9050919050565b6127968161277b565b81146127a157600080fd5b50565b6000813590506127b38161278d565b92915050565b6000819050919050565b6127cc816127b9565b81146127d757600080fd5b50565b6000813590506127e9816127c3565b92915050565b6000806040838503121561280657612805612756565b5b6000612814858286016127a4565b9250506020612825858286016127da565b9150509250929050565b60008115159050919050565b6128448161282f565b82525050565b600060208201905061285f600083018461283b565b92915050565b61286e816127b9565b82525050565b60006020820190506128896000830184612865565b92915050565b6000602082840312156128a5576128a4612756565b5b60006128b3848285016127da565b91505092915050565b6000602082840312156128d2576128d1612756565b5b60006128e0848285016127a4565b91505092915050565b60008060006060848603121561290257612901612756565b5b6000612910868287016127a4565b9350506020612921868287016127a4565b9250506040612932868287016127da565b9150509250925092565b600060ff82169050919050565b6129528161293c565b82525050565b600060208201905061296d6000830184612949565b92915050565b61297c8161277b565b82525050565b6000819050919050565b61299581612982565b82525050565b600060e0820190506129b0600083018a612973565b6129bd602083018961298c565b6129ca6040830188612865565b6129d76060830187612865565b6129e46080830186612865565b6129f160a0830185612865565b6129fe60c0830184612865565b98975050505050505050565b6000602082019050612a1f6000830184612973565b92915050565b6000612a308261275b565b9050919050565b612a4081612a25565b8114612a4b57600080fd5b50565b600081359050612a5d81612a37565b92915050565b612a6c8161282f565b8114612a7757600080fd5b50565b600081359050612a8981612a63565b92915050565b60008060408385031215612aa657612aa5612756565b5b6000612ab485828601612a4e565b9250506020612ac585828601612a7a565b9150509250929050565b60008060408385031215612ae657612ae5612756565b5b6000612af4858286016127a4565b9250506020612b05858286016127a4565b9150509250929050565b60008060408385031215612b2657612b25612756565b5b6000612b3485828601612a4e565b9250506020612b45858286016127da565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612bb8826127b9565b9150612bc3836127b9565b925082612bd357612bd2612b4f565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c146020836126af565b9150612c1f82612bde565b602082019050919050565b60006020820190508181036000830152612c4381612c07565b9050919050565b600081905092915050565b50565b6000612c65600083612c4a565b9150612c7082612c55565b600082019050919050565b6000612c8682612c58565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612cd757607f821691505b602082108103612cea57612ce9612c90565b5b50919050565b6000612cfb826127b9565b9150612d06836127b9565b9250828202612d14816127b9565b91508282048414831517612d2b57612d2a612b7e565b5b5092915050565b8082525050565b612d428161277b565b82525050565b6000604082019050612d5d6000830185612d32565b612d6a6020830184612d39565b9392505050565b6000602082019050612d866000830184612d32565b92915050565b600081519050612d9b816127c3565b92915050565b600060208284031215612db757612db6612756565b5b6000612dc584828501612d8c565b91505092915050565b612dd7816127b9565b82525050565b6000604082019050612df26000830185612d32565b612dff6020830184612dce565b9392505050565b600081519050612e158161278d565b92915050565b600060208284031215612e3157612e30612756565b5b6000612e3f84828501612e06565b91505092915050565b7f457665724554485f4469766964656e645f547261636b65723a2077697468647260008201527f61774469766964656e642064697361626c65642e20557365207468652027636c60208201527f61696d272066756e6374696f6e206f6e20746865206d61696e2045766572455460408201527f4820636f6e74726163742e000000000000000000000000000000000000000000606082015250565b6000612ef0606b836126af565b9150612efb82612e48565b608082019050919050565b60006020820190508181036000830152612f1f81612ee3565b9050919050565b6000819050919050565b6000612f4b612f46612f418461275b565b612f26565b61275b565b9050919050565b6000612f5d82612f30565b9050919050565b6000612f6f82612f52565b9050919050565b612f7f81612f64565b82525050565b6000606082019050612f9a6000830186612d32565b612fa76020830185612f76565b612fb46040830184612dce565b949350505050565b6000604082019050612fd16000830185612d32565b612fde6020830184612f76565b9392505050565b7f457665724554485f4469766964656e645f547261636b65723a20636c61696d5760008201527f616974206d757374206265207570646174656420746f206265747765656e203260208201527f3420686f75727320616e64203720646179730000000000000000000000000000604082015250565b60006130676052836126af565b915061307282612fe5565b606082019050919050565b600060208201905081810360008301526130968161305a565b9050919050565b7f457665724554485f4469766964656e645f547261636b65723a2043616e6e6f7460008201527f2075706461746520636c61696d5761697420746f2073616d652076616c756500602082015250565b60006130f9603f836126af565b91506131048261309d565b604082019050919050565b60006020820190508181036000830152613128816130ec565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061318b6026836126af565b91506131968261312f565b604082019050919050565b600060208201905081810360008301526131ba8161317e565b9050919050565b6131ca81612982565b81146131d557600080fd5b50565b6000815190506131e7816131c1565b92915050565b60006020828403121561320357613202612756565b5b6000613211848285016131d8565b91505092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006132766021836126af565b91506132818261321a565b604082019050919050565b600060208201905081810360008301526132a581613269565b9050919050565b60006132b7826127b9565b91506132c2836127b9565b92508282019050808211156132da576132d9612b7e565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000613316601b836126af565b9150613321826132e0565b602082019050919050565b6000602082019050818103600083015261334581613309565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006133a86024836126af565b91506133b38261334c565b604082019050919050565b600060208201905081810360008301526133d78161339b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061343a6022836126af565b9150613445826133de565b604082019050919050565b600060208201905081810360008301526134698161342d565b9050919050565b7f457665724554485f4469766964656e645f547261636b65723a204e6f2074726160008201527f6e736665727320616c6c6f776564000000000000000000000000000000000000602082015250565b60006134cc602e836126af565b91506134d782613470565b604082019050919050565b600060208201905081810360008301526134fb816134bf565b9050919050565b600061350d826127b9565b9150613518836127b9565b92508282039050818111156135305761352f612b7e565b5b92915050565b600061354182612982565b915061354c83612982565b92508282019050828112156000831216838212600084121516171561357457613573612b7e565b5b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006135b0601f836126af565b91506135bb8261357a565b602082019050919050565b600060208201905081810360008301526135df816135a3565b9050919050565b60006135f182612982565b91506135fc83612982565b925082820390508181126000841216828213600085121516171561362357613622612b7e565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006136856021836126af565b915061369082613629565b604082019050919050565b600060208201905081810360008301526136b481613678565b905091905056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212207ec7d54126fa5b6b3728411dba7b04ef93278b0b98fc3459e6de61bf1aadca2864736f6c63430008130033

Deployed Bytecode

0x60806040526004361061016a5760003560e01c806370a08231116100d1578063a8b9d2401161008a578063dd62ed3e11610064578063dd62ed3e1461053f578063e98030c71461057c578063f27fd254146105a5578063f2fde38b146105e857610171565b8063a8b9d24014610482578063a9059cbb146104bf578063ad56c13c146104fc57610171565b806370a0823114610386578063715018a6146103c357806388bdd9be146103da5780638980f11f146104035780638da5cb5b1461042c57806395d89b411461045757610171565b806330bb4cff1161012357806330bb4cff14610288578063313ce567146102b357806331e79db0146102de5780634e71d92d1461030757806364b0f6531461031e5780636843cd841461034957610171565b80630614117a1461017657806306fdde031461018d578063095ea7b3146101b857806318160ddd146101f557806323b872dd146102205780632c1f52161461025d57610171565b3661017157005b600080fd5b34801561018257600080fd5b5061018b610611565b005b34801561019957600080fd5b506101a2610713565b6040516101af9190611f60565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da919061201b565b6107a5565b6040516101ec9190612076565b60405180910390f35b34801561020157600080fd5b5061020a6107c3565b60405161021791906120a0565b60405180910390f35b34801561022c57600080fd5b50610247600480360381019061024291906120bb565b6107cd565b6040516102549190612076565b60405180910390f35b34801561026957600080fd5b506102726108a6565b60405161027f919061216d565b60405180910390f35b34801561029457600080fd5b5061029d6108cc565b6040516102aa91906120a0565b60405180910390f35b3480156102bf57600080fd5b506102c8610964565b6040516102d591906121a4565b60405180910390f35b3480156102ea57600080fd5b50610305600480360381019061030091906121bf565b61096d565b005b34801561031357600080fd5b5061031c610a79565b005b34801561032a57600080fd5b50610333610b1d565b60405161034091906120a0565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b91906121bf565b610bb5565b60405161037d91906120a0565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a891906121bf565b610c5a565b6040516103ba91906120a0565b60405180910390f35b3480156103cf57600080fd5b506103d8610ca2565b005b3480156103e657600080fd5b5061040160048036038101906103fc91906121bf565b610d2a565b005b34801561040f57600080fd5b5061042a6004803603810190610425919061201b565b611027565b005b34801561043857600080fd5b5061044161119b565b60405161044e91906121fb565b60405180910390f35b34801561046357600080fd5b5061046c6111c5565b6040516104799190611f60565b60405180910390f35b34801561048e57600080fd5b506104a960048036038101906104a491906121bf565b611257565b6040516104b691906120a0565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e1919061201b565b6112fc565b6040516104f39190612076565b60405180910390f35b34801561050857600080fd5b50610523600480360381019061051e91906121bf565b61131a565b604051610536979695949392919061222f565b60405180910390f35b34801561054b57600080fd5b506105666004803603810190610561919061229e565b6113da565b60405161057391906120a0565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e91906122de565b611461565b005b3480156105b157600080fd5b506105cc60048036038101906105c791906122de565b61156d565b6040516105df979695949392919061222f565b60405180910390f35b3480156105f457600080fd5b5061060f600480360381019061060a91906121bf565b61162d565b005b610619611724565b73ffffffffffffffffffffffffffffffffffffffff1661063761119b565b73ffffffffffffffffffffffffffffffffffffffff161461068d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068490612357565b60405180910390fd5b6000479050600061069c61119b565b73ffffffffffffffffffffffffffffffffffffffff16826040516106bf906123a8565b60006040518083038185875af1925050503d80600081146106fc576040519150601f19603f3d011682016040523d82523d6000602084013e610701565b606091505b505090508061070f57600080fd5b5050565b606060038054610722906123ec565b80601f016020809104026020016040519081016040528092919081815260200182805461074e906123ec565b801561079b5780601f106107705761010080835404028352916020019161079b565b820191906000526020600020905b81548152906001019060200180831161077e57829003601f168201915b5050505050905090565b60006107b96107b2611724565b848461172c565b6001905092915050565b6000600254905090565b60006107da8484846118f5565b61089b846107e6611724565b61089685604051806060016040528060288152602001612acd60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061084c611724565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ab09092919063ffffffff16565b61172c565b600190509392505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166385a6b3ae6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561093b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095f9190612432565b905090565b60006012905090565b610975611724565b73ffffffffffffffffffffffffffffffffffffffff1661099361119b565b73ffffffffffffffffffffffffffffffffffffffff16146109e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e090612357565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0826040518263ffffffff1660e01b8152600401610a4491906121fb565b600060405180830381600087803b158015610a5e57600080fd5b505af1158015610a72573d6000803e3d6000fd5b5050505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bc4c4b373360006040518363ffffffff1660e01b8152600401610ad7929190612480565b6020604051808303816000875af1158015610af6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b1a91906124d5565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166309bbedde6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb09190612432565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b8152600401610c1291906121fb565b602060405180830381865afa158015610c2f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c539190612432565b9050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610caa611724565b73ffffffffffffffffffffffffffffffffffffffff16610cc861119b565b73ffffffffffffffffffffffffffffffffffffffff1614610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1590612357565b60405180910390fd5b610d286000611b14565b565b610d32611724565b73ffffffffffffffffffffffffffffffffffffffff16610d5061119b565b73ffffffffffffffffffffffffffffffffffffffff1614610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d90612357565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630614117a6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610e1057600080fd5b505af1158015610e24573d6000803e3d6000fd5b5050505060008190508073ffffffffffffffffffffffffffffffffffffffff166331e79db0826040518263ffffffff1660e01b8152600401610e6691906121fb565b600060405180830381600087803b158015610e8057600080fd5b505af1158015610e94573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff166331e79db0306040518263ffffffff1660e01b8152600401610ed191906121fb565b600060405180830381600087803b158015610eeb57600080fd5b505af1158015610eff573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff166331e79db0610f2761119b565b6040518263ffffffff1660e01b8152600401610f4391906121fb565b600060405180830381600087803b158015610f5d57600080fd5b505af1158015610f71573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff166331e79db061dead6040518263ffffffff1660e01b8152600401610fb091906121fb565b600060405180830381600087803b158015610fca57600080fd5b505af1158015610fde573d6000803e3d6000fd5b5050505080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b61102f611724565b73ffffffffffffffffffffffffffffffffffffffff1661104d61119b565b73ffffffffffffffffffffffffffffffffffffffff16146110a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109a90612357565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611111576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110890612574565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61113561119b565b836040518363ffffffff1660e01b8152600401611153929190612594565b6020604051808303816000875af1158015611172573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061119691906124d5565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546111d4906123ec565b80601f0160208091040260200160405190810160405280929190818152602001828054611200906123ec565b801561124d5780601f106112225761010080835404028352916020019161124d565b820191906000526020600020905b81548152906001019060200180831161123057829003601f168201915b5050505050905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a8b9d240836040518263ffffffff1660e01b81526004016112b491906121fb565b602060405180830381865afa1580156112d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112f59190612432565b9050919050565b6000611310611309611724565b84846118f5565b6001905092915050565b6000806000806000806000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fbcbc0f1896040518263ffffffff1660e01b815260040161138091906121fb565b60e060405180830381865afa15801561139d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113c191906125fe565b9650965096509650965096509650919395979092949650565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611469611724565b73ffffffffffffffffffffffffffffffffffffffff1661148761119b565b73ffffffffffffffffffffffffffffffffffffffff16146114dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d490612357565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e98030c7826040518263ffffffff1660e01b815260040161153891906120a0565b600060405180830381600087803b15801561155257600080fd5b505af1158015611566573d6000803e3d6000fd5b5050505050565b6000806000806000806000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635183d6fd896040518263ffffffff1660e01b81526004016115d391906120a0565b60e060405180830381865afa1580156115f0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061161491906125fe565b9650965096509650965096509650919395979092949650565b611635611724565b73ffffffffffffffffffffffffffffffffffffffff1661165361119b565b73ffffffffffffffffffffffffffffffffffffffff16146116a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a090612357565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170f90612712565b60405180910390fd5b61172181611b14565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361179b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611792906127a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361180a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180190612836565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516118e891906120a0565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195b906128c8565b60405180910390fd5b6000810361197d5761197883836000611bda565b611aab565b611988838383611bda565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc846119d086610c5a565b6040518363ffffffff1660e01b81526004016119ed9291906128e8565b600060405180830381600087803b158015611a0757600080fd5b505af1925050508015611a18575060015b50600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc83611a6185610c5a565b6040518363ffffffff1660e01b8152600401611a7e9291906128e8565b600060405180830381600087803b158015611a9857600080fd5b505af1925050508015611aa9575060015b505b505050565b6000838311158290611af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aef9190611f60565b60405180910390fd5b5060008385611b079190612940565b9050809150509392505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c40906128c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caf906129e6565b60405180910390fd5b611cc3838383611e6d565b611d2e81604051806060016040528060268152602001612aa7602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ab09092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611dc1816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e7290919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611e6091906120a0565b60405180910390a3505050565b505050565b6000808284611e819190612a06565b905083811015611ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebd90612a86565b60405180910390fd5b8091505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611f0a578082015181840152602081019050611eef565b60008484015250505050565b6000601f19601f8301169050919050565b6000611f3282611ed0565b611f3c8185611edb565b9350611f4c818560208601611eec565b611f5581611f16565b840191505092915050565b60006020820190508181036000830152611f7a8184611f27565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611fb282611f87565b9050919050565b611fc281611fa7565b8114611fcd57600080fd5b50565b600081359050611fdf81611fb9565b92915050565b6000819050919050565b611ff881611fe5565b811461200357600080fd5b50565b60008135905061201581611fef565b92915050565b6000806040838503121561203257612031611f82565b5b600061204085828601611fd0565b925050602061205185828601612006565b9150509250929050565b60008115159050919050565b6120708161205b565b82525050565b600060208201905061208b6000830184612067565b92915050565b61209a81611fe5565b82525050565b60006020820190506120b56000830184612091565b92915050565b6000806000606084860312156120d4576120d3611f82565b5b60006120e286828701611fd0565b93505060206120f386828701611fd0565b925050604061210486828701612006565b9150509250925092565b6000819050919050565b600061213361212e61212984611f87565b61210e565b611f87565b9050919050565b600061214582612118565b9050919050565b60006121578261213a565b9050919050565b6121678161214c565b82525050565b6000602082019050612182600083018461215e565b92915050565b600060ff82169050919050565b61219e81612188565b82525050565b60006020820190506121b96000830184612195565b92915050565b6000602082840312156121d5576121d4611f82565b5b60006121e384828501611fd0565b91505092915050565b6121f581611fa7565b82525050565b600060208201905061221060008301846121ec565b92915050565b6000819050919050565b61222981612216565b82525050565b600060e082019050612244600083018a6121ec565b6122516020830189612220565b61225e6040830188612091565b61226b6060830187612091565b6122786080830186612091565b61228560a0830185612091565b61229260c0830184612091565b98975050505050505050565b600080604083850312156122b5576122b4611f82565b5b60006122c385828601611fd0565b92505060206122d485828601611fd0565b9150509250929050565b6000602082840312156122f4576122f3611f82565b5b600061230284828501612006565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612341602083611edb565b915061234c8261230b565b602082019050919050565b6000602082019050818103600083015261237081612334565b9050919050565b600081905092915050565b50565b6000612392600083612377565b915061239d82612382565b600082019050919050565b60006123b382612385565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061240457607f821691505b602082108103612417576124166123bd565b5b50919050565b60008151905061242c81611fef565b92915050565b60006020828403121561244857612447611f82565b5b60006124568482850161241d565b91505092915050565b600061246a82611f87565b9050919050565b61247a8161245f565b82525050565b60006040820190506124956000830185612471565b6124a26020830184612067565b9392505050565b6124b28161205b565b81146124bd57600080fd5b50565b6000815190506124cf816124a9565b92915050565b6000602082840312156124eb576124ea611f82565b5b60006124f9848285016124c0565b91505092915050565b7f43616e6e6f7420776974686472617720636f6e74726163742773206f776e207460008201527f6f6b656e73000000000000000000000000000000000000000000000000000000602082015250565b600061255e602583611edb565b915061256982612502565b604082019050919050565b6000602082019050818103600083015261258d81612551565b9050919050565b60006040820190506125a960008301856121ec565b6125b66020830184612091565b9392505050565b6000815190506125cc81611fb9565b92915050565b6125db81612216565b81146125e657600080fd5b50565b6000815190506125f8816125d2565b92915050565b600080600080600080600060e0888a03121561261d5761261c611f82565b5b600061262b8a828b016125bd565b975050602061263c8a828b016125e9565b965050604061264d8a828b0161241d565b955050606061265e8a828b0161241d565b945050608061266f8a828b0161241d565b93505060a06126808a828b0161241d565b92505060c06126918a828b0161241d565b91505092959891949750929550565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006126fc602683611edb565b9150612707826126a0565b604082019050919050565b6000602082019050818103600083015261272b816126ef565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061278e602483611edb565b915061279982612732565b604082019050919050565b600060208201905081810360008301526127bd81612781565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612820602283611edb565b915061282b826127c4565b604082019050919050565b6000602082019050818103600083015261284f81612813565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006128b2602583611edb565b91506128bd82612856565b604082019050919050565b600060208201905081810360008301526128e1816128a5565b9050919050565b60006040820190506128fd6000830185612471565b61290a6020830184612091565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061294b82611fe5565b915061295683611fe5565b925082820390508181111561296e5761296d612911565b5b92915050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006129d0602383611edb565b91506129db82612974565b604082019050919050565b600060208201905081810360008301526129ff816129c3565b9050919050565b6000612a1182611fe5565b9150612a1c83611fe5565b9250828201905080821115612a3457612a33612911565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000612a70601b83611edb565b9150612a7b82612a3a565b602082019050919050565b60006020820190508181036000830152612a9f81612a63565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220f85afcff8425bec023b4fec772eefa08dd0bd104aaebb26c134e323385c8bdb064736f6c63430008130033

Libraries Used


Deployed Bytecode Sourcemap

13205:4061:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13950:219;;;;;;;;;;;;;:::i;:::-;;5641:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7949:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6761:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8641:454;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13291:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15265:141;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6603:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14436:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16471:103;;;;;;;;;;;;;:::i;:::-;;16582:142;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15606:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6932:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2045:94;;;;;;;;;;;;;:::i;:::-;;14574:551;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14177:251;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1822:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5860:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15414:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7322:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15785:330;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;7601:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15133:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16123:340;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;2147:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13950:219;1968:12;:10;:12::i;:::-;1957:23;;:7;:5;:7::i;:::-;:23;;;1949:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14008:18:::1;14029:21;14008:42;;14062:12;14088:7;:5;:7::i;:::-;14080:21;;14109:10;14080:44;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14061:63;;;14143:7;14135:16;;;::::0;::::1;;13991:178;;13950:219::o:0;5641:100::-;5695:13;5728:5;5721:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5641:100;:::o;7949:210::-;8068:4;8090:39;8099:12;:10;:12::i;:::-;8113:7;8122:6;8090:8;:39::i;:::-;8147:4;8140:11;;7949:210;;;;:::o;6761:108::-;6822:7;6849:12;;6842:19;;6761:108;:::o;8641:454::-;8781:4;8798:36;8808:6;8816:9;8827:6;8798:9;:36::i;:::-;8845:220;8868:6;8889:12;:10;:12::i;:::-;8916:138;8972:6;8916:138;;;;;;;;;;;;;;;;;:11;:19;8928:6;8916:19;;;;;;;;;;;;;;;:33;8936:12;:10;:12::i;:::-;8916:33;;;;;;;;;;;;;;;;:37;;:138;;;;;:::i;:::-;8845:8;:220::i;:::-;9083:4;9076:11;;8641:454;;;;;:::o;13291:45::-;;;;;;;;;;;;;:::o;15265:141::-;15328:7;15355:15;;;;;;;;;;;:41;;;:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;15348:50;;15265:141;:::o;6603:93::-;6661:5;6686:2;6679:9;;6603:93;:::o;14436:130::-;1968:12;:10;:12::i;:::-;1957:23;;:7;:5;:7::i;:::-;:23;;;1949:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14511:15:::1;;;;;;;;;;;:36;;;14548:7;14511:45;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;14436:130:::0;:::o;16471:103::-;16508:15;;;;;;;;;;;:30;;;16547:10;16560:5;16508:58;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16471:103::o;16582:142::-;16648:7;16675:15;;;;;;;;;;;:39;;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16668:48;;16582:142;:::o;15606:171::-;15703:7;15735:15;;;;;;;;;;;:25;;;15761:7;15735:34;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;15728:41;;15606:171;;;:::o;6932:177::-;7051:7;7083:9;:18;7093:7;7083:18;;;;;;;;;;;;;;;;7076:25;;6932:177;;;:::o;2045:94::-;1968:12;:10;:12::i;:::-;1957:23;;:7;:5;:7::i;:::-;:23;;;1949:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2110:21:::1;2128:1;2110:9;:21::i;:::-;2045:94::o:0;14574:551::-;1968:12;:10;:12::i;:::-;1957:23;;:7;:5;:7::i;:::-;:23;;;1949:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14654:15:::1;;;;;;;;;;;:26;;;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;14694:41;14769:10;14694:87;;14792:18;:39;;;14854:18;14792:92;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;14895:18;:39;;;14943:4;14895:54;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;14960:18;:39;;;15000:7;:5;:7::i;:::-;14960:48;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;15019:18;:39;;;13373:42;15019:51;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;15099:18;15081:15;;:36;;;;;;;;;;;;;;;;;;14642:483;14574:551:::0;:::o;14177:251::-;1968:12;:10;:12::i;:::-;1957:23;;:7;:5;:7::i;:::-;:23;;;1949:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14305:4:::1;14281:29;;:12;:29;;::::0;14273:79:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;14370:12;14363:29;;;14393:7;:5;:7::i;:::-;14402:11;14363:51;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;14177:251:::0;;:::o;1822:87::-;1868:7;1895:6;;;;;;;;;;;1888:13;;1822:87;:::o;5860:104::-;5916:13;5949:7;5942:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5860:104;:::o;15414:184::-;15511:7;15543:15;;;;;;;;;;;:38;;;15582:7;15543:47;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;15536:54;;15414:184;;;:::o;7322:216::-;7444:4;7466:42;7476:12;:10;:12::i;:::-;7490:9;7501:6;7466:9;:42::i;:::-;7526:4;7519:11;;7322:216;;;;:::o;15785:330::-;15899:7;15921:6;15942:7;15964;15986;16008;16030;16072:15;;;;;;;;;;;:26;;;16099:7;16072:35;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16065:42;;;;;;;;;;;;;;15785:330;;;;;;;;;:::o;7601:201::-;7735:7;7767:11;:18;7779:5;7767:18;;;;;;;;;;;;;;;:27;7786:7;7767:27;;;;;;;;;;;;;;;;7760:34;;7601:201;;;;:::o;15133:124::-;1968:12;:10;:12::i;:::-;1957:23;;:7;:5;:7::i;:::-;:23;;;1949:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15207:15:::1;;;;;;;;;;;:31;;;15239:9;15207:42;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;15133:124:::0;:::o;16123:340::-;16242:7;16264:6;16285:7;16307;16329;16351;16373;16415:15;;;;;;;;;;;:33;;;16449:5;16415:40;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16408:47;;;;;;;;;;;;;;16123:340;;;;;;;;;:::o;2147:192::-;1968:12;:10;:12::i;:::-;1957:23;;:7;:5;:7::i;:::-;:23;;;1949:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2256:1:::1;2236:22;;:8;:22;;::::0;2228:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2312:19;2322:8;2312:9;:19::i;:::-;2147:192:::0;:::o;1243:98::-;1296:7;1323:10;1316:17;;1243:98;:::o;12088:380::-;12241:1;12224:19;;:5;:19;;;12216:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12322:1;12303:21;;:7;:21;;;12295:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12406:6;12376:11;:18;12388:5;12376:18;;;;;;;;;;;;;;;:27;12395:7;12376:27;;;;;;;;;;;;;;;:36;;;;12444:7;12428:32;;12437:5;12428:32;;;12453:6;12428:32;;;;;;:::i;:::-;;;;;;;;12088:380;;;:::o;16732:531::-;16880:1;16864:18;;:4;:18;;;16856:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16951:1;16941:6;:11;16937:93;;16969:28;16985:4;16991:2;16995:1;16969:15;:28::i;:::-;17012:7;;16937:93;17042:33;17058:4;17064:2;17068:6;17042:15;:33::i;:::-;17092:15;;;;;;;;;;;:26;;;17127:4;17134:15;17144:4;17134:9;:15::i;:::-;17092:58;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17088:74;17178:15;;;;;;;;;;;:26;;;17213:2;17218:13;17228:2;17218:9;:13::i;:::-;17178:54;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17174:70;16732:531;;;;:::o;31096:192::-;31182:7;31215:1;31210;:6;;31218:12;31202:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;31242:9;31258:1;31254;:5;;;;:::i;:::-;31242:17;;31279:1;31272:8;;;31096:192;;;;;:::o;2347:173::-;2403:16;2422:6;;;;;;;;;;;2403:25;;2448:8;2439:6;;:17;;;;;;;;;;;;;;;;;;2503:8;2472:40;;2493:8;2472:40;;;;;;;;;;;;2392:128;2347:173;:::o;9587:610::-;9745:1;9727:20;;:6;:20;;;9719:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;9829:1;9808:23;;:9;:23;;;9800:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;9884:47;9905:6;9913:9;9924:6;9884:20;:47::i;:::-;9964:108;10000:6;9964:108;;;;;;;;;;;;;;;;;:9;:17;9974:6;9964:17;;;;;;;;;;;;;;;;:21;;:108;;;;;:::i;:::-;9944:9;:17;9954:6;9944:17;;;;;;;;;;;;;;;:128;;;;10106:32;10131:6;10106:9;:20;10116:9;10106:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;10083:9;:20;10093:9;10083:20;;;;;;;;;;;;;;;:55;;;;10171:9;10154:35;;10163:6;10154:35;;;10182:6;10154:35;;;;;;:::i;:::-;;;;;;;;9587:610;;;:::o;13071:125::-;;;;:::o;30193:181::-;30251:7;30271:9;30287:1;30283;:5;;;;:::i;:::-;30271:17;;30312:1;30307;:6;;30299:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;30365:1;30358:8;;;30193:181;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:60::-;4451:3;4472:5;4465:12;;4423:60;;;:::o;4489:142::-;4539:9;4572:53;4590:34;4599:24;4617:5;4599:24;:::i;:::-;4590:34;:::i;:::-;4572:53;:::i;:::-;4559:66;;4489:142;;;:::o;4637:134::-;4695:9;4728:37;4759:5;4728:37;:::i;:::-;4715:50;;4637:134;;;:::o;4777:173::-;4866:9;4899:45;4938:5;4899:45;:::i;:::-;4886:58;;4777:173;;;:::o;4956:209::-;5082:76;5152:5;5082:76;:::i;:::-;5077:3;5070:89;4956:209;;:::o;5171:300::-;5303:4;5341:2;5330:9;5326:18;5318:26;;5354:110;5461:1;5450:9;5446:17;5437:6;5354:110;:::i;:::-;5171:300;;;;:::o;5477:86::-;5512:7;5552:4;5545:5;5541:16;5530:27;;5477:86;;;:::o;5569:112::-;5652:22;5668:5;5652:22;:::i;:::-;5647:3;5640:35;5569:112;;:::o;5687:214::-;5776:4;5814:2;5803:9;5799:18;5791:26;;5827:67;5891:1;5880:9;5876:17;5867:6;5827:67;:::i;:::-;5687:214;;;;:::o;5907:329::-;5966:6;6015:2;6003:9;5994:7;5990:23;5986:32;5983:119;;;6021:79;;:::i;:::-;5983:119;6141:1;6166:53;6211:7;6202:6;6191:9;6187:22;6166:53;:::i;:::-;6156:63;;6112:117;5907:329;;;;:::o;6242:118::-;6329:24;6347:5;6329:24;:::i;:::-;6324:3;6317:37;6242:118;;:::o;6366:222::-;6459:4;6497:2;6486:9;6482:18;6474:26;;6510:71;6578:1;6567:9;6563:17;6554:6;6510:71;:::i;:::-;6366:222;;;;:::o;6594:76::-;6630:7;6659:5;6648:16;;6594:76;;;:::o;6676:115::-;6761:23;6778:5;6761:23;:::i;:::-;6756:3;6749:36;6676:115;;:::o;6797:882::-;7056:4;7094:3;7083:9;7079:19;7071:27;;7108:71;7176:1;7165:9;7161:17;7152:6;7108:71;:::i;:::-;7189:70;7255:2;7244:9;7240:18;7231:6;7189:70;:::i;:::-;7269:72;7337:2;7326:9;7322:18;7313:6;7269:72;:::i;:::-;7351;7419:2;7408:9;7404:18;7395:6;7351:72;:::i;:::-;7433:73;7501:3;7490:9;7486:19;7477:6;7433:73;:::i;:::-;7516;7584:3;7573:9;7569:19;7560:6;7516:73;:::i;:::-;7599;7667:3;7656:9;7652:19;7643:6;7599:73;:::i;:::-;6797:882;;;;;;;;;;:::o;7685:474::-;7753:6;7761;7810:2;7798:9;7789:7;7785:23;7781:32;7778:119;;;7816:79;;:::i;:::-;7778:119;7936:1;7961:53;8006:7;7997:6;7986:9;7982:22;7961:53;:::i;:::-;7951:63;;7907:117;8063:2;8089:53;8134:7;8125:6;8114:9;8110:22;8089:53;:::i;:::-;8079:63;;8034:118;7685:474;;;;;:::o;8165:329::-;8224:6;8273:2;8261:9;8252:7;8248:23;8244:32;8241:119;;;8279:79;;:::i;:::-;8241:119;8399:1;8424:53;8469:7;8460:6;8449:9;8445:22;8424:53;:::i;:::-;8414:63;;8370:117;8165:329;;;;:::o;8500:182::-;8640:34;8636:1;8628:6;8624:14;8617:58;8500:182;:::o;8688:366::-;8830:3;8851:67;8915:2;8910:3;8851:67;:::i;:::-;8844:74;;8927:93;9016:3;8927:93;:::i;:::-;9045:2;9040:3;9036:12;9029:19;;8688:366;;;:::o;9060:419::-;9226:4;9264:2;9253:9;9249:18;9241:26;;9313:9;9307:4;9303:20;9299:1;9288:9;9284:17;9277:47;9341:131;9467:4;9341:131;:::i;:::-;9333:139;;9060:419;;;:::o;9485:147::-;9586:11;9623:3;9608:18;;9485:147;;;;:::o;9638:114::-;;:::o;9758:398::-;9917:3;9938:83;10019:1;10014:3;9938:83;:::i;:::-;9931:90;;10030:93;10119:3;10030:93;:::i;:::-;10148:1;10143:3;10139:11;10132:18;;9758:398;;;:::o;10162:379::-;10346:3;10368:147;10511:3;10368:147;:::i;:::-;10361:154;;10532:3;10525:10;;10162:379;;;:::o;10547:180::-;10595:77;10592:1;10585:88;10692:4;10689:1;10682:15;10716:4;10713:1;10706:15;10733:320;10777:6;10814:1;10808:4;10804:12;10794:22;;10861:1;10855:4;10851:12;10882:18;10872:81;;10938:4;10930:6;10926:17;10916:27;;10872:81;11000:2;10992:6;10989:14;10969:18;10966:38;10963:84;;11019:18;;:::i;:::-;10963:84;10784:269;10733:320;;;:::o;11059:143::-;11116:5;11147:6;11141:13;11132:22;;11163:33;11190:5;11163:33;:::i;:::-;11059:143;;;;:::o;11208:351::-;11278:6;11327:2;11315:9;11306:7;11302:23;11298:32;11295:119;;;11333:79;;:::i;:::-;11295:119;11453:1;11478:64;11534:7;11525:6;11514:9;11510:22;11478:64;:::i;:::-;11468:74;;11424:128;11208:351;;;;:::o;11565:104::-;11610:7;11639:24;11657:5;11639:24;:::i;:::-;11628:35;;11565:104;;;:::o;11675:142::-;11778:32;11804:5;11778:32;:::i;:::-;11773:3;11766:45;11675:142;;:::o;11823:352::-;11954:4;11992:2;11981:9;11977:18;11969:26;;12005:87;12089:1;12078:9;12074:17;12065:6;12005:87;:::i;:::-;12102:66;12164:2;12153:9;12149:18;12140:6;12102:66;:::i;:::-;11823:352;;;;;:::o;12181:116::-;12251:21;12266:5;12251:21;:::i;:::-;12244:5;12241:32;12231:60;;12287:1;12284;12277:12;12231:60;12181:116;:::o;12303:137::-;12357:5;12388:6;12382:13;12373:22;;12404:30;12428:5;12404:30;:::i;:::-;12303:137;;;;:::o;12446:345::-;12513:6;12562:2;12550:9;12541:7;12537:23;12533:32;12530:119;;;12568:79;;:::i;:::-;12530:119;12688:1;12713:61;12766:7;12757:6;12746:9;12742:22;12713:61;:::i;:::-;12703:71;;12659:125;12446:345;;;;:::o;12797:224::-;12937:34;12933:1;12925:6;12921:14;12914:58;13006:7;13001:2;12993:6;12989:15;12982:32;12797:224;:::o;13027:366::-;13169:3;13190:67;13254:2;13249:3;13190:67;:::i;:::-;13183:74;;13266:93;13355:3;13266:93;:::i;:::-;13384:2;13379:3;13375:12;13368:19;;13027:366;;;:::o;13399:419::-;13565:4;13603:2;13592:9;13588:18;13580:26;;13652:9;13646:4;13642:20;13638:1;13627:9;13623:17;13616:47;13680:131;13806:4;13680:131;:::i;:::-;13672:139;;13399:419;;;:::o;13824:332::-;13945:4;13983:2;13972:9;13968:18;13960:26;;13996:71;14064:1;14053:9;14049:17;14040:6;13996:71;:::i;:::-;14077:72;14145:2;14134:9;14130:18;14121:6;14077:72;:::i;:::-;13824:332;;;;;:::o;14162:143::-;14219:5;14250:6;14244:13;14235:22;;14266:33;14293:5;14266:33;:::i;:::-;14162:143;;;;:::o;14311:120::-;14383:23;14400:5;14383:23;:::i;:::-;14376:5;14373:34;14363:62;;14421:1;14418;14411:12;14363:62;14311:120;:::o;14437:141::-;14493:5;14524:6;14518:13;14509:22;;14540:32;14566:5;14540:32;:::i;:::-;14437:141;;;;:::o;14584:1289::-;14707:6;14715;14723;14731;14739;14747;14755;14804:3;14792:9;14783:7;14779:23;14775:33;14772:120;;;14811:79;;:::i;:::-;14772:120;14931:1;14956:64;15012:7;15003:6;14992:9;14988:22;14956:64;:::i;:::-;14946:74;;14902:128;15069:2;15095:63;15150:7;15141:6;15130:9;15126:22;15095:63;:::i;:::-;15085:73;;15040:128;15207:2;15233:64;15289:7;15280:6;15269:9;15265:22;15233:64;:::i;:::-;15223:74;;15178:129;15346:2;15372:64;15428:7;15419:6;15408:9;15404:22;15372:64;:::i;:::-;15362:74;;15317:129;15485:3;15512:64;15568:7;15559:6;15548:9;15544:22;15512:64;:::i;:::-;15502:74;;15456:130;15625:3;15652:64;15708:7;15699:6;15688:9;15684:22;15652:64;:::i;:::-;15642:74;;15596:130;15765:3;15792:64;15848:7;15839:6;15828:9;15824:22;15792:64;:::i;:::-;15782:74;;15736:130;14584:1289;;;;;;;;;;:::o;15879:225::-;16019:34;16015:1;16007:6;16003:14;15996:58;16088:8;16083:2;16075:6;16071:15;16064:33;15879:225;:::o;16110:366::-;16252:3;16273:67;16337:2;16332:3;16273:67;:::i;:::-;16266:74;;16349:93;16438:3;16349:93;:::i;:::-;16467:2;16462:3;16458:12;16451:19;;16110:366;;;:::o;16482:419::-;16648:4;16686:2;16675:9;16671:18;16663:26;;16735:9;16729:4;16725:20;16721:1;16710:9;16706:17;16699:47;16763:131;16889:4;16763:131;:::i;:::-;16755:139;;16482:419;;;:::o;16907:223::-;17047:34;17043:1;17035:6;17031:14;17024:58;17116:6;17111:2;17103:6;17099:15;17092:31;16907:223;:::o;17136:366::-;17278:3;17299:67;17363:2;17358:3;17299:67;:::i;:::-;17292:74;;17375:93;17464:3;17375:93;:::i;:::-;17493:2;17488:3;17484:12;17477:19;;17136:366;;;:::o;17508:419::-;17674:4;17712:2;17701:9;17697:18;17689:26;;17761:9;17755:4;17751:20;17747:1;17736:9;17732:17;17725:47;17789:131;17915:4;17789:131;:::i;:::-;17781:139;;17508:419;;;:::o;17933:221::-;18073:34;18069:1;18061:6;18057:14;18050:58;18142:4;18137:2;18129:6;18125:15;18118:29;17933:221;:::o;18160:366::-;18302:3;18323:67;18387:2;18382:3;18323:67;:::i;:::-;18316:74;;18399:93;18488:3;18399:93;:::i;:::-;18517:2;18512:3;18508:12;18501:19;;18160:366;;;:::o;18532:419::-;18698:4;18736:2;18725:9;18721:18;18713:26;;18785:9;18779:4;18775:20;18771:1;18760:9;18756:17;18749:47;18813:131;18939:4;18813:131;:::i;:::-;18805:139;;18532:419;;;:::o;18957:224::-;19097:34;19093:1;19085:6;19081:14;19074:58;19166:7;19161:2;19153:6;19149:15;19142:32;18957:224;:::o;19187:366::-;19329:3;19350:67;19414:2;19409:3;19350:67;:::i;:::-;19343:74;;19426:93;19515:3;19426:93;:::i;:::-;19544:2;19539:3;19535:12;19528:19;;19187:366;;;:::o;19559:419::-;19725:4;19763:2;19752:9;19748:18;19740:26;;19812:9;19806:4;19802:20;19798:1;19787:9;19783:17;19776:47;19840:131;19966:4;19840:131;:::i;:::-;19832:139;;19559:419;;;:::o;19984:364::-;20121:4;20159:2;20148:9;20144:18;20136:26;;20172:87;20256:1;20245:9;20241:17;20232:6;20172:87;:::i;:::-;20269:72;20337:2;20326:9;20322:18;20313:6;20269:72;:::i;:::-;19984:364;;;;;:::o;20354:180::-;20402:77;20399:1;20392:88;20499:4;20496:1;20489:15;20523:4;20520:1;20513:15;20540:194;20580:4;20600:20;20618:1;20600:20;:::i;:::-;20595:25;;20634:20;20652:1;20634:20;:::i;:::-;20629:25;;20678:1;20675;20671:9;20663:17;;20702:1;20696:4;20693:11;20690:37;;;20707:18;;:::i;:::-;20690:37;20540:194;;;;:::o;20740:222::-;20880:34;20876:1;20868:6;20864:14;20857:58;20949:5;20944:2;20936:6;20932:15;20925:30;20740:222;:::o;20968:366::-;21110:3;21131:67;21195:2;21190:3;21131:67;:::i;:::-;21124:74;;21207:93;21296:3;21207:93;:::i;:::-;21325:2;21320:3;21316:12;21309:19;;20968:366;;;:::o;21340:419::-;21506:4;21544:2;21533:9;21529:18;21521:26;;21593:9;21587:4;21583:20;21579:1;21568:9;21564:17;21557:47;21621:131;21747:4;21621:131;:::i;:::-;21613:139;;21340:419;;;:::o;21765:191::-;21805:3;21824:20;21842:1;21824:20;:::i;:::-;21819:25;;21858:20;21876:1;21858:20;:::i;:::-;21853:25;;21901:1;21898;21894:9;21887:16;;21922:3;21919:1;21916:10;21913:36;;;21929:18;;:::i;:::-;21913:36;21765:191;;;;:::o;21962:177::-;22102:29;22098:1;22090:6;22086:14;22079:53;21962:177;:::o;22145:366::-;22287:3;22308:67;22372:2;22367:3;22308:67;:::i;:::-;22301:74;;22384:93;22473:3;22384:93;:::i;:::-;22502:2;22497:3;22493:12;22486:19;;22145:366;;;:::o;22517:419::-;22683:4;22721:2;22710:9;22706:18;22698:26;;22770:9;22764:4;22760:20;22756:1;22745:9;22741:17;22734:47;22798:131;22924:4;22798:131;:::i;:::-;22790:139;;22517:419;;;:::o

Swarm Source

ipfs://7ec7d54126fa5b6b3728411dba7b04ef93278b0b98fc3459e6de61bf1aadca28
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.