ETH Price: $3,919.24 (+5.10%)

Token

ERC-20: XXX Network (XXX)
 

Overview

Max Total Supply

1,000,000,000 XXX

Holders

18

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
14,261,104.542872896788433104 XXX

Value
$0.00
0xbba8bdf65e5ed57669f0c713546dc955f7a99ed3
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:
xxxnetwork

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-28
*/

//https://twitter.com/X3NetworkX
//https://xxxnetwork.online

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

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

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

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

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

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

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

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

        /**
        * @dev Emitted when `value` tokens are moved from one account (`from`) to
        * another (`to`).
        *
        * Note that `value` may be zero.
        */
        event Transfer(address indexed from, address indexed to, uint256 value);

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

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

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

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

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

}

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

        mapping(address => uint256) private _balances;

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        
        _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 xxxnetwork is ERC20, Ownable { 
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable router;
    address public immutable uniswapV2Pair;

    // addresses
    address private developmentWallet;
    address private marketingWallet;

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

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

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

        uint256 sellTotalFees;
        uint256 sellMarketingFee;
        uint256 sellDevelopmentFee;
        uint256 sellLiquidityFee;
    }  

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

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

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDevelopment;
    uint256 private taxTill;

    // 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("XXX Network", "XXX") { 
 
        router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

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

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

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

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

        marketPair[address(uniswapV2Pair)] = true;

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

        uint256 totalSupply = 1e9 * 1e18;
        maxBuyAmount = totalSupply * 2 / 100; 
        maxSellAmount = totalSupply * 2 / 100; 
        maxWalletAmount = totalSupply * 2 / 100; 
        thresholdSwapAmount = totalSupply * 1 / 1000; 

        _fees.buyMarketingFee = 10; 
        _fees.buyLiquidityFee = 0;  
        _fees.buyDevelopmentFee = 5; 
        _fees.buyTotalFees = _fees.buyMarketingFee + _fees.buyLiquidityFee + _fees.buyDevelopmentFee;

        _fees.sellMarketingFee = 20; 
        _fees.sellLiquidityFee = 0; 
        _fees.sellDevelopmentFee = 25; 
        _fees.sellTotalFees = _fees.sellMarketingFee + _fees.sellLiquidityFee + _fees.sellDevelopmentFee;

        marketingWallet = address(0x519E18721B10F9355D61F4f49275ab1B732313e1); 
        developmentWallet = address(0x519E18721B10F9355D61F4f49275ab1B732313e1); 

        // exclude from paying fees or having max transaction amount

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */

        _mint(msg.sender, totalSupply);
    }

    receive() external payable {

    }

    // once enabled, can never be turned off
    function startTrading() external onlyOwner {
        isTrading = true;
        swapEnabled = true;
        taxTill = block.number + 0;
    }

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

    function updateMaxTxnAmount(uint256 newMaxBuy, uint256 newMaxSell) public onlyOwner {
        maxBuyAmount = (totalSupply() * newMaxBuy) / 1000;
        maxSellAmount = (totalSupply() * newMaxSell) / 1000;
    }

    function updateMaxWalletAmount(uint256 newPercentage) public onlyOwner {
        maxWalletAmount = (totalSupply() * newPercentage) / 1000;
    }

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

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

        _fees.sellMarketingFee = _marketingFeeSell;
        _fees.sellLiquidityFee = _liquidityFeeSell;
        _fees.sellDevelopmentFee = _developmentFeeSell;
        _fees.sellTotalFees = _fees.sellMarketingFee + _fees.sellLiquidityFee + _fees.sellDevelopmentFee;
    }
    
    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 removeLimits() external onlyOwner {
        updateMaxTxnAmount(1000,1000);
        updateMaxWalletAmount(1000);
    }

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

    function setWallets(address _marketingWallet,address _developmentWallet) external onlyOwner{
        marketingWallet = _marketingWallet;
        developmentWallet = _developmentWallet;
    }

    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[recipient] &&
            !_isExcludedFromFees[sender] &&
            !_isExcludedFromFees[recipient]
        ) {
            isSwapping = true;
            swapBack();
            isSwapping = false;
        }
 
        bool takeFee = !isSwapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[sender] || _isExcludedFromFees[recipient]) {
            takeFee = false;
        }
 
        
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            uint256 fees = 0;
            if(block.number < taxTill) {
                fees = amount.mul(99).div(100);
                tokensForMarketing += (fees * 94) / 99;
                tokensForDevelopment += (fees * 5) / 99;
            } else if (marketPair[recipient] && _fees.sellTotalFees > 0) {
                fees = amount.mul(_fees.sellTotalFees).div(100);
                tokensForLiquidity += fees * _fees.sellLiquidityFee / _fees.sellTotalFees;
                tokensForMarketing += fees * _fees.sellMarketingFee / _fees.sellTotalFees;
                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;
                tokensForMarketing += fees * _fees.buyMarketingFee / _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] = router.WETH();

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

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

    }

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

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

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

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

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

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

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


        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDevelopment = 0;


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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_fees","outputs":[{"internalType":"uint256","name":"buyTotalFees","type":"uint256"},{"internalType":"uint256","name":"buyMarketingFee","type":"uint256"},{"internalType":"uint256","name":"buyDevelopmentFee","type":"uint256"},{"internalType":"uint256","name":"buyLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"sellTotalFees","type":"uint256"},{"internalType":"uint256","name":"sellMarketingFee","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setMarketPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_developmentWallet","type":"address"}],"name":"setWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"toggleSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFeeBuy","type":"uint256"},{"internalType":"uint256","name":"_liquidityFeeBuy","type":"uint256"},{"internalType":"uint256","name":"_developmentFeeBuy","type":"uint256"},{"internalType":"uint256","name":"_marketingFeeSell","type":"uint256"},{"internalType":"uint256","name":"_liquidityFeeSell","type":"uint256"},{"internalType":"uint256","name":"_developmentFeeSell","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxBuy","type":"uint256"},{"internalType":"uint256","name":"newMaxSell","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPercentage","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateThresholdSwapAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

