ETH Price: $3,488.13 (+0.00%)
Gas: 2 Gwei

Token

Sponk Inu (SPONK)
 

Overview

Max Total Supply

100,000,000 SPONK

Holders

78

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
48,577.080565812836217314 SPONK

Value
$0.00
0xa38928141bebca3ba45eaeebb7697bfb626498ee
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:
SPONK

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-05
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.9;
 


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

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.
    *
    * IMPORTANT: Beware that changing an allowance with this method brings the risk
    * that someone may use both the old and the new allowance by unfortunate
    * transaction ordering. One possible solution to mitigate this race
    * condition is to first reduce the spender's allowance to 0 and set the
    * desired value afterwards:
    * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
    *
    * Emits an {Approval} event.
    */
    function approve(address spender, uint256 amount) external returns(bool);

    /**
    * @dev Moves `amount` tokens from `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);
}

interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns(string memory);

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

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

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

}

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

        mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;
 
    uint256 private _totalSupply;
 
    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

    
}
 
library SafeMath {
   
    function add(uint256 a, uint256 b) internal pure returns(uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

   
    function sub(uint256 a, uint256 b) internal pure returns(uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

   
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns(uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    function mul(uint256 a, uint256 b) internal pure returns(uint256) {
    
        if (a == 0) {
            return 0;
        }
 
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

 
    function div(uint256 a, uint256 b) internal pure returns(uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

  
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns(uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    
}
 
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.
     */
    function owner() public view returns(address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the 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);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}
 
 
 
library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

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

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

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

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

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

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

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns(int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }


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


