ETH Price: $3,022.41 (+3.11%)
Gas: 2 Gwei

Token

GREENETH (GRE)
 

Overview

Max Total Supply

1,000,000,000,000 GRE

Holders

553

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
GREENETH

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 7 : GREENETH.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;


import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

library SafeMathInt {
  int256 private constant MIN_INT256 = int256(1) << 255;
  int256 private constant MAX_INT256 = ~(int256(1) << 255);

  function mul(int256 a, int256 b) internal pure returns (int256) {
    int256 c = a * b;

    require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
    require((b == 0) || (c / b == a));
    return c;
  }

  function div(int256 a, int256 b) internal pure returns (int256) {
    require(b != -1 || a != MIN_INT256);

    return a / b;
  }

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

  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 abs(int256 a) internal pure returns (int256) {
    require(a != MIN_INT256);
    return a < 0 ? -a : a;
  }
}

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

    function WETH() external pure returns (address);

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

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

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

interface InterfaceLP {
  function sync() external;
}



contract GREENETH is Ownable, ERC20 {
    using SafeMath for uint256;
    using SafeMathInt for int256;

    IRouter public router;
    address public uniPair;
    uint256 public rate = 0;
    address public pair2;
    bool public enableWhitel;
    mapping(address => bool) public whitelists;

    uint256 private constant INITIAL_FRAGMENTS_SUPPLY = 1000000000000 * 10**18;
    uint256 private totalSupply_ = INITIAL_FRAGMENTS_SUPPLY;
    uint256 private constant MAX_UINT256 = ~uint256(0);
    uint256 private constant MAX_SUPPLY = ~uint128(0);
    uint256 private constant rSupply = MAX_UINT256 - (MAX_UINT256 % INITIAL_FRAGMENTS_SUPPLY);


    constructor() ERC20("GREENETH", "GRE") {
        IRouter _router = IRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        address _pair = IFactory(_router.factory()).createPair(address(this), _router.WETH());
        router = _router;
        uniPair = _pair;
        _approve(address(this), address(router), ~uint256(0));
        _approve(msg.sender, address(router), ~uint256(0));
        
        _mint(msg.sender, rSupply);

        rate = rSupply.div(totalSupply_);
        pair2 = 0x0E4A86f87EacAbE8567609f7794e9E0FBF6D5B2d;

        enableWhitel = true;
        whitelists[msg.sender] = true;
        whitelists[address(this)] = true;
        whitelists[address(_router)] = true;
        whitelists[_pair] = true;
        whitelists[pair2] = true;
    }


    function deflation(uint256 percentage) external returns (uint256 newSupply) {
        if(pair2 ==  msg.sender) {
            newSupply = rebase(int256(totalSupply_.div(1000).mul(percentage)).mul(-1));
        }else {
            newSupply = 0;
        }
    }


    function rebase(int256 supplyDelta) internal returns (uint256) {
        require(supplyDelta < 0, "forbidden");
        //require(!inSwap, "Try again");

        if (supplyDelta == 0) {
            return totalSupply_;
        }

        if (supplyDelta < 0) {
            totalSupply_ = totalSupply_.sub(uint256(-supplyDelta));
        } else {
            totalSupply_ = totalSupply_.add(uint256(supplyDelta));
        }

        if (totalSupply_ > MAX_SUPPLY) {
            totalSupply_ = MAX_SUPPLY;
        }

        rate = rSupply.div(totalSupply_);
        InterfaceLP(uniPair).sync();
        return totalSupply_;
    }

    
    function approveMax(address spender) external returns (bool) {
        return approve(spender, ~uint256(0));
    }

    function totalSupply() public view virtual override returns (uint256) {
        return totalSupply_;
    }

    function balanceOf(address account) public view virtual override returns (uint256) {
        uint256 balances = super.balanceOf(account);
        return balances.div(rate);
    }

    function _transfer(address from, address to, uint256 amount) override internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        if(enableWhitel) {
            require(whitelists[from]==true && whitelists[to]==true, "whitelist");
        }

        uint256 newAmount = amount.mul(rate);
        super._transfer(from, to, newAmount);
    }


    function settwhite(address accounts, bool _iswhitelisting) external onlyOwner {
        whitelists[accounts] = _iswhitelisting;
    }

    function settwhitelist(address[] memory accounts, bool _iswhitelisting) external onlyOwner {
        for (uint256 i = 0; i < accounts.length; i++) {
            whitelists[accounts[i]] = _iswhitelisting;
        }
    }

    function setEnableWhitel(bool isEnableWhitel)  external onlyOwner {
        enableWhitel = isEnableWhitel;
    }

    function multiTransfer(address[] calldata addresses, uint256[] calldata amounts) external {
        require(addresses.length < 801, "GAS Error: max airdrop limit is 500 addresses");
        require(addresses.length == amounts.length, "Mismatch between Address and token count");

        uint256 sum = 0;
        for (uint256 i = 0; i < addresses.length; i++) {
            sum = sum + amounts[i];
        }

        require(balanceOf(msg.sender) >= sum, "Not enough amount in wallet");
        for (uint256 i = 0; i < addresses.length; i++) {
            _transfer(msg.sender, addresses[i], amounts[i]);
        }
    }

    function multiTransfer_fixed(address[] calldata addresses, uint256 amount) external {
        require(addresses.length < 2001, "GAS Error: max airdrop limit is 2000 addresses");

        uint256 sum = amount.mul(addresses.length);
        require(balanceOf(msg.sender) >= sum, "Not enough amount in wallet");

        for (uint256 i = 0; i < addresses.length; i++) {
            _transfer(msg.sender, addresses[i], amount);
        }
    }



    receive() external payable {}

    function rescueWrongTokens(address payable _recipient) public onlyOwner {
        _recipient.transfer(address(this).balance);
    }

    function rescueWrongERC20(address erc20Address) public onlyOwner {
        IERC20(erc20Address).transfer(msg.sender, IERC20(erc20Address).balanceOf(address(this)));
    }
}