600c805461ffff191690556101c0604052600060c081905260e08190526101008190526101208190526101408190526101608190526101808190526101a0819052600d819055600e819055600f81905560108190556011819055601281905560138190556014553480156200007357600080fd5b506040518060400160405280600b81526020016a585858204e6574776f726b60a81b815250604051806040016040528060038152602001620b0b0b60eb1b8152508160039081620000c5919062000834565b506004620000d4828262000834565b5050506000620000e9620005a860201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200018d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001b3919062000900565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000203573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000229919062000900565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000277573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029d919062000900565b6001600160a01b0390811660a08190526080519091166000908152601a602081905260408083208054600160ff1991821681179092559484529083208054909416811790935590620002f76005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff19958616179055308152601a909252812080548316600190811790915561dead82527f428bdc965569ef4717764ecfd84e88946a9a226b52b813e6ab6a7f46aad86e88805490931681179092556019906200037f6005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526019909252812080549092166001908117909255601b90620003d86005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055601b84527f6790d4910a095e0e04c8daa388834616a295bac3f59038957b6d0b93a2d21684805486166001908117909155308252838220805487168217905560a05190921681528281208054861683179055601c909352912080549092161790556080516200047890600019620005ac565b506b033b2e3c9fd0803ce800000060646200049582600262000941565b620004a1919062000963565b6008556064620004b382600262000941565b620004bf919062000963565b6009556064620004d182600262000941565b620004dd919062000963565b600a556103e8620004f082600162000941565b620004fc919062000963565b600b55600a600e819055600060108190556005600f8190559162000521919062000986565b6200052d919062000986565b600d55601460128190556000808255601960138190559162000550919062000986565b6200055c919062000986565b6011556007805473519e18721b10f9355d61f4f49275ab1b732313e16001600160a01b03199182168117909255600680549091169091179055620005a13382620005c4565b50620009a1565b3390565b6000620005bb338484620006c4565b50600192915050565b6001600160a01b038216620006205760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200063c816002546200072560201b62000f801790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200066f91839062000f8062000725821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60008062000734838562000986565b905083811015620007885760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640162000617565b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620007ba57607f821691505b602082108103620007db57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200082f57600081815260208120601f850160051c810160208610156200080a5750805b601f850160051c820191505b818110156200082b5782815560010162000816565b5050505b505050565b81516001600160401b038111156200085057620008506200078f565b6200086881620008618454620007a5565b84620007e1565b602080601f831160018114620008a05760008415620008875750858301515b600019600386901b1c1916600185901b1785556200082b565b600085815260208120601f198616915b82811015620008d157888601518255948401946001909101908401620008b0565b5085821015620008f05787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200091357600080fd5b81516001600160a01b03811681146200078857600080fd5b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156200095e576200095e6200092b565b500290565b6000826200098157634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156200099c576200099c6200092b565b500190565b60805160a051612220620009f1600039600081816103d00152610cda0152600081816107b101528181611b3301528181611bec01528181611c2801528181611c9a0152611cf601526122206000f3fe6080604052600436106102295760003560e01c80637571336a11610123578063c16dd4a4116100ab578063e16830a81161006f578063e16830a814610719578063ef8700e514610739578063f2fde38b1461074f578063f5b3c3bf1461076f578063f887ea401461079f57600080fd5b8063c16dd4a414610605578063c18bc19514610625578063d212a69a14610645578063d3f6a157146106b3578063dd62ed3e146106d357600080fd5b8063992c58e4116100f2578063992c58e414610565578063a457c2d714610585578063a9059cbb146105a5578063b8863115146105c5578063c0246668146105e557600080fd5b80637571336a146104e25780638da5cb5b1461050257806395d89b411461052057806396880b171461053557600080fd5b8063293230b8116101b1578063555467a111610175578063555467a1146104435780636ddd17131461046357806370a0823114610482578063715018a6146104b8578063751039fc146104cd57600080fd5b8063293230b81461036d578063313ce56714610382578063395093511461039e57806349bd5a5e146103be5780634fbee1931461040a57600080fd5b806318160ddd116101f857806318160ddd146102e25780631a8145bb146103015780631c6e8a75146103175780631f3fed8f1461033757806323b872dd1461034d57600080fd5b806306fdde0314610235578063095ea7b31461026057806310d5de531461029057806311a582c3146102c057600080fd5b3661023057005b600080fd5b34801561024157600080fd5b5061024a6107d3565b6040516102579190611da2565b60405180910390f35b34801561026c57600080fd5b5061028061027b366004611e0f565b610865565b6040519015158152602001610257565b34801561029c57600080fd5b506102806102ab366004611e3b565b601a6020526000908152604090205460ff1681565b3480156102cc57600080fd5b506102e06102db366004611e58565b61087c565b005b3480156102ee57600080fd5b506002545b604051908152602001610257565b34801561030d57600080fd5b506102f360165481565b34801561032357600080fd5b506102e0610332366004611e8a565b6108fb565b34801561034357600080fd5b506102f360155481565b34801561035957600080fd5b50610280610368366004611ea5565b61093f565b34801561037957600080fd5b506102e06109a8565b34801561038e57600080fd5b5060405160128152602001610257565b3480156103aa57600080fd5b506102806103b9366004611e0f565b6109f1565b3480156103ca57600080fd5b506103f27f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610257565b34801561041657600080fd5b50610280610425366004611e3b565b6001600160a01b031660009081526019602052604090205460ff1690565b34801561044f57600080fd5b5061028061045e366004611ee6565b610a27565b34801561046f57600080fd5b50600c5461028090610100900460ff1681565b34801561048e57600080fd5b506102f361049d366004611e3b565b6001600160a01b031660009081526020819052604090205490565b3480156104c457600080fd5b506102e0610a62565b3480156104d957600080fd5b506102e0610ad6565b3480156104ee57600080fd5b506102e06104fd366004611eff565b610b19565b34801561050e57600080fd5b506005546001600160a01b03166103f2565b34801561052c57600080fd5b5061024a610b6e565b34801561054157600080fd5b50610280610550366004611e3b565b601b6020526000908152604090205460ff1681565b34801561057157600080fd5b506102e0610580366004611f34565b610b7d565b34801561059157600080fd5b506102806105a0366004611e0f565b610bfd565b3480156105b157600080fd5b506102806105c0366004611e0f565b610c4c565b3480156105d157600080fd5b50600c546102809062010000900460ff1681565b3480156105f157600080fd5b506102e0610600366004611eff565b610c59565b34801561061157600080fd5b506102e0610620366004611eff565b610cae565b34801561063157600080fd5b506102e0610640366004611ee6565b610d97565b34801561065157600080fd5b50600d54600e54600f54601054601154601254601354601454610678979695949392919088565b604080519889526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610257565b3480156106bf57600080fd5b506102e06106ce366004611f77565b610de8565b3480156106df57600080fd5b506102f36106ee366004611f77565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561072557600080fd5b506102e0610734366004611eff565b610e40565b34801561074557600080fd5b506102f360175481565b34801561075b57600080fd5b506102e061076a366004611e3b565b610e95565b34801561077b57600080fd5b5061028061078a366004611e3b565b601c6020526000908152604090205460ff1681565b3480156107ab57600080fd5b506103f27f000000000000000000000000000000000000000000000000000000000000000081565b6060600380546107e290611fb0565b80601f016020809104026020016040519081016040528092919081815260200182805461080e90611fb0565b801561085b5780601f106108305761010080835404028352916020019161085b565b820191906000526020600020905b81548152906001019060200180831161083e57829003601f168201915b5050505050905090565b6000610872338484610fe6565b5060015b92915050565b6005546001600160a01b031633146108af5760405162461bcd60e51b81526004016108a690611fea565b60405180910390fd5b6103e8826108bc60025490565b6108c69190612035565b6108d09190612054565b6008556103e8816108e060025490565b6108ea9190612035565b6108f49190612054565b6009555050565b6005546001600160a01b031633146109255760405162461bcd60e51b81526004016108a690611fea565b600c80549115156101000261ff0019909216919091179055565b600061094c848484611048565b61099e8433610999856040518060600160405280602881526020016121c3602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906116ac565b610fe6565b5060019392505050565b6005546001600160a01b031633146109d25760405162461bcd60e51b81526004016108a690611fea565b600c805461ffff19166101011790556109ec436000612076565b601855565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108729185906109999086610f80565b6005546000906001600160a01b03163314610a545760405162461bcd60e51b81526004016108a690611fea565b50600b81905560015b919050565b6005546001600160a01b03163314610a8c5760405162461bcd60e51b81526004016108a690611fea565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610b005760405162461bcd60e51b81526004016108a690611fea565b610b0c6103e88061087c565b610b176103e8610d97565b565b6005546001600160a01b03163314610b435760405162461bcd60e51b81526004016108a690611fea565b6001600160a01b03919091166000908152601a60205260409020805460ff1916911515919091179055565b6060600480546107e290611fb0565b6005546001600160a01b03163314610ba75760405162461bcd60e51b81526004016108a690611fea565b600e8690556010859055600f84905583610bc18688612076565b610bcb9190612076565b600d5560128390556014829055601381905580610be88385612076565b610bf29190612076565b601155505050505050565b6000610872338461099985604051806060016040528060258152602001612178602591393360009081526001602090815260408083206001600160a01b038d16845290915290205491906116ac565b6000610872338484611048565b6005546001600160a01b03163314610c835760405162461bcd60e51b81526004016108a690611fea565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610cd85760405162461bcd60e51b81526004016108a690611fea565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610d6c5760405162461bcd60e51b815260206004820152602a60248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201526936b0b935b2ba2830b4b960b11b60648201526084016108a6565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610dc15760405162461bcd60e51b81526004016108a690611fea565b6103e881610dce60025490565b610dd89190612035565b610de29190612054565b600a5550565b6005546001600160a01b03163314610e125760405162461bcd60e51b81526004016108a690611fea565b600780546001600160a01b039384166001600160a01b03199182161790915560068054929093169116179055565b6005546001600160a01b03163314610e6a5760405162461bcd60e51b81526004016108a690611fea565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610ebf5760405162461bcd60e51b81526004016108a690611fea565b6001600160a01b038116610f245760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a6565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600080610f8d8385612076565b905083811015610fdf5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016108a6565b9392505050565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b806000036110615761105c838360006116e6565b505050565b6005546001600160a01b0384811691161480159061108d57506005546001600160a01b03838116911614155b80156110a25750600c5462010000900460ff16155b1561133157600c5460ff16611135576001600160a01b03831660009081526019602052604090205460ff16806110f057506001600160a01b03821660009081526019602052604090205460ff165b6111355760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016108a6565b6001600160a01b0383166000908152601c602052604090205460ff16801561117657506001600160a01b0382166000908152601a602052604090205460ff16155b156111f0576008548111156111eb5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016108a6565b6112a7565b6001600160a01b0382166000908152601c602052604090205460ff16801561123157506001600160a01b0383166000908152601a602052604090205460ff16155b156112a7576009548111156112a75760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016108a6565b6001600160a01b0382166000908152601b602052604090205460ff1661133157600a546001600160a01b0383166000908152602081905260409020546112ed9083612076565b11156113315760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108a6565b30600090815260208190526040902054600b548110801590819061135c5750600c54610100900460ff165b80156113715750600c5462010000900460ff16155b801561139557506001600160a01b0384166000908152601c602052604090205460ff165b80156113ba57506001600160a01b03851660009081526019602052604090205460ff16155b80156113df57506001600160a01b03841660009081526019602052604090205460ff16155b1561140a57600c805462ff00001916620100001790556113fd6117a3565b600c805462ff0000191690555b600c546001600160a01b03861660009081526019602052604090205460ff6201000090920482161591168061145757506001600160a01b03851660009081526019602052604090205460ff165b15611460575060005b80156116995760006018544310156114eb5761148860646114828760636119d6565b90611a58565b9050606361149782605e612035565b6114a19190612054565b601560008282546114b29190612076565b90915550606390506114c5826005612035565b6114cf9190612054565b601760008282546114e09190612076565b9091555061167a9050565b6001600160a01b0386166000908152601c602052604090205460ff168015611514575060115415155b156115a25760115461152e906064906114829088906119d6565b601154601454919250906115429083612035565b61154c9190612054565b6016600082825461155d9190612076565b90915550506011546012546115729083612035565b61157c9190612054565b6015600082825461158d9190612076565b90915550506011546013546114c59083612035565b6001600160a01b0387166000908152601c602052604090205460ff1680156115cb5750600d5415155b1561167a57600d546115e5906064906114829088906119d6565b600d54601054919250906115f99083612035565b6116039190612054565b601660008282546116149190612076565b9091555050600d54600e546116299083612035565b6116339190612054565b601560008282546116449190612076565b9091555050600d54600f546116599083612035565b6116639190612054565b601760008282546116749190612076565b90915550505b801561168b5761168b8730836116e6565b611695818661208e565b9450505b6116a48686866116e6565b505050505050565b600081848411156116d05760405162461bcd60e51b81526004016108a69190611da2565b5060006116dd848661208e565b95945050505050565b6117238160405180606001604052806026815260200161219d602691396001600160a01b03861660009081526020819052604090205491906116ac565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546117529082610f80565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161103b565b30600090815260208190526040812054905060006017546015546016546117ca9190612076565b6117d49190612076565b905060008215806117e3575081155b156117ed57505050565b600b546117fb906014612035565b83111561181357600b54611810906014612035565b92505b6000600283601654866118269190612035565b6118309190612054565b61183a9190612054565b905060006118488583611a9a565b90504761185482611adc565b60006118604783611a9a565b9050600061187d87611482601554856119d690919063ffffffff16565b9050600061189a88611482601754866119d690919063ffffffff16565b905060006118a88284612076565b6118b2908561208e565b600060168190556015819055601755905086158015906118d25750600081115b1561191b576118e18782611c94565b60408051878152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a15b6006546001600160a01b0316611931844761208e565b604051600081818185875af1925050503d806000811461196d576040519150601f19603f3d011682016040523d82523d6000602084013e611972565b606091505b50506007546040519199506001600160a01b0316904790600081818185875af1925050503d80600081146119c2576040519150601f19603f3d011682016040523d82523d6000602084013e6119c7565b606091505b50505050505050505050505050565b6000826000036119e857506000610876565b60006119f48385612035565b905082611a018583612054565b14610fdf5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016108a6565b6000610fdf83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611d74565b6000610fdf83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506116ac565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b1157611b116120a5565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b8f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bb391906120bb565b81600181518110611bc657611bc66120a5565b60200260200101906001600160a01b031690816001600160a01b031681525050611c11307f000000000000000000000000000000000000000000000000000000000000000084610fe6565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611c669085906000908690309042906004016120d8565b600060405180830381600087803b158015611c8057600080fd5b505af11580156116a4573d6000803e3d6000fd5b611cbf307f000000000000000000000000000000000000000000000000000000000000000084610fe6565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015611d48573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611d6d9190612149565b5050505050565b60008183611d955760405162461bcd60e51b81526004016108a69190611da2565b5060006116dd8486612054565b600060208083528351808285015260005b81811015611dcf57858101830151858201604001528201611db3565b81811115611de1576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114611e0c57600080fd5b50565b60008060408385031215611e2257600080fd5b8235611e2d81611df7565b946020939093013593505050565b600060208284031215611e4d57600080fd5b8135610fdf81611df7565b60008060408385031215611e6b57600080fd5b50508035926020909101359150565b80358015158114610a5d57600080fd5b600060208284031215611e9c57600080fd5b610fdf82611e7a565b600080600060608486031215611eba57600080fd5b8335611ec581611df7565b92506020840135611ed581611df7565b929592945050506040919091013590565b600060208284031215611ef857600080fd5b5035919050565b60008060408385031215611f1257600080fd5b8235611f1d81611df7565b9150611f2b60208401611e7a565b90509250929050565b60008060008060008060c08789031215611f4d57600080fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b60008060408385031215611f8a57600080fd5b8235611f9581611df7565b91506020830135611fa581611df7565b809150509250929050565b600181811c90821680611fc457607f821691505b602082108103611fe457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561204f5761204f61201f565b500290565b60008261207157634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156120895761208961201f565b500190565b6000828210156120a0576120a061201f565b500390565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156120cd57600080fd5b8151610fdf81611df7565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156121285784516001600160a01b031683529383019391830191600101612103565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561215e57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a206465637265617365642063616e6e6f742062652062656c6f77207a65726f45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220bd8475bb95d9b40f28d91f8e4725cab3f683f0ee9a2d170bbbec50821491e9b464736f6c634300080f0033