interface IUniswapV2Router01 {
    function factory() external pure returns(address);
    function WETH() external pure returns(address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns(uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns(uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns(uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns(uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns(uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns(uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns(uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns(uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
    external
    payable
    returns(uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
    external
    returns(uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
    external
    returns(uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
    external
    payable
    returns(uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns(uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns(uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns(uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns(uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns(uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns(uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns(uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}
 
contract SPONK is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable router;
    address public immutable uniswapV2Pair;


    // addresses
    address private marketingWallet;

    // limits 
    uint256 private maxBuyAmount;
    uint256 private maxSellAmount;   
    uint256 private maxWalletAmount;
 
    uint256 private thresholdSwapAmount;

    // status flags
    bool private isTrading = false;
    bool public swapEnabled = false;
    bool public isSwapping;


    // Blacklist Map
    mapping(address => bool) private _blacklist;


    struct Fees {
        uint256 buyTotalFees;
        uint256 buyMarketingFee;
        uint256 buyLiquidityFee;

        uint256 sellTotalFees;
        uint256 sellMarketingFee;
        uint256 sellLiquidityFee;
    }  

    Fees public _fees = Fees({
        buyTotalFees: 0,
        buyMarketingFee: 0,
        buyLiquidityFee: 0,

        sellTotalFees: 0,
        sellMarketingFee: 0,
        sellLiquidityFee: 0
    });
    
    

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;


    // exclude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;
    mapping(address => bool) public _isExcludedMaxWalletAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public marketPair;
 
  
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived
    );


    constructor() ERC20("Sponk Inu", "SPONK") {
 
        router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);


        uniswapV2Pair = IUniswapV2Factory(router.factory()).createPair(address(this), router.WETH());

        _isExcludedMaxTransactionAmount[address(router)] = true;
        _isExcludedMaxTransactionAmount[address(uniswapV2Pair)] = true;        
        _isExcludedMaxTransactionAmount[owner()] = true;
        _isExcludedMaxTransactionAmount[address(this)] = true;

        _isExcludedFromFees[owner()] = true;
        _isExcludedFromFees[address(this)] = true;

        _isExcludedMaxWalletAmount[owner()] = true;
        _isExcludedMaxWalletAmount[address(this)] = true;
        _isExcludedMaxWalletAmount[address(uniswapV2Pair)] = true;


        marketPair[address(uniswapV2Pair)] = true;

        approve(address(router), type(uint256).max);
        uint256 totalSupply = 1 * 1e8 * 1e18;

        maxBuyAmount = totalSupply / 100; // 1% maxTransactionAmountTxn
        maxSellAmount = totalSupply / 100; // 1% maxTransactionAmountTxn
        maxWalletAmount = totalSupply * 3 / 100; // 3% maxWallet
        thresholdSwapAmount = totalSupply * 1 / 10000; // 0.01% swap wallet

        _fees.buyMarketingFee = 6;
        _fees.buyLiquidityFee = 0;
        _fees.buyTotalFees = _fees.buyMarketingFee + _fees.buyLiquidityFee;

        _fees.sellMarketingFee = 6;
        _fees.sellLiquidityFee = 0;
        _fees.sellTotalFees = _fees.sellMarketingFee + _fees.sellLiquidityFee;


        marketingWallet = address(0x7dde48c0Eedde9e582270b80AA1a2F4b8e228fcF); // set as marketing wallet

        // exclude from paying fees or having max transaction amount




        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {

    }

    // once enabled, can never be turned off
    function swapTrading() external onlyOwner {
        isTrading = true;
        swapEnabled = true;
    }



    // change the minimum amount of tokens to sell from fees
    function updateThresholdSwapAmount(uint256 newAmount) external onlyOwner returns(bool){
        thresholdSwapAmount = newAmount;
        return true;
    }


    function updateMaxTxnAmount(uint256 newMaxBuy, uint256 newMaxSell) external onlyOwner {
        require(((totalSupply() * newMaxBuy) / 1000) >= (totalSupply() / 100), "Cannot set maxTransactionAmounts lower than 1%");
        require(((totalSupply() * newMaxSell) / 1000) >= (totalSupply() / 100), "Cannot set maxTransactionAmounts lower than 1%");
        maxBuyAmount = (totalSupply() * newMaxBuy) / 1000;
        maxSellAmount = (totalSupply() * newMaxSell) / 1000;
    }


    function updateMaxWalletAmount(uint256 newPercentage) external onlyOwner {
        require(((totalSupply() * newPercentage) / 1000) >= (totalSupply() / 100), "Cannot set maxWallet lower than 1%");
        maxWalletAmount = (totalSupply() * newPercentage) / 1000;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function toggleSwapEnabled(bool enabled) external onlyOwner(){
        swapEnabled = enabled;
    }

    function updateFees(uint256 _marketingFeeBuy, uint256 _liquidityFeeBuy,uint256 _marketingFeeSell, uint256 _liquidityFeeSell) external onlyOwner{
        _fees.buyMarketingFee = _marketingFeeBuy;
        _fees.buyLiquidityFee = _liquidityFeeBuy;
        _fees.buyTotalFees = _fees.buyMarketingFee + _fees.buyLiquidityFee;

        _fees.sellMarketingFee = _marketingFeeSell;
        _fees.sellLiquidityFee = _liquidityFeeSell;
        _fees.sellTotalFees = _fees.sellMarketingFee + _fees.sellLiquidityFee;
        require(_fees.buyTotalFees <= 9, "Must keep fees at 9% or less");   
        require(_fees.sellTotalFees <= 9, "Must keep fees at 9% or less");
     
    }
    
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
    }
    function excludeFromWalletLimit(address account, bool excluded) public onlyOwner {
        _isExcludedMaxWalletAmount[account] = excluded;
    }
    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }


    function setMarketPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "The pair cannot be removed from marketPair");
        marketPair[pair] = value;
    }


    function setMarketingWallet(address _marketingWallet) external onlyOwner{
        marketingWallet = _marketingWallet;
    }

    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal override {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        
        require(!_blacklist[recipient] && !_blacklist[sender], "You have been blacklisted from transfering tokens");
        
        if (amount == 0) {
            super._transfer(sender, recipient, 0);
            return;
        }

        if (
            sender != owner() &&
            recipient != owner() &&
            !isSwapping
        ) {

            if (!isTrading) {
                require(_isExcludedFromFees[sender] || _isExcludedFromFees[recipient], "Trading is not active.");
            }
            if (marketPair[sender] && !_isExcludedMaxTransactionAmount[recipient]) {
                require(amount <= maxBuyAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
            } 
            else if (marketPair[recipient] && !_isExcludedMaxTransactionAmount[sender]) {
                require(amount <= maxSellAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
            }

            if (!_isExcludedMaxWalletAmount[recipient]) {
                require(amount + balanceOf(recipient) <= maxWalletAmount, "Max wallet exceeded");
            }

        }
 
        
 
        uint256 contractTokenBalance = balanceOf(address(this));
 
        bool canSwap = contractTokenBalance >= thresholdSwapAmount;

        if (
            canSwap &&
            swapEnabled &&
            !isSwapping &&
            marketPair[recipient] &&
            !_isExcludedFromFees[sender] &&
            !_isExcludedFromFees[recipient]
        ) {
            isSwapping = true;
            swapBack();
            isSwapping = false;
        }
 
        bool takeFee = !isSwapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[sender] || _isExcludedFromFees[recipient]) {
            takeFee = false;
        }
 
        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            
            // on sell
            if (marketPair[recipient] && _fees.sellTotalFees > 0) {
                fees = amount.mul(_fees.sellTotalFees).div(100);
                tokensForLiquidity += fees * _fees.sellLiquidityFee / _fees.sellTotalFees;
                tokensForMarketing += fees * _fees.sellMarketingFee / _fees.sellTotalFees;
            }
            // on buy
            else if (marketPair[sender] && _fees.buyTotalFees > 0) {
                fees = amount.mul(_fees.buyTotalFees).div(100);
                tokensForLiquidity += fees * _fees.buyLiquidityFee / _fees.buyTotalFees;
                tokensForMarketing += fees * _fees.buyMarketingFee / _fees.buyTotalFees;
            }

            if (fees > 0) {
                super._transfer(sender, address(this), fees);
            }

            amount -= fees;

        }

        super._transfer(sender, recipient, amount);
    }

    function swapTokensForEth(uint256 tAmount) private {

        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();

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

        // make the swap
        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );

    }

    function addLiquidity(uint256 tAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(router), tAmount);

        // add the liquidity
        router.addLiquidityETH{ value: ethAmount } (address(this), tAmount, 0, 0 , address(this), block.timestamp);
    }

    function swapBack() private {
        uint256 contractTokenBalance = balanceOf(address(this));
        uint256 toSwap = tokensForLiquidity + tokensForMarketing ;
        bool success;

        if (contractTokenBalance == 0 || toSwap == 0) { return; }

        if (contractTokenBalance > thresholdSwapAmount * 20) {
            contractTokenBalance = thresholdSwapAmount * 20;
        }

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = contractTokenBalance * tokensForLiquidity / toSwap / 2;
        uint256 amountToSwapForETH = contractTokenBalance.sub(liquidityTokens);
 
        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH); 
 
        uint256 newBalance = address(this).balance.sub(initialETHBalance);
 
        uint256 ethForMarketing = newBalance.mul(tokensForMarketing).div(toSwap);
        uint256 ethForLiquidity = newBalance - ethForMarketing;


        tokensForLiquidity = 0;
        tokensForMarketing = 0;


        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity);
        }

        (success,) = address(marketingWallet).call{ value: address(this).balance } ("");
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_fees","outputs":[{"internalType":"uint256","name":"buyTotalFees","type":"uint256"},{"internalType":"uint256","name":"buyMarketingFee","type":"uint256"},{"internalType":"uint256","name":"buyLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"sellTotalFees","type":"uint256"},{"internalType":"uint256","name":"sellMarketingFee","type":"uint256"},{"internalType":"uint256","name":"sellLiquidityFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxWalletAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromWalletLimit","outputs":[],"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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSwapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"marketPair","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setMarketPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"toggleSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFeeBuy","type":"uint256"},{"internalType":"uint256","name":"_liquidityFeeBuy","type":"uint256"},{"internalType":"uint256","name":"_marketingFeeSell","type":"uint256"},{"internalType":"uint256","name":"_liquidityFeeSell","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxBuy","type":"uint256"},{"internalType":"uint256","name":"newMaxSell","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPercentage","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateThresholdSwapAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

600b805461ffff19169055610180604052600060c081905260e0819052610100819052610120819052610140819052610160819052600d819055600e819055600f819055601081905560118190556012553480156200005d57600080fd5b50604080518082018252600981526853706f6e6b20496e7560b81b60208083019182528351808501909452600584526453504f4e4b60d81b908401528151919291620000ac91600391620007c7565b508051620000c2906004906020840190620007c7565b5050506000620000d76200051960201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b1580156200017657600080fd5b505afa1580156200018b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001b191906200086d565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620001fc57600080fd5b505afa15801562000211573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023791906200086d565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200028057600080fd5b505af115801562000295573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002bb91906200086d565b6001600160a01b0390811660a081905260805190911660009081526016602081905260408083208054600160ff1991821681179092559484529083208054909416811790935590620003156005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff1995861617905530815260169092528120805490921660019081179092556015906200036e6005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526015909252812080549092166001908117909255601790620003c76005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790553081526017845282812080548616600190811790915560a051909216815282812080548616831790556018909352912080549092161790556080516200043e906000196200051d565b506a52b7d2dcc80cd2e400000062000458606482620008ae565b60075562000468606482620008ae565b60085560646200047a826003620008d1565b620004869190620008ae565b60095561271062000499826001620008d1565b620004a59190620008ae565b600a556006600e8190556000600f819055620004c191620008f3565b600d556006601181905560006012819055620004dd91620008f3565b601055600680546001600160a01b031916737dde48c0eedde9e582270b80aa1a2f4b8e228fcf17905562000512338262000535565b506200094b565b3390565b60006200052c33848462000635565b50600192915050565b6001600160a01b038216620005915760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620005ad816002546200075d60201b620010881790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620005e0918390620010886200075d821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038316620006995760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840162000588565b6001600160a01b038216620006fc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000588565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000806200076c8385620008f3565b905083811015620007c05760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640162000588565b9392505050565b828054620007d5906200090e565b90600052602060002090601f016020900481019282620007f9576000855562000844565b82601f106200081457805160ff191683800117855562000844565b8280016001018555821562000844579182015b828111156200084457825182559160200191906001019062000827565b506200085292915062000856565b5090565b5b8082111562000852576000815560010162000857565b6000602082840312156200088057600080fd5b81516001600160a01b0381168114620007c057600080fd5b634e487b7160e01b600052601160045260246000fd5b600082620008cc57634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615620008ee57620008ee62000898565b500290565b6000821982111562000909576200090962000898565b500190565b600181811c908216806200092357607f821691505b602082108114156200094557634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516124c66200099b600039600081816103a50152610ca601526000818161075a01528181611ced01528181611db501528181611df101528181611e6b0152611ec701526124c66000f3fe6080604052600436106102135760003560e01c80637571336a11610118578063c16dd4a4116100a0578063dd62ed3e1161006f578063dd62ed3e14610692578063e16830a8146106d8578063f2fde38b146106f8578063f5b3c3bf14610718578063f887ea401461074857600080fd5b8063c16dd4a4146105da578063c18bc195146105fa578063c6616ba11461061a578063d212a69a1461063a57600080fd5b8063a457c2d7116100e7578063a457c2d714610545578063a9059cbb14610565578063b886311514610585578063b9e418e7146105a5578063c0246668146105ba57600080fd5b80637571336a146104c25780638da5cb5b146104e257806395d89b411461050057806396880b171461051557600080fd5b8063313ce5671161019b578063555467a11161016a578063555467a1146104185780635d098b38146104385780636ddd17131461045857806370a0823114610477578063715018a6146104ad57600080fd5b8063313ce56714610357578063395093511461037357806349bd5a5e146103935780634fbee193146103df57600080fd5b806318160ddd116101e257806318160ddd146102cc5780631a8145bb146102eb5780631c6e8a75146103015780631f3fed8f1461032157806323b872dd1461033757600080fd5b806306fdde031461021f578063095ea7b31461024a57806310d5de531461027a57806311a582c3146102aa57600080fd5b3661021a57005b600080fd5b34801561022b57600080fd5b5061023461077c565b6040516102419190611f82565b60405180910390f35b34801561025657600080fd5b5061026a610265366004611fef565b61080e565b6040519015158152602001610241565b34801561028657600080fd5b5061026a61029536600461201b565b60166020526000908152604090205460ff1681565b3480156102b657600080fd5b506102ca6102c5366004612038565b610825565b005b3480156102d857600080fd5b506002545b604051908152602001610241565b3480156102f757600080fd5b506102dd60145481565b34801561030d57600080fd5b506102ca61031c36600461206a565b61094c565b34801561032d57600080fd5b506102dd60135481565b34801561034357600080fd5b5061026a610352366004612085565b610990565b34801561036357600080fd5b5060405160128152602001610241565b34801561037f57600080fd5b5061026a61038e366004611fef565b6109f9565b34801561039f57600080fd5b506103c77f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610241565b3480156103eb57600080fd5b5061026a6103fa36600461201b565b6001600160a01b031660009081526015602052604090205460ff1690565b34801561042457600080fd5b5061026a6104333660046120c6565b610a2f565b34801561044457600080fd5b506102ca61045336600461201b565b610a6a565b34801561046457600080fd5b50600b5461026a90610100900460ff1681565b34801561048357600080fd5b506102dd61049236600461201b565b6001600160a01b031660009081526020819052604090205490565b3480156104b957600080fd5b506102ca610ab6565b3480156104ce57600080fd5b506102ca6104dd3660046120df565b610b2a565b3480156104ee57600080fd5b506005546001600160a01b03166103c7565b34801561050c57600080fd5b50610234610b7f565b34801561052157600080fd5b5061026a61053036600461201b565b60176020526000908152604090205460ff1681565b34801561055157600080fd5b5061026a610560366004611fef565b610b8e565b34801561057157600080fd5b5061026a610580366004611fef565b610bdd565b34801561059157600080fd5b50600b5461026a9062010000900460ff1681565b3480156105b157600080fd5b506102ca610bea565b3480156105c657600080fd5b506102ca6105d53660046120df565b610c25565b3480156105e657600080fd5b506102ca6105f53660046120df565b610c7a565b34801561060657600080fd5b506102ca6106153660046120c6565b610d64565b34801561062657600080fd5b506102ca610635366004612114565b610e44565b34801561064657600080fd5b50600d54600e54600f5460105460115460125461066595949392919086565b604080519687526020870195909552938501929092526060840152608083015260a082015260c001610241565b34801561069e57600080fd5b506102dd6106ad366004612146565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106e457600080fd5b506102ca6106f33660046120df565b610f48565b34801561070457600080fd5b506102ca61071336600461201b565b610f9d565b34801561072457600080fd5b5061026a61073336600461201b565b60186020526000908152604090205460ff1681565b34801561075457600080fd5b506103c77f000000000000000000000000000000000000000000000000000000000000000081565b60606003805461078b9061217f565b80601f01602080910402602001604051908101604052809291908181526020018280546107b79061217f565b80156108045780601f106107d957610100808354040283529160200191610804565b820191906000526020600020905b8154815290600101906020018083116107e757829003601f168201915b5050505050905090565b600061081b3384846110ee565b5060015b92915050565b6005546001600160a01b031633146108585760405162461bcd60e51b815260040161084f906121ba565b60405180910390fd5b606461086360025490565b61086d9190612205565b6103e88361087a60025490565b6108849190612227565b61088e9190612205565b10156108ac5760405162461bcd60e51b815260040161084f90612246565b60646108b760025490565b6108c19190612205565b6103e8826108ce60025490565b6108d89190612227565b6108e29190612205565b10156109005760405162461bcd60e51b815260040161084f90612246565b6103e88261090d60025490565b6109179190612227565b6109219190612205565b6007556103e88161093160025490565b61093b9190612227565b6109459190612205565b6008555050565b6005546001600160a01b031633146109765760405162461bcd60e51b815260040161084f906121ba565b600b80549115156101000261ff0019909216919091179055565b600061099d848484611213565b6109ef84336109ea85604051806060016040528060288152602001612469602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906118b1565b6110ee565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161081b9185906109ea9086611088565b6005546000906001600160a01b03163314610a5c5760405162461bcd60e51b815260040161084f906121ba565b50600a81905560015b919050565b6005546001600160a01b03163314610a945760405162461bcd60e51b815260040161084f906121ba565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610ae05760405162461bcd60e51b815260040161084f906121ba565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610b545760405162461bcd60e51b815260040161084f906121ba565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b60606004805461078b9061217f565b600061081b33846109ea8560405180606001604052806025815260200161241e602591393360009081526001602090815260408083206001600160a01b038d16845290915290205491906118b1565b600061081b338484611213565b6005546001600160a01b03163314610c145760405162461bcd60e51b815260040161084f906121ba565b600b805461ffff1916610101179055565b6005546001600160a01b03163314610c4f5760405162461bcd60e51b815260040161084f906121ba565b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610ca45760405162461bcd60e51b815260040161084f906121ba565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415610d395760405162461bcd60e51b815260206004820152602a60248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201526936b0b935b2ba2830b4b960b11b606482015260840161084f565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d8e5760405162461bcd60e51b815260040161084f906121ba565b6064610d9960025490565b610da39190612205565b6103e882610db060025490565b610dba9190612227565b610dc49190612205565b1015610e1d5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261312560f01b606482015260840161084f565b6103e881610e2a60025490565b610e349190612227565b610e3e9190612205565b60095550565b6005546001600160a01b03163314610e6e5760405162461bcd60e51b815260040161084f906121ba565b600e849055600f839055610e828385612294565b600d5560118290556012819055610e998183612294565b601055600d5460091015610eef5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203925206f72206c65737300000000604482015260640161084f565b60105460091015610f425760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203925206f72206c65737300000000604482015260640161084f565b50505050565b6005546001600160a01b03163314610f725760405162461bcd60e51b815260040161084f906121ba565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610fc75760405162461bcd60e51b815260040161084f906121ba565b6001600160a01b03811661102c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084f565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000806110958385612294565b9050838110156110e75760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161084f565b9392505050565b6001600160a01b0383166111505760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161084f565b6001600160a01b0382166111b15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161084f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166112395760405162461bcd60e51b815260040161084f906122ac565b6001600160a01b03821661125f5760405162461bcd60e51b815260040161084f906122f1565b6001600160a01b0382166000908152600c602052604090205460ff161580156112a157506001600160a01b0383166000908152600c602052604090205460ff16155b6113075760405162461bcd60e51b815260206004820152603160248201527f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460448201527072616e73666572696e6720746f6b656e7360781b606482015260840161084f565b8061131d57611318838360006118eb565b505050565b6005546001600160a01b0384811691161480159061134957506005546001600160a01b03838116911614155b801561135e5750600b5462010000900460ff16155b156115ed57600b5460ff166113f1576001600160a01b03831660009081526015602052604090205460ff16806113ac57506001600160a01b03821660009081526015602052604090205460ff165b6113f15760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161084f565b6001600160a01b03831660009081526018602052604090205460ff16801561143257506001600160a01b03821660009081526016602052604090205460ff16155b156114ac576007548111156114a75760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161084f565b611563565b6001600160a01b03821660009081526018602052604090205460ff1680156114ed57506001600160a01b03831660009081526016602052604090205460ff16155b15611563576008548111156115635760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606482015260840161084f565b6001600160a01b03821660009081526017602052604090205460ff166115ed576009546001600160a01b0383166000908152602081905260409020546115a99083612294565b11156115ed5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161084f565b30600090815260208190526040902054600a54811080159081906116185750600b54610100900460ff165b801561162d5750600b5462010000900460ff16155b801561165157506001600160a01b03841660009081526018602052604090205460ff165b801561167657506001600160a01b03851660009081526015602052604090205460ff16155b801561169b57506001600160a01b03841660009081526015602052604090205460ff16155b156116c657600b805462ff00001916620100001790556116b96119f4565b600b805462ff0000191690555b600b546001600160a01b03861660009081526015602052604090205460ff6201000090920482161591168061171357506001600160a01b03851660009081526015602052604090205460ff165b1561171c575060005b6000811561189d576001600160a01b03861660009081526018602052604090205460ff16801561174d575060105415155b156117d75760105461176d90606490611767908890611b93565b90611c12565b601054601254919250906117819083612227565b61178b9190612205565b6014600082825461179c9190612294565b90915550506010546011546117b19083612227565b6117bb9190612205565b601360008282546117cc9190612294565b9091555061187f9050565b6001600160a01b03871660009081526018602052604090205460ff1680156118005750600d5415155b1561187f57600d5461181a90606490611767908890611b93565b600d54600f549192509061182e9083612227565b6118389190612205565b601460008282546118499190612294565b9091555050600d54600e5461185e9083612227565b6118689190612205565b601360008282546118799190612294565b90915550505b8015611890576118908730836118eb565b61189a8186612334565b94505b6118a88787876118eb565b50505050505050565b600081848411156118d55760405162461bcd60e51b815260040161084f9190611f82565b5060006118e28486612334565b95945050505050565b6001600160a01b0383166119115760405162461bcd60e51b815260040161084f906122ac565b6001600160a01b0382166119375760405162461bcd60e51b815260040161084f906122f1565b61197481604051806060016040528060268152602001612443602691396001600160a01b03861660009081526020819052604090205491906118b1565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546119a39082611088565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611206565b3060009081526020819052604081205490506000601354601454611a189190612294565b90506000821580611a27575081155b15611a3157505050565b600a54611a3f906014612227565b831115611a5757600a54611a54906014612227565b92505b600060028360145486611a6a9190612227565b611a749190612205565b611a7e9190612205565b90506000611a8c8583611c54565b905047611a9882611c96565b6000611aa44783611c54565b90506000611ac18761176760135485611b9390919063ffffffff16565b90506000611acf8284612334565b6000601481905560135590508515801590611aea5750600081115b15611b3357611af98682611e65565b60408051868152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611b80576040519150601f19603f3d011682016040523d82523d6000602084013e611b85565b606091505b505050505050505050505050565b600082611ba25750600061081f565b6000611bae8385612227565b905082611bbb8583612205565b146110e75760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161084f565b60006110e783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611f54565b60006110e783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506118b1565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ccb57611ccb61234b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611d4457600080fd5b505afa158015611d58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d7c9190612361565b81600181518110611d8f57611d8f61234b565b60200260200101906001600160a01b031690816001600160a01b031681525050611dda307f0000000000000000000000000000000000000000000000000000000000000000846110ee565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611e2f90859060009086903090429060040161237e565b600060405180830381600087803b158015611e4957600080fd5b505af1158015611e5d573d6000803e3d6000fd5b505050505050565b611e90307f0000000000000000000000000000000000000000000000000000000000000000846110ee565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c4016060604051808303818588803b158015611f1457600080fd5b505af1158015611f28573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611f4d91906123ef565b5050505050565b60008183611f755760405162461bcd60e51b815260040161084f9190611f82565b5060006118e28486612205565b600060208083528351808285015260005b81811015611faf57858101830151858201604001528201611f93565b81811115611fc1576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114611fec57600080fd5b50565b6000806040838503121561200257600080fd5b823561200d81611fd7565b946020939093013593505050565b60006020828403121561202d57600080fd5b81356110e781611fd7565b6000806040838503121561204b57600080fd5b50508035926020909101359150565b80358015158114610a6557600080fd5b60006020828403121561207c57600080fd5b6110e78261205a565b60008060006060848603121561209a57600080fd5b83356120a581611fd7565b925060208401356120b581611fd7565b929592945050506040919091013590565b6000602082840312156120d857600080fd5b5035919050565b600080604083850312156120f257600080fd5b82356120fd81611fd7565b915061210b6020840161205a565b90509250929050565b6000806000806080858703121561212a57600080fd5b5050823594602084013594506040840135936060013592509050565b6000806040838503121561215957600080fd5b823561216481611fd7565b9150602083013561217481611fd7565b809150509250929050565b600181811c9082168061219357607f821691505b602082108114156121b457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008261222257634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612241576122416121ef565b500290565b6020808252602e908201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e747360408201526d206c6f776572207468616e20312560901b606082015260800190565b600082198211156122a7576122a76121ef565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612346576123466121ef565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561237357600080fd5b81516110e781611fd7565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156123ce5784516001600160a01b0316835293830193918301916001016123a9565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561240457600080fd5b835192506020840151915060408401519050925092509256fe45524332303a206465637265617365642063616e6e6f742062652062656c6f77207a65726f45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220cfed4d2b5cd2a1467addca775972df9e14d1fd3cd879054746d266eb7ad7ec5464736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102135760003560e01c80637571336a11610118578063c16dd4a4116100a0578063dd62ed3e1161006f578063dd62ed3e14610692578063e16830a8146106d8578063f2fde38b146106f8578063f5b3c3bf14610718578063f887ea401461074857600080fd5b8063c16dd4a4146105da578063c18bc195146105fa578063c6616ba11461061a578063d212a69a1461063a57600080fd5b8063a457c2d7116100e7578063a457c2d714610545578063a9059cbb14610565578063b886311514610585578063b9e418e7146105a5578063c0246668146105ba57600080fd5b80637571336a146104c25780638da5cb5b146104e257806395d89b411461050057806396880b171461051557600080fd5b8063313ce5671161019b578063555467a11161016a578063555467a1146104185780635d098b38146104385780636ddd17131461045857806370a0823114610477578063715018a6146104ad57600080fd5b8063313ce56714610357578063395093511461037357806349bd5a5e146103935780634fbee193146103df57600080fd5b806318160ddd116101e257806318160ddd146102cc5780631a8145bb146102eb5780631c6e8a75146103015780631f3fed8f1461032157806323b872dd1461033757600080fd5b806306fdde031461021f578063095ea7b31461024a57806310d5de531461027a57806311a582c3146102aa57600080fd5b3661021a57005b600080fd5b34801561022b57600080fd5b5061023461077c565b6040516102419190611f82565b60405180910390f35b34801561025657600080fd5b5061026a610265366004611fef565b61080e565b6040519015158152602001610241565b34801561028657600080fd5b5061026a61029536600461201b565b60166020526000908152604090205460ff1681565b3480156102b657600080fd5b506102ca6102c5366004612038565b610825565b005b3480156102d857600080fd5b506002545b604051908152602001610241565b3480156102f757600080fd5b506102dd60145481565b34801561030d57600080fd5b506102ca61031c36600461206a565b61094c565b34801561032d57600080fd5b506102dd60135481565b34801561034357600080fd5b5061026a610352366004612085565b610990565b34801561036357600080fd5b5060405160128152602001610241565b34801561037f57600080fd5b5061026a61038e366004611fef565b6109f9565b34801561039f57600080fd5b506103c77f000000000000000000000000e26387b9e5888c04181dc486e95b058e5207a5d681565b6040516001600160a01b039091168152602001610241565b3480156103eb57600080fd5b5061026a6103fa36600461201b565b6001600160a01b031660009081526015602052604090205460ff1690565b34801561042457600080fd5b5061026a6104333660046120c6565b610a2f565b34801561044457600080fd5b506102ca61045336600461201b565b610a6a565b34801561046457600080fd5b50600b5461026a90610100900460ff1681565b34801561048357600080fd5b506102dd61049236600461201b565b6001600160a01b031660009081526020819052604090205490565b3480156104b957600080fd5b506102ca610ab6565b3480156104ce57600080fd5b506102ca6104dd3660046120df565b610b2a565b3480156104ee57600080fd5b506005546001600160a01b03166103c7565b34801561050c57600080fd5b50610234610b7f565b34801561052157600080fd5b5061026a61053036600461201b565b60176020526000908152604090205460ff1681565b34801561055157600080fd5b5061026a610560366004611fef565b610b8e565b34801561057157600080fd5b5061026a610580366004611fef565b610bdd565b34801561059157600080fd5b50600b5461026a9062010000900460ff1681565b3480156105b157600080fd5b506102ca610bea565b3480156105c657600080fd5b506102ca6105d53660046120df565b610c25565b3480156105e657600080fd5b506102ca6105f53660046120df565b610c7a565b34801561060657600080fd5b506102ca6106153660046120c6565b610d64565b34801561062657600080fd5b506102ca610635366004612114565b610e44565b34801561064657600080fd5b50600d54600e54600f5460105460115460125461066595949392919086565b604080519687526020870195909552938501929092526060840152608083015260a082015260c001610241565b34801561069e57600080fd5b506102dd6106ad366004612146565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106e457600080fd5b506102ca6106f33660046120df565b610f48565b34801561070457600080fd5b506102ca61071336600461201b565b610f9d565b34801561072457600080fd5b5061026a61073336600461201b565b60186020526000908152604090205460ff1681565b34801561075457600080fd5b506103c77f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60606003805461078b9061217f565b80601f01602080910402602001604051908101604052809291908181526020018280546107b79061217f565b80156108045780601f106107d957610100808354040283529160200191610804565b820191906000526020600020905b8154815290600101906020018083116107e757829003601f168201915b5050505050905090565b600061081b3384846110ee565b5060015b92915050565b6005546001600160a01b031633146108585760405162461bcd60e51b815260040161084f906121ba565b60405180910390fd5b606461086360025490565b61086d9190612205565b6103e88361087a60025490565b6108849190612227565b61088e9190612205565b10156108ac5760405162461bcd60e51b815260040161084f90612246565b60646108b760025490565b6108c19190612205565b6103e8826108ce60025490565b6108d89190612227565b6108e29190612205565b10156109005760405162461bcd60e51b815260040161084f90612246565b6103e88261090d60025490565b6109179190612227565b6109219190612205565b6007556103e88161093160025490565b61093b9190612227565b6109459190612205565b6008555050565b6005546001600160a01b031633146109765760405162461bcd60e51b815260040161084f906121ba565b600b80549115156101000261ff0019909216919091179055565b600061099d848484611213565b6109ef84336109ea85604051806060016040528060288152602001612469602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906118b1565b6110ee565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161081b9185906109ea9086611088565b6005546000906001600160a01b03163314610a5c5760405162461bcd60e51b815260040161084f906121ba565b50600a81905560015b919050565b6005546001600160a01b03163314610a945760405162461bcd60e51b815260040161084f906121ba565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610ae05760405162461bcd60e51b815260040161084f906121ba565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610b545760405162461bcd60e51b815260040161084f906121ba565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b60606004805461078b9061217f565b600061081b33846109ea8560405180606001604052806025815260200161241e602591393360009081526001602090815260408083206001600160a01b038d16845290915290205491906118b1565b600061081b338484611213565b6005546001600160a01b03163314610c145760405162461bcd60e51b815260040161084f906121ba565b600b805461ffff1916610101179055565b6005546001600160a01b03163314610c4f5760405162461bcd60e51b815260040161084f906121ba565b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610ca45760405162461bcd60e51b815260040161084f906121ba565b7f000000000000000000000000e26387b9e5888c04181dc486e95b058e5207a5d66001600160a01b0316826001600160a01b03161415610d395760405162461bcd60e51b815260206004820152602a60248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201526936b0b935b2ba2830b4b960b11b606482015260840161084f565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d8e5760405162461bcd60e51b815260040161084f906121ba565b6064610d9960025490565b610da39190612205565b6103e882610db060025490565b610dba9190612227565b610dc49190612205565b1015610e1d5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261312560f01b606482015260840161084f565b6103e881610e2a60025490565b610e349190612227565b610e3e9190612205565b60095550565b6005546001600160a01b03163314610e6e5760405162461bcd60e51b815260040161084f906121ba565b600e849055600f839055610e828385612294565b600d5560118290556012819055610e998183612294565b601055600d5460091015610eef5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203925206f72206c65737300000000604482015260640161084f565b60105460091015610f425760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203925206f72206c65737300000000604482015260640161084f565b50505050565b6005546001600160a01b03163314610f725760405162461bcd60e51b815260040161084f906121ba565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610fc75760405162461bcd60e51b815260040161084f906121ba565b6001600160a01b03811661102c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084f565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000806110958385612294565b9050838110156110e75760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161084f565b9392505050565b6001600160a01b0383166111505760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161084f565b6001600160a01b0382166111b15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161084f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166112395760405162461bcd60e51b815260040161084f906122ac565b6001600160a01b03821661125f5760405162461bcd60e51b815260040161084f906122f1565b6001600160a01b0382166000908152600c602052604090205460ff161580156112a157506001600160a01b0383166000908152600c602052604090205460ff16155b6113075760405162461bcd60e51b815260206004820152603160248201527f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460448201527072616e73666572696e6720746f6b656e7360781b606482015260840161084f565b8061131d57611318838360006118eb565b505050565b6005546001600160a01b0384811691161480159061134957506005546001600160a01b03838116911614155b801561135e5750600b5462010000900460ff16155b156115ed57600b5460ff166113f1576001600160a01b03831660009081526015602052604090205460ff16806113ac57506001600160a01b03821660009081526015602052604090205460ff165b6113f15760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161084f565b6001600160a01b03831660009081526018602052604090205460ff16801561143257506001600160a01b03821660009081526016602052604090205460ff16155b156114ac576007548111156114a75760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161084f565b611563565b6001600160a01b03821660009081526018602052604090205460ff1680156114ed57506001600160a01b03831660009081526016602052604090205460ff16155b15611563576008548111156115635760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606482015260840161084f565b6001600160a01b03821660009081526017602052604090205460ff166115ed576009546001600160a01b0383166000908152602081905260409020546115a99083612294565b11156115ed5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161084f565b30600090815260208190526040902054600a54811080159081906116185750600b54610100900460ff165b801561162d5750600b5462010000900460ff16155b801561165157506001600160a01b03841660009081526018602052604090205460ff165b801561167657506001600160a01b03851660009081526015602052604090205460ff16155b801561169b57506001600160a01b03841660009081526015602052604090205460ff16155b156116c657600b805462ff00001916620100001790556116b96119f4565b600b805462ff0000191690555b600b546001600160a01b03861660009081526015602052604090205460ff6201000090920482161591168061171357506001600160a01b03851660009081526015602052604090205460ff165b1561171c575060005b6000811561189d576001600160a01b03861660009081526018602052604090205460ff16801561174d575060105415155b156117d75760105461176d90606490611767908890611b93565b90611c12565b601054601254919250906117819083612227565b61178b9190612205565b6014600082825461179c9190612294565b90915550506010546011546117b19083612227565b6117bb9190612205565b601360008282546117cc9190612294565b9091555061187f9050565b6001600160a01b03871660009081526018602052604090205460ff1680156118005750600d5415155b1561187f57600d5461181a90606490611767908890611b93565b600d54600f549192509061182e9083612227565b6118389190612205565b601460008282546118499190612294565b9091555050600d54600e5461185e9083612227565b6118689190612205565b601360008282546118799190612294565b90915550505b8015611890576118908730836118eb565b61189a8186612334565b94505b6118a88787876118eb565b50505050505050565b600081848411156118d55760405162461bcd60e51b815260040161084f9190611f82565b5060006118e28486612334565b95945050505050565b6001600160a01b0383166119115760405162461bcd60e51b815260040161084f906122ac565b6001600160a01b0382166119375760405162461bcd60e51b815260040161084f906122f1565b61197481604051806060016040528060268152602001612443602691396001600160a01b03861660009081526020819052604090205491906118b1565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546119a39082611088565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611206565b3060009081526020819052604081205490506000601354601454611a189190612294565b90506000821580611a27575081155b15611a3157505050565b600a54611a3f906014612227565b831115611a5757600a54611a54906014612227565b92505b600060028360145486611a6a9190612227565b611a749190612205565b611a7e9190612205565b90506000611a8c8583611c54565b905047611a9882611c96565b6000611aa44783611c54565b90506000611ac18761176760135485611b9390919063ffffffff16565b90506000611acf8284612334565b6000601481905560135590508515801590611aea5750600081115b15611b3357611af98682611e65565b60408051868152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611b80576040519150601f19603f3d011682016040523d82523d6000602084013e611b85565b606091505b505050505050505050505050565b600082611ba25750600061081f565b6000611bae8385612227565b905082611bbb8583612205565b146110e75760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161084f565b60006110e783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611f54565b60006110e783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506118b1565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ccb57611ccb61234b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611d4457600080fd5b505afa158015611d58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d7c9190612361565b81600181518110611d8f57611d8f61234b565b60200260200101906001600160a01b031690816001600160a01b031681525050611dda307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846110ee565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611e2f90859060009086903090429060040161237e565b600060405180830381600087803b158015611e4957600080fd5b505af1158015611e5d573d6000803e3d6000fd5b505050505050565b611e90307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846110ee565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c4016060604051808303818588803b158015611f1457600080fd5b505af1158015611f28573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611f4d91906123ef565b5050505050565b60008183611f755760405162461bcd60e51b815260040161084f9190611f82565b5060006118e28486612205565b600060208083528351808285015260005b81811015611faf57858101830151858201604001528201611f93565b81811115611fc1576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114611fec57600080fd5b50565b6000806040838503121561200257600080fd5b823561200d81611fd7565b946020939093013593505050565b60006020828403121561202d57600080fd5b81356110e781611fd7565b6000806040838503121561204b57600080fd5b50508035926020909101359150565b80358015158114610a6557600080fd5b60006020828403121561207c57600080fd5b6110e78261205a565b60008060006060848603121561209a57600080fd5b83356120a581611fd7565b925060208401356120b581611fd7565b929592945050506040919091013590565b6000602082840312156120d857600080fd5b5035919050565b600080604083850312156120f257600080fd5b82356120fd81611fd7565b915061210b6020840161205a565b90509250929050565b6000806000806080858703121561212a57600080fd5b5050823594602084013594506040840135936060013592509050565b6000806040838503121561215957600080fd5b823561216481611fd7565b9150602083013561217481611fd7565b809150509250929050565b600181811c9082168061219357607f821691505b602082108114156121b457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008261222257634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612241576122416121ef565b500290565b6020808252602e908201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e747360408201526d206c6f776572207468616e20312560901b606082015260800190565b600082198211156122a7576122a76121ef565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612346576123466121ef565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561237357600080fd5b81516110e781611fd7565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156123ce5784516001600160a01b0316835293830193918301916001016123a9565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561240457600080fd5b835192506020840151915060408401519050925092509256fe45524332303a206465637265617365642063616e6e6f742062652062656c6f77207a65726f45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220cfed4d2b5cd2a1467addca775972df9e14d1fd3cd879054746d266eb7ad7ec5464736f6c63430008090033

Deployed Bytecode Sourcemap

20995:12174:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4245:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6405:168;;;;;;;;;;-1:-1:-1;6405:168:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;6405:168:0;1072:187:1;22262:63:0;;;;;;;;;;-1:-1:-1;22262:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25087:479;;;;;;;;;;-1:-1:-1;25087:479:0;;;;;:::i;:::-;;:::i;:::-;;5362:107;;;;;;;;;;-1:-1:-1;5449:12:0;;5362:107;;;1915:25:1;;;1903:2;1888:18;5362:107:0;1769:177:1;22106:33:0;;;;;;;;;;;;;;;;25943:101;;;;;;;;;;-1:-1:-1;25943:101:0;;;;;:::i;:::-;;:::i;22066:33::-;;;;;;;;;;;;;;;;7055:354;;;;;;;;;;-1:-1:-1;7055:354:0;;;;;:::i;:::-;;:::i;5205:92::-;;;;;;;;;;-1:-1:-1;5205:92:0;;5287:2;2904:36:1;;2892:2;2877:18;5205:92:0;2762:184:1;7818:217:0;;;;;;;;;;-1:-1:-1;7818:217:0;;;;;:::i;:::-;;:::i;21119:38::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3115:32:1;;;3097:51;;3085:2;3070:18;21119:38:0;2951:203:1;27526:125:0;;;;;;;;;;-1:-1:-1;27526:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;27615:28:0;27591:4;27615:28;;;:19;:28;;;;;;;;;27526:125;24919:158;;;;;;;;;;-1:-1:-1;24919:158:0;;;;;:::i;:::-;;:::i;27393:125::-;;;;;;;;;;-1:-1:-1;27393:125:0;;;;;:::i;:::-;;:::i;21459:31::-;;;;;;;;;;-1:-1:-1;21459:31:0;;;;;;;;;;;5532:126;;;;;;;;;;-1:-1:-1;5532:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;5632:18:0;5605:7;5632:18;;;;;;;;;;;;5532:126;13667:148;;;;;;;;;;;;;:::i;27033:144::-;;;;;;;;;;-1:-1:-1;27033:144:0;;;;;:::i;:::-;;:::i;13026:78::-;;;;;;;;;;-1:-1:-1;13090:6:0;;-1:-1:-1;;;;;13090:6:0;13026:78;;4463:103;;;;;;;;;;;;;:::i;22332:58::-;;;;;;;;;;-1:-1:-1;22332:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;8538:268;;;;;;;;;;-1:-1:-1;8538:268:0;;;;;:::i;:::-;;:::i;5871:174::-;;;;;;;;;;-1:-1:-1;5871:174:0;;;;;:::i;:::-;;:::i;21497:22::-;;;;;;;;;;-1:-1:-1;21497:22:0;;;;;;;;;;;24739:106;;;;;;;;;;;;;:::i;26743:132::-;;;;;;;;;;-1:-1:-1;26743:132:0;;;;;:::i;:::-;;:::i;27187:196::-;;;;;;;;;;-1:-1:-1;27187:196:0;;;;;:::i;:::-;;:::i;25576:271::-;;;;;;;;;;-1:-1:-1;25576:271:0;;;;;:::i;:::-;;:::i;26052:679::-;;;;;;;;;;-1:-1:-1;26052:679:0;;;;;:::i;:::-;;:::i;21839:206::-;;;;;;;;;;-1:-1:-1;21839:206:0;;;;;;;;;;;;;;;;;;;;;;;;;4341:25:1;;;4397:2;4382:18;;4375:34;;;;4425:18;;;4418:34;;;;4483:2;4468:18;;4461:34;4526:3;4511:19;;4504:35;4570:3;4555:19;;4548:35;4328:3;4313:19;21839:206:0;4054:535:1;6108:150:0;;;;;;;;;;-1:-1:-1;6108:150:0;;;;;:::i;:::-;-1:-1:-1;;;;;6223:18:0;;;6196:7;6223:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;6108:150;26881:146;;;;;;;;;;-1:-1:-1;26881:146:0;;;;;:::i;:::-;;:::i;13970:244::-;;;;;;;;;;-1:-1:-1;13970:244:0;;;;;:::i;:::-;;:::i;22548:42::-;;;;;;;;;;-1:-1:-1;22548:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;21070;;;;;;;;;;;;;;;4245:99;4298:13;4331:5;4324:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4245:99;:::o;6405:168::-;6487:4;6504:39;3394:10;6527:7;6536:6;6504:8;:39::i;:::-;-1:-1:-1;6561:4:0;6405:168;;;;;:::o;25087:479::-;13237:6;;-1:-1:-1;;;;;13237:6:0;3394:10;13237:22;13229:67;;;;-1:-1:-1;;;13229:67:0;;;;;;;:::i;:::-;;;;;;;;;25249:3:::1;25233:13;5449:12:::0;;;5362:107;25233:13:::1;:19;;;;:::i;:::-;25223:4;25210:9;25194:13;5449:12:::0;;;5362:107;25194:13:::1;:25;;;;:::i;:::-;25193:34;;;;:::i;:::-;25192:61;;25184:120;;;;-1:-1:-1::0;;;25184:120:0::1;;;;;;;:::i;:::-;25381:3;25365:13;5449:12:::0;;;5362:107;25365:13:::1;:19;;;;:::i;:::-;25355:4;25341:10;25325:13;5449:12:::0;;;5362:107;25325:13:::1;:26;;;;:::i;:::-;25324:35;;;;:::i;:::-;25323:62;;25315:121;;;;-1:-1:-1::0;;;25315:121:0::1;;;;;;;:::i;:::-;25492:4;25479:9;25463:13;5449:12:::0;;;5362:107;25463:13:::1;:25;;;;:::i;:::-;25462:34;;;;:::i;:::-;25447:12;:49:::0;25554:4:::1;25540:10:::0;25524:13:::1;5449:12:::0;;;5362:107;25524:13:::1;:26;;;;:::i;:::-;25523:35;;;;:::i;:::-;25507:13;:51:::0;-1:-1:-1;;25087:479:0:o;25943:101::-;13237:6;;-1:-1:-1;;;;;13237:6:0;3394:10;13237:22;13229:67;;;;-1:-1:-1;;;13229:67:0;;;;;;;:::i;:::-;26015:11:::1;:21:::0;;;::::1;;;;-1:-1:-1::0;;26015:21:0;;::::1;::::0;;;::::1;::::0;;25943:101::o;7055:354::-;7194:4;7211:36;7221:6;7229:9;7240:6;7211:9;:36::i;:::-;7258:121;7267:6;3394:10;7289:89;7327:6;7289:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7289:19:0;;;;;;:11;:19;;;;;;;;3394:10;7289:33;;;;;;;;;;:37;:89::i;:::-;7258:8;:121::i;:::-;-1:-1:-1;7397:4:0;7055:354;;;;;:::o;7818:217::-;3394:10;7905:4;7954:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;7954:34:0;;;;;;;;;;7905:4;;7922:83;;7945:7;;7954:50;;7993:10;7954:38;:50::i;24919:158::-;13237:6;;25000:4;;-1:-1:-1;;;;;13237:6:0;3394:10;13237:22;13229:67;;;;-1:-1:-1;;;13229:67:0;;;;;;;:::i;:::-;-1:-1:-1;25016:19:0::1;:31:::0;;;25065:4:::1;13307:1;24919:158:::0;;;:::o;27393:125::-;13237:6;;-1:-1:-1;;;;;13237:6:0;3394:10;13237:22;13229:67;;;;-1:-1:-1;;;13229:67:0;;;;;;;:::i;:::-;27476:15:::1;:34:::0;;-1:-1:-1;;;;;;27476:34:0::1;-1:-1:-1::0;;;;;27476:34:0;;;::::1;::::0;;;::::1;::::0;;27393:125::o;13667:148::-;13237:6;;-1:-1:-1;;;;;13237:6:0;3394:10;13237:22;13229:67;;;;-1:-1:-1;;;13229:67:0;;;;;;;:::i;:::-;13758:6:::1;::::0;13737:40:::1;::::0;13774:1:::1;::::0;-1:-1:-1;;;;;13758:6:0::1;::::0;13737:40:::1;::::0;13774:1;;13737:40:::1;13788:6;:19:::0;;-1:-1:-1;;;;;;13788:19:0::1;::::0;;13667:148::o;27033:144::-;13237:6;;-1:-1:-1;;;;;13237:6:0;3394:10;13237:22;13229:67;;;;-1:-1:-1;;;13229:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27123:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;27123:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27033:144::o;4463:103::-;4518:13;4551:7;4544:14;;;;;:::i;8538:268::-;8630:4;8647:129;3394:10;8670:7;8679:96;8718:15;8679:96;;;;;;;;;;;;;;;;;3394:10;8679:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;8679:34:0;;;;;;;;;;;;:38;:96::i;5871:174::-;5956:4;5973:42;3394:10;5997:9;6008:6;5973:9;:42::i;24739:106::-;13237:6;;-1:-1:-1;;;;;13237:6:0;3394:10;13237:22;13229:67;;;;-1:-1:-1;;;13229:67:0;;;;;;;:::i;:::-;24792:9:::1;:16:::0;;-1:-1:-1;;24819:18:0;;;;;24739:106::o;26743:132::-;13237:6;;-1:-1:-1;;;;;13237:6:0;3394:10;13237:22;13229:67;;;;-1:-1:-1;;;13229:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26828:28:0;;;::::1;;::::0;;;:19:::1;:28;::::0;;;;:39;;-1:-1:-1;;26828:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26743:132::o;27187:196::-;13237:6;;-1:-1:-1;;;;;13237:6:0;3394:10;13237:22;13229:67;;;;-1:-1:-1;;;13229:67:0;;;;;;;:::i;:::-;27280:13:::1;-1:-1:-1::0;;;;;27272:21:0::1;:4;-1:-1:-1::0;;;;;27272:21:0::1;;;27264:76;;;::::0;-1:-1:-1;;;27264:76:0;;7112:2:1;27264:76:0::1;::::0;::::1;7094:21:1::0;7151:2;7131:18;;;7124:30;7190:34;7170:18;;;7163:62;-1:-1:-1;;;7241:18:1;;;7234:40;7291:19;;27264:76:0::1;6910:406:1::0;27264:76:0::1;-1:-1:-1::0;;;;;27351:16:0;;;::::1;;::::0;;;:10:::1;:16;::::0;;;;:24;;-1:-1:-1;;27351:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27187:196::o;25576:271::-;13237:6;;-1:-1:-1;;;;;13237:6:0;3394:10;13237:22;13229:67;;;;-1:-1:-1;;;13229:67:0;;;;;;;:::i;:::-;25729:3:::1;25713:13;5449:12:::0;;;5362:107;25713:13:::1;:19;;;;:::i;:::-;25703:4;25686:13;25670;5449:12:::0;;;5362:107;25670:13:::1;:29;;;;:::i;:::-;25669:38;;;;:::i;:::-;25668:65;;25660:112;;;::::0;-1:-1:-1;;;25660:112:0;;7523:2:1;25660:112:0::1;::::0;::::1;7505:21:1::0;7562:2;7542:18;;;7535:30;7601:34;7581:18;;;7574:62;-1:-1:-1;;;7652:18:1;;;7645:32;7694:19;;25660:112:0::1;7321:398:1::0;25660:112:0::1;25835:4;25818:13;25802;5449:12:::0;;;5362:107;25802:13:::1;:29;;;;:::i;:::-;25801:38;;;;:::i;:::-;25783:15;:56:::0;-1:-1:-1;25576:271:0:o;26052:679::-;13237:6;;-1:-1:-1;;;;;13237:6:0;3394:10;13237:22;13229:67;;;;-1:-1:-1;;;13229:67:0;;;;;;;:::i;:::-;26206:21;:40;;;26257:21;:40;;;26329:45:::1;26281:16:::0;26230;26329:45:::1;:::i;:::-;26308:5;:66:::0;26387:22;:42;;;26440:22;:42;;;26515:47:::1;26465:17:::0;26412;26515:47:::1;:::i;:::-;26493:19:::0;:69;:5:::1;26581:18:::0;26603:1:::1;-1:-1:-1::0;26581:23:0::1;26573:64;;;::::0;-1:-1:-1;;;26573:64:0;;8059:2:1;26573:64:0::1;::::0;::::1;8041:21:1::0;8098:2;8078:18;;;8071:30;8137;8117:18;;;8110:58;8185:18;;26573:64:0::1;7857:352:1::0;26573:64:0::1;26659:19:::0;;26682:1:::1;-1:-1:-1::0;26659:24:0::1;26651:65;;;::::0;-1:-1:-1;;;26651:65:0;;8059:2:1;26651:65:0::1;::::0;::::1;8041:21:1::0;8098:2;8078:18;;;8071:30;8137;8117:18;;;8110:58;8185:18;;26651:65:0::1;7857:352:1::0;26651:65:0::1;26052:679:::0;;;;:::o;26881:146::-;13237:6;;-1:-1:-1;;;;;13237:6:0;3394:10;13237:22;13229:67;;;;-1:-1:-1;;;13229:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26973:35:0;;;::::1;;::::0;;;:26:::1;:35;::::0;;;;:46;;-1:-1:-1;;26973:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26881:146::o;13970:244::-;13237:6;;-1:-1:-1;;;;;13237:6:0;3394:10;13237:22;13229:67;;;;-1:-1:-1;;;13229:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14059:22:0;::::1;14051:73;;;::::0;-1:-1:-1;;;14051:73:0;;8416:2:1;14051:73:0::1;::::0;::::1;8398:21:1::0;8455:2;8435:18;;;8428:30;8494:34;8474:18;;;8467:62;-1:-1:-1;;;8545:18:1;;;8538:36;8591:19;;14051:73:0::1;8214:402:1::0;14051:73:0::1;14161:6;::::0;14140:38:::1;::::0;-1:-1:-1;;;;;14140:38:0;;::::1;::::0;14161:6:::1;::::0;14140:38:::1;::::0;14161:6:::1;::::0;14140:38:::1;14189:6;:17:::0;;-1:-1:-1;;;;;;14189:17:0::1;-1:-1:-1::0;;;;;14189:17:0;;;::::1;::::0;;;::::1;::::0;;13970:244::o;11291:180::-;11348:7;;11380:5;11384:1;11380;:5;:::i;:::-;11368:17;;11409:1;11404;:6;;11396:46;;;;-1:-1:-1;;;11396:46:0;;8823:2:1;11396:46:0;;;8805:21:1;8862:2;8842:18;;;8835:30;8901:29;8881:18;;;8874:57;8948:18;;11396:46:0;8621:351:1;11396:46:0;11462:1;11291:180;-1:-1:-1;;;11291:180:0:o;10864:382::-;-1:-1:-1;;;;;11000:19:0;;10992:68;;;;-1:-1:-1;;;10992:68:0;;9179:2:1;10992:68:0;;;9161:21:1;9218:2;9198:18;;;9191:30;9257:34;9237:18;;;9230:62;-1:-1:-1;;;9308:18:1;;;9301:34;9352:19;;10992:68:0;8977:400:1;10992:68:0;-1:-1:-1;;;;;11079:21:0;;11071:68;;;;-1:-1:-1;;;11071:68:0;;9584:2:1;11071:68:0;;;9566:21:1;9623:2;9603:18;;;9596:30;9662:34;9642:18;;;9635:62;-1:-1:-1;;;9713:18:1;;;9706:32;9755:19;;11071:68:0;9382:398:1;11071:68:0;-1:-1:-1;;;;;11154:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;11206:32;;1915:25:1;;;11206:32:0;;1888:18:1;11206:32:0;;;;;;;;10864:382;;;:::o;27659:3242::-;-1:-1:-1;;;;;27800:20:0;;27792:70;;;;-1:-1:-1;;;27792:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27881:23:0;;27873:71;;;;-1:-1:-1;;;27873:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27974:21:0;;;;;;:10;:21;;;;;;;;27973:22;:45;;;;-1:-1:-1;;;;;;28000:18:0;;;;;;:10;:18;;;;;;;;27999:19;27973:45;27965:107;;;;-1:-1:-1;;;27965:107:0;;10797:2:1;27965:107:0;;;10779:21:1;10836:2;10816:18;;;10809:30;10875:34;10855:18;;;10848:62;-1:-1:-1;;;10926:18:1;;;10919:47;10983:19;;27965:107:0;10595:413:1;27965:107:0;28097:11;28093:102;;28125:37;28141:6;28149:9;28160:1;28125:15;:37::i;:::-;27659:3242;;;:::o;28093:102::-;13090:6;;-1:-1:-1;;;;;28225:17:0;;;13090:6;;28225:17;;;;:54;;-1:-1:-1;13090:6:0;;-1:-1:-1;;;;;28259:20:0;;;13090:6;;28259:20;;28225:54;:82;;;;-1:-1:-1;28297:10:0;;;;;;;28296:11;28225:82;28207:888;;;28341:9;;;;28336:147;;-1:-1:-1;;;;;28379:27:0;;;;;;:19;:27;;;;;;;;;:61;;-1:-1:-1;;;;;;28410:30:0;;;;;;:19;:30;;;;;;;;28379:61;28371:96;;;;-1:-1:-1;;;28371:96:0;;11215:2:1;28371:96:0;;;11197:21:1;11254:2;11234:18;;;11227:30;-1:-1:-1;;;11273:18:1;;;11266:52;11335:18;;28371:96:0;11013:346:1;28371:96:0;-1:-1:-1;;;;;28501:18:0;;;;;;:10;:18;;;;;;;;:65;;;;-1:-1:-1;;;;;;28524:42:0;;;;;;:31;:42;;;;;;;;28523:43;28501:65;28497:410;;;28605:12;;28595:6;:22;;28587:88;;;;-1:-1:-1;;;28587:88:0;;11566:2:1;28587:88:0;;;11548:21:1;11605:2;11585:18;;;11578:30;11644:34;11624:18;;;11617:62;-1:-1:-1;;;11695:18:1;;;11688:51;11756:19;;28587:88:0;11364:417:1;28587:88:0;28497:410;;;-1:-1:-1;;;;;28715:21:0;;;;;;:10;:21;;;;;;;;:65;;;;-1:-1:-1;;;;;;28741:39:0;;;;;;:31;:39;;;;;;;;28740:40;28715:65;28711:196;;;28819:13;;28809:6;:23;;28801:90;;;;-1:-1:-1;;;28801:90:0;;11988:2:1;28801:90:0;;;11970:21:1;12027:2;12007:18;;;12000:30;12066:34;12046:18;;;12039:62;-1:-1:-1;;;12117:18:1;;;12110:52;12179:19;;28801:90:0;11786:418:1;28801:90:0;-1:-1:-1;;;;;28928:37:0;;;;;;:26;:37;;;;;;;;28923:159;;29027:15;;-1:-1:-1;;;;;5632:18:0;;5605:7;5632:18;;;;;;;;;;;28994:29;;:6;:29;:::i;:::-;:48;;28986:80;;;;-1:-1:-1;;;28986:80:0;;12411:2:1;28986:80:0;;;12393:21:1;12450:2;12430:18;;;12423:30;-1:-1:-1;;;12469:18:1;;;12462:49;12528:18;;28986:80:0;12209:343:1;28986:80:0;29170:4;29121:28;5632:18;;;;;;;;;;;29229:19;;29205:43;;;;;;;29279:35;;-1:-1:-1;29303:11:0;;;;;;;29279:35;:63;;;;-1:-1:-1;29332:10:0;;;;;;;29331:11;29279:63;:101;;;;-1:-1:-1;;;;;;29359:21:0;;;;;;:10;:21;;;;;;;;29279:101;:146;;;;-1:-1:-1;;;;;;29398:27:0;;;;;;:19;:27;;;;;;;;29397:28;29279:146;:194;;;;-1:-1:-1;;;;;;29443:30:0;;;;;;:19;:30;;;;;;;;29442:31;29279:194;29261:326;;;29500:10;:17;;-1:-1:-1;;29500:17:0;;;;;29532:10;:8;:10::i;:::-;29557;:18;;-1:-1:-1;;29557:18:0;;;29261:326;29616:10;;-1:-1:-1;;;;;29728:27:0;;29600:12;29728:27;;;:19;:27;;;;;;29616:10;;;;;;;29615:11;;29728:27;;:61;;-1:-1:-1;;;;;;29759:30:0;;;;;;:19;:30;;;;;;;;29728:61;29724:109;;;-1:-1:-1;29816:5:0;29724:109;29846:12;29951:7;29947:892;;;-1:-1:-1;;;;;30017:21:0;;;;;;:10;:21;;;;;;;;:48;;;;-1:-1:-1;30042:19:0;;:23;;30017:48;30013:673;;;30104:19;;30093:40;;30129:3;;30093:31;;:6;;:10;:31::i;:::-;:35;;:40::i;:::-;30206:19;;30181:22;;30086:47;;-1:-1:-1;30206:19:0;30174:29;;30086:47;30174:29;:::i;:::-;:51;;;;:::i;:::-;30152:18;;:73;;;;;;;:::i;:::-;;;;-1:-1:-1;;30298:19:0;;30273:22;;30266:29;;:4;:29;:::i;:::-;:51;;;;:::i;:::-;30244:18;;:73;;;;;;;:::i;:::-;;;;-1:-1:-1;30013:673:0;;-1:-1:-1;30013:673:0;;-1:-1:-1;;;;;30379:18:0;;;;;;:10;:18;;;;;;;;:44;;;;-1:-1:-1;30401:5:0;:18;:22;;30379:44;30375:311;;;30462:5;:18;30451:39;;30486:3;;30451:30;;:6;;:10;:30::i;:39::-;30562:5;:18;30538:21;;30444:46;;-1:-1:-1;30562:18:0;30531:28;;30444:46;30531:28;:::i;:::-;:49;;;;:::i;:::-;30509:18;;:71;;;;;;;:::i;:::-;;;;-1:-1:-1;;30652:5:0;:18;30628:21;;30621:28;;:4;:28;:::i;:::-;:49;;;;:::i;:::-;30599:18;;:71;;;;;;;:::i;:::-;;;;-1:-1:-1;;30375:311:0;30706:8;;30702:93;;30735:44;30751:6;30767:4;30774;30735:15;:44::i;:::-;30811:14;30821:4;30811:14;;:::i;:::-;;;29947:892;30851:42;30867:6;30875:9;30886:6;30851:15;:42::i;:::-;27781:3120;;;;27659:3242;;;:::o;11632:191::-;11717:7;11753:12;11745:6;;;;11737:29;;;;-1:-1:-1;;;11737:29:0;;;;;;;;:::i;:::-;-1:-1:-1;11777:9:0;11789:5;11793:1;11789;:5;:::i;:::-;11777:17;11632:191;-1:-1:-1;;;;;11632:191:0:o;9296:521::-;-1:-1:-1;;;;;9436:20:0;;9428:70;;;;-1:-1:-1;;;9428:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9517:23:0;;9509:71;;;;-1:-1:-1;;;9509:71:0;;;;;;;:::i;:::-;9621;9643:6;9621:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9621:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;9601:17:0;;;:9;:17;;;;;;;;;;;:91;;;;9726:20;;;;;;;:32;;9751:6;9726:24;:32::i;:::-;-1:-1:-1;;;;;9703:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;9774:35;1915:25:1;;;9703:20:0;;9774:35;;;;;;1888:18:1;9774:35:0;1769:177:1;31829:1335:0;31917:4;31868:28;5632:18;;;;;;;;;;;31868:55;;31934:14;31972:18;;31951;;:39;;;;:::i;:::-;31934:56;-1:-1:-1;32002:12:0;32031:25;;;:40;;-1:-1:-1;32060:11:0;;32031:40;32027:57;;;32075:7;;;31829:1335::o;32027:57::-;32123:19;;:24;;32145:2;32123:24;:::i;:::-;32100:20;:47;32096:127;;;32187:19;;:24;;32209:2;32187:24;:::i;:::-;32164:47;;32096:127;32284:23;32363:1;32354:6;32333:18;;32310:20;:41;;;;:::i;:::-;:50;;;;:::i;:::-;:54;;;;:::i;:::-;32284:80;-1:-1:-1;32375:26:0;32404:41;:20;32284:80;32404:24;:41::i;:::-;32375:70;-1:-1:-1;32487:21:0;32521:36;32375:70;32521:16;:36::i;:::-;32572:18;32593:44;:21;32619:17;32593:25;:44::i;:::-;32572:65;;32651:23;32677:46;32716:6;32677:34;32692:18;;32677:10;:14;;:34;;;;:::i;:46::-;32651:72;-1:-1:-1;32734:23:0;32760:28;32651:72;32760:10;:28;:::i;:::-;32824:1;32803:18;:22;;;32836:18;:22;32734:54;-1:-1:-1;32877:19:0;;;;;:42;;;32918:1;32900:15;:19;32877:42;32873:192;;;32936:46;32949:15;32966;32936:12;:46::i;:::-;33002:51;;;12861:25:1;;;12917:2;12902:18;;12895:34;;;33002:51:0;;12834:18:1;33002:51:0;;;;;;;32873:192;33098:15;;33090:66;;-1:-1:-1;;;;;33098:15:0;;;;33128:21;;33090:66;;;;33128:21;33098:15;33090:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;31829:1335:0:o;11831:256::-;11888:7;11918:6;11914:47;;-1:-1:-1;11948:1:0;11941:8;;11914:47;11974:9;11986:5;11990:1;11986;:5;:::i;:::-;11974:17;-1:-1:-1;12019:1:0;12010:5;12014:1;11974:17;12010:5;:::i;:::-;:10;12002:56;;;;-1:-1:-1;;;12002:56:0;;13352:2:1;12002:56:0;;;13334:21:1;13391:2;13371:18;;;13364:30;13430:34;13410:18;;;13403:62;-1:-1:-1;;;13481:18:1;;;13474:31;13522:19;;12002:56:0;13150:397:1;12098:131:0;12155:7;12182:39;12186:1;12189;12182:39;;;;;;;;;;;;;;;;;:3;:39::i;11484:135::-;11541:7;11568:43;11572:1;11575;11568:43;;;;;;;;;;;;;;;;;:3;:43::i;30909:554::-;31057:16;;;31071:1;31057:16;;;;;;;;31033:21;;31057:16;;;;;;;;;;-1:-1:-1;31057:16:0;31033:40;;31102:4;31084;31089:1;31084:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;31084:23:0;;;-1:-1:-1;;;;;31084:23:0;;;;;31128:6;-1:-1:-1;;;;;31128:11:0;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31118:4;31123:1;31118:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;31118:23:0;;;-1:-1:-1;;;;;31118:23:0;;;;;31154:49;31171:4;31186:6;31195:7;31154:8;:49::i;:::-;31242:211;;-1:-1:-1;;;31242:211:0;;-1:-1:-1;;;;;31242:6:0;:57;;;;:211;;31314:7;;31336:1;;31380:4;;31407;;31427:15;;31242:211;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30960:503;30909:554;:::o;31471:350::-;31615:49;31632:4;31647:6;31656:7;31615:8;:49::i;:::-;31707:106;;-1:-1:-1;;;31707:106:0;;31759:4;31707:106;;;15398:34:1;;;15448:18;;;15441:34;;;31775:1:0;15491:18:1;;;15484:34;;;15534:18;;;15527:34;15577:19;;;15570:44;31797:15:0;15630:19:1;;;15623:35;31707:6:0;-1:-1:-1;;;;;31707:22:0;;;;31738:9;;15332:19:1;;31707:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;31471:350;;:::o;12241:277::-;12326:7;12361:12;12354:5;12346:28;;;;-1:-1:-1;;;12346:28:0;;;;;;;;:::i;:::-;-1:-1:-1;12385:9:0;12397:5;12401:1;12397;:5;:::i;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;671:70;616:131;:::o;752:315::-;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:247::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;1431:9;1418:23;1450:31;1475:5;1450:31;:::i;1516:248::-;1584:6;1592;1645:2;1633:9;1624:7;1620:23;1616:32;1613:52;;;1661:1;1658;1651:12;1613:52;-1:-1:-1;;1684:23:1;;;1754:2;1739:18;;;1726:32;;-1:-1:-1;1516:248:1:o;1951:160::-;2016:20;;2072:13;;2065:21;2055:32;;2045:60;;2101:1;2098;2091:12;2116:180;2172:6;2225:2;2213:9;2204:7;2200:23;2196:32;2193:52;;;2241:1;2238;2231:12;2193:52;2264:26;2280:9;2264:26;:::i;2301:456::-;2378:6;2386;2394;2447:2;2435:9;2426:7;2422:23;2418:32;2415:52;;;2463:1;2460;2453:12;2415:52;2502:9;2489:23;2521:31;2546:5;2521:31;:::i;:::-;2571:5;-1:-1:-1;2628:2:1;2613:18;;2600:32;2641:33;2600:32;2641:33;:::i;:::-;2301:456;;2693:7;;-1:-1:-1;;;2747:2:1;2732:18;;;;2719:32;;2301:456::o;3159:180::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;-1:-1:-1;3310:23:1;;3159:180;-1:-1:-1;3159:180:1:o;3344:315::-;3409:6;3417;3470:2;3458:9;3449:7;3445:23;3441:32;3438:52;;;3486:1;3483;3476:12;3438:52;3525:9;3512:23;3544:31;3569:5;3544:31;:::i;:::-;3594:5;-1:-1:-1;3618:35:1;3649:2;3634:18;;3618:35;:::i;:::-;3608:45;;3344:315;;;;;:::o;3664:385::-;3750:6;3758;3766;3774;3827:3;3815:9;3806:7;3802:23;3798:33;3795:53;;;3844:1;3841;3834:12;3795:53;-1:-1:-1;;3867:23:1;;;3937:2;3922:18;;3909:32;;-1:-1:-1;3988:2:1;3973:18;;3960:32;;4039:2;4024:18;4011:32;;-1:-1:-1;3664:385:1;-1:-1:-1;3664:385:1:o;4594:388::-;4662:6;4670;4723:2;4711:9;4702:7;4698:23;4694:32;4691:52;;;4739:1;4736;4729:12;4691:52;4778:9;4765:23;4797:31;4822:5;4797:31;:::i;:::-;4847:5;-1:-1:-1;4904:2:1;4889:18;;4876:32;4917:33;4876:32;4917:33;:::i;:::-;4969:7;4959:17;;;4594:388;;;;;:::o;5222:380::-;5301:1;5297:12;;;;5344;;;5365:61;;5419:4;5411:6;5407:17;5397:27;;5365:61;5472:2;5464:6;5461:14;5441:18;5438:38;5435:161;;;5518:10;5513:3;5509:20;5506:1;5499:31;5553:4;5550:1;5543:15;5581:4;5578:1;5571:15;5435:161;;5222:380;;;:::o;5607:356::-;5809:2;5791:21;;;5828:18;;;5821:30;5887:34;5882:2;5867:18;;5860:62;5954:2;5939:18;;5607:356::o;5968:127::-;6029:10;6024:3;6020:20;6017:1;6010:31;6060:4;6057:1;6050:15;6084:4;6081:1;6074:15;6100:217;6140:1;6166;6156:132;;6210:10;6205:3;6201:20;6198:1;6191:31;6245:4;6242:1;6235:15;6273:4;6270:1;6263:15;6156:132;-1:-1:-1;6302:9:1;;6100:217::o;6322:168::-;6362:7;6428:1;6424;6420:6;6416:14;6413:1;6410:21;6405:1;6398:9;6391:17;6387:45;6384:71;;;6435:18;;:::i;:::-;-1:-1:-1;6475:9:1;;6322:168::o;6495:410::-;6697:2;6679:21;;;6736:2;6716:18;;;6709:30;6775:34;6770:2;6755:18;;6748:62;-1:-1:-1;;;6841:2:1;6826:18;;6819:44;6895:3;6880:19;;6495:410::o;7724:128::-;7764:3;7795:1;7791:6;7788:1;7785:13;7782:39;;;7801:18;;:::i;:::-;-1:-1:-1;7837:9:1;;7724:128::o;9785:401::-;9987:2;9969:21;;;10026:2;10006:18;;;9999:30;10065:34;10060:2;10045:18;;10038:62;-1:-1:-1;;;10131:2:1;10116:18;;10109:35;10176:3;10161:19;;9785:401::o;10191:399::-;10393:2;10375:21;;;10432:2;10412:18;;;10405:30;10471:34;10466:2;10451:18;;10444:62;-1:-1:-1;;;10537:2:1;10522:18;;10515:33;10580:3;10565:19;;10191:399::o;12557:125::-;12597:4;12625:1;12622;12619:8;12616:34;;;12630:18;;:::i;:::-;-1:-1:-1;12667:9:1;;12557:125::o;13684:127::-;13745:10;13740:3;13736:20;13733:1;13726:31;13776:4;13773:1;13766:15;13800:4;13797:1;13790:15;13816:251;13886:6;13939:2;13927:9;13918:7;13914:23;13910:32;13907:52;;;13955:1;13952;13945:12;13907:52;13987:9;13981:16;14006:31;14031:5;14006:31;:::i;14072:980::-;14334:4;14382:3;14371:9;14367:19;14413:6;14402:9;14395:25;14439:2;14477:6;14472:2;14461:9;14457:18;14450:34;14520:3;14515:2;14504:9;14500:18;14493:31;14544:6;14579;14573:13;14610:6;14602;14595:22;14648:3;14637:9;14633:19;14626:26;;14687:2;14679:6;14675:15;14661:29;;14708:1;14718:195;14732:6;14729:1;14726:13;14718:195;;;14797:13;;-1:-1:-1;;;;;14793:39:1;14781:52;;14888:15;;;;14853:12;;;;14829:1;14747:9;14718:195;;;-1:-1:-1;;;;;;;14969:32:1;;;;14964:2;14949:18;;14942:60;-1:-1:-1;;;15033:3:1;15018:19;15011:35;14930:3;14072:980;-1:-1:-1;;;14072:980:1:o;15669:306::-;15757:6;15765;15773;15826:2;15814:9;15805:7;15801:23;15797:32;15794:52;;;15842:1;15839;15832:12;15794:52;15871:9;15865:16;15855:26;;15921:2;15910:9;15906:18;15900:25;15890:35;;15965:2;15954:9;15950:18;15944:25;15934:35;;15669:306;;;;;:::o

Swarm Source

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