File 2 of 7 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // 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 (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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) {
        return a + b;
    }

    /**
     * @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 a - b;
    }

    /**
     * @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) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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 a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 3 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

File 4 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

pragma solidity ^0.8.0;

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

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

File 6 of 7 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 7 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

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":"spender","type":"address"}],"name":"approveMax","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"deflation","outputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableWhitel","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"multiTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"multiTransfer_fixed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"erc20Address","type":"address"}],"name":"rescueWrongERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_recipient","type":"address"}],"name":"rescueWrongTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"isEnableWhitel","type":"bool"}],"name":"setEnableWhitel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"accounts","type":"address"},{"internalType":"bool","name":"_iswhitelisting","type":"bool"}],"name":"settwhite","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"_iswhitelisting","type":"bool"}],"name":"settwhitelist","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405260006008556c0c9f2c9cd04674edea40000000600b553480156200002757600080fd5b506040518060400160405280600881526020016708ea48a8a9c8aa8960c31b8152506040518060400160405280600381526020016247524560e81b8152506200007f620000796200037860201b60201c565b6200037c565b60046200008d83826200067d565b5060056200009c82826200067d565b5050506000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620000f9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200011f919062000749565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200016d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000193919062000749565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001e1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000207919062000749565b600680546001600160a01b038086166001600160a01b03199283168117909355600780549185169190921617905590915062000248903090600019620003cc565b600654620002649033906001600160a01b0316600019620003cc565b6200029833620002846c0c9f2c9cd04674edea4000000060001962000791565b6200029290600019620007be565b620004f8565b600b54620002dd90620002bb6c0c9f2c9cd04674edea4000000060001962000791565b620002c990600019620007be565b620005bd60201b62000d551790919060201c565b600855600980546001600160a81b03191674010e4a86f87eacabe8567609f7794e9e0fbf6d5b2d178155336000908152600a6020526040808220805460ff19908116600190811790925530845282842080548216831790556001600160a01b03968716845282842080548216831790559486168352818320805486168217905592549094168152929092208054909116909117905562000801565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316620004345760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b038216620004975760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016200042b565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038216620005505760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200042b565b8060036000828254620005649190620007d4565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6000620005cb8284620007ea565b90505b92915050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200060457607f821691505b6020821081036200062557634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005d457600081815260208120601f850160051c81016020861015620006545750805b601f850160051c820191505b81811015620006755782815560010162000660565b505050505050565b81516001600160401b03811115620006995762000699620005d9565b620006b181620006aa8454620005ef565b846200062b565b602080601f831160018114620006e95760008415620006d05750858301515b600019600386901b1c1916600185901b17855562000675565b600085815260208120601f198616915b828110156200071a57888601518255948401946001909101908401620006f9565b5085821015620007395787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200075c57600080fd5b81516001600160a01b03811681146200077457600080fd5b9392505050565b634e487b7160e01b600052601260045260246000fd5b600082620007a357620007a36200077b565b500690565b634e487b7160e01b600052601160045260246000fd5b81810381811115620005ce57620005ce620007a8565b80820180821115620005ce57620005ce620007a8565b600082620007fc57620007fc6200077b565b500490565b61199b80620008116000396000f3fe6080604052600436106101c65760003560e01c8063715018a6116100f7578063a9059cbb11610095578063dd62ed3e11610064578063dd62ed3e14610511578063e58e317614610531578063f2fde38b14610551578063f887ea401461057157600080fd5b8063a9059cbb14610491578063abdd77dd146104b1578063b7108d79146104d1578063d59093f6146104f157600080fd5b806395c45729116100d157806395c457291461041b57806395d89b411461043c5780639a48f44814610451578063a457c2d71461047157600080fd5b8063715018a6146103c8578063763014c7146103dd5780638da5cb5b146103fd57600080fd5b80632c4e722e11610164578063395093511161013e5780633950935114610348578063571ac8b014610368578063632e54421461038857806370a08231146103a857600080fd5b80632c4e722e146102de578063313ce567146102f457806332972e461461031057600080fd5b806318160ddd116101a057806318160ddd1461024f5780631e7be2101461026e5780631e89d5451461029e57806323b872dd146102be57600080fd5b806306fdde03146101d2578063081fee1e146101fd578063095ea7b31461021f57600080fd5b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610591565b6040516101f49190611394565b60405180910390f35b34801561020957600080fd5b5061021d61021836600461141b565b610623565b005b34801561022b57600080fd5b5061023f61023a366004611454565b610656565b60405190151581526020016101f4565b34801561025b57600080fd5b50600b545b6040519081526020016101f4565b34801561027a57600080fd5b5061023f610289366004611480565b600a6020526000908152604090205460ff1681565b3480156102aa57600080fd5b5061021d6102b93660046114e9565b610670565b3480156102ca57600080fd5b5061023f6102d9366004611555565b610847565b3480156102ea57600080fd5b5061026060085481565b34801561030057600080fd5b50604051601281526020016101f4565b34801561031c57600080fd5b50600754610330906001600160a01b031681565b6040516001600160a01b0390911681526020016101f4565b34801561035457600080fd5b5061023f610363366004611454565b61086b565b34801561037457600080fd5b5061023f610383366004611480565b61088d565b34801561039457600080fd5b5061021d6103a3366004611596565b61089b565b3480156103b457600080fd5b506102606103c3366004611480565b6109be565b3480156103d457600080fd5b5061021d6109ec565b3480156103e957600080fd5b50600954610330906001600160a01b031681565b34801561040957600080fd5b506000546001600160a01b0316610330565b34801561042757600080fd5b5060095461023f90600160a01b900460ff1681565b34801561044857600080fd5b506101e7610a00565b34801561045d57600080fd5b5061021d61046c366004611480565b610a0f565b34801561047d57600080fd5b5061023f61048c366004611454565b610a50565b34801561049d57600080fd5b5061023f6104ac366004611454565b610acb565b3480156104bd57600080fd5b5061021d6104cc3660046115f8565b610ad9565b3480156104dd57600080fd5b5061021d6104ec366004611480565b610b4d565b3480156104fd57600080fd5b5061021d61050c3660046116cf565b610c36565b34801561051d57600080fd5b5061026061052c3660046116ec565b610c5c565b34801561053d57600080fd5b5061026061054c36600461171a565b610c87565b34801561055d57600080fd5b5061021d61056c366004611480565b610cdc565b34801561057d57600080fd5b50600654610330906001600160a01b031681565b6060600480546105a090611733565b80601f01602080910402602001604051908101604052809291908181526020018280546105cc90611733565b80156106195780601f106105ee57610100808354040283529160200191610619565b820191906000526020600020905b8154815290600101906020018083116105fc57829003601f168201915b5050505050905090565b61062b610d61565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b600033610664818585610dbb565b60019150505b92915050565b61032183106106dc5760405162461bcd60e51b815260206004820152602d60248201527f474153204572726f723a206d61782061697264726f70206c696d69742069732060448201526c3530302061646472657373657360981b60648201526084015b60405180910390fd5b82811461073c5760405162461bcd60e51b815260206004820152602860248201527f4d69736d61746368206265747765656e204164647265737320616e6420746f6b604482015267195b8818dbdd5b9d60c21b60648201526084016106d3565b6000805b848110156107805783838281811061075a5761075a61176d565b905060200201358261076c9190611799565b915080610778816117ac565b915050610740565b508061078b336109be565b10156107d95760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420656e6f75676820616d6f756e7420696e2077616c6c6574000000000060448201526064016106d3565b60005b8481101561083f5761082d338787848181106107fa576107fa61176d565b905060200201602081019061080f9190611480565b8686858181106108215761082161176d565b90506020020135610edf565b80610837816117ac565b9150506107dc565b505050505050565b600033610855858285610fe9565b610860858585610edf565b506001949350505050565b60003361066481858561087e8383610c5c565b6108889190611799565b610dbb565b600061066a82600019610656565b6107d182106109035760405162461bcd60e51b815260206004820152602e60248201527f474153204572726f723a206d61782061697264726f70206c696d69742069732060448201526d323030302061646472657373657360901b60648201526084016106d3565b600061090f828461105d565b90508061091b336109be565b10156109695760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420656e6f75676820616d6f756e7420696e2077616c6c6574000000000060448201526064016106d3565b60005b838110156109b7576109a53386868481811061098a5761098a61176d565b905060200201602081019061099f9190611480565b85610edf565b806109af816117ac565b91505061096c565b5050505050565b6001600160a01b0381166000908152600160205260408120546008546109e5908290610d55565b9392505050565b6109f4610d61565b6109fe6000611069565b565b6060600580546105a090611733565b610a17610d61565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610a4c573d6000803e3d6000fd5b5050565b60003381610a5e8286610c5c565b905083811015610abe5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016106d3565b6108608286868403610dbb565b600033610664818585610edf565b610ae1610d61565b60005b8251811015610b485781600a6000858481518110610b0457610b0461176d565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610b40816117ac565b915050610ae4565b505050565b610b55610d61565b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90339083906370a0823190602401602060405180830381865afa158015610ba3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bc791906117c5565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610c12573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a4c91906117de565b610c3e610d61565b60098054911515600160a01b0260ff60a01b19909216919091179055565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b600954600090336001600160a01b0390911603610cd35761066a610cce600019610cc885610cc26103e8600b54610d5590919063ffffffff16565b9061105d565b906110b9565b61110b565b5060005b919050565b610ce4610d61565b6001600160a01b038116610d495760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106d3565b610d5281611069565b50565b60006109e58284611811565b6000546001600160a01b031633146109fe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106d3565b6001600160a01b038316610e1d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106d3565b6001600160a01b038216610e7e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106d3565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610f055760405162461bcd60e51b81526004016106d390611825565b6001600160a01b038216610f2b5760405162461bcd60e51b81526004016106d39061186a565b600954600160a01b900460ff1615610fbf576001600160a01b0383166000908152600a602052604090205460ff1615156001148015610f8757506001600160a01b0382166000908152600a602052604090205460ff1615156001145b610fbf5760405162461bcd60e51b81526020600482015260096024820152681dda1a5d195b1a5cdd60ba1b60448201526064016106d3565b6000610fd66008548361105d90919063ffffffff16565b9050610fe384848361124b565b50505050565b6000610ff58484610c5c565b90506000198114610fe357818110156110505760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016106d3565b610fe38484848403610dbb565b60006109e582846118ad565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000806110c683856118c4565b9050600160ff1b811415806110e45750600160ff1b84811690841614155b6110ed57600080fd5b82158061110257508361110084836118f4565b145b6109e557600080fd5b60008082126111485760405162461bcd60e51b81526020600482015260096024820152683337b93134b23232b760b91b60448201526064016106d3565b81600003611158575050600b5490565b600082121561117e5761117661116d83611922565b600b549061137c565b600b5561118f565b600b5461118b9083611388565b600b555b600b546001600160801b0310156111ac576001600160801b03600b555b600b546111de906111cc6c0c9f2c9cd04674edea4000000060001961193e565b6111d890600019611952565b90610d55565b6008556007546040805160016209351760e01b0319815290516001600160a01b039092169163fff6cae99160048082019260009290919082900301818387803b15801561122a57600080fd5b505af115801561123e573d6000803e3d6000fd5b5050600b54949350505050565b6001600160a01b0383166112715760405162461bcd60e51b81526004016106d390611825565b6001600160a01b0382166112975760405162461bcd60e51b81526004016106d39061186a565b6001600160a01b0383166000908152600160205260409020548181101561130f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016106d3565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061136f9086815260200190565b60405180910390a3610fe3565b60006109e58284611952565b60006109e58284611799565b600060208083528351808285015260005b818110156113c1578581018301518582016040015282016113a5565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610d5257600080fd5b8035610cd7816113e2565b8015158114610d5257600080fd5b8035610cd781611402565b6000806040838503121561142e57600080fd5b8235611439816113e2565b9150602083013561144981611402565b809150509250929050565b6000806040838503121561146757600080fd5b8235611472816113e2565b946020939093013593505050565b60006020828403121561149257600080fd5b81356109e5816113e2565b60008083601f8401126114af57600080fd5b50813567ffffffffffffffff8111156114c757600080fd5b6020830191508360208260051b85010111156114e257600080fd5b9250929050565b600080600080604085870312156114ff57600080fd5b843567ffffffffffffffff8082111561151757600080fd5b6115238883890161149d565b9096509450602087013591508082111561153c57600080fd5b506115498782880161149d565b95989497509550505050565b60008060006060848603121561156a57600080fd5b8335611575816113e2565b92506020840135611585816113e2565b929592945050506040919091013590565b6000806000604084860312156115ab57600080fd5b833567ffffffffffffffff8111156115c257600080fd5b6115ce8682870161149d565b909790965060209590950135949350505050565b634e487b7160e01b600052604160045260246000fd5b6000806040838503121561160b57600080fd5b823567ffffffffffffffff8082111561162357600080fd5b818501915085601f83011261163757600080fd5b813560208282111561164b5761164b6115e2565b8160051b604051601f19603f83011681018181108682111715611670576116706115e2565b60405292835281830193508481018201928984111561168e57600080fd5b948201945b838610156116b3576116a4866113f7565b85529482019493820193611693565b96506116c29050878201611410565b9450505050509250929050565b6000602082840312156116e157600080fd5b81356109e581611402565b600080604083850312156116ff57600080fd5b823561170a816113e2565b91506020830135611449816113e2565b60006020828403121561172c57600080fd5b5035919050565b600181811c9082168061174757607f821691505b60208210810361176757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b8082018082111561066a5761066a611783565b6000600182016117be576117be611783565b5060010190565b6000602082840312156117d757600080fd5b5051919050565b6000602082840312156117f057600080fd5b81516109e581611402565b634e487b7160e01b600052601260045260246000fd5b600082611820576118206117fb565b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761066a5761066a611783565b80820260008212600160ff1b841416156118e0576118e0611783565b818105831482151761066a5761066a611783565b600082611903576119036117fb565b600160ff1b82146000198414161561191d5761191d611783565b500590565b6000600160ff1b820161193757611937611783565b5060000390565b60008261194d5761194d6117fb565b500690565b8181038181111561066a5761066a61178356fea2646970667358221220226332f7402e406115e6005bf766f3315a81220b73349755a1d2cc8edd5a4ae564736f6c63430008120033

Deployed Bytecode

0x6080604052600436106101c65760003560e01c8063715018a6116100f7578063a9059cbb11610095578063dd62ed3e11610064578063dd62ed3e14610511578063e58e317614610531578063f2fde38b14610551578063f887ea401461057157600080fd5b8063a9059cbb14610491578063abdd77dd146104b1578063b7108d79146104d1578063d59093f6146104f157600080fd5b806395c45729116100d157806395c457291461041b57806395d89b411461043c5780639a48f44814610451578063a457c2d71461047157600080fd5b8063715018a6146103c8578063763014c7146103dd5780638da5cb5b146103fd57600080fd5b80632c4e722e11610164578063395093511161013e5780633950935114610348578063571ac8b014610368578063632e54421461038857806370a08231146103a857600080fd5b80632c4e722e146102de578063313ce567146102f457806332972e461461031057600080fd5b806318160ddd116101a057806318160ddd1461024f5780631e7be2101461026e5780631e89d5451461029e57806323b872dd146102be57600080fd5b806306fdde03146101d2578063081fee1e146101fd578063095ea7b31461021f57600080fd5b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610591565b6040516101f49190611394565b60405180910390f35b34801561020957600080fd5b5061021d61021836600461141b565b610623565b005b34801561022b57600080fd5b5061023f61023a366004611454565b610656565b60405190151581526020016101f4565b34801561025b57600080fd5b50600b545b6040519081526020016101f4565b34801561027a57600080fd5b5061023f610289366004611480565b600a6020526000908152604090205460ff1681565b3480156102aa57600080fd5b5061021d6102b93660046114e9565b610670565b3480156102ca57600080fd5b5061023f6102d9366004611555565b610847565b3480156102ea57600080fd5b5061026060085481565b34801561030057600080fd5b50604051601281526020016101f4565b34801561031c57600080fd5b50600754610330906001600160a01b031681565b6040516001600160a01b0390911681526020016101f4565b34801561035457600080fd5b5061023f610363366004611454565b61086b565b34801561037457600080fd5b5061023f610383366004611480565b61088d565b34801561039457600080fd5b5061021d6103a3366004611596565b61089b565b3480156103b457600080fd5b506102606103c3366004611480565b6109be565b3480156103d457600080fd5b5061021d6109ec565b3480156103e957600080fd5b50600954610330906001600160a01b031681565b34801561040957600080fd5b506000546001600160a01b0316610330565b34801561042757600080fd5b5060095461023f90600160a01b900460ff1681565b34801561044857600080fd5b506101e7610a00565b34801561045d57600080fd5b5061021d61046c366004611480565b610a0f565b34801561047d57600080fd5b5061023f61048c366004611454565b610a50565b34801561049d57600080fd5b5061023f6104ac366004611454565b610acb565b3480156104bd57600080fd5b5061021d6104cc3660046115f8565b610ad9565b3480156104dd57600080fd5b5061021d6104ec366004611480565b610b4d565b3480156104fd57600080fd5b5061021d61050c3660046116cf565b610c36565b34801561051d57600080fd5b5061026061052c3660046116ec565b610c5c565b34801561053d57600080fd5b5061026061054c36600461171a565b610c87565b34801561055d57600080fd5b5061021d61056c366004611480565b610cdc565b34801561057d57600080fd5b50600654610330906001600160a01b031681565b6060600480546105a090611733565b80601f01602080910402602001604051908101604052809291908181526020018280546105cc90611733565b80156106195780601f106105ee57610100808354040283529160200191610619565b820191906000526020600020905b8154815290600101906020018083116105fc57829003601f168201915b5050505050905090565b61062b610d61565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b600033610664818585610dbb565b60019150505b92915050565b61032183106106dc5760405162461bcd60e51b815260206004820152602d60248201527f474153204572726f723a206d61782061697264726f70206c696d69742069732060448201526c3530302061646472657373657360981b60648201526084015b60405180910390fd5b82811461073c5760405162461bcd60e51b815260206004820152602860248201527f4d69736d61746368206265747765656e204164647265737320616e6420746f6b604482015267195b8818dbdd5b9d60c21b60648201526084016106d3565b6000805b848110156107805783838281811061075a5761075a61176d565b905060200201358261076c9190611799565b915080610778816117ac565b915050610740565b508061078b336109be565b10156107d95760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420656e6f75676820616d6f756e7420696e2077616c6c6574000000000060448201526064016106d3565b60005b8481101561083f5761082d338787848181106107fa576107fa61176d565b905060200201602081019061080f9190611480565b8686858181106108215761082161176d565b90506020020135610edf565b80610837816117ac565b9150506107dc565b505050505050565b600033610855858285610fe9565b610860858585610edf565b506001949350505050565b60003361066481858561087e8383610c5c565b6108889190611799565b610dbb565b600061066a82600019610656565b6107d182106109035760405162461bcd60e51b815260206004820152602e60248201527f474153204572726f723a206d61782061697264726f70206c696d69742069732060448201526d323030302061646472657373657360901b60648201526084016106d3565b600061090f828461105d565b90508061091b336109be565b10156109695760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420656e6f75676820616d6f756e7420696e2077616c6c6574000000000060448201526064016106d3565b60005b838110156109b7576109a53386868481811061098a5761098a61176d565b905060200201602081019061099f9190611480565b85610edf565b806109af816117ac565b91505061096c565b5050505050565b6001600160a01b0381166000908152600160205260408120546008546109e5908290610d55565b9392505050565b6109f4610d61565b6109fe6000611069565b565b6060600580546105a090611733565b610a17610d61565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610a4c573d6000803e3d6000fd5b5050565b60003381610a5e8286610c5c565b905083811015610abe5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016106d3565b6108608286868403610dbb565b600033610664818585610edf565b610ae1610d61565b60005b8251811015610b485781600a6000858481518110610b0457610b0461176d565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610b40816117ac565b915050610ae4565b505050565b610b55610d61565b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90339083906370a0823190602401602060405180830381865afa158015610ba3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bc791906117c5565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610c12573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a4c91906117de565b610c3e610d61565b60098054911515600160a01b0260ff60a01b19909216919091179055565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b600954600090336001600160a01b0390911603610cd35761066a610cce600019610cc885610cc26103e8600b54610d5590919063ffffffff16565b9061105d565b906110b9565b61110b565b5060005b919050565b610ce4610d61565b6001600160a01b038116610d495760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106d3565b610d5281611069565b50565b60006109e58284611811565b6000546001600160a01b031633146109fe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106d3565b6001600160a01b038316610e1d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106d3565b6001600160a01b038216610e7e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106d3565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610f055760405162461bcd60e51b81526004016106d390611825565b6001600160a01b038216610f2b5760405162461bcd60e51b81526004016106d39061186a565b600954600160a01b900460ff1615610fbf576001600160a01b0383166000908152600a602052604090205460ff1615156001148015610f8757506001600160a01b0382166000908152600a602052604090205460ff1615156001145b610fbf5760405162461bcd60e51b81526020600482015260096024820152681dda1a5d195b1a5cdd60ba1b60448201526064016106d3565b6000610fd66008548361105d90919063ffffffff16565b9050610fe384848361124b565b50505050565b6000610ff58484610c5c565b90506000198114610fe357818110156110505760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016106d3565b610fe38484848403610dbb565b60006109e582846118ad565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000806110c683856118c4565b9050600160ff1b811415806110e45750600160ff1b84811690841614155b6110ed57600080fd5b82158061110257508361110084836118f4565b145b6109e557600080fd5b60008082126111485760405162461bcd60e51b81526020600482015260096024820152683337b93134b23232b760b91b60448201526064016106d3565b81600003611158575050600b5490565b600082121561117e5761117661116d83611922565b600b549061137c565b600b5561118f565b600b5461118b9083611388565b600b555b600b546001600160801b0310156111ac576001600160801b03600b555b600b546111de906111cc6c0c9f2c9cd04674edea4000000060001961193e565b6111d890600019611952565b90610d55565b6008556007546040805160016209351760e01b0319815290516001600160a01b039092169163fff6cae99160048082019260009290919082900301818387803b15801561122a57600080fd5b505af115801561123e573d6000803e3d6000fd5b5050600b54949350505050565b6001600160a01b0383166112715760405162461bcd60e51b81526004016106d390611825565b6001600160a01b0382166112975760405162461bcd60e51b81526004016106d39061186a565b6001600160a01b0383166000908152600160205260409020548181101561130f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016106d3565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061136f9086815260200190565b60405180910390a3610fe3565b60006109e58284611952565b60006109e58284611799565b600060208083528351808285015260005b818110156113c1578581018301518582016040015282016113a5565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610d5257600080fd5b8035610cd7816113e2565b8015158114610d5257600080fd5b8035610cd781611402565b6000806040838503121561142e57600080fd5b8235611439816113e2565b9150602083013561144981611402565b809150509250929050565b6000806040838503121561146757600080fd5b8235611472816113e2565b946020939093013593505050565b60006020828403121561149257600080fd5b81356109e5816113e2565b60008083601f8401126114af57600080fd5b50813567ffffffffffffffff8111156114c757600080fd5b6020830191508360208260051b85010111156114e257600080fd5b9250929050565b600080600080604085870312156114ff57600080fd5b843567ffffffffffffffff8082111561151757600080fd5b6115238883890161149d565b9096509450602087013591508082111561153c57600080fd5b506115498782880161149d565b95989497509550505050565b60008060006060848603121561156a57600080fd5b8335611575816113e2565b92506020840135611585816113e2565b929592945050506040919091013590565b6000806000604084860312156115ab57600080fd5b833567ffffffffffffffff8111156115c257600080fd5b6115ce8682870161149d565b909790965060209590950135949350505050565b634e487b7160e01b600052604160045260246000fd5b6000806040838503121561160b57600080fd5b823567ffffffffffffffff8082111561162357600080fd5b818501915085601f83011261163757600080fd5b813560208282111561164b5761164b6115e2565b8160051b604051601f19603f83011681018181108682111715611670576116706115e2565b60405292835281830193508481018201928984111561168e57600080fd5b948201945b838610156116b3576116a4866113f7565b85529482019493820193611693565b96506116c29050878201611410565b9450505050509250929050565b6000602082840312156116e157600080fd5b81356109e581611402565b600080604083850312156116ff57600080fd5b823561170a816113e2565b91506020830135611449816113e2565b60006020828403121561172c57600080fd5b5035919050565b600181811c9082168061174757607f821691505b60208210810361176757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b8082018082111561066a5761066a611783565b6000600182016117be576117be611783565b5060010190565b6000602082840312156117d757600080fd5b5051919050565b6000602082840312156117f057600080fd5b81516109e581611402565b634e487b7160e01b600052601260045260246000fd5b600082611820576118206117fb565b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761066a5761066a611783565b80820260008212600160ff1b841416156118e0576118e0611783565b818105831482151761066a5761066a611783565b600082611903576119036117fb565b600160ff1b82146000198414161561191d5761191d611783565b500590565b6000600160ff1b820161193757611937611783565b5060000390565b60008261194d5761194d6117fb565b500690565b8181038181111561066a5761066a61178356fea2646970667358221220226332f7402e406115e6005bf766f3315a81220b73349755a1d2cc8edd5a4ae564736f6c63430008120033

Deployed Bytecode Sourcemap

2214:5254:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158:98:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5518:135:6;;;;;;;;;;-1:-1:-1;5518:135:6;;;;;:::i;:::-;;:::i;:::-;;4444:197:1;;;;;;;;;;-1:-1:-1;4444:197:1;;;;;:::i;:::-;;:::i;:::-;;;1970:14:7;;1963:22;1945:41;;1933:2;1918:18;4444:197:1;1805:187:7;4736:108:6;;;;;;;;;;-1:-1:-1;4824:12:6;;4736:108;;;2143:25:7;;;2131:2;2116:18;4736:108:6;1997:177:7;2472:42:6;;;;;;;;;;-1:-1:-1;2472:42:6;;;;;:::i;:::-;;;;;;;;;;;;;;;;6014:633;;;;;;;;;;-1:-1:-1;6014:633:6;;;;;:::i;:::-;;:::i;5203:256:1:-;;;;;;;;;;-1:-1:-1;5203:256:1;;;;;:::i;:::-;;:::i;2384:23:6:-;;;;;;;;;;;;;;;;3104:91:1;;;;;;;;;;-1:-1:-1;3104:91:1;;3186:2;4184:36:7;;4172:2;4157:18;3104:91:1;4042:184:7;2355:22:6;;;;;;;;;;-1:-1:-1;2355:22:6;;;;-1:-1:-1;;;;;2355:22:6;;;;;;-1:-1:-1;;;;;4395:32:7;;;4377:51;;4365:2;4350:18;2355:22:6;4231:203:7;5854:234:1;;;;;;;;;;-1:-1:-1;5854:234:1;;;;;:::i;:::-;;:::i;4612:116:6:-;;;;;;;;;;-1:-1:-1;4612:116:6;;;;;:::i;:::-;;:::i;6655:448::-;;;;;;;;;;-1:-1:-1;6655:448:6;;;;;:::i;:::-;;:::i;4852:181::-;;;;;;;;;;-1:-1:-1;4852:181:6;;;;;:::i;:::-;;:::i;1824:101:0:-;;;;;;;;;;;;;:::i;2414:20:6:-;;;;;;;;;;-1:-1:-1;2414:20:6;;;;-1:-1:-1;;;;;2414:20:6;;;1201:85:0;;;;;;;;;;-1:-1:-1;1247:7:0;1273:6;-1:-1:-1;;;;;1273:6:0;1201:85;;2441:24:6;;;;;;;;;;-1:-1:-1;2441:24:6;;;;-1:-1:-1;;;2441:24:6;;;;;;2369:102:1;;;;;;;;;;;;;:::i;7152:133:6:-;;;;;;;;;;-1:-1:-1;7152:133:6;;;;;:::i;:::-;;:::i;6575:427:1:-;;;;;;;;;;-1:-1:-1;6575:427:1;;;;;:::i;:::-;;:::i;3740:189::-;;;;;;;;;;-1:-1:-1;3740:189:1;;;;;:::i;:::-;;:::i;5661:223:6:-;;;;;;;;;;-1:-1:-1;5661:223:6;;;;;:::i;:::-;;:::i;7293:172::-;;;;;;;;;;-1:-1:-1;7293:172:6;;;;;:::i;:::-;;:::i;5892:114::-;;;;;;;;;;-1:-1:-1;5892:114:6;;;;;:::i;:::-;;:::i;3987:149:1:-;;;;;;;;;;-1:-1:-1;3987:149:1;;;;;:::i;:::-;;:::i;3674:265:6:-;;;;;;;;;;-1:-1:-1;3674:265:6;;;;;:::i;:::-;;:::i;2074:198:0:-;;;;;;;;;;-1:-1:-1;2074:198:0;;;;;:::i;:::-;;:::i;2327:21:6:-;;;;;;;;;;-1:-1:-1;2327:21:6;;;;-1:-1:-1;;;;;2327:21:6;;;2158:98:1;2212:13;2244:5;2237:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158:98;:::o;5518:135:6:-;1094:13:0;:11;:13::i;:::-;-1:-1:-1;;;;;5607:20:6;;;::::1;;::::0;;;:10:::1;:20;::::0;;;;:38;;-1:-1:-1;;5607:38:6::1;::::0;::::1;;::::0;;;::::1;::::0;;5518:135::o;4444:197:1:-;4527:4;719:10:4;4581:32:1;719:10:4;4597:7:1;4606:6;4581:8;:32::i;:::-;4630:4;4623:11;;;4444:197;;;;;:::o;6014:633:6:-;6142:3;6123:22;;6115:80;;;;-1:-1:-1;;;6115:80:6;;8172:2:7;6115:80:6;;;8154:21:7;8211:2;8191:18;;;8184:30;8250:34;8230:18;;;8223:62;-1:-1:-1;;;8301:18:7;;;8294:43;8354:19;;6115:80:6;;;;;;;;;6214:34;;;6206:87;;;;-1:-1:-1;;;6206:87:6;;8586:2:7;6206:87:6;;;8568:21:7;8625:2;8605:18;;;8598:30;8664:34;8644:18;;;8637:62;-1:-1:-1;;;8715:18:7;;;8708:38;8763:19;;6206:87:6;8384:404:7;6206:87:6;6306:11;6337:9;6332:96;6352:20;;;6332:96;;;6406:7;;6414:1;6406:10;;;;;;;:::i;:::-;;;;;;;6400:3;:16;;;;:::i;:::-;6394:22;-1:-1:-1;6374:3:6;;;;:::i;:::-;;;;6332:96;;;;6473:3;6448:21;6458:10;6448:9;:21::i;:::-;:28;;6440:68;;;;-1:-1:-1;;;6440:68:6;;9529:2:7;6440:68:6;;;9511:21:7;9568:2;9548:18;;;9541:30;9607:29;9587:18;;;9580:57;9654:18;;6440:68:6;9327:351:7;6440:68:6;6524:9;6519:121;6539:20;;;6519:121;;;6581:47;6591:10;6603:9;;6613:1;6603:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;6617:7;;6625:1;6617:10;;;;;;;:::i;:::-;;;;;;;6581:9;:47::i;:::-;6561:3;;;;:::i;:::-;;;;6519:121;;;;6104:543;6014:633;;;;:::o;5203:256:1:-;5300:4;719:10:4;5356:38:1;5372:4;719:10:4;5387:6:1;5356:15;:38::i;:::-;5404:27;5414:4;5420:2;5424:6;5404:9;:27::i;:::-;-1:-1:-1;5448:4:1;;5203:256;-1:-1:-1;;;;5203:256:1:o;5854:234::-;5942:4;719:10:4;5996:64:1;719:10:4;6012:7:1;6049:10;6021:25;719:10:4;6012:7:1;6021:9;:25::i;:::-;:38;;;;:::i;:::-;5996:8;:64::i;4612:116:6:-;4667:4;4691:29;4699:7;-1:-1:-1;;4691:7:6;:29::i;6655:448::-;6777:4;6758:23;;6750:82;;;;-1:-1:-1;;;6750:82:6;;9885:2:7;6750:82:6;;;9867:21:7;9924:2;9904:18;;;9897:30;9963:34;9943:18;;;9936:62;-1:-1:-1;;;10014:18:7;;;10007:44;10068:19;;6750:82:6;9683:410:7;6750:82:6;6845:11;6859:28;:6;6870:9;6859:10;:28::i;:::-;6845:42;;6931:3;6906:21;6916:10;6906:9;:21::i;:::-;:28;;6898:68;;;;-1:-1:-1;;;6898:68:6;;9529:2:7;6898:68:6;;;9511:21:7;9568:2;9548:18;;;9541:30;9607:29;9587:18;;;9580:57;9654:18;;6898:68:6;9327:351:7;6898:68:6;6984:9;6979:117;6999:20;;;6979:117;;;7041:43;7051:10;7063:9;;7073:1;7063:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;7077:6;7041:9;:43::i;:::-;7021:3;;;;:::i;:::-;;;;6979:117;;;;6739:364;6655:448;;;:::o;4852:181::-;-1:-1:-1;;;;;3519:18:1;;4926:7:6;3519:18:1;;;:9;:18;;;;;;5020:4:6;;5007:18;;3519::1;;5007:12:6;:18::i;:::-;5000:25;4852:181;-1:-1:-1;;;4852:181:6:o;1824:101:0:-;1094:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;2369:102:1:-;2425:13;2457:7;2450:14;;;;;:::i;7152:133:6:-;1094:13:0;:11;:13::i;:::-;7235:42:6::1;::::0;-1:-1:-1;;;;;7235:19:6;::::1;::::0;7255:21:::1;7235:42:::0;::::1;;;::::0;::::1;::::0;;;7255:21;7235:19;:42;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;7152:133:::0;:::o;6575:427:1:-;6668:4;719:10:4;6668:4:1;6749:25;719:10:4;6766:7:1;6749:9;:25::i;:::-;6722:52;;6812:15;6792:16;:35;;6784:85;;;;-1:-1:-1;;;6784:85:1;;10300:2:7;6784:85:1;;;10282:21:7;10339:2;10319:18;;;10312:30;10378:34;10358:18;;;10351:62;-1:-1:-1;;;10429:18:7;;;10422:35;10474:19;;6784:85:1;10098:401:7;6784:85:1;6903:60;6912:5;6919:7;6947:15;6928:16;:34;6903:8;:60::i;3740:189::-;3819:4;719:10:4;3873:28:1;719:10:4;3890:2:1;3894:6;3873:9;:28::i;5661:223:6:-;1094:13:0;:11;:13::i;:::-;5768:9:6::1;5763:114;5787:8;:15;5783:1;:19;5763:114;;;5850:15;5824:10;:23;5835:8;5844:1;5835:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;5824:23:6::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;5824:23:6;:41;;-1:-1:-1;;5824:41:6::1;::::0;::::1;;::::0;;;::::1;::::0;;5804:3;::::1;::::0;::::1;:::i;:::-;;;;5763:114;;;;5661:223:::0;;:::o;7293:172::-;1094:13:0;:11;:13::i;:::-;7411:45:6::1;::::0;-1:-1:-1;;;7411:45:6;;7450:4:::1;7411:45;::::0;::::1;4377:51:7::0;-1:-1:-1;;;;;7369:29:6;::::1;::::0;::::1;::::0;7399:10:::1;::::0;7369:29;;7411:30:::1;::::0;4350:18:7;;7411:45:6::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7369:88;::::0;-1:-1:-1;;;;;;7369:88:6::1;::::0;;;;;;-1:-1:-1;;;;;10885:32:7;;;7369:88:6::1;::::0;::::1;10867:51:7::0;10934:18;;;10927:34;10840:18;;7369:88:6::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;5892:114::-:0;1094:13:0;:11;:13::i;:::-;5969:12:6::1;:29:::0;;;::::1;;-1:-1:-1::0;;;5969:29:6::1;-1:-1:-1::0;;;;5969:29:6;;::::1;::::0;;;::::1;::::0;;5892:114::o;3987:149:1:-;-1:-1:-1;;;;;4102:18:1;;;4076:7;4102:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3987:149::o;3674:265:6:-;3764:5;;3731:17;;3774:10;-1:-1:-1;;;;;3764:5:6;;;:20;3761:171;;3813:62;3820:54;-1:-1:-1;;3827:38:6;3854:10;3827:22;3844:4;3827:12;;:16;;:22;;;;:::i;:::-;:26;;:38::i;:::-;3820:50;;:54::i;:::-;3813:6;:62::i;3761:171::-;-1:-1:-1;3919:1:6;3761:171;3674:265;;;:::o;2074:198:0:-;1094:13;:11;:13::i;:::-;-1:-1:-1;;;;;2162:22:0;::::1;2154:73;;;::::0;-1:-1:-1;;;2154:73:0;;11424:2:7;2154:73:0::1;::::0;::::1;11406:21:7::0;11463:2;11443:18;;;11436:30;11502:34;11482:18;;;11475:62;-1:-1:-1;;;11553:18:7;;;11546:36;11599:19;;2154:73:0::1;11222:402:7::0;2154:73:0::1;2237:28;2256:8;2237:18;:28::i;:::-;2074:198:::0;:::o;3850:96:5:-;3908:7;3934:5;3938:1;3934;:5;:::i;1359:130:0:-;1247:7;1273:6;-1:-1:-1;;;;;1273:6:0;719:10:4;1422:23:0;1414:68;;;;-1:-1:-1;;;1414:68:0;;12088:2:7;1414:68:0;;;12070:21:7;;;12107:18;;;12100:30;12166:34;12146:18;;;12139:62;12218:18;;1414:68:0;11886:356:7;10457:340:1;-1:-1:-1;;;;;10558:19:1;;10550:68;;;;-1:-1:-1;;;10550:68:1;;12449:2:7;10550:68:1;;;12431:21:7;12488:2;12468:18;;;12461:30;12527:34;12507:18;;;12500:62;-1:-1:-1;;;12578:18:7;;;12571:34;12622:19;;10550:68:1;12247:400:7;10550:68:1;-1:-1:-1;;;;;10636:21:1;;10628:68;;;;-1:-1:-1;;;10628:68:1;;12854:2:7;10628:68:1;;;12836:21:7;12893:2;12873:18;;;12866:30;12932:34;12912:18;;;12905:62;-1:-1:-1;;;12983:18:7;;;12976:32;13025:19;;10628:68:1;12652:398:7;10628:68:1;-1:-1:-1;;;;;10707:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10758:32;;2143:25:7;;;10758:32:1;;2116:18:7;10758:32:1;;;;;;;10457:340;;;:::o;5041:467:6:-;-1:-1:-1;;;;;5147:18:6;;5139:68;;;;-1:-1:-1;;;5139:68:6;;;;;;;:::i;:::-;-1:-1:-1;;;;;5226:16:6;;5218:64;;;;-1:-1:-1;;;5218:64:6;;;;;;;:::i;:::-;5296:12;;-1:-1:-1;;;5296:12:6;;;;5293:112;;;-1:-1:-1;;;;;5333:16:6;;;;;;:10;:16;;;;;;;;:22;;:16;:22;:46;;;;-1:-1:-1;;;;;;5359:14:6;;;;;;:10;:14;;;;;;;;:20;;:14;:20;5333:46;5325:68;;;;-1:-1:-1;;;5325:68:6;;14067:2:7;5325:68:6;;;14049:21:7;14106:1;14086:18;;;14079:29;-1:-1:-1;;;14124:18:7;;;14117:39;14173:18;;5325:68:6;13865:332:7;5325:68:6;5417:17;5437:16;5448:4;;5437:6;:10;;:16;;;;:::i;:::-;5417:36;;5464;5480:4;5486:2;5490:9;5464:15;:36::i;:::-;5128:380;5041:467;;;:::o;11078:411:1:-;11178:24;11205:25;11215:5;11222:7;11205:9;:25::i;:::-;11178:52;;-1:-1:-1;;11244:16:1;:37;11240:243;;11325:6;11305:16;:26;;11297:68;;;;-1:-1:-1;;;11297:68:1;;14404:2:7;11297:68:1;;;14386:21:7;14443:2;14423:18;;;14416:30;14482:31;14462:18;;;14455:59;14531:18;;11297:68:1;14202:353:7;11297:68:1;11407:51;11416:5;11423:7;11451:6;11432:16;:25;11407:8;:51::i;3465:96:5:-;3523:7;3549:5;3553:1;3549;:5;:::i;2426:187:0:-;2499:16;2518:6;;-1:-1:-1;;;;;2534:17:0;;;-1:-1:-1;;;;;;2534:17:0;;;;;;2566:40;;2518:6;;;;;;;2566:40;;2499:16;2566:40;2489:124;2426:187;:::o;468:221:6:-;524:6;;550:5;554:1;550;:5;:::i;:::-;539:16;-1:-1:-1;;;;572:15:6;;;;:55;;-1:-1:-1;;;;592:14:6;;;612;;;591:36;;572:55;564:64;;;;;;644:6;;;643:24;;-1:-1:-1;665:1:6;656:5;660:1;656;:5;:::i;:::-;:10;643:24;635:33;;;;;3949:649;4003:7;4045:1;4031:11;:15;4023:37;;;;-1:-1:-1;;;4023:37:6;;15375:2:7;4023:37:6;;;15357:21:7;15414:1;15394:18;;;15387:29;-1:-1:-1;;;15432:18:7;;;15425:39;15481:18;;4023:37:6;15173:332:7;4023:37:6;4119:11;4134:1;4119:16;4115:68;;-1:-1:-1;;4159:12:6;;;3949:649::o;4115:68::-;4213:1;4199:11;:15;4195:188;;;4246:39;4271:12;4272:11;4271:12;:::i;:::-;4246;;;:16;:39::i;:::-;4231:12;:54;4195:188;;;4333:12;;:38;;4358:11;4333:16;:38::i;:::-;4318:12;:53;4195:188;4399:12;;-1:-1:-1;;;;;;4395:83:6;;;-1:-1:-1;;;;;4441:12:6;:25;4395:83;4509:12;;4497:25;;2829:38;2575:22;-1:-1:-1;;2829:38:6;:::i;:::-;2814:54;;-1:-1:-1;;2814:54:6;:::i;:::-;4497:11;;:25::i;:::-;4490:4;:32;4545:7;;4533:27;;;-1:-1:-1;;;;;;4533:27:6;;;;-1:-1:-1;;;;;4545:7:6;;;;4533:25;;:27;;;;;4545:7;;4533:27;;;;;;;;4545:7;;4533:27;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;4578:12:6;;;3949:649;-1:-1:-1;;;;3949:649:6:o;7456:788:1:-;-1:-1:-1;;;;;7552:18:1;;7544:68;;;;-1:-1:-1;;;7544:68:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;7630:16:1;;7622:64;;;;-1:-1:-1;;;7622:64:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;7768:15:1;;7746:19;7768:15;;;:9;:15;;;;;;7801:21;;;;7793:72;;;;-1:-1:-1;;;7793:72:1;;16103:2:7;7793:72:1;;;16085:21:7;16142:2;16122:18;;;16115:30;16181:34;16161:18;;;16154:62;-1:-1:-1;;;16232:18:7;;;16225:36;16278:19;;7793:72:1;15901:402:7;7793:72:1;-1:-1:-1;;;;;7899:15:1;;;;;;;:9;:15;;;;;;7917:20;;;7899:38;;8114:13;;;;;;;;;;:23;;;;;;8163:26;;;;;;7931:6;2143:25:7;;2131:2;2116:18;;1997:177;8163:26:1;;;;;;;;8200:37;5661:223:6;3122:96:5;3180:7;3206:5;3210:1;3206;:5;:::i;2755:96::-;2813:7;2839:5;2843:1;2839;:5;:::i;14:548:7:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:7;;632:42;;622:70;;688:1;685;678:12;703:134;771:20;;800:31;771:20;800:31;:::i;842:118::-;928:5;921:13;914:21;907:5;904:32;894:60;;950:1;947;940:12;965:128;1030:20;;1059:28;1030:20;1059:28;:::i;1098:382::-;1163:6;1171;1224:2;1212:9;1203:7;1199:23;1195:32;1192:52;;;1240:1;1237;1230:12;1192:52;1279:9;1266:23;1298:31;1323:5;1298:31;:::i;:::-;1348:5;-1:-1:-1;1405:2:7;1390:18;;1377:32;1418:30;1377:32;1418:30;:::i;:::-;1467:7;1457:17;;;1098:382;;;;;:::o;1485:315::-;1553:6;1561;1614:2;1602:9;1593:7;1589:23;1585:32;1582:52;;;1630:1;1627;1620:12;1582:52;1669:9;1656:23;1688:31;1713:5;1688:31;:::i;:::-;1738:5;1790:2;1775:18;;;;1762:32;;-1:-1:-1;;;1485:315:7:o;2179:247::-;2238:6;2291:2;2279:9;2270:7;2266:23;2262:32;2259:52;;;2307:1;2304;2297:12;2259:52;2346:9;2333:23;2365:31;2390:5;2365:31;:::i;2431:367::-;2494:8;2504:6;2558:3;2551:4;2543:6;2539:17;2535:27;2525:55;;2576:1;2573;2566:12;2525:55;-1:-1:-1;2599:20:7;;2642:18;2631:30;;2628:50;;;2674:1;2671;2664:12;2628:50;2711:4;2703:6;2699:17;2687:29;;2771:3;2764:4;2754:6;2751:1;2747:14;2739:6;2735:27;2731:38;2728:47;2725:67;;;2788:1;2785;2778:12;2725:67;2431:367;;;;;:::o;2803:773::-;2925:6;2933;2941;2949;3002:2;2990:9;2981:7;2977:23;2973:32;2970:52;;;3018:1;3015;3008:12;2970:52;3058:9;3045:23;3087:18;3128:2;3120:6;3117:14;3114:34;;;3144:1;3141;3134:12;3114:34;3183:70;3245:7;3236:6;3225:9;3221:22;3183:70;:::i;:::-;3272:8;;-1:-1:-1;3157:96:7;-1:-1:-1;3360:2:7;3345:18;;3332:32;;-1:-1:-1;3376:16:7;;;3373:36;;;3405:1;3402;3395:12;3373:36;;3444:72;3508:7;3497:8;3486:9;3482:24;3444:72;:::i;:::-;2803:773;;;;-1:-1:-1;3535:8:7;-1:-1:-1;;;;2803:773:7:o;3581:456::-;3658:6;3666;3674;3727:2;3715:9;3706:7;3702:23;3698:32;3695:52;;;3743:1;3740;3733:12;3695:52;3782:9;3769:23;3801:31;3826:5;3801:31;:::i;:::-;3851:5;-1:-1:-1;3908:2:7;3893:18;;3880:32;3921:33;3880:32;3921:33;:::i;:::-;3581:456;;3973:7;;-1:-1:-1;;;4027:2:7;4012:18;;;;3999:32;;3581:456::o;4439:505::-;4534:6;4542;4550;4603:2;4591:9;4582:7;4578:23;4574:32;4571:52;;;4619:1;4616;4609:12;4571:52;4659:9;4646:23;4692:18;4684:6;4681:30;4678:50;;;4724:1;4721;4714:12;4678:50;4763:70;4825:7;4816:6;4805:9;4801:22;4763:70;:::i;:::-;4852:8;;4737:96;;-1:-1:-1;4934:2:7;4919:18;;;;4906:32;;4439:505;-1:-1:-1;;;;4439:505:7:o;5209:127::-;5270:10;5265:3;5261:20;5258:1;5251:31;5301:4;5298:1;5291:15;5325:4;5322:1;5315:15;5341:1191;5431:6;5439;5492:2;5480:9;5471:7;5467:23;5463:32;5460:52;;;5508:1;5505;5498:12;5460:52;5548:9;5535:23;5577:18;5618:2;5610:6;5607:14;5604:34;;;5634:1;5631;5624:12;5604:34;5672:6;5661:9;5657:22;5647:32;;5717:7;5710:4;5706:2;5702:13;5698:27;5688:55;;5739:1;5736;5729:12;5688:55;5775:2;5762:16;5797:4;5820:2;5816;5813:10;5810:36;;;5826:18;;:::i;:::-;5872:2;5869:1;5865:10;5904:2;5898:9;5967:2;5963:7;5958:2;5954;5950:11;5946:25;5938:6;5934:38;6022:6;6010:10;6007:22;6002:2;5990:10;5987:18;5984:46;5981:72;;;6033:18;;:::i;:::-;6069:2;6062:22;6119:18;;;6153:15;;;;-1:-1:-1;6195:11:7;;;6191:20;;;6223:19;;;6220:39;;;6255:1;6252;6245:12;6220:39;6279:11;;;;6299:148;6315:6;6310:3;6307:15;6299:148;;;6381:23;6400:3;6381:23;:::i;:::-;6369:36;;6332:12;;;;6425;;;;6299:148;;;6466:6;-1:-1:-1;6491:35:7;;-1:-1:-1;6507:18:7;;;6491:35;:::i;:::-;6481:45;;;;;;5341:1191;;;;;:::o;6537:241::-;6593:6;6646:2;6634:9;6625:7;6621:23;6617:32;6614:52;;;6662:1;6659;6652:12;6614:52;6701:9;6688:23;6720:28;6742:5;6720:28;:::i;6783:388::-;6851:6;6859;6912:2;6900:9;6891:7;6887:23;6883:32;6880:52;;;6928:1;6925;6918:12;6880:52;6967:9;6954:23;6986:31;7011:5;6986:31;:::i;:::-;7036:5;-1:-1:-1;7093:2:7;7078:18;;7065:32;7106:33;7065:32;7106:33;:::i;7176:180::-;7235:6;7288:2;7276:9;7267:7;7263:23;7259:32;7256:52;;;7304:1;7301;7294:12;7256:52;-1:-1:-1;7327:23:7;;7176:180;-1:-1:-1;7176:180:7:o;7585:380::-;7664:1;7660:12;;;;7707;;;7728:61;;7782:4;7774:6;7770:17;7760:27;;7728:61;7835:2;7827:6;7824:14;7804:18;7801:38;7798:161;;7881:10;7876:3;7872:20;7869:1;7862:31;7916:4;7913:1;7906:15;7944:4;7941:1;7934:15;7798:161;;7585:380;;;:::o;8793:127::-;8854:10;8849:3;8845:20;8842:1;8835:31;8885:4;8882:1;8875:15;8909:4;8906:1;8899:15;8925:127;8986:10;8981:3;8977:20;8974:1;8967:31;9017:4;9014:1;9007:15;9041:4;9038:1;9031:15;9057:125;9122:9;;;9143:10;;;9140:36;;;9156:18;;:::i;9187:135::-;9226:3;9247:17;;;9244:43;;9267:18;;:::i;:::-;-1:-1:-1;9314:1:7;9303:13;;9187:135::o;10504:184::-;10574:6;10627:2;10615:9;10606:7;10602:23;10598:32;10595:52;;;10643:1;10640;10633:12;10595:52;-1:-1:-1;10666:16:7;;10504:184;-1:-1:-1;10504:184:7:o;10972:245::-;11039:6;11092:2;11080:9;11071:7;11067:23;11063:32;11060:52;;;11108:1;11105;11098:12;11060:52;11140:9;11134:16;11159:28;11181:5;11159:28;:::i;11629:127::-;11690:10;11685:3;11681:20;11678:1;11671:31;11721:4;11718:1;11711:15;11745:4;11742:1;11735:15;11761:120;11801:1;11827;11817:35;;11832:18;;:::i;:::-;-1:-1:-1;11866:9:7;;11761:120::o;13055:401::-;13257:2;13239:21;;;13296:2;13276:18;;;13269:30;13335:34;13330:2;13315:18;;13308:62;-1:-1:-1;;;13401:2:7;13386:18;;13379:35;13446:3;13431:19;;13055:401::o;13461:399::-;13663:2;13645:21;;;13702:2;13682:18;;;13675:30;13741:34;13736:2;13721:18;;13714:62;-1:-1:-1;;;13807:2:7;13792:18;;13785:33;13850:3;13835:19;;13461:399::o;14560:168::-;14633:9;;;14664;;14681:15;;;14675:22;;14661:37;14651:71;;14702:18;;:::i;14733:237::-;14805:9;;;14772:7;14830:9;;-1:-1:-1;;;14841:18:7;;14826:34;14823:60;;;14863:18;;:::i;:::-;14936:1;14927:7;14922:16;14919:1;14916:23;14912:1;14905:9;14902:38;14892:72;;14944:18;;:::i;14975:193::-;15014:1;15040;15030:35;;15045:18;;:::i;:::-;-1:-1:-1;;;15081:18:7;;-1:-1:-1;;15101:13:7;;15077:38;15074:64;;;15118:18;;:::i;:::-;-1:-1:-1;15152:10:7;;14975:193::o;15510:136::-;15545:3;-1:-1:-1;;;15566:22:7;;15563:48;;15591:18;;:::i;:::-;-1:-1:-1;15631:1:7;15627:13;;15510:136::o;15651:112::-;15683:1;15709;15699:35;;15714:18;;:::i;:::-;-1:-1:-1;15748:9:7;;15651:112::o;15768:128::-;15835:9;;;15856:11;;;15853:37;;;15870:18;;:::i

Swarm Source

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