Deployed Bytecode

0x6080604052600436106102295760003560e01c80637571336a11610123578063c16dd4a4116100ab578063e16830a81161006f578063e16830a814610719578063ef8700e514610739578063f2fde38b1461074f578063f5b3c3bf1461076f578063f887ea401461079f57600080fd5b8063c16dd4a414610605578063c18bc19514610625578063d212a69a14610645578063d3f6a157146106b3578063dd62ed3e146106d357600080fd5b8063992c58e4116100f2578063992c58e414610565578063a457c2d714610585578063a9059cbb146105a5578063b8863115146105c5578063c0246668146105e557600080fd5b80637571336a146104e25780638da5cb5b1461050257806395d89b411461052057806396880b171461053557600080fd5b8063293230b8116101b1578063555467a111610175578063555467a1146104435780636ddd17131461046357806370a0823114610482578063715018a6146104b8578063751039fc146104cd57600080fd5b8063293230b81461036d578063313ce56714610382578063395093511461039e57806349bd5a5e146103be5780634fbee1931461040a57600080fd5b806318160ddd116101f857806318160ddd146102e25780631a8145bb146103015780631c6e8a75146103175780631f3fed8f1461033757806323b872dd1461034d57600080fd5b806306fdde0314610235578063095ea7b31461026057806310d5de531461029057806311a582c3146102c057600080fd5b3661023057005b600080fd5b34801561024157600080fd5b5061024a6107d3565b6040516102579190611da2565b60405180910390f35b34801561026c57600080fd5b5061028061027b366004611e0f565b610865565b6040519015158152602001610257565b34801561029c57600080fd5b506102806102ab366004611e3b565b601a6020526000908152604090205460ff1681565b3480156102cc57600080fd5b506102e06102db366004611e58565b61087c565b005b3480156102ee57600080fd5b506002545b604051908152602001610257565b34801561030d57600080fd5b506102f360165481565b34801561032357600080fd5b506102e0610332366004611e8a565b6108fb565b34801561034357600080fd5b506102f360155481565b34801561035957600080fd5b50610280610368366004611ea5565b61093f565b34801561037957600080fd5b506102e06109a8565b34801561038e57600080fd5b5060405160128152602001610257565b3480156103aa57600080fd5b506102806103b9366004611e0f565b6109f1565b3480156103ca57600080fd5b506103f27f000000000000000000000000c2f3faec77ba8758b81eb65e4fc1f67e5b85db5081565b6040516001600160a01b039091168152602001610257565b34801561041657600080fd5b50610280610425366004611e3b565b6001600160a01b031660009081526019602052604090205460ff1690565b34801561044f57600080fd5b5061028061045e366004611ee6565b610a27565b34801561046f57600080fd5b50600c5461028090610100900460ff1681565b34801561048e57600080fd5b506102f361049d366004611e3b565b6001600160a01b031660009081526020819052604090205490565b3480156104c457600080fd5b506102e0610a62565b3480156104d957600080fd5b506102e0610ad6565b3480156104ee57600080fd5b506102e06104fd366004611eff565b610b19565b34801561050e57600080fd5b506005546001600160a01b03166103f2565b34801561052c57600080fd5b5061024a610b6e565b34801561054157600080fd5b50610280610550366004611e3b565b601b6020526000908152604090205460ff1681565b34801561057157600080fd5b506102e0610580366004611f34565b610b7d565b34801561059157600080fd5b506102806105a0366004611e0f565b610bfd565b3480156105b157600080fd5b506102806105c0366004611e0f565b610c4c565b3480156105d157600080fd5b50600c546102809062010000900460ff1681565b3480156105f157600080fd5b506102e0610600366004611eff565b610c59565b34801561061157600080fd5b506102e0610620366004611eff565b610cae565b34801561063157600080fd5b506102e0610640366004611ee6565b610d97565b34801561065157600080fd5b50600d54600e54600f54601054601154601254601354601454610678979695949392919088565b604080519889526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610257565b3480156106bf57600080fd5b506102e06106ce366004611f77565b610de8565b3480156106df57600080fd5b506102f36106ee366004611f77565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561072557600080fd5b506102e0610734366004611eff565b610e40565b34801561074557600080fd5b506102f360175481565b34801561075b57600080fd5b506102e061076a366004611e3b565b610e95565b34801561077b57600080fd5b5061028061078a366004611e3b565b601c6020526000908152604090205460ff1681565b3480156107ab57600080fd5b506103f27f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6060600380546107e290611fb0565b80601f016020809104026020016040519081016040528092919081815260200182805461080e90611fb0565b801561085b5780601f106108305761010080835404028352916020019161085b565b820191906000526020600020905b81548152906001019060200180831161083e57829003601f168201915b5050505050905090565b6000610872338484610fe6565b5060015b92915050565b6005546001600160a01b031633146108af5760405162461bcd60e51b81526004016108a690611fea565b60405180910390fd5b6103e8826108bc60025490565b6108c69190612035565b6108d09190612054565b6008556103e8816108e060025490565b6108ea9190612035565b6108f49190612054565b6009555050565b6005546001600160a01b031633146109255760405162461bcd60e51b81526004016108a690611fea565b600c80549115156101000261ff0019909216919091179055565b600061094c848484611048565b61099e8433610999856040518060600160405280602881526020016121c3602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906116ac565b610fe6565b5060019392505050565b6005546001600160a01b031633146109d25760405162461bcd60e51b81526004016108a690611fea565b600c805461ffff19166101011790556109ec436000612076565b601855565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108729185906109999086610f80565b6005546000906001600160a01b03163314610a545760405162461bcd60e51b81526004016108a690611fea565b50600b81905560015b919050565b6005546001600160a01b03163314610a8c5760405162461bcd60e51b81526004016108a690611fea565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610b005760405162461bcd60e51b81526004016108a690611fea565b610b0c6103e88061087c565b610b176103e8610d97565b565b6005546001600160a01b03163314610b435760405162461bcd60e51b81526004016108a690611fea565b6001600160a01b03919091166000908152601a60205260409020805460ff1916911515919091179055565b6060600480546107e290611fb0565b6005546001600160a01b03163314610ba75760405162461bcd60e51b81526004016108a690611fea565b600e8690556010859055600f84905583610bc18688612076565b610bcb9190612076565b600d5560128390556014829055601381905580610be88385612076565b610bf29190612076565b601155505050505050565b6000610872338461099985604051806060016040528060258152602001612178602591393360009081526001602090815260408083206001600160a01b038d16845290915290205491906116ac565b6000610872338484611048565b6005546001600160a01b03163314610c835760405162461bcd60e51b81526004016108a690611fea565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610cd85760405162461bcd60e51b81526004016108a690611fea565b7f000000000000000000000000c2f3faec77ba8758b81eb65e4fc1f67e5b85db506001600160a01b0316826001600160a01b031603610d6c5760405162461bcd60e51b815260206004820152602a60248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201526936b0b935b2ba2830b4b960b11b60648201526084016108a6565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610dc15760405162461bcd60e51b81526004016108a690611fea565b6103e881610dce60025490565b610dd89190612035565b610de29190612054565b600a5550565b6005546001600160a01b03163314610e125760405162461bcd60e51b81526004016108a690611fea565b600780546001600160a01b039384166001600160a01b03199182161790915560068054929093169116179055565b6005546001600160a01b03163314610e6a5760405162461bcd60e51b81526004016108a690611fea565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610ebf5760405162461bcd60e51b81526004016108a690611fea565b6001600160a01b038116610f245760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a6565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600080610f8d8385612076565b905083811015610fdf5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016108a6565b9392505050565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b806000036110615761105c838360006116e6565b505050565b6005546001600160a01b0384811691161480159061108d57506005546001600160a01b03838116911614155b80156110a25750600c5462010000900460ff16155b1561133157600c5460ff16611135576001600160a01b03831660009081526019602052604090205460ff16806110f057506001600160a01b03821660009081526019602052604090205460ff165b6111355760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016108a6565b6001600160a01b0383166000908152601c602052604090205460ff16801561117657506001600160a01b0382166000908152601a602052604090205460ff16155b156111f0576008548111156111eb5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016108a6565b6112a7565b6001600160a01b0382166000908152601c602052604090205460ff16801561123157506001600160a01b0383166000908152601a602052604090205460ff16155b156112a7576009548111156112a75760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016108a6565b6001600160a01b0382166000908152601b602052604090205460ff1661133157600a546001600160a01b0383166000908152602081905260409020546112ed9083612076565b11156113315760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108a6565b30600090815260208190526040902054600b548110801590819061135c5750600c54610100900460ff165b80156113715750600c5462010000900460ff16155b801561139557506001600160a01b0384166000908152601c602052604090205460ff165b80156113ba57506001600160a01b03851660009081526019602052604090205460ff16155b80156113df57506001600160a01b03841660009081526019602052604090205460ff16155b1561140a57600c805462ff00001916620100001790556113fd6117a3565b600c805462ff0000191690555b600c546001600160a01b03861660009081526019602052604090205460ff6201000090920482161591168061145757506001600160a01b03851660009081526019602052604090205460ff165b15611460575060005b80156116995760006018544310156114eb5761148860646114828760636119d6565b90611a58565b9050606361149782605e612035565b6114a19190612054565b601560008282546114b29190612076565b90915550606390506114c5826005612035565b6114cf9190612054565b601760008282546114e09190612076565b9091555061167a9050565b6001600160a01b0386166000908152601c602052604090205460ff168015611514575060115415155b156115a25760115461152e906064906114829088906119d6565b601154601454919250906115429083612035565b61154c9190612054565b6016600082825461155d9190612076565b90915550506011546012546115729083612035565b61157c9190612054565b6015600082825461158d9190612076565b90915550506011546013546114c59083612035565b6001600160a01b0387166000908152601c602052604090205460ff1680156115cb5750600d5415155b1561167a57600d546115e5906064906114829088906119d6565b600d54601054919250906115f99083612035565b6116039190612054565b601660008282546116149190612076565b9091555050600d54600e546116299083612035565b6116339190612054565b601560008282546116449190612076565b9091555050600d54600f546116599083612035565b6116639190612054565b601760008282546116749190612076565b90915550505b801561168b5761168b8730836116e6565b611695818661208e565b9450505b6116a48686866116e6565b505050505050565b600081848411156116d05760405162461bcd60e51b81526004016108a69190611da2565b5060006116dd848661208e565b95945050505050565b6117238160405180606001604052806026815260200161219d602691396001600160a01b03861660009081526020819052604090205491906116ac565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546117529082610f80565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161103b565b30600090815260208190526040812054905060006017546015546016546117ca9190612076565b6117d49190612076565b905060008215806117e3575081155b156117ed57505050565b600b546117fb906014612035565b83111561181357600b54611810906014612035565b92505b6000600283601654866118269190612035565b6118309190612054565b61183a9190612054565b905060006118488583611a9a565b90504761185482611adc565b60006118604783611a9a565b9050600061187d87611482601554856119d690919063ffffffff16565b9050600061189a88611482601754866119d690919063ffffffff16565b905060006118a88284612076565b6118b2908561208e565b600060168190556015819055601755905086158015906118d25750600081115b1561191b576118e18782611c94565b60408051878152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a15b6006546001600160a01b0316611931844761208e565b604051600081818185875af1925050503d806000811461196d576040519150601f19603f3d011682016040523d82523d6000602084013e611972565b606091505b50506007546040519199506001600160a01b0316904790600081818185875af1925050503d80600081146119c2576040519150601f19603f3d011682016040523d82523d6000602084013e6119c7565b606091505b50505050505050505050505050565b6000826000036119e857506000610876565b60006119f48385612035565b905082611a018583612054565b14610fdf5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016108a6565b6000610fdf83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611d74565b6000610fdf83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506116ac565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b1157611b116120a5565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b8f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bb391906120bb565b81600181518110611bc657611bc66120a5565b60200260200101906001600160a01b031690816001600160a01b031681525050611c11307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610fe6565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611c669085906000908690309042906004016120d8565b600060405180830381600087803b158015611c8057600080fd5b505af11580156116a4573d6000803e3d6000fd5b611cbf307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610fe6565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015611d48573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611d6d9190612149565b5050505050565b60008183611d955760405162461bcd60e51b81526004016108a69190611da2565b5060006116dd8486612054565b600060208083528351808285015260005b81811015611dcf57858101830151858201604001528201611db3565b81811115611de1576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114611e0c57600080fd5b50565b60008060408385031215611e2257600080fd5b8235611e2d81611df7565b946020939093013593505050565b600060208284031215611e4d57600080fd5b8135610fdf81611df7565b60008060408385031215611e6b57600080fd5b50508035926020909101359150565b80358015158114610a5d57600080fd5b600060208284031215611e9c57600080fd5b610fdf82611e7a565b600080600060608486031215611eba57600080fd5b8335611ec581611df7565b92506020840135611ed581611df7565b929592945050506040919091013590565b600060208284031215611ef857600080fd5b5035919050565b60008060408385031215611f1257600080fd5b8235611f1d81611df7565b9150611f2b60208401611e7a565b90509250929050565b60008060008060008060c08789031215611f4d57600080fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b60008060408385031215611f8a57600080fd5b8235611f9581611df7565b91506020830135611fa581611df7565b809150509250929050565b600181811c90821680611fc457607f821691505b602082108103611fe457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561204f5761204f61201f565b500290565b60008261207157634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156120895761208961201f565b500190565b6000828210156120a0576120a061201f565b500390565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156120cd57600080fd5b8151610fdf81611df7565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156121285784516001600160a01b031683529383019391830191600101612103565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561215e57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a206465637265617365642063616e6e6f742062652062656c6f77207a65726f45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220bd8475bb95d9b40f28d91f8e4725cab3f683f0ee9a2d170bbbec50821491e9b464736f6c634300080f0033

