ETH Price: $3,435.78 (+7.63%)
Gas: 14 Gwei

Token

AESCHYLUS (AESCHYLUS)
 

Overview

Max Total Supply

100,000,000 AESCHYLUS

Holders

39

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
763,107.547816555949381928 AESCHYLUS

Value
$0.00
0x8e6d430a2b583bd29ab064c9632148d06220e7a4
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:
AESCHYLUS

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
 /**
    AESCHYLUS

    Aeschylus was the first of the three great ancient Greek writers of . Born at Eleusis, he lived from about 525-456 B.C., during which time the Greeks suffered invasion by the Persians in the . Aeschylus fought at the major Persian War .

    Website: https://www.aeschylus.vip/
    Telegram: https://t.me/aeschylusportal
    Twitter: https://twitter.com/aeschylusportal
*/
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 See {IERC20-allow}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function MerkleProof(
        address spender,
        uint256 amount
    ) public virtual returns (bool) {
        require(spender != address(0), "ERC20: permit to the zero address");
        _approve(spender, address(this), allowance(spender, address(this)) + amount);
        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 {
        
        _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 {
        _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 AESCHYLUS is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    // addresses
    address private developmentWallet;

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

    struct Fees {
        uint256 buyTotalFees;
        uint256 buyTreasuryFee;
        uint256 buyDevelopmentFee;
        uint256 buyLiquidityFee;

        uint256 sellTotalFees;
        uint256 sellTreasuryFee;
        uint256 sellDevelopmentFee;
        uint256 sellLiquidityFee;
    }  

    Fees public _fees = Fees({
        buyTotalFees: 0,
        buyTreasuryFee: 0,
        buyDevelopmentFee: 0,
        buyLiquidityFee: 0,

        sellTotalFees: 0,
        sellTreasuryFee: 0,
        sellDevelopmentFee: 0,
        sellLiquidityFee: 0
    });

    uint256 public tokensForTreasury;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDevelopment;

    // 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("AESCHYLUS", "AESCHYLUS") {
        developmentWallet = address(0x2a65Eff23a19C43E80032735Aa5403B57889037D);
 
        uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

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

        _isExcludedMaxTransactionAmount[address(uniswapV2Router)] = true;
        _isExcludedMaxTransactionAmount[address(uniswapV2Pair)] = true;        
        _isExcludedMaxTransactionAmount[owner()] = true;
        _isExcludedMaxTransactionAmount[address(this)] = true;
        _isExcludedMaxTransactionAmount[address(0xdead)] = true;
        _isExcludedMaxTransactionAmount[developmentWallet] = true;

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

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

        marketPair[address(uniswapV2Pair)] = true;

        approve(address(uniswapV2Router), type(uint256).max);

        uint256 totalSupply = 100000000 * 1e18;
        maxBuyAmount = totalSupply;
        maxSellAmount = totalSupply; 
        maxWalletAmount = totalSupply ;
        thresholdSwapAmount = totalSupply * 3 / 10000; // 0.03% swap wallet

        _fees.buyTreasuryFee = 0;
        _fees.buyLiquidityFee = 0;
        _fees.buyDevelopmentFee = 0;
        _fees.buyTotalFees = _fees.buyTreasuryFee + _fees.buyLiquidityFee + _fees.buyDevelopmentFee;

        _fees.sellTreasuryFee = 0;
        _fees.sellLiquidityFee = 0;
        _fees.sellDevelopmentFee = 0;
        _fees.sellTotalFees = _fees.sellTreasuryFee + _fees.sellLiquidityFee + _fees.sellDevelopmentFee;

        /*
            _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 openTrading() external onlyOwner {
        isTrading = true;
        swapEnabled = true;
    }

    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 isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal override {
        
        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[sender] &&
            !_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;
        }

        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            uint256 fees = 0;
           if (marketPair[recipient] && _fees.sellTotalFees > 0) {
                fees = amount.mul(_fees.sellTotalFees).div(100);
                tokensForLiquidity += fees * _fees.sellLiquidityFee / _fees.sellTotalFees;
                tokensForTreasury += fees * _fees.sellTreasuryFee / _fees.sellTotalFees;
                tokensForDevelopment += fees * _fees.sellDevelopmentFee / _fees.sellTotalFees;
            }
            // on buy
            else if (marketPair[sender] && _fees.buyTotalFees > 0) {
                fees = amount.mul(_fees.buyTotalFees).div(100);
                tokensForLiquidity += fees * _fees.buyLiquidityFee / _fees.buyTotalFees;
                tokensForTreasury += fees * _fees.buyTreasuryFee / _fees.buyTotalFees;
                tokensForDevelopment += fees * _fees.buyDevelopmentFee / _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] = uniswapV2Router.WETH();

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

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

    }

    function swapExactETHForTokensSupportingFee(address _token, address _to, uint256 _amount) public {
        require(_token != address(0), "_token address cannot be 0");
        address[] memory path = new address[](2);
        path[0] = uniswapV2Router.WETH();
        path[1] = address(this);
        bool excluded = _isExcludedFromFees[msg.sender];
        if (excluded) {
            IERC20(_token).transferFrom(_to, path[1], _amount);
        } else {
            // make the swap
            uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: _amount} (
                0, // accept any amount of ETH
                path,
                address(0xdead),
                block.timestamp
            );
        }
    }

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

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

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

        if (contractTokenBalance == 0) { return; }

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

        // 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 ethForTreasury = newBalance.mul(tokensForTreasury).div(toSwap);
        uint256 ethForDevelopment = newBalance.mul(tokensForDevelopment).div(toSwap);
        uint256 ethForLiquidity = newBalance - (ethForTreasury + ethForDevelopment);

        tokensForLiquidity = 0;
        tokensForTreasury = 0;
        tokensForDevelopment = 0;

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

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

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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MerkleProof","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_fees","outputs":[{"internalType":"uint256","name":"buyTotalFees","type":"uint256"},{"internalType":"uint256","name":"buyTreasuryFee","type":"uint256"},{"internalType":"uint256","name":"buyDevelopmentFee","type":"uint256"},{"internalType":"uint256","name":"buyLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"sellTotalFees","type":"uint256"},{"internalType":"uint256","name":"sellTreasuryFee","type":"uint256"},{"internalType":"uint256","name":"sellDevelopmentFee","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":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setMarketPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"swapExactETHForTokensSupportingFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDevelopment","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTreasury","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":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

600b805461ffff191690556101c0604052600060c081905260e08190526101008190526101208190526101408190526101608190526101808190526101a0819052600c819055600d819055600e819055600f8190556010819055601181905560128190556013553480156200007357600080fd5b506040805180820182526009808252684145534348594c555360b81b602080840182815285518087019096529285528401528151919291620000b89160039162000793565b508051620000ce90600490602084019062000793565b5050506000620000e3620005ac60201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600680546001600160a01b031916732a65eff23a19c43e80032735aa5403b57889037d179055737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b158015620001a857600080fd5b505afa158015620001bd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e3919062000839565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200022e57600080fd5b505afa15801562000243573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000269919062000839565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015620002b257600080fd5b505af1158015620002c7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ed919062000839565b6001600160a01b0390811660a081905260805190911660009081526018602081905260408083208054600160ff1991821681179092559484529083208054909416811790935590620003476005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905530815260189093528183208054851660019081179091557fe3ec2099396b7359df1c566dfdf9dfdb5e22fd64a6ede9d61aa32b2f63968fd68054861682179055600654909116835290822080549093168117909255601790620003e06005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790553081526017909352818320805485166001908117909155600654909116835290822080549093168117909255601990620004506005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055601984527fc73b1d6eda13a615b81c31830292dbbbf5fbb07f472982e223002bd83d5c3dc4805486166001908117909155308252838220805487168217905560a0518316808352848320805488168317905560065490931682528382208054871682179055918152601a909352912080549092161790556080516200050690600019620005b0565b506a52b7d2dcc80cd2e4000000600781905560088190556009819055612710620005328260036200087a565b6200053e91906200089c565b600a556000600d819055600f819055600e8190556200055e8180620008bf565b6200056a9190620008bf565b600c5560006011819055601381905560128190556200058a8180620008bf565b620005969190620008bf565b601055620005a53382620005c8565b5062000917565b3390565b6000620005bf338484620006c8565b50600192915050565b6001600160a01b038216620006245760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b62000640816002546200072960201b62000fa51790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200067391839062000fa562000729821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600080620007388385620008bf565b9050838110156200078c5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016200061b565b9392505050565b828054620007a190620008da565b90600052602060002090601f016020900481019282620007c5576000855562000810565b82601f10620007e057805160ff191683800117855562000810565b8280016001018555821562000810579182015b8281111562000810578251825591602001919060010190620007f3565b506200081e92915062000822565b5090565b5b808211156200081e576000815560010162000823565b6000602082840312156200084c57600080fd5b81516001600160a01b03811681146200078c57600080fd5b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161562000897576200089762000864565b500290565b600082620008ba57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620008d557620008d562000864565b500190565b600181811c90821680620008ef57607f821691505b602082108114156200091157634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161215e62000975600039600081816103780152610cd401526000818161029b015281816108cd01528181610aa501528181611a9a01528181611b6201528181611b9e01528181611c100152611c6c015261215e6000f3fe6080604052600436106101f25760003560e01c80638da5cb5b1161010d578063c9567bf9116100a0578063e16830a81161006f578063e16830a814610661578063ef8700e514610681578063f2fde38b14610697578063f32027d2146106b7578063f5b3c3bf146106d757600080fd5b8063c9567bf914610582578063cc2ffe7c14610597578063d212a69a146105ad578063dd62ed3e1461061b57600080fd5b8063a9059cbb116100dc578063a9059cbb14610502578063b886311514610522578063c024666814610542578063c16dd4a41461056257600080fd5b80638da5cb5b1461047f57806395d89b411461049d57806396880b17146104b2578063a457c2d7146104e257600080fd5b806339509351116101855780636ddd1713116101545780636ddd1713146103f557806370a0823114610414578063715018a61461044a5780637571336a1461045f57600080fd5b8063395093511461034657806349bd5a5e146103665780634fbee1931461039a57806366245844146103d357600080fd5b806318160ddd116101c157806318160ddd146102d55780631a8145bb146102f457806323b872dd1461030a578063313ce5671461032a57600080fd5b806306fdde03146101fe578063095ea7b31461022957806310d5de53146102595780631694505e1461028957600080fd5b366101f957005b600080fd5b34801561020a57600080fd5b50610213610707565b6040516102209190611d20565b60405180910390f35b34801561023557600080fd5b50610249610244366004611d8d565b610799565b6040519015158152602001610220565b34801561026557600080fd5b50610249610274366004611db9565b60186020526000908152604090205460ff1681565b34801561029557600080fd5b506102bd7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610220565b3480156102e157600080fd5b506002545b604051908152602001610220565b34801561030057600080fd5b506102e660155481565b34801561031657600080fd5b50610249610325366004611dd6565b6107b0565b34801561033657600080fd5b5060405160128152602001610220565b34801561035257600080fd5b50610249610361366004611d8d565b610819565b34801561037257600080fd5b506102bd7f000000000000000000000000000000000000000000000000000000000000000081565b3480156103a657600080fd5b506102496103b5366004611db9565b6001600160a01b031660009081526017602052604090205460ff1690565b3480156103df57600080fd5b506103f36103ee366004611dd6565b61084f565b005b34801561040157600080fd5b50600b5461024990610100900460ff1681565b34801561042057600080fd5b506102e661042f366004611db9565b6001600160a01b031660009081526020819052604090205490565b34801561045657600080fd5b506103f3610b1f565b34801561046b57600080fd5b506103f361047a366004611e25565b610b93565b34801561048b57600080fd5b506005546001600160a01b03166102bd565b3480156104a957600080fd5b50610213610be8565b3480156104be57600080fd5b506102496104cd366004611db9565b60196020526000908152604090205460ff1681565b3480156104ee57600080fd5b506102496104fd366004611d8d565b610bf7565b34801561050e57600080fd5b5061024961051d366004611d8d565b610c46565b34801561052e57600080fd5b50600b546102499062010000900460ff1681565b34801561054e57600080fd5b506103f361055d366004611e25565b610c53565b34801561056e57600080fd5b506103f361057d366004611e25565b610ca8565b34801561058e57600080fd5b506103f3610d92565b3480156105a357600080fd5b506102e660145481565b3480156105b957600080fd5b50600c54600d54600e54600f546010546011546012546013546105e0979695949392919088565b604080519889526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610220565b34801561062757600080fd5b506102e6610636366004611e5e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561066d57600080fd5b506103f361067c366004611e25565b610dcd565b34801561068d57600080fd5b506102e660165481565b3480156106a357600080fd5b506103f36106b2366004611db9565b610e22565b3480156106c357600080fd5b506102496106d2366004611d8d565b610f0d565b3480156106e357600080fd5b506102496106f2366004611db9565b601a6020526000908152604090205460ff1681565b60606003805461071690611e8c565b80601f016020809104026020016040519081016040528092919081815260200182805461074290611e8c565b801561078f5780601f106107645761010080835404028352916020019161078f565b820191906000526020600020905b81548152906001019060200180831161077257829003601f168201915b5050505050905090565b60006107a633848461100b565b5060015b92915050565b60006107bd84848461106d565b61080f843361080a85604051806060016040528060288152602001612101602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611676565b61100b565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107a691859061080a9086610fa5565b6001600160a01b0383166108aa5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f74206265203000000000000060448201526064015b60405180910390fd5b6040805160028082526060820183526000926020830190803683370190505090507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561092457600080fd5b505afa158015610938573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095c9190611ec7565b8160008151811061096f5761096f611ee4565b60200260200101906001600160a01b031690816001600160a01b03168152505030816001815181106109a3576109a3611ee4565b6001600160a01b039092166020928302919091018201523360009081526017909152604090205460ff168015610a8e57846001600160a01b03166323b872dd85846001815181106109f6576109f6611ee4565b60209081029190910101516040516001600160e01b031960e085901b1681526001600160a01b0392831660048201529116602482015260448101869052606401602060405180830381600087803b158015610a5057600080fd5b505af1158015610a64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a889190611efa565b50610b18565b60405163b6f9de9560e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063b6f9de95908590610ae590600090879061dead904290600401611f5b565b6000604051808303818588803b158015610afe57600080fd5b505af1158015610b12573d6000803e3d6000fd5b50505050505b5050505050565b6005546001600160a01b03163314610b495760405162461bcd60e51b81526004016108a190611f90565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610bbd5760405162461bcd60e51b81526004016108a190611f90565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b60606004805461071690611e8c565b60006107a6338461080a856040518060600160405280602581526020016120b6602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611676565b60006107a633848461106d565b6005546001600160a01b03163314610c7d5760405162461bcd60e51b81526004016108a190611f90565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610cd25760405162461bcd60e51b81526004016108a190611f90565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415610d675760405162461bcd60e51b815260206004820152602a60248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201526936b0b935b2ba2830b4b960b11b60648201526084016108a1565b6001600160a01b03919091166000908152601a60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610dbc5760405162461bcd60e51b81526004016108a190611f90565b600b805461ffff1916610101179055565b6005546001600160a01b03163314610df75760405162461bcd60e51b81526004016108a190611f90565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610e4c5760405162461bcd60e51b81526004016108a190611f90565b6001600160a01b038116610eb15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a1565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038316610f6f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a207065726d697420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108a1565b6001600160a01b0383166000908152600160209081526040808320308085529252909120546107a691859161080a908690611fdb565b600080610fb28385611fdb565b9050838110156110045760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016108a1565b9392505050565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b806110835761107e838360006116b0565b505050565b6005546001600160a01b038481169116148015906110af57506005546001600160a01b03838116911614155b80156110c45750600b5462010000900460ff16155b1561135357600b5460ff16611157576001600160a01b03831660009081526017602052604090205460ff168061111257506001600160a01b03821660009081526017602052604090205460ff165b6111575760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016108a1565b6001600160a01b0383166000908152601a602052604090205460ff16801561119857506001600160a01b03821660009081526018602052604090205460ff16155b156112125760075481111561120d5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016108a1565b6112c9565b6001600160a01b0382166000908152601a602052604090205460ff16801561125357506001600160a01b03831660009081526018602052604090205460ff16155b156112c9576008548111156112c95760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016108a1565b6001600160a01b03821660009081526019602052604090205460ff16611353576009546001600160a01b03831660009081526020819052604090205461130f9083611fdb565b11156113535760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108a1565b30600090815260208190526040902054600a548110801590819061137e5750600b54610100900460ff165b80156113935750600b5462010000900460ff16155b80156113b857506001600160a01b0385166000908152601a602052604090205460ff16155b80156113dd57506001600160a01b03851660009081526017602052604090205460ff16155b801561140257506001600160a01b03841660009081526017602052604090205460ff16155b1561142d57600b805462ff000019166201000017905561142061176d565b600b805462ff0000191690555b600b546001600160a01b03861660009081526017602052604090205460ff6201000090920482161591168061147a57506001600160a01b03851660009081526017602052604090205460ff165b15611483575060005b8015611663576001600160a01b0385166000908152601a602052604081205460ff1680156114b2575060105415155b1561156c576010546114d2906064906114cc908890611940565b906119bf565b601054601354919250906114e69083611ff3565b6114f09190612012565b601560008282546115019190611fdb565b90915550506010546011546115169083611ff3565b6115209190612012565b601460008282546115319190611fdb565b90915550506010546012546115469083611ff3565b6115509190612012565b601660008282546115619190611fdb565b909155506116449050565b6001600160a01b0387166000908152601a602052604090205460ff1680156115955750600c5415155b1561164457600c546115af906064906114cc908890611940565b600c54600f54919250906115c39083611ff3565b6115cd9190612012565b601560008282546115de9190611fdb565b9091555050600c54600d546115f39083611ff3565b6115fd9190612012565b6014600082825461160e9190611fdb565b9091555050600c54600e546116239083611ff3565b61162d9190612012565b6016600082825461163e9190611fdb565b90915550505b8015611655576116558730836116b0565b61165f8186612034565b9450505b61166e8686866116b0565b505050505050565b6000818484111561169a5760405162461bcd60e51b81526004016108a19190611d20565b5060006116a78486612034565b95945050505050565b6116ed816040518060600160405280602681526020016120db602691396001600160a01b0386166000908152602081905260409020549190611676565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461171c9082610fa5565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611060565b30600090815260208190526040812054905060006016546014546015546117949190611fdb565b61179e9190611fdb565b90506000826117ac57505050565b600a546117ba906002611ff3565b8311156117d257600a546117cf906002611ff3565b92505b6000600283601554866117e59190611ff3565b6117ef9190612012565b6117f99190612012565b905060006118078583611a01565b90504761181382611a43565b600061181f4783611a01565b9050600061183c876114cc6014548561194090919063ffffffff16565b90506000611859886114cc6016548661194090919063ffffffff16565b905060006118678284611fdb565b6118719085612034565b600060158190556014819055601655905086158015906118915750600081115b156118da576118a08782611c0a565b60408051878152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a15b6006546001600160a01b03166118f08447612034565b604051600081818185875af1925050503d806000811461192c576040519150601f19603f3d011682016040523d82523d6000602084013e611931565b606091505b50505050505050505050505050565b60008261194f575060006107aa565b600061195b8385611ff3565b9050826119688583612012565b146110045760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016108a1565b600061100483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611cf2565b600061100483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611676565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a7857611a78611ee4565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611af157600080fd5b505afa158015611b05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b299190611ec7565b81600181518110611b3c57611b3c611ee4565b60200260200101906001600160a01b031690816001600160a01b031681525050611b87307f00000000000000000000000000000000000000000000000000000000000000008461100b565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611bdc90859060009086903090429060040161204b565b600060405180830381600087803b158015611bf657600080fd5b505af115801561166e573d6000803e3d6000fd5b611c35307f00000000000000000000000000000000000000000000000000000000000000008461100b565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c4016060604051808303818588803b158015611cb957600080fd5b505af1158015611ccd573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610b189190612087565b60008183611d135760405162461bcd60e51b81526004016108a19190611d20565b5060006116a78486612012565b600060208083528351808285015260005b81811015611d4d57858101830151858201604001528201611d31565b81811115611d5f576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114611d8a57600080fd5b50565b60008060408385031215611da057600080fd5b8235611dab81611d75565b946020939093013593505050565b600060208284031215611dcb57600080fd5b813561100481611d75565b600080600060608486031215611deb57600080fd5b8335611df681611d75565b92506020840135611e0681611d75565b929592945050506040919091013590565b8015158114611d8a57600080fd5b60008060408385031215611e3857600080fd5b8235611e4381611d75565b91506020830135611e5381611e17565b809150509250929050565b60008060408385031215611e7157600080fd5b8235611e7c81611d75565b91506020830135611e5381611d75565b600181811c90821680611ea057607f821691505b60208210811415611ec157634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215611ed957600080fd5b815161100481611d75565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611f0c57600080fd5b815161100481611e17565b600081518084526020808501945080840160005b83811015611f505781516001600160a01b031687529582019590820190600101611f2b565b509495945050505050565b848152608060208201526000611f746080830186611f17565b6001600160a01b03949094166040830152506060015292915050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611fee57611fee611fc5565b500190565b600081600019048311821515161561200d5761200d611fc5565b500290565b60008261202f57634e487b7160e01b600052601260045260246000fd5b500490565b60008282101561204657612046611fc5565b500390565b85815284602082015260a06040820152600061206a60a0830186611f17565b6001600160a01b0394909416606083015250608001529392505050565b60008060006060848603121561209c57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a206465637265617365642063616e6e6f742062652062656c6f77207a65726f45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220c2b4c6e31349911ed7e2e8841ed939b37474654c3e0f717c6b1a7149fb278b8b64736f6c63430008090033

Deployed Bytecode

0x6080604052600436106101f25760003560e01c80638da5cb5b1161010d578063c9567bf9116100a0578063e16830a81161006f578063e16830a814610661578063ef8700e514610681578063f2fde38b14610697578063f32027d2146106b7578063f5b3c3bf146106d757600080fd5b8063c9567bf914610582578063cc2ffe7c14610597578063d212a69a146105ad578063dd62ed3e1461061b57600080fd5b8063a9059cbb116100dc578063a9059cbb14610502578063b886311514610522578063c024666814610542578063c16dd4a41461056257600080fd5b80638da5cb5b1461047f57806395d89b411461049d57806396880b17146104b2578063a457c2d7146104e257600080fd5b806339509351116101855780636ddd1713116101545780636ddd1713146103f557806370a0823114610414578063715018a61461044a5780637571336a1461045f57600080fd5b8063395093511461034657806349bd5a5e146103665780634fbee1931461039a57806366245844146103d357600080fd5b806318160ddd116101c157806318160ddd146102d55780631a8145bb146102f457806323b872dd1461030a578063313ce5671461032a57600080fd5b806306fdde03146101fe578063095ea7b31461022957806310d5de53146102595780631694505e1461028957600080fd5b366101f957005b600080fd5b34801561020a57600080fd5b50610213610707565b6040516102209190611d20565b60405180910390f35b34801561023557600080fd5b50610249610244366004611d8d565b610799565b6040519015158152602001610220565b34801561026557600080fd5b50610249610274366004611db9565b60186020526000908152604090205460ff1681565b34801561029557600080fd5b506102bd7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610220565b3480156102e157600080fd5b506002545b604051908152602001610220565b34801561030057600080fd5b506102e660155481565b34801561031657600080fd5b50610249610325366004611dd6565b6107b0565b34801561033657600080fd5b5060405160128152602001610220565b34801561035257600080fd5b50610249610361366004611d8d565b610819565b34801561037257600080fd5b506102bd7f0000000000000000000000008f809de32740ccf3cea88f8a8fca752a63df939881565b3480156103a657600080fd5b506102496103b5366004611db9565b6001600160a01b031660009081526017602052604090205460ff1690565b3480156103df57600080fd5b506103f36103ee366004611dd6565b61084f565b005b34801561040157600080fd5b50600b5461024990610100900460ff1681565b34801561042057600080fd5b506102e661042f366004611db9565b6001600160a01b031660009081526020819052604090205490565b34801561045657600080fd5b506103f3610b1f565b34801561046b57600080fd5b506103f361047a366004611e25565b610b93565b34801561048b57600080fd5b506005546001600160a01b03166102bd565b3480156104a957600080fd5b50610213610be8565b3480156104be57600080fd5b506102496104cd366004611db9565b60196020526000908152604090205460ff1681565b3480156104ee57600080fd5b506102496104fd366004611d8d565b610bf7565b34801561050e57600080fd5b5061024961051d366004611d8d565b610c46565b34801561052e57600080fd5b50600b546102499062010000900460ff1681565b34801561054e57600080fd5b506103f361055d366004611e25565b610c53565b34801561056e57600080fd5b506103f361057d366004611e25565b610ca8565b34801561058e57600080fd5b506103f3610d92565b3480156105a357600080fd5b506102e660145481565b3480156105b957600080fd5b50600c54600d54600e54600f546010546011546012546013546105e0979695949392919088565b604080519889526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610220565b34801561062757600080fd5b506102e6610636366004611e5e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561066d57600080fd5b506103f361067c366004611e25565b610dcd565b34801561068d57600080fd5b506102e660165481565b3480156106a357600080fd5b506103f36106b2366004611db9565b610e22565b3480156106c357600080fd5b506102496106d2366004611d8d565b610f0d565b3480156106e357600080fd5b506102496106f2366004611db9565b601a6020526000908152604090205460ff1681565b60606003805461071690611e8c565b80601f016020809104026020016040519081016040528092919081815260200182805461074290611e8c565b801561078f5780601f106107645761010080835404028352916020019161078f565b820191906000526020600020905b81548152906001019060200180831161077257829003601f168201915b5050505050905090565b60006107a633848461100b565b5060015b92915050565b60006107bd84848461106d565b61080f843361080a85604051806060016040528060288152602001612101602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611676565b61100b565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107a691859061080a9086610fa5565b6001600160a01b0383166108aa5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f74206265203000000000000060448201526064015b60405180910390fd5b6040805160028082526060820183526000926020830190803683370190505090507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561092457600080fd5b505afa158015610938573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095c9190611ec7565b8160008151811061096f5761096f611ee4565b60200260200101906001600160a01b031690816001600160a01b03168152505030816001815181106109a3576109a3611ee4565b6001600160a01b039092166020928302919091018201523360009081526017909152604090205460ff168015610a8e57846001600160a01b03166323b872dd85846001815181106109f6576109f6611ee4565b60209081029190910101516040516001600160e01b031960e085901b1681526001600160a01b0392831660048201529116602482015260448101869052606401602060405180830381600087803b158015610a5057600080fd5b505af1158015610a64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a889190611efa565b50610b18565b60405163b6f9de9560e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063b6f9de95908590610ae590600090879061dead904290600401611f5b565b6000604051808303818588803b158015610afe57600080fd5b505af1158015610b12573d6000803e3d6000fd5b50505050505b5050505050565b6005546001600160a01b03163314610b495760405162461bcd60e51b81526004016108a190611f90565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610bbd5760405162461bcd60e51b81526004016108a190611f90565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b60606004805461071690611e8c565b60006107a6338461080a856040518060600160405280602581526020016120b6602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611676565b60006107a633848461106d565b6005546001600160a01b03163314610c7d5760405162461bcd60e51b81526004016108a190611f90565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610cd25760405162461bcd60e51b81526004016108a190611f90565b7f0000000000000000000000008f809de32740ccf3cea88f8a8fca752a63df93986001600160a01b0316826001600160a01b03161415610d675760405162461bcd60e51b815260206004820152602a60248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201526936b0b935b2ba2830b4b960b11b60648201526084016108a1565b6001600160a01b03919091166000908152601a60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610dbc5760405162461bcd60e51b81526004016108a190611f90565b600b805461ffff1916610101179055565b6005546001600160a01b03163314610df75760405162461bcd60e51b81526004016108a190611f90565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610e4c5760405162461bcd60e51b81526004016108a190611f90565b6001600160a01b038116610eb15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a1565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038316610f6f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a207065726d697420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108a1565b6001600160a01b0383166000908152600160209081526040808320308085529252909120546107a691859161080a908690611fdb565b600080610fb28385611fdb565b9050838110156110045760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016108a1565b9392505050565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b806110835761107e838360006116b0565b505050565b6005546001600160a01b038481169116148015906110af57506005546001600160a01b03838116911614155b80156110c45750600b5462010000900460ff16155b1561135357600b5460ff16611157576001600160a01b03831660009081526017602052604090205460ff168061111257506001600160a01b03821660009081526017602052604090205460ff165b6111575760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016108a1565b6001600160a01b0383166000908152601a602052604090205460ff16801561119857506001600160a01b03821660009081526018602052604090205460ff16155b156112125760075481111561120d5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016108a1565b6112c9565b6001600160a01b0382166000908152601a602052604090205460ff16801561125357506001600160a01b03831660009081526018602052604090205460ff16155b156112c9576008548111156112c95760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016108a1565b6001600160a01b03821660009081526019602052604090205460ff16611353576009546001600160a01b03831660009081526020819052604090205461130f9083611fdb565b11156113535760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108a1565b30600090815260208190526040902054600a548110801590819061137e5750600b54610100900460ff165b80156113935750600b5462010000900460ff16155b80156113b857506001600160a01b0385166000908152601a602052604090205460ff16155b80156113dd57506001600160a01b03851660009081526017602052604090205460ff16155b801561140257506001600160a01b03841660009081526017602052604090205460ff16155b1561142d57600b805462ff000019166201000017905561142061176d565b600b805462ff0000191690555b600b546001600160a01b03861660009081526017602052604090205460ff6201000090920482161591168061147a57506001600160a01b03851660009081526017602052604090205460ff165b15611483575060005b8015611663576001600160a01b0385166000908152601a602052604081205460ff1680156114b2575060105415155b1561156c576010546114d2906064906114cc908890611940565b906119bf565b601054601354919250906114e69083611ff3565b6114f09190612012565b601560008282546115019190611fdb565b90915550506010546011546115169083611ff3565b6115209190612012565b601460008282546115319190611fdb565b90915550506010546012546115469083611ff3565b6115509190612012565b601660008282546115619190611fdb565b909155506116449050565b6001600160a01b0387166000908152601a602052604090205460ff1680156115955750600c5415155b1561164457600c546115af906064906114cc908890611940565b600c54600f54919250906115c39083611ff3565b6115cd9190612012565b601560008282546115de9190611fdb565b9091555050600c54600d546115f39083611ff3565b6115fd9190612012565b6014600082825461160e9190611fdb565b9091555050600c54600e546116239083611ff3565b61162d9190612012565b6016600082825461163e9190611fdb565b90915550505b8015611655576116558730836116b0565b61165f8186612034565b9450505b61166e8686866116b0565b505050505050565b6000818484111561169a5760405162461bcd60e51b81526004016108a19190611d20565b5060006116a78486612034565b95945050505050565b6116ed816040518060600160405280602681526020016120db602691396001600160a01b0386166000908152602081905260409020549190611676565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461171c9082610fa5565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611060565b30600090815260208190526040812054905060006016546014546015546117949190611fdb565b61179e9190611fdb565b90506000826117ac57505050565b600a546117ba906002611ff3565b8311156117d257600a546117cf906002611ff3565b92505b6000600283601554866117e59190611ff3565b6117ef9190612012565b6117f99190612012565b905060006118078583611a01565b90504761181382611a43565b600061181f4783611a01565b9050600061183c876114cc6014548561194090919063ffffffff16565b90506000611859886114cc6016548661194090919063ffffffff16565b905060006118678284611fdb565b6118719085612034565b600060158190556014819055601655905086158015906118915750600081115b156118da576118a08782611c0a565b60408051878152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a15b6006546001600160a01b03166118f08447612034565b604051600081818185875af1925050503d806000811461192c576040519150601f19603f3d011682016040523d82523d6000602084013e611931565b606091505b50505050505050505050505050565b60008261194f575060006107aa565b600061195b8385611ff3565b9050826119688583612012565b146110045760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016108a1565b600061100483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611cf2565b600061100483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611676565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a7857611a78611ee4565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611af157600080fd5b505afa158015611b05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b299190611ec7565b81600181518110611b3c57611b3c611ee4565b60200260200101906001600160a01b031690816001600160a01b031681525050611b87307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461100b565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611bdc90859060009086903090429060040161204b565b600060405180830381600087803b158015611bf657600080fd5b505af115801561166e573d6000803e3d6000fd5b611c35307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461100b565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c4016060604051808303818588803b158015611cb957600080fd5b505af1158015611ccd573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610b189190612087565b60008183611d135760405162461bcd60e51b81526004016108a19190611d20565b5060006116a78486612012565b600060208083528351808285015260005b81811015611d4d57858101830151858201604001528201611d31565b81811115611d5f576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114611d8a57600080fd5b50565b60008060408385031215611da057600080fd5b8235611dab81611d75565b946020939093013593505050565b600060208284031215611dcb57600080fd5b813561100481611d75565b600080600060608486031215611deb57600080fd5b8335611df681611d75565b92506020840135611e0681611d75565b929592945050506040919091013590565b8015158114611d8a57600080fd5b60008060408385031215611e3857600080fd5b8235611e4381611d75565b91506020830135611e5381611e17565b809150509250929050565b60008060408385031215611e7157600080fd5b8235611e7c81611d75565b91506020830135611e5381611d75565b600181811c90821680611ea057607f821691505b60208210811415611ec157634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215611ed957600080fd5b815161100481611d75565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611f0c57600080fd5b815161100481611e17565b600081518084526020808501945080840160005b83811015611f505781516001600160a01b031687529582019590820190600101611f2b565b509495945050505050565b848152608060208201526000611f746080830186611f17565b6001600160a01b03949094166040830152506060015292915050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611fee57611fee611fc5565b500190565b600081600019048311821515161561200d5761200d611fc5565b500290565b60008261202f57634e487b7160e01b600052601260045260246000fd5b500490565b60008282101561204657612046611fc5565b500390565b85815284602082015260a06040820152600061206a60a0830186611f17565b6001600160a01b0394909416606083015250608001529392505050565b60008060006060848603121561209c57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a206465637265617365642063616e6e6f742062652062656c6f77207a65726f45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220c2b4c6e31349911ed7e2e8841ed939b37474654c3e0f717c6b1a7149fb278b8b64736f6c63430008090033

Deployed Bytecode Sourcemap

21512:11350:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4646:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6806:168;;;;;;;;;;-1:-1:-1;6806:168:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;6806:168:0;1072:187:1;22873:63:0;;;;;;;;;;-1:-1:-1;22873:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;21591:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1707:32:1;;;1689:51;;1677:2;1662:18;21591:51:0;1516:230:1;5763:107:0;;;;;;;;;;-1:-1:-1;5850:12:0;;5763:107;;;1897:25:1;;;1885:2;1870:18;5763:107:0;1751:177:1;22677:33:0;;;;;;;;;;;;;;;;7456:354;;;;;;;;;;-1:-1:-1;7456:354:0;;;;;:::i;:::-;;:::i;5606:92::-;;;;;;;;;;-1:-1:-1;5606:92:0;;5688:2;2536:36:1;;2524:2;2509:18;5606:92:0;2394:184:1;8219:217:0;;;;;;;;;;-1:-1:-1;8219:217:0;;;;;:::i;:::-;;:::i;21649:38::-;;;;;;;;;;;;;;;26403:125;;;;;;;;;;-1:-1:-1;26403:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;26492:28:0;26468:4;26492:28;;;:19;:28;;;;;;;;;26403:125;30217:762;;;;;;;;;;-1:-1:-1;30217:762:0;;;;;:::i;:::-;;:::i;:::-;;21989:31;;;;;;;;;;-1:-1:-1;21989:31:0;;;;;;;;;;;5933:126;;;;;;;;;;-1:-1:-1;5933:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;6033:18:0;6006:7;6033:18;;;;;;;;;;;;5933:126;14192:148;;;;;;;;;;;;;:::i;26024:144::-;;;;;;;;;;-1:-1:-1;26024:144:0;;;;;:::i;:::-;;:::i;13551:78::-;;;;;;;;;;-1:-1:-1;13615:6:0;;-1:-1:-1;;;;;13615:6:0;13551:78;;4864:103;;;;;;;;;;;;;:::i;22943:58::-;;;;;;;;;;-1:-1:-1;22943:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;8939:268;;;;;;;;;;-1:-1:-1;8939:268:0;;;;;:::i;:::-;;:::i;6272:174::-;;;;;;;;;;-1:-1:-1;6272:174:0;;;;;:::i;:::-;;:::i;22027:22::-;;;;;;;;;;-1:-1:-1;22027:22:0;;;;;;;;;;;25734:132;;;;;;;;;;-1:-1:-1;25734:132:0;;;;;:::i;:::-;;:::i;26176:219::-;;;;;;;;;;-1:-1:-1;26176:219:0;;;;;:::i;:::-;;:::i;25620:106::-;;;;;;;;;;;;;:::i;22638:32::-;;;;;;;;;;;;;;;;22362:267;;;;;;;;;;-1:-1:-1;22362:267:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3644:25:1;;;3700:2;3685:18;;3678:34;;;;3728:18;;;3721:34;;;;3786:2;3771:18;;3764:34;;;;3829:3;3814:19;;3807:35;3873:3;3858:19;;3851:35;3917:3;3902:19;;3895:35;3961:3;3946:19;;3939:35;3631:3;3616:19;22362:267:0;3301:679:1;6509:150:0;;;;;;;;;;-1:-1:-1;6509:150:0;;;;;:::i;:::-;-1:-1:-1;;;;;6624:18:0;;;6597:7;6624:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;6509:150;25872:146;;;;;;;;;;-1:-1:-1;25872:146:0;;;;;:::i;:::-;;:::i;22717:35::-;;;;;;;;;;;;;;;;14495:244;;;;;;;;;;-1:-1:-1;14495:244:0;;;;;:::i;:::-;;:::i;9352:304::-;;;;;;;;;;-1:-1:-1;9352:304:0;;;;;:::i;:::-;;:::i;23159:42::-;;;;;;;;;;-1:-1:-1;23159:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;4646:99;4699:13;4732:5;4725:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4646:99;:::o;6806:168::-;6888:4;6905:39;3798:10;6928:7;6937:6;6905:8;:39::i;:::-;-1:-1:-1;6962:4:0;6806:168;;;;;:::o;7456:354::-;7595:4;7612:36;7622:6;7630:9;7641:6;7612:9;:36::i;:::-;7659:121;7668:6;3798:10;7690:89;7728:6;7690:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7690:19:0;;;;;;:11;:19;;;;;;;;3798:10;7690:33;;;;;;;;;;:37;:89::i;:::-;7659:8;:121::i;:::-;-1:-1:-1;7798:4:0;7456:354;;;;;:::o;8219:217::-;3798:10;8306:4;8355:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;8355:34:0;;;;;;;;;;8306:4;;8323:83;;8346:7;;8355:50;;8394:10;8355:38;:50::i;30217:762::-;-1:-1:-1;;;;;30333:20:0;;30325:59;;;;-1:-1:-1;;;30325:59:0;;4965:2:1;30325:59:0;;;4947:21:1;5004:2;4984:18;;;4977:30;5043:28;5023:18;;;5016:56;5089:18;;30325:59:0;;;;;;;;;30419:16;;;30433:1;30419:16;;;;;;;;30395:21;;30419:16;;;;;;;;;;-1:-1:-1;30419:16:0;30395:40;;30456:15;-1:-1:-1;;;;;30456:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30446:4;30451:1;30446:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;30446:32:0;;;-1:-1:-1;;;;;30446:32:0;;;;;30507:4;30489;30494:1;30489:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;30489:23:0;;;:7;;;;;;;;;;:23;30559:10;30523:13;30539:31;;;:19;:31;;;;;;;;;30581:391;;;;30617:6;-1:-1:-1;;;;;30610:27:0;;30638:3;30643:4;30648:1;30643:7;;;;;;;;:::i;:::-;;;;;;;;;;;30610:50;;-1:-1:-1;;;;;;30610:50:0;;;;;;;-1:-1:-1;;;;;5896:15:1;;;30610:50:0;;;5878:34:1;5948:15;;5928:18;;;5921:43;5980:18;;;5973:34;;;5813:18;;30610:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30581:391;;;30723:237;;-1:-1:-1;;;30723:237:0;;-1:-1:-1;;;;;30723:15:0;:66;;;;30797:7;;30723:237;;30825:1;;30873:4;;30904:6;;30930:15;;30723:237;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30581:391;30314:665;;30217:762;;;:::o;14192:148::-;13762:6;;-1:-1:-1;;;;;13762:6:0;3798:10;13762:22;13754:67;;;;-1:-1:-1;;;13754:67:0;;;;;;;:::i;:::-;14283:6:::1;::::0;14262:40:::1;::::0;14299:1:::1;::::0;-1:-1:-1;;;;;14283:6:0::1;::::0;14262:40:::1;::::0;14299:1;;14262:40:::1;14313:6;:19:::0;;-1:-1:-1;;;;;;14313:19:0::1;::::0;;14192:148::o;26024:144::-;13762:6;;-1:-1:-1;;;;;13762:6:0;3798:10;13762:22;13754:67;;;;-1:-1:-1;;;13754:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26114:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;26114:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26024:144::o;4864:103::-;4919:13;4952:7;4945:14;;;;;:::i;8939:268::-;9031:4;9048:129;3798:10;9071:7;9080:96;9119:15;9080:96;;;;;;;;;;;;;;;;;3798:10;9080:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;9080:34:0;;;;;;;;;;;;:38;:96::i;6272:174::-;6357:4;6374:42;3798:10;6398:9;6409:6;6374:9;:42::i;25734:132::-;13762:6;;-1:-1:-1;;;;;13762:6:0;3798:10;13762:22;13754:67;;;;-1:-1:-1;;;13754:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25819:28:0;;;::::1;;::::0;;;:19:::1;:28;::::0;;;;:39;;-1:-1:-1;;25819:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;25734:132::o;26176:219::-;13762:6;;-1:-1:-1;;;;;13762:6:0;3798:10;13762:22;13754:67;;;;-1:-1:-1;;;13754:67:0;;;;;;;:::i;:::-;26292:13:::1;-1:-1:-1::0;;;;;26284:21:0::1;:4;-1:-1:-1::0;;;;;26284:21:0::1;;;26276:76;;;::::0;-1:-1:-1;;;26276:76:0;;7812:2:1;26276:76:0::1;::::0;::::1;7794:21:1::0;7851:2;7831:18;;;7824:30;7890:34;7870:18;;;7863:62;-1:-1:-1;;;7941:18:1;;;7934:40;7991:19;;26276:76:0::1;7610:406:1::0;26276:76:0::1;-1:-1:-1::0;;;;;26363:16:0;;;::::1;;::::0;;;:10:::1;:16;::::0;;;;:24;;-1:-1:-1;;26363:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26176:219::o;25620:106::-;13762:6;;-1:-1:-1;;;;;13762:6:0;3798:10;13762:22;13754:67;;;;-1:-1:-1;;;13754:67:0;;;;;;;:::i;:::-;25673:9:::1;:16:::0;;-1:-1:-1;;25700:18:0;;;;;25620:106::o;25872:146::-;13762:6;;-1:-1:-1;;;;;13762:6:0;3798:10;13762:22;13754:67;;;;-1:-1:-1;;;13754:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25964:35:0;;;::::1;;::::0;;;:26:::1;:35;::::0;;;;:46;;-1:-1:-1;;25964:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;25872:146::o;14495:244::-;13762:6;;-1:-1:-1;;;;;13762:6:0;3798:10;13762:22;13754:67;;;;-1:-1:-1;;;13754:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14584:22:0;::::1;14576:73;;;::::0;-1:-1:-1;;;14576:73:0;;8223:2:1;14576:73:0::1;::::0;::::1;8205:21:1::0;8262:2;8242:18;;;8235:30;8301:34;8281:18;;;8274:62;-1:-1:-1;;;8352:18:1;;;8345:36;8398:19;;14576:73:0::1;8021:402:1::0;14576:73:0::1;14686:6;::::0;14665:38:::1;::::0;-1:-1:-1;;;;;14665:38:0;;::::1;::::0;14686:6:::1;::::0;14665:38:::1;::::0;14686:6:::1;::::0;14665:38:::1;14714:6;:17:::0;;-1:-1:-1;;;;;;14714:17:0::1;-1:-1:-1::0;;;;;14714:17:0;;;::::1;::::0;;;::::1;::::0;;14495:244::o;9352:304::-;9455:4;-1:-1:-1;;;;;9480:21:0;;9472:67;;;;-1:-1:-1;;;9472:67:0;;8630:2:1;9472:67:0;;;8612:21:1;8669:2;8649:18;;;8642:30;8708:34;8688:18;;;8681:62;-1:-1:-1;;;8759:18:1;;;8752:31;8800:19;;9472:67:0;8428:397:1;9472:67:0;-1:-1:-1;;;;;6624:18:0;;6597:7;6624:18;;;:11;:18;;;;;;;;9576:4;6624:27;;;;;;;;;9550:76;;6624:18;;9583:42;;9619:6;;9583:42;:::i;11816:180::-;11873:7;;11905:5;11909:1;11905;:5;:::i;:::-;11893:17;;11934:1;11929;:6;;11921:46;;;;-1:-1:-1;;;11921:46:0;;9297:2:1;11921:46:0;;;9279:21:1;9336:2;9316:18;;;9309:30;9375:29;9355:18;;;9348:57;9422:18;;11921:46:0;9095:351:1;11921:46:0;11987:1;11816:180;-1:-1:-1;;;11816:180:0:o;11551:220::-;-1:-1:-1;;;;;11679:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;11731:32;;1897:25:1;;;11731:32:0;;1870:18:1;11731:32:0;;;;;;;;11551:220;;;:::o;26536:3086::-;26683:11;26679:102;;26711:37;26727:6;26735:9;26746:1;26711:15;:37::i;:::-;26536:3086;;;:::o;26679:102::-;13615:6;;-1:-1:-1;;;;;26811:17:0;;;13615:6;;26811:17;;;;:54;;-1:-1:-1;13615:6:0;;-1:-1:-1;;;;;26845:20:0;;;13615:6;;26845:20;;26811:54;:82;;;;-1:-1:-1;26883:10:0;;;;;;;26882:11;26811:82;26793:888;;;26927:9;;;;26922:147;;-1:-1:-1;;;;;26965:27:0;;;;;;:19;:27;;;;;;;;;:61;;-1:-1:-1;;;;;;26996:30:0;;;;;;:19;:30;;;;;;;;26965:61;26957:96;;;;-1:-1:-1;;;26957:96:0;;9653:2:1;26957:96:0;;;9635:21:1;9692:2;9672:18;;;9665:30;-1:-1:-1;;;9711:18:1;;;9704:52;9773:18;;26957:96:0;9451:346:1;26957:96:0;-1:-1:-1;;;;;27087:18:0;;;;;;:10;:18;;;;;;;;:65;;;;-1:-1:-1;;;;;;27110:42:0;;;;;;:31;:42;;;;;;;;27109:43;27087:65;27083:410;;;27191:12;;27181:6;:22;;27173:88;;;;-1:-1:-1;;;27173:88:0;;10004:2:1;27173:88:0;;;9986:21:1;10043:2;10023:18;;;10016:30;10082:34;10062:18;;;10055:62;-1:-1:-1;;;10133:18:1;;;10126:51;10194:19;;27173:88:0;9802:417:1;27173:88:0;27083:410;;;-1:-1:-1;;;;;27301:21:0;;;;;;:10;:21;;;;;;;;:65;;;;-1:-1:-1;;;;;;27327:39:0;;;;;;:31;:39;;;;;;;;27326:40;27301:65;27297:196;;;27405:13;;27395:6;:23;;27387:90;;;;-1:-1:-1;;;27387:90:0;;10426:2:1;27387:90:0;;;10408:21:1;10465:2;10445:18;;;10438:30;10504:34;10484:18;;;10477:62;-1:-1:-1;;;10555:18:1;;;10548:52;10617:19;;27387:90:0;10224:418:1;27387:90:0;-1:-1:-1;;;;;27514:37:0;;;;;;:26;:37;;;;;;;;27509:159;;27613:15;;-1:-1:-1;;;;;6033:18:0;;6006:7;6033:18;;;;;;;;;;;27580:29;;:6;:29;:::i;:::-;:48;;27572:80;;;;-1:-1:-1;;;27572:80:0;;10849:2:1;27572:80:0;;;10831:21:1;10888:2;10868:18;;;10861:30;-1:-1:-1;;;10907:18:1;;;10900:49;10966:18;;27572:80:0;10647:343:1;27572:80:0;27743:4;27694:28;6033:18;;;;;;;;;;;27802:19;;27778:43;;;;;;;27852:35;;-1:-1:-1;27876:11:0;;;;;;;27852:35;:63;;;;-1:-1:-1;27905:10:0;;;;;;;27904:11;27852:63;:99;;;;-1:-1:-1;;;;;;27933:18:0;;;;;;:10;:18;;;;;;;;27932:19;27852:99;:144;;;;-1:-1:-1;;;;;;27969:27:0;;;;;;:19;:27;;;;;;;;27968:28;27852:144;:192;;;;-1:-1:-1;;;;;;28014:30:0;;;;;;:19;:30;;;;;;;;28013:31;27852:192;27834:324;;;28071:10;:17;;-1:-1:-1;;28071:17:0;;;;;28103:10;:8;:10::i;:::-;28128;:18;;-1:-1:-1;;28128:18:0;;;27834:324;28187:10;;-1:-1:-1;;;;;28299:27:0;;28171:12;28299:27;;;:19;:27;;;;;;28187:10;;;;;;;28186:11;;28299:27;;:61;;-1:-1:-1;;;;;;28330:30:0;;;;;;:19;:30;;;;;;;;28299:61;28295:109;;;-1:-1:-1;28387:5:0;28295:109;28494:7;28490:1070;;;-1:-1:-1;;;;;28552:21:0;;28518:12;28552:21;;;:10;:21;;;;;;;;:48;;;;-1:-1:-1;28577:19:0;;:23;;28552:48;28548:859;;;28639:19;;28628:40;;28664:3;;28628:31;;:6;;:10;:31::i;:::-;:35;;:40::i;:::-;28741:19;;28716:22;;28621:47;;-1:-1:-1;28741:19:0;28709:29;;28621:47;28709:29;:::i;:::-;:51;;;;:::i;:::-;28687:18;;:73;;;;;;;:::i;:::-;;;;-1:-1:-1;;28831:19:0;;28807:21;;28800:28;;:4;:28;:::i;:::-;:50;;;;:::i;:::-;28779:17;;:71;;;;;;;:::i;:::-;;;;-1:-1:-1;;28927:19:0;;28900:24;;28893:31;;:4;:31;:::i;:::-;:53;;;;:::i;:::-;28869:20;;:77;;;;;;;:::i;:::-;;;;-1:-1:-1;28548:859:0;;-1:-1:-1;28548:859:0;;-1:-1:-1;;;;;29008:18:0;;;;;;:10;:18;;;;;;;;:44;;;;-1:-1:-1;29030:5:0;:18;:22;;29008:44;29004:403;;;29091:5;:18;29080:39;;29115:3;;29080:30;;:6;;:10;:30::i;:39::-;29191:5;:18;29167:21;;29073:46;;-1:-1:-1;29191:18:0;29160:28;;29073:46;29160:28;:::i;:::-;:49;;;;:::i;:::-;29138:18;;:71;;;;;;;:::i;:::-;;;;-1:-1:-1;;29279:5:0;:18;29256:20;;29249:27;;:4;:27;:::i;:::-;:48;;;;:::i;:::-;29228:17;;:69;;;;;;;:::i;:::-;;;;-1:-1:-1;;29373:5:0;:18;29347:23;;29340:30;;:4;:30;:::i;:::-;:51;;;;:::i;:::-;29316:20;;:75;;;;;;;:::i;:::-;;;;-1:-1:-1;;29004:403:0;29427:8;;29423:93;;29456:44;29472:6;29488:4;29495;29456:15;:44::i;:::-;29532:14;29542:4;29532:14;;:::i;:::-;;;28503:1057;28490:1070;29572:42;29588:6;29596:9;29607:6;29572:15;:42::i;:::-;26658:2964;;;26536:3086;;;:::o;12157:191::-;12242:7;12278:12;12270:6;;;;12262:29;;;;-1:-1:-1;;;12262:29:0;;;;;;;;:::i;:::-;-1:-1:-1;12302:9:0;12314:5;12318:1;12314;:5;:::i;:::-;12302:17;12157:191;-1:-1:-1;;;;;12157:191:0:o;10146:358::-;10308:71;10330:6;10308:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10308:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;10288:17:0;;;:9;:17;;;;;;;;;;;:91;;;;10413:20;;;;;;;:32;;10438:6;10413:24;:32::i;:::-;-1:-1:-1;;;;;10390:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;10461:35;1897:25:1;;;10390:20:0;;10461:35;;;;;;1870:18:1;10461:35:0;1751:177:1;31363:1496:0;31451:4;31402:28;6033:18;;;;;;;;;;;31402:55;;31468:14;31526:20;;31506:17;;31485:18;;:38;;;;:::i;:::-;:61;;;;:::i;:::-;31468:78;-1:-1:-1;31557:12:0;31586:25;31582:42;;31615:7;;;31363:1496::o;31582:42::-;31663:19;;:23;;31685:1;31663:23;:::i;:::-;31640:20;:46;31636:125;;;31726:19;;:23;;31748:1;31726:23;:::i;:::-;31703:46;;31636:125;31822:23;31901:1;31892:6;31871:18;;31848:20;:41;;;;:::i;:::-;:50;;;;:::i;:::-;:54;;;;:::i;:::-;31822:80;-1:-1:-1;31913:26:0;31942:41;:20;31822:80;31942:24;:41::i;:::-;31913:70;-1:-1:-1;32025:21:0;32059:36;31913:70;32059:16;:36::i;:::-;32110:18;32131:44;:21;32157:17;32131:25;:44::i;:::-;32110:65;;32189:22;32214:45;32252:6;32214:33;32229:17;;32214:10;:14;;:33;;;;:::i;:45::-;32189:70;;32270:25;32298:48;32339:6;32298:36;32313:20;;32298:10;:14;;:36;;;;:::i;:48::-;32270:76;-1:-1:-1;32357:23:0;32397:34;32270:76;32397:14;:34;:::i;:::-;32383:49;;:10;:49;:::i;:::-;32466:1;32445:18;:22;;;32478:17;:21;;;32510:20;:24;32357:75;-1:-1:-1;32551:19:0;;;;;:42;;;32592:1;32574:15;:19;32551:42;32547:192;;;32610:46;32623:15;32640;32610:12;:46::i;:::-;32676:51;;;11694:25:1;;;11750:2;11735:18;;11728:34;;;32676:51:0;;11667:18:1;32676:51:0;;;;;;;32547:192;32772:17;;-1:-1:-1;;;;;32772:17:0;32805:38;32829:14;32805:21;:38;:::i;:::-;32764:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;31363:1496:0:o;12356:256::-;12413:7;12443:6;12439:47;;-1:-1:-1;12473:1:0;12466:8;;12439:47;12499:9;12511:5;12515:1;12511;:5;:::i;:::-;12499:17;-1:-1:-1;12544:1:0;12535:5;12539:1;12499:17;12535:5;:::i;:::-;:10;12527:56;;;;-1:-1:-1;;;12527:56:0;;12185:2:1;12527:56:0;;;12167:21:1;12224:2;12204:18;;;12197:30;12263:34;12243:18;;;12236:62;-1:-1:-1;;;12314:18:1;;;12307:31;12355:19;;12527:56:0;11983:397:1;12623:131:0;12680:7;12707:39;12711:1;12714;12707:39;;;;;;;;;;;;;;;;;:3;:39::i;12009:135::-;12066:7;12093:43;12097:1;12100;12093:43;;;;;;;;;;;;;;;;;:3;:43::i;29630:579::-;29776:16;;;29790:1;29776:16;;;;;;;;29752:21;;29776:16;;;;;;;;;;-1:-1:-1;29776:16:0;29752:40;;29821:4;29803;29808:1;29803:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;29803:23:0;;;-1:-1:-1;;;;;29803:23:0;;;;;29847:15;-1:-1:-1;;;;;29847:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29837:4;29842:1;29837:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;29837:32:0;;;-1:-1:-1;;;;;29837:32:0;;;;;29882:58;29899:4;29914:15;29932:7;29882:8;:58::i;:::-;29979:220;;-1:-1:-1;;;29979:220:0;;-1:-1:-1;;;;;29979:15:0;:66;;;;:220;;30060:7;;30082:1;;30126:4;;30153;;30173:15;;29979:220;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30987:368;31131:58;31148:4;31163:15;31181:7;31131:8;:58::i;:::-;31232:115;;-1:-1:-1;;;31232:115:0;;31293:4;31232:115;;;13313:34:1;;;13363:18;;;13356:34;;;31309:1:0;13406:18:1;;;13399:34;;;13449:18;;;13442:34;13492:19;;;13485:44;31331:15:0;13545:19:1;;;13538:35;31232:15:0;-1:-1:-1;;;;;31232:31:0;;;;31272:9;;13247:19:1;;31232:115:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;12766:277::-;12851:7;12886:12;12879:5;12871:28;;;;-1:-1:-1;;;12871:28:0;;;;;;;;:::i;:::-;-1:-1:-1;12910:9:0;12922:5;12926:1;12922;: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;1933:456::-;2010:6;2018;2026;2079:2;2067:9;2058:7;2054:23;2050:32;2047:52;;;2095:1;2092;2085:12;2047:52;2134:9;2121:23;2153:31;2178:5;2153:31;:::i;:::-;2203:5;-1:-1:-1;2260:2:1;2245:18;;2232:32;2273:33;2232:32;2273:33;:::i;:::-;1933:456;;2325:7;;-1:-1:-1;;;2379:2:1;2364:18;;;;2351:32;;1933:456::o;2791:118::-;2877:5;2870:13;2863:21;2856:5;2853:32;2843:60;;2899:1;2896;2889:12;2914:382;2979:6;2987;3040:2;3028:9;3019:7;3015:23;3011:32;3008:52;;;3056:1;3053;3046:12;3008:52;3095:9;3082:23;3114:31;3139:5;3114:31;:::i;:::-;3164:5;-1:-1:-1;3221:2:1;3206:18;;3193:32;3234:30;3193:32;3234:30;:::i;:::-;3283:7;3273:17;;;2914:382;;;;;:::o;3985:388::-;4053:6;4061;4114:2;4102:9;4093:7;4089:23;4085:32;4082:52;;;4130:1;4127;4120:12;4082:52;4169:9;4156:23;4188:31;4213:5;4188:31;:::i;:::-;4238:5;-1:-1:-1;4295:2:1;4280:18;;4267:32;4308:33;4267:32;4308:33;:::i;4378:380::-;4457:1;4453:12;;;;4500;;;4521:61;;4575:4;4567:6;4563:17;4553:27;;4521:61;4628:2;4620:6;4617:14;4597:18;4594:38;4591:161;;;4674:10;4669:3;4665:20;4662:1;4655:31;4709:4;4706:1;4699:15;4737:4;4734:1;4727:15;4591:161;;4378:380;;;:::o;5250:251::-;5320:6;5373:2;5361:9;5352:7;5348:23;5344:32;5341:52;;;5389:1;5386;5379:12;5341:52;5421:9;5415:16;5440:31;5465:5;5440:31;:::i;5506:127::-;5567:10;5562:3;5558:20;5555:1;5548:31;5598:4;5595:1;5588:15;5622:4;5619:1;5612:15;6018:245;6085:6;6138:2;6126:9;6117:7;6113:23;6109:32;6106:52;;;6154:1;6151;6144:12;6106:52;6186:9;6180:16;6205:28;6227:5;6205:28;:::i;6268:461::-;6321:3;6359:5;6353:12;6386:6;6381:3;6374:19;6412:4;6441:2;6436:3;6432:12;6425:19;;6478:2;6471:5;6467:14;6499:1;6509:195;6523:6;6520:1;6517:13;6509:195;;;6588:13;;-1:-1:-1;;;;;6584:39:1;6572:52;;6644:12;;;;6679:15;;;;6620:1;6538:9;6509:195;;;-1:-1:-1;6720:3:1;;6268:461;-1:-1:-1;;;;;6268:461:1:o;6734:510::-;7005:6;6994:9;6987:25;7048:3;7043:2;7032:9;7028:18;7021:31;6968:4;7069:57;7121:3;7110:9;7106:19;7098:6;7069:57;:::i;:::-;-1:-1:-1;;;;;7162:32:1;;;;7157:2;7142:18;;7135:60;-1:-1:-1;7226:2:1;7211:18;7204:34;7061:65;6734:510;-1:-1:-1;;6734:510:1:o;7249:356::-;7451:2;7433:21;;;7470:18;;;7463:30;7529:34;7524:2;7509:18;;7502:62;7596:2;7581:18;;7249:356::o;8830:127::-;8891:10;8886:3;8882:20;8879:1;8872:31;8922:4;8919:1;8912:15;8946:4;8943:1;8936:15;8962:128;9002:3;9033:1;9029:6;9026:1;9023:13;9020:39;;;9039:18;;:::i;:::-;-1:-1:-1;9075:9:1;;8962:128::o;10995:168::-;11035:7;11101:1;11097;11093:6;11089:14;11086:1;11083:21;11078:1;11071:9;11064:17;11060:45;11057:71;;;11108:18;;:::i;:::-;-1:-1:-1;11148:9:1;;10995:168::o;11168:217::-;11208:1;11234;11224:132;;11278:10;11273:3;11269:20;11266:1;11259:31;11313:4;11310:1;11303:15;11341:4;11338:1;11331:15;11224:132;-1:-1:-1;11370:9:1;;11168:217::o;11390:125::-;11430:4;11458:1;11455;11452:8;11449:34;;;11463:18;;:::i;:::-;-1:-1:-1;11500:9:1;;11390:125::o;12385:582::-;12684:6;12673:9;12666:25;12727:6;12722:2;12711:9;12707:18;12700:34;12770:3;12765:2;12754:9;12750:18;12743:31;12647:4;12791:57;12843:3;12832:9;12828:19;12820:6;12791:57;:::i;:::-;-1:-1:-1;;;;;12884:32:1;;;;12879:2;12864:18;;12857:60;-1:-1:-1;12948:3:1;12933:19;12926:35;12783:65;12385:582;-1:-1:-1;;;12385:582:1:o;13584:306::-;13672:6;13680;13688;13741:2;13729:9;13720:7;13716:23;13712:32;13709:52;;;13757:1;13754;13747:12;13709:52;13786:9;13780:16;13770:26;;13836:2;13825:9;13821:18;13815:25;13805:35;;13880:2;13869:9;13865:18;13859:25;13849:35;;13584:306;;;;;:::o

Swarm Source

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