Deployed Bytecode Sourcemap

20720:12808:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4303:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6463:168;;;;;;;;;;-1:-1:-1;6463:168:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;6463:168:0;1072:187:1;22145:63:0;;;;;;;;;;-1:-1:-1;22145:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25225:214;;;;;;;;;;-1:-1:-1;25225:214:0;;;;;:::i;:::-;;:::i;:::-;;5420:107;;;;;;;;;;-1:-1:-1;5507:12:0;;5420:107;;;1915:25:1;;;1903:2;1888:18;5420:107:0;1769:177:1;21919:33:0;;;;;;;;;;;;;;;;25689:101;;;;;;;;;;-1:-1:-1;25689:101:0;;;;;:::i;:::-;;:::i;21879:33::-;;;;;;;;;;;;;;;;7113:354;;;;;;;;;;-1:-1:-1;7113:354:0;;;;;:::i;:::-;;:::i;24845:144::-;;;;;;;;;;;;;:::i;5263:92::-;;;;;;;;;;-1:-1:-1;5263:92:0;;5345:2;2904:36:1;;2892:2;2877:18;5263:92:0;2762:184:1;7876:217:0;;;;;;;;;;-1:-1:-1;7876:217:0;;;;;:::i;:::-;;:::i;20850:38::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3115:32:1;;;3097:51;;3085:2;3070:18;20850:38:0;2951:203:1;27532:125:0;;;;;;;;;;-1:-1:-1;27532:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;27621:28:0;27597:4;27621:28;;;:19;:28;;;;;;;;;27532:125;25059:158;;;;;;;;;;-1:-1:-1;25059:158:0;;;;;:::i;:::-;;:::i;21228:31::-;;;;;;;;;;-1:-1:-1;21228:31:0;;;;;;;;;;;5590:126;;;;;;;;;;-1:-1:-1;5590:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;5690:18:0;5663:7;5690:18;;;;;;;;;;;;5590:126;13400:148;;;;;;;;;;;;;:::i;26990:129::-;;;;;;;;;;;;;:::i;26838:144::-;;;;;;;;;;-1:-1:-1;26838:144:0;;;;;:::i;:::-;;:::i;12759:78::-;;;;;;;;;;-1:-1:-1;12823:6:0;;-1:-1:-1;;;;;12823:6:0;12759:78;;4521:103;;;;;;;;;;;;;:::i;22215:58::-;;;;;;;;;;-1:-1:-1;22215:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25798:738;;;;;;;;;;-1:-1:-1;25798:738:0;;;;;:::i;:::-;;:::i;8596:268::-;;;;;;;;;;-1:-1:-1;8596:268:0;;;;;:::i;:::-;;:::i;5929:174::-;;;;;;;;;;-1:-1:-1;5929:174:0;;;;;:::i;:::-;;:::i;21266:22::-;;;;;;;;;;-1:-1:-1;21266:22:0;;;;;;;;;;;26548:132;;;;;;;;;;-1:-1:-1;26548:132:0;;;;;:::i;:::-;;:::i;27127:196::-;;;;;;;;;;-1:-1:-1;27127:196:0;;;;;:::i;:::-;;:::i;25447:146::-;;;;;;;;;;-1:-1:-1;25447:146:0;;;;;:::i;:::-;;:::i;21603:267::-;;;;;;;;;;-1:-1:-1;21603:267:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4535:25:1;;;4591:2;4576:18;;4569:34;;;;4619:18;;;4612:34;;;;4677:2;4662:18;;4655:34;;;;4720:3;4705:19;;4698:35;4764:3;4749:19;;4742:35;4808:3;4793:19;;4786:35;4852:3;4837:19;;4830:35;4522:3;4507:19;21603:267:0;4192:679:1;27331:193:0;;;;;;;;;;-1:-1:-1;27331:193:0;;;;;:::i;:::-;;:::i;6166:150::-;;;;;;;;;;-1:-1:-1;6166:150:0;;;;;:::i;:::-;-1:-1:-1;;;;;6281:18:0;;;6254:7;6281:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;6166:150;26686:146;;;;;;;;;;-1:-1:-1;26686:146:0;;;;;:::i;:::-;;:::i;21959:35::-;;;;;;;;;;;;;;;;13703:244;;;;;;;;;;-1:-1:-1;13703:244:0;;;;;:::i;:::-;;:::i;22431:42::-;;;;;;;;;;-1:-1:-1;22431:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;20801;;;;;;;;;;;;;;;4303:99;4356:13;4389:5;4382:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4303:99;:::o;6463:168::-;6545:4;6562:39;3455:10;6585:7;6594:6;6562:8;:39::i;:::-;-1:-1:-1;6619:4:0;6463:168;;;;;:::o;25225:214::-;12970:6;;-1:-1:-1;;;;;12970:6:0;3455:10;12970:22;12962:67;;;;-1:-1:-1;;;12962:67:0;;;;;;;:::i;:::-;;;;;;;;;25365:4:::1;25352:9;25336:13;5507:12:::0;;;5420:107;25336:13:::1;:25;;;;:::i;:::-;25335:34;;;;:::i;:::-;25320:12;:49:::0;25427:4:::1;25413:10:::0;25397:13:::1;5507:12:::0;;;5420:107;25397:13:::1;:26;;;;:::i;:::-;25396:35;;;;:::i;:::-;25380:13;:51:::0;-1:-1:-1;;25225:214:0:o;25689:101::-;12970:6;;-1:-1:-1;;;;;12970:6:0;3455:10;12970:22;12962:67;;;;-1:-1:-1;;;12962:67:0;;;;;;;:::i;:::-;25761:11:::1;:21:::0;;;::::1;;;;-1:-1:-1::0;;25761:21:0;;::::1;::::0;;;::::1;::::0;;25689:101::o;7113:354::-;7252:4;7269:36;7279:6;7287:9;7298:6;7269:9;:36::i;:::-;7316:121;7325:6;3455:10;7347:89;7385:6;7347:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7347:19:0;;;;;;:11;:19;;;;;;;;3455:10;7347:33;;;;;;;;;;:37;:89::i;:::-;7316:8;:121::i;:::-;-1:-1:-1;7455:4:0;7113:354;;;;;:::o;24845:144::-;12970:6;;-1:-1:-1;;;;;12970:6:0;3455:10;12970:22;12962:67;;;;-1:-1:-1;;;12962:67:0;;;;;;;:::i;:::-;24899:9:::1;:16:::0;;-1:-1:-1;;24926:18:0;;;;;24965:16:::1;:12;-1:-1:-1::0;24965:16:0::1;:::i;:::-;24955:7;:26:::0;24845:144::o;7876:217::-;3455:10;7963:4;8012:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;8012:34:0;;;;;;;;;;7963:4;;7980:83;;8003:7;;8012:50;;8051:10;8012:38;:50::i;25059:158::-;12970:6;;25140:4;;-1:-1:-1;;;;;12970:6:0;3455:10;12970:22;12962:67;;;;-1:-1:-1;;;12962:67:0;;;;;;;:::i;:::-;-1:-1:-1;25156:19:0::1;:31:::0;;;25205:4:::1;13040:1;25059:158:::0;;;:::o;13400:148::-;12970:6;;-1:-1:-1;;;;;12970:6:0;3455:10;12970:22;12962:67;;;;-1:-1:-1;;;12962:67:0;;;;;;;:::i;:::-;13491:6:::1;::::0;13470:40:::1;::::0;13507:1:::1;::::0;-1:-1:-1;;;;;13491:6:0::1;::::0;13470:40:::1;::::0;13507:1;;13470:40:::1;13521:6;:19:::0;;-1:-1:-1;;;;;;13521:19:0::1;::::0;;13400:148::o;26990:129::-;12970:6;;-1:-1:-1;;;;;12970:6:0;3455:10;12970:22;12962:67;;;;-1:-1:-1;;;12962:67:0;;;;;;;:::i;:::-;27044:29:::1;27063:4;27068::::0;27044:18:::1;:29::i;:::-;27084:27;27106:4;27084:21;:27::i;:::-;26990:129::o:0;26838:144::-;12970:6;;-1:-1:-1;;;;;12970:6:0;3455:10;12970:22;12962:67;;;;-1:-1:-1;;;12962:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26928:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;26928:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26838:144::o;4521:103::-;4576:13;4609:7;4602:14;;;;;:::i;25798:738::-;12970:6;;-1:-1:-1;;;;;12970:6:0;3455:10;12970:22;12962:67;;;;-1:-1:-1;;;12962:67:0;;;;;;;:::i;:::-;26007:21;:40;;;26058:21;:40;;;26109:23;:44;;;26135:18;26185:45:::1;26082:16:::0;26031;26185:45:::1;:::i;:::-;:71;;;;:::i;:::-;26164:5;:92:::0;26269:22;:42;;;26322:22;:42;;;26375:24;:46;;;26402:19;26454:47:::1;26347:17:::0;26294;26454:47:::1;:::i;:::-;:74;;;;:::i;:::-;26432:19:::0;:96;-1:-1:-1;;;;;;25798:738:0:o;8596:268::-;8688:4;8705:129;3455:10;8728:7;8737:96;8776:15;8737:96;;;;;;;;;;;;;;;;;3455:10;8737:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;8737:34:0;;;;;;;;;;;;:38;:96::i;5929:174::-;6014:4;6031:42;3455:10;6055:9;6066:6;6031:9;:42::i;26548:132::-;12970:6;;-1:-1:-1;;;;;12970:6:0;3455:10;12970:22;12962:67;;;;-1:-1:-1;;;12962:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26633:28:0;;;::::1;;::::0;;;:19:::1;:28;::::0;;;;:39;;-1:-1:-1;;26633:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26548:132::o;27127:196::-;12970:6;;-1:-1:-1;;;;;12970:6:0;3455:10;12970:22;12962:67;;;;-1:-1:-1;;;12962:67:0;;;;;;;:::i;:::-;27220:13:::1;-1:-1:-1::0;;;;;27212:21:0::1;:4;-1:-1:-1::0;;;;;27212:21:0::1;::::0;27204:76:::1;;;::::0;-1:-1:-1;;;27204:76:0;;7112:2:1;27204:76:0::1;::::0;::::1;7094:21:1::0;7151:2;7131:18;;;7124:30;7190:34;7170:18;;;7163:62;-1:-1:-1;;;7241:18:1;;;7234:40;7291:19;;27204:76:0::1;6910:406:1::0;27204:76:0::1;-1:-1:-1::0;;;;;27291:16:0;;;::::1;;::::0;;;:10:::1;:16;::::0;;;;:24;;-1:-1:-1;;27291:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27127:196::o;25447:146::-;12970:6;;-1:-1:-1;;;;;12970:6:0;3455:10;12970:22;12962:67;;;;-1:-1:-1;;;12962:67:0;;;;;;;:::i;:::-;25581:4:::1;25564:13;25548;5507:12:::0;;;5420:107;25548:13:::1;:29;;;;:::i;:::-;25547:38;;;;:::i;:::-;25529:15;:56:::0;-1:-1:-1;25447:146:0:o;27331:193::-;12970:6;;-1:-1:-1;;;;;12970:6:0;3455:10;12970:22;12962:67;;;;-1:-1:-1;;;12962:67:0;;;;;;;:::i;:::-;27433:15:::1;:34:::0;;-1:-1:-1;;;;;27433:34:0;;::::1;-1:-1:-1::0;;;;;;27433:34:0;;::::1;;::::0;;;27478:17:::1;:38:::0;;;;;::::1;::::0;::::1;;::::0;;27331:193::o;26686:146::-;12970:6;;-1:-1:-1;;;;;12970:6:0;3455:10;12970:22;12962:67;;;;-1:-1:-1;;;12962:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26778:35:0;;;::::1;;::::0;;;:26:::1;:35;::::0;;;;:46;;-1:-1:-1;;26778:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26686:146::o;13703:244::-;12970:6;;-1:-1:-1;;;;;12970:6:0;3455:10;12970:22;12962:67;;;;-1:-1:-1;;;12962:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13792:22:0;::::1;13784:73;;;::::0;-1:-1:-1;;;13784:73:0;;7523:2:1;13784:73:0::1;::::0;::::1;7505:21:1::0;7562:2;7542:18;;;7535:30;7601:34;7581:18;;;7574:62;-1:-1:-1;;;7652:18:1;;;7645:36;7698:19;;13784:73:0::1;7321:402:1::0;13784:73:0::1;13894:6;::::0;13873:38:::1;::::0;-1:-1:-1;;;;;13873:38:0;;::::1;::::0;13894:6:::1;::::0;13873:38:::1;::::0;13894:6:::1;::::0;13873:38:::1;13922:6;:17:::0;;-1:-1:-1;;;;;;13922:17:0::1;-1:-1:-1::0;;;;;13922:17:0;;;::::1;::::0;;;::::1;::::0;;13703:244::o;11024:180::-;11081:7;;11113:5;11117:1;11113;:5;:::i;:::-;11101:17;;11142:1;11137;:6;;11129:46;;;;-1:-1:-1;;;11129:46:0;;7930:2:1;11129:46:0;;;7912:21:1;7969:2;7949:18;;;7942:30;8008:29;7988:18;;;7981:57;8055:18;;11129:46:0;7728:351:1;11129:46:0;11195:1;11024:180;-1:-1:-1;;;11024:180:0:o;10759:220::-;-1:-1:-1;;;;;10887:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10939:32;;1915:25:1;;;10939:32:0;;1888:18:1;10939:32:0;;;;;;;;10759:220;;;:::o;27665:3317::-;27812:6;27822:1;27812:11;27808:102;;27840:37;27856:6;27864:9;27875:1;27840:15;:37::i;:::-;27665:3317;;;:::o;27808:102::-;12823:6;;-1:-1:-1;;;;;27940:17:0;;;12823:6;;27940:17;;;;:54;;-1:-1:-1;12823:6:0;;-1:-1:-1;;;;;27974:20:0;;;12823:6;;27974:20;;27940:54;:82;;;;-1:-1:-1;28012:10:0;;;;;;;28011:11;27940:82;27922:888;;;28056:9;;;;28051:147;;-1:-1:-1;;;;;28094:27:0;;;;;;:19;:27;;;;;;;;;:61;;-1:-1:-1;;;;;;28125:30:0;;;;;;:19;:30;;;;;;;;28094:61;28086:96;;;;-1:-1:-1;;;28086:96:0;;8286:2:1;28086:96:0;;;8268:21:1;8325:2;8305:18;;;8298:30;-1:-1:-1;;;8344:18:1;;;8337:52;8406:18;;28086:96:0;8084:346:1;28086:96:0;-1:-1:-1;;;;;28216:18:0;;;;;;:10;:18;;;;;;;;:65;;;;-1:-1:-1;;;;;;28239:42:0;;;;;;:31;:42;;;;;;;;28238:43;28216:65;28212:410;;;28320:12;;28310:6;:22;;28302:88;;;;-1:-1:-1;;;28302:88:0;;8637:2:1;28302:88:0;;;8619:21:1;8676:2;8656:18;;;8649:30;8715:34;8695:18;;;8688:62;-1:-1:-1;;;8766:18:1;;;8759:51;8827:19;;28302:88:0;8435:417:1;28302:88:0;28212:410;;;-1:-1:-1;;;;;28430:21:0;;;;;;:10;:21;;;;;;;;:65;;;;-1:-1:-1;;;;;;28456:39:0;;;;;;:31;:39;;;;;;;;28455:40;28430:65;28426:196;;;28534:13;;28524:6;:23;;28516:90;;;;-1:-1:-1;;;28516:90:0;;9059:2:1;28516:90:0;;;9041:21:1;9098:2;9078:18;;;9071:30;9137:34;9117:18;;;9110:62;-1:-1:-1;;;9188:18:1;;;9181:52;9250:19;;28516:90:0;8857:418:1;28516:90:0;-1:-1:-1;;;;;28643:37:0;;;;;;:26;:37;;;;;;;;28638:159;;28742:15;;-1:-1:-1;;;;;5690:18:0;;5663:7;5690:18;;;;;;;;;;;28709:29;;:6;:29;:::i;:::-;:48;;28701:80;;;;-1:-1:-1;;;28701:80:0;;9482:2:1;28701:80:0;;;9464:21:1;9521:2;9501:18;;;9494:30;-1:-1:-1;;;9540:18:1;;;9533:49;9599:18;;28701:80:0;9280:343:1;28701:80:0;28872:4;28823:28;5690:18;;;;;;;;;;;28931:19;;28907:43;;;;;;;28981:35;;-1:-1:-1;29005:11:0;;;;;;;28981:35;:63;;;;-1:-1:-1;29034:10:0;;;;;;;29033:11;28981:63;:101;;;;-1:-1:-1;;;;;;29061:21:0;;;;;;:10;:21;;;;;;;;28981:101;:146;;;;-1:-1:-1;;;;;;29100:27:0;;;;;;:19;:27;;;;;;;;29099:28;28981:146;:194;;;;-1:-1:-1;;;;;;29145:30:0;;;;;;:19;:30;;;;;;;;29144:31;28981:194;28963:326;;;29202:10;:17;;-1:-1:-1;;29202:17:0;;;;;29234:10;:8;:10::i;:::-;29259;:18;;-1:-1:-1;;29259:18:0;;;28963:326;29318:10;;-1:-1:-1;;;;;29430:27:0;;29302:12;29430:27;;;:19;:27;;;;;;29318:10;;;;;;;29317:11;;29430:27;;:61;;-1:-1:-1;;;;;;29461:30:0;;;;;;:19;:30;;;;;;;;29430:61;29426:109;;;-1:-1:-1;29518:5:0;29426:109;29636:7;29632:1288;;;29660:12;29709:7;;29694:12;:22;29691:1076;;;29744:23;29763:3;29744:14;:6;29755:2;29744:10;:14::i;:::-;:18;;:23::i;:::-;29737:30;-1:-1:-1;29822:2:0;29809:9;29737:30;29816:2;29809:9;:::i;:::-;29808:16;;;;:::i;:::-;29786:18;;:38;;;;;;;:::i;:::-;;;;-1:-1:-1;29880:2:0;;-1:-1:-1;29868:8:0;:4;29875:1;29868:8;:::i;:::-;29867:15;;;;:::i;:::-;29843:20;;:39;;;;;;;:::i;:::-;;;;-1:-1:-1;29691:1076:0;;-1:-1:-1;29691:1076:0;;-1:-1:-1;;;;;29908:21:0;;;;;;:10;:21;;;;;;;;:48;;;;-1:-1:-1;29933:19:0;;:23;;29908:48;29904:863;;;29995:19;;29984:40;;30020:3;;29984:31;;:6;;:10;:31::i;:40::-;30097:19;;30072:22;;29977:47;;-1:-1:-1;30097:19:0;30065:29;;29977:47;30065:29;:::i;:::-;:51;;;;:::i;:::-;30043:18;;:73;;;;;;;:::i;:::-;;;;-1:-1:-1;;30189:19:0;;30164:22;;30157:29;;:4;:29;:::i;:::-;:51;;;;:::i;:::-;30135:18;;:73;;;;;;;:::i;:::-;;;;-1:-1:-1;;30285:19:0;;30258:24;;30251:31;;:4;:31;:::i;29904:863::-;-1:-1:-1;;;;;30366:18:0;;;;;;:10;:18;;;;;;;;:44;;;;-1:-1:-1;30388:5:0;:18;:22;;30366:44;30362:405;;;30449:5;:18;30438:39;;30473:3;;30438:30;;:6;;:10;:30::i;:39::-;30549:5;:18;30525:21;;30431:46;;-1:-1:-1;30549:18:0;30518:28;;30431:46;30518:28;:::i;:::-;:49;;;;:::i;:::-;30496:18;;:71;;;;;;;:::i;:::-;;;;-1:-1:-1;;30639:5:0;:18;30615:21;;30608:28;;:4;:28;:::i;:::-;:49;;;;:::i;:::-;30586:18;;:71;;;;;;;:::i;:::-;;;;-1:-1:-1;;30733:5:0;:18;30707:23;;30700:30;;:4;:30;:::i;:::-;:51;;;;:::i;:::-;30676:20;;:75;;;;;;;:::i;:::-;;;;-1:-1:-1;;30362:405:0;30787:8;;30783:93;;30816:44;30832:6;30848:4;30855;30816:15;:44::i;:::-;30892:14;30902:4;30892:14;;:::i;:::-;;;29645:1275;29632:1288;30932:42;30948:6;30956:9;30967:6;30932:15;:42::i;:::-;27787:3195;;;27665:3317;;;:::o;11365:191::-;11450:7;11486:12;11478:6;;;;11470:29;;;;-1:-1:-1;;;11470:29:0;;;;;;;;:::i;:::-;-1:-1:-1;11510:9:0;11522:5;11526:1;11522;:5;:::i;:::-;11510:17;11365:191;-1:-1:-1;;;;;11365:191:0:o;9354:358::-;9516:71;9538:6;9516:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9516:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;9496:17:0;;;:9;:17;;;;;;;;;;;:91;;;;9621:20;;;;;;;:32;;9646:6;9621:24;:32::i;:::-;-1:-1:-1;;;;;9598:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;9669:35;1915:25:1;;;9598:20:0;;9669:35;;;;;;1888:18:1;9669:35:0;1769:177:1;31910:1613:0;31998:4;31949:28;5690:18;;;;;;;;;;;31949:55;;32015:14;32074:20;;32053:18;;32032;;:39;;;;:::i;:::-;:62;;;;:::i;:::-;32015:79;-1:-1:-1;32105:12:0;32134:25;;;:40;;-1:-1:-1;32163:11:0;;32134:40;32130:57;;;32178:7;;;31910:1613::o;32130:57::-;32226:19;;:24;;32248:2;32226:24;:::i;:::-;32203:20;:47;32199:127;;;32290:19;;:24;;32312:2;32290:24;:::i;:::-;32267:47;;32199:127;32387:23;32466:1;32457:6;32436:18;;32413:20;:41;;;;:::i;:::-;:50;;;;:::i;:::-;:54;;;;:::i;:::-;32387:80;-1:-1:-1;32478:26:0;32507:41;:20;32387:80;32507:24;:41::i;:::-;32478:70;-1:-1:-1;32590:21:0;32624:36;32478:70;32624:16;:36::i;:::-;32675:18;32696:44;:21;32722:17;32696:25;:44::i;:::-;32675:65;;32754:23;32780:46;32819:6;32780:34;32795:18;;32780:10;:14;;:34;;;;:::i;:46::-;32754:72;;32837:25;32865:48;32906:6;32865:36;32880:20;;32865:10;:14;;:36;;;;:::i;:48::-;32837:76;-1:-1:-1;32924:23:0;32964:35;32837:76;32964:15;:35;:::i;:::-;32950:50;;:10;:50;:::i;:::-;33036:1;33015:18;:22;;;33048:18;:22;;;33081:20;:24;32924:76;-1:-1:-1;33124:19:0;;;;;:42;;;33165:1;33147:15;:19;33124:42;33120:192;;;33183:46;33196:15;33213;33183:12;:46::i;:::-;33249:51;;;9932:25:1;;;9988:2;9973:18;;9966:34;;;33249:51:0;;9905:18:1;33249:51:0;;;;;;;33120:192;33345:17;;-1:-1:-1;;;;;33345:17:0;33378:39;33402:15;33378:21;:39;:::i;:::-;33337:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;33457:15:0;;33449:66;;33324:101;;-1:-1:-1;;;;;;33457:15:0;;33487:21;;33449:66;;;;33487:21;33457:15;33449:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;31910:1613:0:o;11564:256::-;11621:7;11651:1;11656;11651:6;11647:47;;-1:-1:-1;11681:1:0;11674:8;;11647:47;11707:9;11719:5;11723:1;11719;:5;:::i;:::-;11707:17;-1:-1:-1;11752:1:0;11743:5;11747:1;11707:17;11743:5;:::i;:::-;:10;11735:56;;;;-1:-1:-1;;;11735:56:0;;10423:2:1;11735:56:0;;;10405:21:1;10462:2;10442:18;;;10435:30;10501:34;10481:18;;;10474:62;-1:-1:-1;;;10552:18:1;;;10545:31;10593:19;;11735:56:0;10221:397:1;11831:131:0;11888:7;11915:39;11919:1;11922;11915:39;;;;;;;;;;;;;;;;;:3;:39::i;11217:135::-;11274:7;11301:43;11305:1;11308;11301:43;;;;;;;;;;;;;;;;;:3;:43::i;30990:554::-;31138:16;;;31152:1;31138:16;;;;;;;;31114:21;;31138:16;;;;;;;;;;-1:-1:-1;31138:16:0;31114:40;;31183:4;31165;31170:1;31165:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;31165:23:0;;;-1:-1:-1;;;;;31165:23:0;;;;;31209:6;-1:-1:-1;;;;;31209:11:0;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31199:4;31204:1;31199:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;31199:23:0;;;-1:-1:-1;;;;;31199:23:0;;;;;31235:49;31252:4;31267:6;31276:7;31235:8;:49::i;:::-;31323:211;;-1:-1:-1;;;31323:211:0;;-1:-1:-1;;;;;31323:6:0;:57;;;;:211;;31395:7;;31417:1;;31461:4;;31488;;31508:15;;31323:211;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31552:350;31696:49;31713:4;31728:6;31737:7;31696:8;:49::i;:::-;31788:106;;-1:-1:-1;;;31788:106:0;;31840:4;31788:106;;;12469:34:1;;;12519:18;;;12512:34;;;31856:1:0;12562:18:1;;;12555:34;;;12605:18;;;12598:34;12648:19;;;12641:44;31878:15:0;12701:19:1;;;12694:35;31788:6:0;-1:-1:-1;;;;;31788:22:0;;;;31819:9;;12403:19:1;;31788:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;31552:350;;:::o;11974:277::-;12059:7;12094:12;12087:5;12079:28;;;;-1:-1:-1;;;12079:28:0;;;;;;;;:::i;:::-;-1:-1:-1;12118:9:0;12130:5;12134:1;12130;:5;:::i;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;671:70;616:131;:::o;752:315::-;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:247::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;1431:9;1418:23;1450:31;1475:5;1450:31;:::i;1516:248::-;1584:6;1592;1645:2;1633:9;1624:7;1620:23;1616:32;1613:52;;;1661:1;1658;1651:12;1613:52;-1:-1:-1;;1684:23:1;;;1754:2;1739:18;;;1726:32;;-1:-1:-1;1516:248:1:o;1951:160::-;2016:20;;2072:13;;2065:21;2055:32;;2045:60;;2101:1;2098;2091:12;2116:180;2172:6;2225:2;2213:9;2204:7;2200:23;2196:32;2193:52;;;2241:1;2238;2231:12;2193:52;2264:26;2280:9;2264:26;:::i;2301:456::-;2378:6;2386;2394;2447:2;2435:9;2426:7;2422:23;2418:32;2415:52;;;2463:1;2460;2453:12;2415:52;2502:9;2489:23;2521:31;2546:5;2521:31;:::i;:::-;2571:5;-1:-1:-1;2628:2:1;2613:18;;2600:32;2641:33;2600:32;2641:33;:::i;:::-;2301:456;;2693:7;;-1:-1:-1;;;2747:2:1;2732:18;;;;2719:32;;2301:456::o;3159:180::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;-1:-1:-1;3310:23:1;;3159:180;-1:-1:-1;3159:180:1:o;3344:315::-;3409:6;3417;3470:2;3458:9;3449:7;3445:23;3441:32;3438:52;;;3486:1;3483;3476:12;3438:52;3525:9;3512:23;3544:31;3569:5;3544:31;:::i;:::-;3594:5;-1:-1:-1;3618:35:1;3649:2;3634:18;;3618:35;:::i;:::-;3608:45;;3344:315;;;;;:::o;3664:523::-;3768:6;3776;3784;3792;3800;3808;3861:3;3849:9;3840:7;3836:23;3832:33;3829:53;;;3878:1;3875;3868:12;3829:53;-1:-1:-1;;3901:23:1;;;3971:2;3956:18;;3943:32;;-1:-1:-1;4022:2:1;4007:18;;3994:32;;4073:2;4058:18;;4045:32;;-1:-1:-1;4124:3:1;4109:19;;4096:33;;-1:-1:-1;4176:3:1;4161:19;4148:33;;-1:-1:-1;3664:523:1;-1:-1:-1;3664:523:1:o;4876:388::-;4944:6;4952;5005:2;4993:9;4984:7;4980:23;4976:32;4973:52;;;5021:1;5018;5011:12;4973:52;5060:9;5047:23;5079:31;5104:5;5079:31;:::i;:::-;5129:5;-1:-1:-1;5186:2:1;5171:18;;5158:32;5199:33;5158:32;5199:33;:::i;:::-;5251:7;5241:17;;;4876:388;;;;;:::o;5504:380::-;5583:1;5579:12;;;;5626;;;5647:61;;5701:4;5693:6;5689:17;5679:27;;5647:61;5754:2;5746:6;5743:14;5723:18;5720:38;5717:161;;5800:10;5795:3;5791:20;5788:1;5781:31;5835:4;5832:1;5825:15;5863:4;5860:1;5853:15;5717:161;;5504:380;;;:::o;5889:356::-;6091:2;6073:21;;;6110:18;;;6103:30;6169:34;6164:2;6149:18;;6142:62;6236:2;6221:18;;5889:356::o;6250:127::-;6311:10;6306:3;6302:20;6299:1;6292:31;6342:4;6339:1;6332:15;6366:4;6363:1;6356:15;6382:168;6422:7;6488:1;6484;6480:6;6476:14;6473:1;6470:21;6465:1;6458:9;6451:17;6447:45;6444:71;;;6495:18;;:::i;:::-;-1:-1:-1;6535:9:1;;6382:168::o;6555:217::-;6595:1;6621;6611:132;;6665:10;6660:3;6656:20;6653:1;6646:31;6700:4;6697:1;6690:15;6728:4;6725:1;6718:15;6611:132;-1:-1:-1;6757:9:1;;6555:217::o;6777:128::-;6817:3;6848:1;6844:6;6841:1;6838:13;6835:39;;;6854:18;;:::i;:::-;-1:-1:-1;6890:9:1;;6777:128::o;9628:125::-;9668:4;9696:1;9693;9690:8;9687:34;;;9701:18;;:::i;:::-;-1:-1:-1;9738:9:1;;9628:125::o;10755:127::-;10816:10;10811:3;10807:20;10804:1;10797:31;10847:4;10844:1;10837:15;10871:4;10868:1;10861:15;10887:251;10957:6;11010:2;10998:9;10989:7;10985:23;10981:32;10978:52;;;11026:1;11023;11016:12;10978:52;11058:9;11052:16;11077:31;11102:5;11077:31;:::i;11143:980::-;11405:4;11453:3;11442:9;11438:19;11484:6;11473:9;11466:25;11510:2;11548:6;11543:2;11532:9;11528:18;11521:34;11591:3;11586:2;11575:9;11571:18;11564:31;11615:6;11650;11644:13;11681:6;11673;11666:22;11719:3;11708:9;11704:19;11697:26;;11758:2;11750:6;11746:15;11732:29;;11779:1;11789:195;11803:6;11800:1;11797:13;11789:195;;;11868:13;;-1:-1:-1;;;;;11864:39:1;11852:52;;11959:15;;;;11924:12;;;;11900:1;11818:9;11789:195;;;-1:-1:-1;;;;;;;12040:32:1;;;;12035:2;12020:18;;12013:60;-1:-1:-1;;;12104:3:1;12089:19;12082:35;12001:3;11143:980;-1:-1:-1;;;11143:980:1:o;12740:306::-;12828:6;12836;12844;12897:2;12885:9;12876:7;12872:23;12868:32;12865:52;;;12913:1;12910;12903:12;12865:52;12942:9;12936:16;12926:26;;12992:2;12981:9;12977:18;12971:25;12961:35;;13036:2;13025:9;13021:18;13015:25;13005:35;;12740:306;;;;;:::o

Swarm Source

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