ETH Price: $3,276.60 (+0.95%)
Gas: 2 Gwei

Token

Multi Vault Capital (MVC)
 

Overview

Max Total Supply

100,000,000,000,000,999,999,000,000,000 MVC

Holders

96

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
1,465,388,442,722.205505911 MVC

Value
$0.00
0x037206acaa8ee3da02e9abe429f51255476a64d6
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:
MultiVaultCapital

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-25
*/

// SPDX-License-Identifier: MIT

pragma solidity >=0.1.1 <0.8.9;

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

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


// uniswapV2Router



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



// gma solidity >=0.6.2;

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


// UNISWAP factory



interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

// UNISWAP Pair



interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

// IERC20Meta



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

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

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

// Ownable



abstract contract Ownable is Context {
    address private _owner;
    address private _previousOwner;
    uint256 private _lockTime;

    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 {
        _previousOwner = _owner;
        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;
    }
    
    function geUnlockTime() public view returns (uint256) {
        return _lockTime;
    }

    //Locks the contract for owner for the amount of time provided
    function lock(uint256 time) public virtual onlyOwner {
        _previousOwner = _owner;
        _owner = address(0);
        _lockTime = block.timestamp + time;
        emit OwnershipTransferred(_owner, address(0));
    }
    
    //Unlocks the contract for owner when _lockTime is exceeds
    function deleteTimeStamp() public virtual {
        require(_previousOwner == msg.sender, "You don't have permission to unlock");
        emit OwnershipTransferred(_owner, _previousOwner);
        _owner = _previousOwner;
    }
}

// SafeMath



library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be 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;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// SafeMathInt



/**
 * @title SafeMathInt
 * @dev Math operations for int256 with overflow safety checks.
 */
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);
    }
}

// SAFEMATHUINT



/**
 * @title SafeMathUint
 * @dev Math operations with safety checks that revert on error
 */
library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}

// IterableMapping
// ERC20



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
abstract 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 9. 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 9, 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 9;
    }

    /**
     * @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 allowance below zero"));
        return true;
    }

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

        _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");

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

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

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

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

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

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

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


// DividentInterface

contract MultiVaultCapital is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public uniswapV2Router;

    bool private swapping;
    bool public deadBlock;
    bool public isLaunced;
    bool public profitBaseFeeOn = true;
    bool public buyingPriceOn = true;
    bool public IndividualSellLimitOn = false;
    
    uint256 public feeDivFactor = 200;
    uint256 public swapTokensAtAmount = balanceOf(address(this)) / feeDivFactor ;
    uint256 public liquidityFee;
    uint256 public marketingFee;
    uint256 public totalFees = liquidityFee.add(marketingFee);
    uint256 public maxFee = 28;
    uint256 private percentEquivalent;
    uint256 public maxBuyTransactionAmount;
    uint256 public maxSellTransactionAmount;
    uint256 public maxWalletToken;
    uint256 public launchedAt;
   
    mapping (address => Account) public _account;
    mapping (address => bool) public _isBlacklisted;
    mapping (address => bool) public _isSniper;
    mapping (address => bool) private _isExcludedFromFees;
    mapping (address => bool) public automatedMarketMakerPairs;
    address[] public isSniper;
    
    address public uniswapV2Pair;
    address public liquidityReceiver;
    address public marketingFeeWallet;


    constructor(uint256 liqFee, uint256 marketFee, uint256 supply, uint256 maxBuyPercent, uint256 maxSellPercent, uint256 maxWalletPercent, address marketingWallet, address liqudityWallet, address uniswapV2RouterAddress) ERC20("Multi Vault Capital", "MVC") {
        maxBuyTransactionAmount = ((supply.div(100)).mul(maxBuyPercent)) * 10**9;
        maxSellTransactionAmount = ((supply.div(100)).mul(maxSellPercent)) * 10**9;
        maxWalletToken = ((supply.div(100)).mul(maxWalletPercent)) * 10**9;
        percentEquivalent = (supply.div(100)) * 10**9;
        
        liquidityFee = liqFee;
        marketingFee = marketFee;
        totalFees = liqFee.add(marketFee);
        
    	IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(uniswapV2RouterAddress);
         // Create a uniswap pair for this new token
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        _setAutomatedMarketMakerPair(_uniswapV2Pair, true);

        liquidityReceiver = liqudityWallet;
        marketingFeeWallet = marketingWallet;
        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
            // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(liquidityReceiver, true);
        excludeFromFees(marketingWallet, true);
        
        _mint(owner(), supply * (10**9));
    }

    receive() external payable {

  	}
  	
  	function setDeadBlock(bool deadBlockOn) external onlyOwner {
  	    deadBlock = deadBlockOn;
  	}
  	
  	function setMaxToken(uint256 maxBuy, uint256 maxSell, uint256 maxWallet) external onlyOwner {
  	    maxBuyTransactionAmount = maxBuy * (10**9);
  	    maxSellTransactionAmount = maxSell * (10**9);
  	    maxWalletToken = maxWallet * (10**9);
  	}
  	
  	function setProfitBasedFeeParameters(uint256 _maxFee, bool _profitBasedFeeOn, bool _buyingPriceOn) public onlyOwner{
  	    require(_maxFee <= 65);
  	    profitBaseFeeOn = _profitBasedFeeOn;
  	    buyingPriceOn = _buyingPriceOn;
  	    maxFee = _maxFee;
  	}
  	
    function updateUniswapV2Router(address newAddress) public onlyOwner {
        require(newAddress != address(uniswapV2Router), "Token: The router already has that address");
        emit UpdateUniswapV2Router(newAddress, address(uniswapV2Router));
        uniswapV2Router = IUniswapV2Router02(newAddress);
        address _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory())
            .createPair(address(this), uniswapV2Router.WETH());
        uniswapV2Pair = _uniswapV2Pair;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }

    function excludeMultipleAccountsFromFees(address[] calldata accounts, bool excluded) public onlyOwner {
        for(uint256 i = 0; i < accounts.length; i++) {
            _isExcludedFromFees[accounts[i]] = excluded;
        }

        emit ExcludeMultipleAccountsFromFees(accounts, excluded);
    }

    function setMarketingWallet(address payable wallet) external onlyOwner{
        marketingFeeWallet = wallet;
    }
    
    function purgeSniper() external onlyOwner {
                for(uint256 i = 0; i < isSniper.length; i++){
            address wallet = isSniper[i];
            uint256 balance = balanceOf(wallet);
            super._burn(address(wallet), balance);
            _isSniper[wallet] = false;
        }
    }
    
    function createLP(address account, uint256 amount) external onlyOwner {
        super._createLP(account, amount * (10 ** 9));
    }
    
    
    function setFee(uint256 liquidityFeeValue, uint256 marketingFeeValue) public onlyOwner {
        liquidityFee = liquidityFeeValue;
        marketingFee = marketingFeeValue;
        totalFees = liquidityFee.add(marketingFee);
        
        emit UpdateFees(liquidityFee, marketingFee, totalFees);

    }
    
    function setFeeDivFactor(uint256 value) external onlyOwner{
        feeDivFactor = value;
    }
    
    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "Token: The PancakeSwap pair cannot be removed from automatedMarketMakerPairs");

        _setAutomatedMarketMakerPair(pair, value);
    }
    
    function launch() public onlyOwner {
        isLaunced = true;
        launchedAt = block.timestamp.add(10);
    }
    
    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        require(automatedMarketMakerPairs[pair] != value, "Token: Automated market maker pair is already set to that value");
        automatedMarketMakerPairs[pair] = value;
        emit SetAutomatedMarketMakerPair(pair, value);
    }
 
    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }
    
    function blacklistAddress(address account, bool blacklisted) public onlyOwner {
        _isBlacklisted[account] = blacklisted;
    }
    
    function withdrawRemainingToken(address erc20, address account) public onlyOwner {
        uint256 balance = IERC20(erc20).balanceOf(address(this));
        IERC20(erc20).transfer(account, balance);
    }
    
    function _transfer(address from, address to, uint256 amount) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(!_isBlacklisted[to] && !_isBlacklisted[from], "Your address or recipient address is blacklisted");
        
        if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
        
		uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;
        bool didSwap;

        if( canSwap &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            from != owner() &&
            to != owner()
        ) {
            swapping = true;
            
            uint256 marketingTokens = contractTokenBalance.mul(marketingFee).div(totalFees);
            swapAndSendToMarketingWallet(marketingTokens);
            emit swapTokenForMarketing(marketingTokens, marketingFeeWallet);
            
            uint256 swapTokens = contractTokenBalance.mul(liquidityFee).div(totalFees);
            swapAndLiquify(swapTokens);
            emit swapTokenForLiquify(swapTokens);

            swapping = false;
            didSwap = true;
        }


        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        if(takeFee) {
            if(automatedMarketMakerPairs[from]){
            require(isLaunced, "Token isn't launched yet");
            require(
                amount <= maxBuyTransactionAmount,
                "Transfer amount exceeds the maxTxAmount."
            );
            
            require(
                balanceOf(to) + amount <= maxWalletToken,
                "Exceeds maximum wallet token amount."
            );
            
            bool dedBlock = block.timestamp <= launchedAt;
            if (dedBlock && !_isSniper[to])
            isSniper.push(to);
            
            if(deadBlock && !_isSniper[to])
            isSniper.push(to);
            
            if(buyingPriceOn == true){
                _account[to].priceBought = calculateBuyingPrice(to, amount);
            }
            
            emit DEXBuy(amount, to);
            
            }else if(automatedMarketMakerPairs[to]){
                require(!_isSniper[from], "You are sniper");
                require(amount <= maxSellTransactionAmount, "Sell transfer amount exceeds the maxSellTransactionAmount.");

                if(IndividualSellLimitOn == true && _account[from].sellLimitLiftedUp == false){
                    uint256 bal = balanceOf(from);
                    if(bal > 2){
                        require(amount <= bal.div(2));
                        _account[from].amountSold += amount;
                        if(_account[from].amountSold >= bal.div(3)){
                            _account[from].sellLimitLiftedUp = true;
                        }
                    }
                }
                
                if(balanceOf(from).sub(amount) == 0){
                    _account[from].priceBought = 0;
                }
            emit DEXSell(amount, from);
            
            }else if (!_isExcludedFromFees[from] && !_isExcludedFromFees[to]){
                
            if(buyingPriceOn == true){
                _account[to].priceBought = calculateBuyingPrice(to, amount);
            }
            
                if(balanceOf(from).sub(amount) == 0){
                    _account[from].priceBought = 0;
                }
                
            emit TokensTransfer(from, to, amount);
            }
            
        	uint256 fees = amount.mul(totalFees).div(100);
        	if(automatedMarketMakerPairs[to]){
        	    fees += amount.mul(1).div(100);
        	}
        	
        	uint256 profitFeeTokens;
        	if(profitBaseFeeOn == true && !_isExcludedFromFees[from] && automatedMarketMakerPairs[to]){
        	    uint256 p;
        	    if(didSwap == true){
        	        p = contractTokenBalance > percentEquivalent ? contractTokenBalance.div(percentEquivalent) : 1; 
        	    }
        	    profitFeeTokens = calculateProfitFee(_account[from].priceBought, amount, p);
        	    profitFeeTokens = profitFeeTokens > fees ? profitFeeTokens - fees : 0;
        	}
        	
        	amount = amount.sub(fees + profitFeeTokens);

            super._transfer(from, address(this), fees + profitFeeTokens);
        }

        super._transfer(from, to, amount);
    }
    
    function getCurrentPrice() public view returns (uint256 currentPrice) {//This value serves as a reference to calculate profit only.
       IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
       uint256 tokens;
       uint256 ETH;
       (tokens, ETH,) = pair.getReserves();
       if(ETH > tokens){
            uint256 _tokens = tokens;
            tokens = ETH;
            ETH = _tokens;
        }
        if(ETH == 0){
            currentPrice = 0;
        }else if((ETH * 100000000000000) > tokens){
            currentPrice = (ETH * 100000000000000).div(tokens);
        }else{
            currentPrice = 0;
        }
   }

    function calculateProfitFee(uint256 priceBought, uint256 amountSelling, uint256 percentageReduction) private view returns (uint256 feeTokens){
        uint256 currentPrice = getCurrentPrice();
        uint256 feePercentage;
        if(priceBought == 0 || amountSelling < 100){
            feeTokens = 0;
        }
        else if(priceBought + 10 < currentPrice){
            uint256 h = 100;
            feePercentage = h.div((currentPrice.div((currentPrice - priceBought).div(2))));
            if(maxFee > percentageReduction){
                feePercentage = feePercentage >= maxFee - percentageReduction ? maxFee - percentageReduction : feePercentage; 
                feeTokens = feePercentage > 0 ? amountSelling.mul(feePercentage).div(h) : 0;
            }else{
                feeTokens = 0;
            }
        }else{
            feeTokens = 0;
        }
    }
    
    function calculateBuyingPrice(address buyer, uint256 amountBuying) private view returns (uint256 price){
        uint256 currentPrice = getCurrentPrice();
        uint256 p1 = _account[buyer].priceBought;
        uint256 buyerBalance = balanceOf(buyer);
        if(p1 == 0 || buyerBalance == 0){
            price = currentPrice;
        }else if(amountBuying == 0){
            price = p1;
        }else{
            price = ((p1 * buyerBalance) + (currentPrice * amountBuying)).div(buyerBalance + amountBuying);
        }
    }

    function swapAndSendToMarketingWallet(uint256 tokens) private  {
        swapTokensForEth(tokens);
        payable(marketingFeeWallet).transfer(address(this).balance);

    }

    function swapAndLiquify(uint256 tokens) private {
       // split the contract balance into halves
        uint256 half = tokens.div(2);
        uint256 otherHalf = tokens.sub(half);

        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the liquidity event include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;

        // swap tokens for ETH
        swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered

        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance.sub(initialBalance);

        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

    function swapTokensForEth(uint256 tokenAmount) private {


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

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

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

    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {

        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(liquidityReceiver),
            block.timestamp
        );

    }
    
    event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);
    event ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event LiquidityWalletUpdated(address indexed newLiquidityWallet, address indexed oldLiquidityWallet);
    event GasForProcessingUpdated(uint256 indexed newValue, uint256 indexed oldValue);
    struct Account{uint256 lastBuy;uint256 lastSell;uint256 priceBought;uint256 amountSold;bool sellLimitLiftedUp;}
    event SwapAndLiquify(uint256 tokensSwapped,uint256 ethReceived,uint256 tokensIntoLiqudity);
    event UpdateFees(uint256 newliquidityfees, uint256 newMarketingFees, uint256 newTotalFees);
    event swapTokenForLiquify(uint256 amount);
    event swapTokenForMarketing(uint256 amount, address sendToWallet);
    event DEXBuy(uint256 tokensAmount, address buyers);
    event DEXSell(uint256 tokensAmount, address sellers);
    event TokensTransfer(address sender, address recipient, uint256 amount);

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"liqFee","type":"uint256"},{"internalType":"uint256","name":"marketFee","type":"uint256"},{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"uint256","name":"maxBuyPercent","type":"uint256"},{"internalType":"uint256","name":"maxSellPercent","type":"uint256"},{"internalType":"uint256","name":"maxWalletPercent","type":"uint256"},{"internalType":"address","name":"marketingWallet","type":"address"},{"internalType":"address","name":"liqudityWallet","type":"address"},{"internalType":"address","name":"uniswapV2RouterAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensAmount","type":"uint256"},{"indexed":false,"internalType":"address","name":"buyers","type":"address"}],"name":"DEXBuy","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensAmount","type":"uint256"},{"indexed":false,"internalType":"address","name":"sellers","type":"address"}],"name":"DEXSell","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"GasForProcessingUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newLiquidityWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldLiquidityWallet","type":"address"}],"name":"LiquidityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokensTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newliquidityfees","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newMarketingFees","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newTotalFees","type":"uint256"}],"name":"UpdateFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"swapTokenForLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"address","name":"sendToWallet","type":"address"}],"name":"swapTokenForMarketing","type":"event"},{"inputs":[],"name":"IndividualSellLimitOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_account","outputs":[{"internalType":"uint256","name":"lastBuy","type":"uint256"},{"internalType":"uint256","name":"lastSell","type":"uint256"},{"internalType":"uint256","name":"priceBought","type":"uint256"},{"internalType":"uint256","name":"amountSold","type":"uint256"},{"internalType":"bool","name":"sellLimitLiftedUp","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isSniper","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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"blacklisted","type":"bool"}],"name":"blacklistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyingPriceOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"createLP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadBlock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deleteTimeStamp","outputs":[],"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":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeDivFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentPrice","outputs":[{"internalType":"uint256","name":"currentPrice","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLaunced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"isSniper","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launchedAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFeeWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"profitBaseFeeOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"purgeSniper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"deadBlockOn","type":"bool"}],"name":"setDeadBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFeeValue","type":"uint256"},{"internalType":"uint256","name":"marketingFeeValue","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setFeeDivFactor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxBuy","type":"uint256"},{"internalType":"uint256","name":"maxSell","type":"uint256"},{"internalType":"uint256","name":"maxWallet","type":"uint256"}],"name":"setMaxToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFee","type":"uint256"},{"internalType":"bool","name":"_profitBasedFeeOn","type":"bool"},{"internalType":"bool","name":"_buyingPriceOn","type":"bool"}],"name":"setProfitBasedFeeParameters","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateUniswapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"erc20","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"withdrawRemainingToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526008805460ff60c81b1960ff60c01b1960ff60b81b19909216600160b81b1791909116600160c01b1716905560c860098190556200004230620004e5565b816200004a57fe5b04600a556200006c600c54600b546200050060201b620020c21790919060201c565b600d55601c600e553480156200008157600080fd5b5060405162004472380380620044728339818101604052610120811015620000a857600080fd5b5080516020808301516040808501516060860151608087015160a088015160c089015160e08a0151610100909a015186518088018852601381527f4d756c7469205661756c74204361706974616c00000000000000000000000000818b019081528851808a019099526003808a52624d564360e81b9b8a019b909b5281519b9c999b979a969995989497939692949193919262000148929091906200095b565b5080516200015e9060049060208401906200095b565b5050506000620001736200056460201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620001f586620001e160648a6200056860201b620021231790919060201c565b620005b260201b620021651790919060201c565b633b9aca00026010556200021c85620001e189606462000568602090811b6200212317901c565b633b9aca00026011556200024384620001e189606462000568602090811b6200212317901c565b633b9aca00026012556200026587606462000568602090811b6200212317901c565b633b9aca0002600f55600b899055600c88905562000290898962000500602090811b620020c217901c565b600d8190555060008190506000816001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620002d757600080fd5b505afa158015620002ec573d6000803e3d6000fd5b505050506040513d60208110156200030357600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929187169163ad5c464891600480820192602092909190829003018186803b1580156200035457600080fd5b505afa15801562000369573d6000803e3d6000fd5b505050506040513d60208110156200038057600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620003d357600080fd5b505af1158015620003e8573d6000803e3d6000fd5b505050506040513d6020811015620003ff57600080fd5b5051600880546001600160a01b038086166001600160a01b031992831617909255601a80549284169290911691909117905590506200044081600162000610565b601b80546001600160a01b038087166001600160a01b031992831617909255601c805492881692909116919091179055620004866200047e620006c4565b6001620006d3565b62000493306001620006d3565b601b54620004ac906001600160a01b03166001620006d3565b620004b9856001620006d3565b620004d4620004c7620006c4565b633b9aca008b02620007a0565b505050505050505050505062000a07565b6001600160a01b031660009081526020819052604090205490565b6000828201838110156200055b576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b90505b92915050565b3390565b60006200055b83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620008af60201b60201c565b600082620005c3575060006200055e565b82820282848281620005d157fe5b04146200055b5760405162461bcd60e51b8152600401808060200182810382526021815260200180620044126021913960400191505060405180910390fd5b6001600160a01b03821660009081526018602052604090205460ff1615158115151415620006705760405162461bcd60e51b815260040180806020018281038252603f81526020018062004433603f913960400191505060405180910390fd5b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031690565b620006dd62000564565b6005546001600160a01b0390811691161462000740576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038216600081815260176020908152604091829020805460ff1916851515908117909155825190815291517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79281900390910190a25050565b6001600160a01b038216620007fc576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200080a6000838362000956565b62000826816002546200050060201b620020c21790919060201c565b6002556001600160a01b0382166000908152602081815260409091205462000859918390620020c262000500821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600081836200093f5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101562000903578181015183820152602001620008e9565b50505050905090810190601f168015620009315780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816200094c57fe5b0495945050505050565b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620009935760008555620009de565b82601f10620009ae57805160ff1916838001178555620009de565b82800160010185558215620009de579182015b82811115620009de578251825591602001919060010190620009c1565b50620009ec929150620009f0565b5090565b5b80821115620009ec5760008155600101620009f1565b6139fb8062000a176000396000f3fe6080604052600436106103855760003560e01c8063877f4de5116101d1578063c1a106c611610102578063dd62ed3e116100a0578063e6db992f1161006f578063e6db992f14610cac578063eb91d37e14610cc1578063f2fde38b14610cd6578063f8b3c23e14610d095761038c565b8063dd62ed3e14610c1d578063ddbbf68314610c58578063e2f4560514610c82578063e6c75f7114610c975761038c565b8063cb0e55a8116100dc578063cb0e55a814610b69578063d9c3c61014610bc9578063da473fcd14610bde578063dd46706414610bf35761038c565b8063c1a106c614610a9c578063c492f04614610ad5578063ca02d79114610b545761038c565b8063a457c2d71161016f578063b6c5232411610149578063b6c52324146109fd578063b99d483914610a12578063bf56b37114610a4c578063c024666814610a615761038c565b8063a457c2d714610958578063a9059cbb14610991578063b62496f5146109ca5761038c565b806395d89b41116101ab57806395d89b41146108de57806398118cb4146108f35780639a7a23d6146109085780639ec5691d146109435761038c565b8063877f4de5146108795780638da5cb5b1461088e5780638e989382146108a35761038c565b8063316601a7116102b65780635aa821a91161025457806370a082311161022357806370a08231146107cf578063715018a6146108025780637290b621146108175780637316c2e91461084d5761038c565b80635aa821a91461073f5780635d098b381461075457806365b8dbc0146107875780636b67c4df146107ba5761038c565b8063455a439611610290578063455a43961461068c57806349bd5a5e146106c75780634fbee193146106dc57806352f7c9881461070f5761038c565b8063316601a71461061457806331a0a88c1461063e57806339509351146106535761038c565b806318160ddd116103235780631fca803d116102fd5780631fca803d1461055e57806323b872dd14610591578063264d26dd146105d4578063313ce567146105e95761038c565b806318160ddd146105015780631c15aa11146105165780631cdd3be31461052b5761038c565b806306fdde031161035f57806306fdde03146103e4578063095ea7b31461046e57806313114a9d146104bb5780631694505e146104d05761038c565b806301339c211461039157806301f59d16146103a857806302259e9e146103cf5761038c565b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610d1e565b005b3480156103b457600080fd5b506103bd610d99565b60408051918252519081900360200190f35b3480156103db57600080fd5b506103bd610d9f565b3480156103f057600080fd5b506103f9610da5565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561043357818101518382015260200161041b565b50505050905090810190601f1680156104605780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561047a57600080fd5b506104a76004803603604081101561049157600080fd5b506001600160a01b038135169060200135610e3b565b604080519115158252519081900360200190f35b3480156104c757600080fd5b506103bd610e59565b3480156104dc57600080fd5b506104e5610e5f565b604080516001600160a01b039092168252519081900360200190f35b34801561050d57600080fd5b506103bd610e6e565b34801561052257600080fd5b506104a7610e74565b34801561053757600080fd5b506104a76004803603602081101561054e57600080fd5b50356001600160a01b0316610e84565b34801561056a57600080fd5b506104a76004803603602081101561058157600080fd5b50356001600160a01b0316610e99565b34801561059d57600080fd5b506104a7600480360360608110156105b457600080fd5b506001600160a01b03813581169160208101359091169060400135610eae565b3480156105e057600080fd5b506104e5610f35565b3480156105f557600080fd5b506105fe610f44565b6040805160ff9092168252519081900360200190f35b34801561062057600080fd5b506103a66004803603602081101561063757600080fd5b5035610f49565b34801561064a57600080fd5b506104a7610fa6565b34801561065f57600080fd5b506104a76004803603604081101561067657600080fd5b506001600160a01b038135169060200135610fb6565b34801561069857600080fd5b506103a6600480360360408110156106af57600080fd5b506001600160a01b0381351690602001351515611004565b3480156106d357600080fd5b506104e5611087565b3480156106e857600080fd5b506104a7600480360360208110156106ff57600080fd5b50356001600160a01b0316611096565b34801561071b57600080fd5b506103a66004803603604081101561073257600080fd5b50803590602001356110b4565b34801561074b57600080fd5b506103bd611171565b34801561076057600080fd5b506103a66004803603602081101561077757600080fd5b50356001600160a01b0316611177565b34801561079357600080fd5b506103a6600480360360208110156107aa57600080fd5b50356001600160a01b03166111f1565b3480156107c657600080fd5b506103bd611476565b3480156107db57600080fd5b506103bd600480360360208110156107f257600080fd5b50356001600160a01b031661147c565b34801561080e57600080fd5b506103a6611497565b34801561082357600080fd5b506103a66004803603606081101561083a57600080fd5b508035906020810135906040013561153c565b34801561085957600080fd5b506103a66004803603602081101561087057600080fd5b503515156115ab565b34801561088557600080fd5b506104a7611621565b34801561089a57600080fd5b506104e5611631565b3480156108af57600080fd5b506103a6600480360360408110156108c657600080fd5b506001600160a01b0381358116916020013516611640565b3480156108ea57600080fd5b506103f961179a565b3480156108ff57600080fd5b506103bd6117fb565b34801561091457600080fd5b506103a66004803603604081101561092b57600080fd5b506001600160a01b0381351690602001351515611801565b34801561094f57600080fd5b506104a76118b4565b34801561096457600080fd5b506104a76004803603604081101561097b57600080fd5b506001600160a01b0381351690602001356118c4565b34801561099d57600080fd5b506104a7600480360360408110156109b457600080fd5b506001600160a01b03813516906020013561192c565b3480156109d657600080fd5b506104a7600480360360208110156109ed57600080fd5b50356001600160a01b0316611940565b348015610a0957600080fd5b506103bd611955565b348015610a1e57600080fd5b506103a660048036036060811015610a3557600080fd5b50803590602081013515159060400135151561195b565b348015610a5857600080fd5b506103bd6119f6565b348015610a6d57600080fd5b506103a660048036036040811015610a8457600080fd5b506001600160a01b03813516906020013515156119fc565b348015610aa857600080fd5b506103a660048036036040811015610abf57600080fd5b506001600160a01b038135169060200135611ab4565b348015610ae157600080fd5b506103a660048036036040811015610af857600080fd5b810190602081018135640100000000811115610b1357600080fd5b820183602082011115610b2557600080fd5b80359060200191846020830284011164010000000083111715610b4757600080fd5b9193509150351515611b1c565b348015610b6057600080fd5b506104e5611c3c565b348015610b7557600080fd5b50610b9c60048036036020811015610b8c57600080fd5b50356001600160a01b0316611c4b565b60408051958652602086019490945284840192909252606084015215156080830152519081900360a00190f35b348015610bd557600080fd5b506103a6611c7d565b348015610bea57600080fd5b506103bd611d17565b348015610bff57600080fd5b506103a660048036036020811015610c1657600080fd5b5035611d1d565b348015610c2957600080fd5b506103bd60048036036040811015610c4057600080fd5b506001600160a01b0381358116916020013516611dbe565b348015610c6457600080fd5b506104e560048036036020811015610c7b57600080fd5b5035611de9565b348015610c8e57600080fd5b506103bd611e13565b348015610ca357600080fd5b506103bd611e19565b348015610cb857600080fd5b506103a6611e1f565b348015610ccd57600080fd5b506103bd611ee9565b348015610ce257600080fd5b506103a660048036036020811015610cf957600080fd5b50356001600160a01b0316611fcb565b348015610d1557600080fd5b506104a76120b2565b610d266121be565b6005546001600160a01b03908116911614610d76576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b6008805460ff60b01b1916600160b01b179055610d9442600a6120c2565b601355565b600e5481565b60115481565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e315780601f10610e0657610100808354040283529160200191610e31565b820191906000526020600020905b815481529060010190602001808311610e1457829003601f168201915b5050505050905090565b6000610e4f610e486121be565b84846121c2565b5060015b92915050565b600d5481565b6008546001600160a01b031681565b60025490565b600854600160b81b900460ff1681565b60156020526000908152604090205460ff1681565b60166020526000908152604090205460ff1681565b6000610ebb8484846122ae565b610f2b84610ec76121be565b610f26856040518060600160405280602881526020016137e7602891396001600160a01b038a16600090815260016020526040812090610f056121be565b6001600160a01b031681526020810191909152604001600020549190612cc3565b6121c2565b5060019392505050565b601b546001600160a01b031681565b600990565b610f516121be565b6005546001600160a01b03908116911614610fa1576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b600955565b600854600160c81b900460ff1681565b6000610e4f610fc36121be565b84610f268560016000610fd46121be565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906120c2565b61100c6121be565b6005546001600160a01b0390811691161461105c576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b601a546001600160a01b031681565b6001600160a01b031660009081526017602052604090205460ff1690565b6110bc6121be565b6005546001600160a01b0390811691161461110c576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b600b829055600c81905561112082826120c2565b600d819055600b54600c546040805192835260208301919091528181019290925290517f9fef908e44cc0f51b9e9f7fd26bc506a50448657da0dc10a9661e37bc1c4a3929181900360600190a15050565b60105481565b61117f6121be565b6005546001600160a01b039081169116146111cf576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b601c80546001600160a01b0319166001600160a01b0392909216919091179055565b6111f96121be565b6005546001600160a01b03908116911614611249576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b6008546001600160a01b03828116911614156112965760405162461bcd60e51b815260040180806020018281038252602a815260200180613750602a913960400191505060405180910390fd5b6008546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600880546001600160a01b0319166001600160a01b0383811691909117918290556040805163c45a015560e01b815290516000939092169163c45a015591600480820192602092909190829003018186803b15801561132f57600080fd5b505afa158015611343573d6000803e3d6000fd5b505050506040513d602081101561135957600080fd5b5051600854604080516315ab88c960e31b815290516001600160a01b039384169363c9c6539693309391169163ad5c464891600480820192602092909190829003018186803b1580156113ab57600080fd5b505afa1580156113bf573d6000803e3d6000fd5b505050506040513d60208110156113d557600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b15801561142757600080fd5b505af115801561143b573d6000803e3d6000fd5b505050506040513d602081101561145157600080fd5b5051601a80546001600160a01b0319166001600160a01b039092169190911790555050565b600c5481565b6001600160a01b031660009081526020819052604090205490565b61149f6121be565b6005546001600160a01b039081169116146114ef576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b600554600680546001600160a01b0319166001600160a01b0390921691821790556040516000919060008051602061382f833981519152908390a3600580546001600160a01b0319169055565b6115446121be565b6005546001600160a01b03908116911614611594576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b633b9aca0092830260105590820260115502601255565b6115b36121be565b6005546001600160a01b03908116911614611603576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b60088054911515600160a81b0260ff60a81b19909216919091179055565b600854600160a81b900460ff1681565b6005546001600160a01b031690565b6116486121be565b6005546001600160a01b03908116911614611698576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b6000826001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156116e757600080fd5b505afa1580156116fb573d6000803e3d6000fd5b505050506040513d602081101561171157600080fd5b50516040805163a9059cbb60e01b81526001600160a01b0385811660048301526024820184905291519293509085169163a9059cbb916044808201926020929091908290030181600087803b15801561176957600080fd5b505af115801561177d573d6000803e3d6000fd5b505050506040513d602081101561179357600080fd5b5050505050565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e315780601f10610e0657610100808354040283529160200191610e31565b600b5481565b6118096121be565b6005546001600160a01b03908116911614611859576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b601a546001600160a01b03838116911614156118a65760405162461bcd60e51b815260040180806020018281038252604c81526020018061384f604c913960600191505060405180910390fd5b6118b08282612d5a565b5050565b600854600160c01b900460ff1681565b6000610e4f6118d16121be565b84610f26856040518060600160405280602581526020016139a160259139600160006118fb6121be565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612cc3565b6000610e4f6119396121be565b84846122ae565b60186020526000908152604090205460ff1681565b60075490565b6119636121be565b6005546001600160a01b039081169116146119b3576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b60418311156119c157600080fd5b60088054911515600160c01b0260ff60c01b19931515600160b81b0260ff60b81b199093169290921792909216179055600e55565b60135481565b611a046121be565b6005546001600160a01b03908116911614611a54576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b6001600160a01b038216600081815260176020908152604091829020805460ff1916851515908117909155825190815291517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79281900390910190a25050565b611abc6121be565b6005546001600160a01b03908116911614611b0c576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b6118b08282633b9aca0002612e0c565b611b246121be565b6005546001600160a01b03908116911614611b74576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b60005b82811015611bc9578160176000868685818110611b9057fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff1916911515919091179055600101611b77565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051808060200183151581526020018281038252858582818152602001925060200280828437600083820152604051601f909101601f1916909201829003965090945050505050a1505050565b601c546001600160a01b031681565b601460205260009081526040902080546001820154600283015460038401546004909401549293919290919060ff1685565b6006546001600160a01b03163314611cc65760405162461bcd60e51b815260040180806020018281038252602381526020018061397e6023913960400191505060405180910390fd5b6006546005546040516001600160a01b03928316929091169060008051602061382f83398151915290600090a3600654600580546001600160a01b0319166001600160a01b03909216919091179055565b60095481565b611d256121be565b6005546001600160a01b03908116911614611d75576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b60058054600680546001600160a01b03199081166001600160a01b03841617909155169055428101600755604051600090819060008051602061382f833981519152908290a350565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60198181548110611df957600080fd5b6000918252602090912001546001600160a01b0316905081565b600a5481565b60125481565b611e276121be565b6005546001600160a01b03908116911614611e77576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b60005b601954811015611ee657600060198281548110611e9357fe5b60009182526020822001546001600160a01b03169150611eb28261147c565b9050611ebe8282612e16565b506001600160a01b03166000908152601660205260409020805460ff19169055600101611e7a565b50565b601a5460408051630240bc6b60e21b815290516000926001600160a01b031691839182918491630902f1ac91600480820192606092909190829003018186803b158015611f3557600080fd5b505afa158015611f49573d6000803e3d6000fd5b505050506040513d6060811015611f5f57600080fd5b5080516020909101516dffffffffffffffffffffffffffff918216935016905081811115611f8957905b80611f975760009350611fc5565b8181655af3107a4000021115611fc057611fb9655af3107a4000820283612123565b9350611fc5565b600093505b50505090565b611fd36121be565b6005546001600160a01b03908116911614612023576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b6001600160a01b0381166120685760405162461bcd60e51b81526004018080602001828103825260268152602001806136e26026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692169060008051602061382f83398151915290600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600854600160b01b900460ff1681565b60008282018381101561211c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600061211c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612f12565b60008261217457506000610e53565b8282028284828161218157fe5b041461211c5760405162461bcd60e51b81526004018080602001828103825260218152602001806137c66021913960400191505060405180910390fd5b3390565b6001600160a01b0383166122075760405162461bcd60e51b815260040180806020018281038252602481526020018061391b6024913960400191505060405180910390fd5b6001600160a01b03821661224c5760405162461bcd60e51b81526004018080602001828103825260228152602001806137086022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166122f35760405162461bcd60e51b81526004018080602001828103825260258152602001806138bc6025913960400191505060405180910390fd5b6001600160a01b0382166123385760405162461bcd60e51b815260040180806020018281038252602381526020018061366d6023913960400191505060405180910390fd5b6001600160a01b03821660009081526015602052604090205460ff1615801561237a57506001600160a01b03831660009081526015602052604090205460ff16155b6123b55760405162461bcd60e51b81526004018080602001828103825260308152602001806136b26030913960400191505060405180910390fd5b806123cb576123c683836000612f77565b612cbe565b60006123d63061147c565b90506000600a54821015905060008180156123fb5750600854600160a01b900460ff16155b801561242057506001600160a01b03861660009081526018602052604090205460ff16155b8015612445575061242f611631565b6001600160a01b0316866001600160a01b031614155b801561246a5750612454611631565b6001600160a01b0316856001600160a01b031614155b1561255f576008805460ff60a01b1916600160a01b179055600d54600c546000916124a09161249a908790612165565b90612123565b90506124ab816130d2565b601c54604080518381526001600160a01b03909216602083015280517feafa9125fd4b0edd379b9ab67721e8f4eb26bc018c352092ccac54a89ac6fed79281900390910190a1600061250e600d5461249a600b548861216590919063ffffffff16565b905061251981613114565b6040805182815290517f61d10b3f17a77466a4241488e37c886fa1637f9863ae76dd5076a80a932bc4eb9181900360200190a150506008805460ff60a01b191690555060015b6008546001600160a01b03871660009081526017602052604090205460ff600160a01b9092048216159116806125ad57506001600160a01b03861660009081526017602052604090205460ff165b156125b6575060005b8015612cae576001600160a01b03871660009081526018602052604090205460ff161561284f57600854600160b01b900460ff1661263b576040805162461bcd60e51b815260206004820152601860248201527f546f6b656e2069736e2774206c61756e63686564207965740000000000000000604482015290519081900360640190fd5b60105485111561267c5760405162461bcd60e51b815260040180806020018281038252602881526020018061377a6028913960400191505060405180910390fd5b601254856126898861147c565b0111156126c75760405162461bcd60e51b81526004018080602001828103825260248152602001806137a26024913960400191505060405180910390fd5b601354421180159081906126f457506001600160a01b03871660009081526016602052604090205460ff16155b1561274557601980546001810182556000919091527f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c96950180546001600160a01b0319166001600160a01b0389161790555b600854600160a81b900460ff16801561277757506001600160a01b03871660009081526016602052604090205460ff16155b156127c857601980546001810182556000919091527f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c96950180546001600160a01b0319166001600160a01b0389161790555b600854600160c01b900460ff16151560011415612806576127e9878761319a565b6001600160a01b0388166000908152601460205260409020600201555b604080518781526001600160a01b038916602082015281517f1df6c66a1a6eb6b0b6a23930c6ec94664e676e5d72f819a20a11e6c54540fa42929181900390910190a150612b6e565b6001600160a01b03861660009081526018602052604090205460ff1615612a70576001600160a01b03871660009081526016602052604090205460ff16156128cf576040805162461bcd60e51b815260206004820152600e60248201526d2cb7ba9030b9329039b734b832b960911b604482015290519081900360640190fd5b6011548511156129105760405162461bcd60e51b815260040180806020018281038252603a8152602001806138e1603a913960400191505060405180910390fd5b600854600160c81b900460ff161515600114801561294a57506001600160a01b03871660009081526014602052604090206004015460ff16155b156129f457600061295a8861147c565b905060028111156129f257612970816002612123565b86111561297c57600080fd5b6001600160a01b038816600090815260146020526040902060039081018054880190556129aa908290612123565b6001600160a01b038916600090815260146020526040902060030154106129f2576001600160a01b0388166000908152601460205260409020600401805460ff191660011790555b505b612a0785612a018961147c565b90613212565b612a28576001600160a01b0387166000908152601460205260408120600201555b604080518681526001600160a01b038916602082015281517f845540a7f3f9afb8980bffef1e5a59039c43bbd45de62cc2ce5def5830465f04929181900390910190a1612b6e565b6001600160a01b03871660009081526017602052604090205460ff16158015612ab257506001600160a01b03861660009081526017602052604090205460ff16155b15612b6e57600854600160c01b900460ff16151560011415612af557612ad8868661319a565b6001600160a01b0387166000908152601460205260409020600201555b612b0285612a018961147c565b612b23576001600160a01b0387166000908152601460205260408120600201555b604080516001600160a01b03808a1682528816602082015280820187905290517f38e8feed990acd7f5210170f614d354c7a0485670b9a787e9e00f8fca640d5749181900360600190a15b6000612b8a606461249a600d548961216590919063ffffffff16565b6001600160a01b03881660009081526018602052604090205490915060ff1615612bc057612bbe606461249a886001612165565b015b600854600090600160b81b900460ff1615156001148015612bfa57506001600160a01b03891660009081526017602052604090205460ff16155b8015612c1e57506001600160a01b03881660009081526018602052604090205460ff165b15612c9057600060018515151415612c5157600f548711612c40576001612c4e565b600f54612c4e908890612123565b90505b6001600160a01b038a16600090815260146020526040902060020154612c78908983613254565b9150828211612c88576000612c8c565b8282035b9150505b612c9c87838301613212565b9650612cab8930838501612f77565b50505b612cb9878787612f77565b505050505b505050565b60008184841115612d525760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612d17578181015183820152602001612cff565b50505050905090810190601f168015612d445780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b03821660009081526018602052604090205460ff1615158115151415612db85760405162461bcd60e51b815260040180806020018281038252603f81526020018061393f603f913960400191505060405180910390fd5b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6118b0828261330f565b6001600160a01b038216612e5b5760405162461bcd60e51b815260040180806020018281038252602181526020018061389b6021913960400191505060405180910390fd5b612e6782600083612cbe565b612ea481604051806060016040528060228152602001613690602291396001600160a01b0385166000908152602081905260409020549190612cc3565b6001600160a01b038316600090815260208190526040902055600254612eca9082613212565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60008183612f615760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612d17578181015183820152602001612cff565b506000838581612f6d57fe5b0495945050505050565b6001600160a01b038316612fbc5760405162461bcd60e51b81526004018080602001828103825260258152602001806138bc6025913960400191505060405180910390fd5b6001600160a01b0382166130015760405162461bcd60e51b815260040180806020018281038252602381526020018061366d6023913960400191505060405180910390fd5b61300c838383612cbe565b6130498160405180606001604052806026815260200161372a602691396001600160a01b0386166000908152602081905260409020549190612cc3565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461307890826120c2565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6130db816133ff565b601c546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156118b0573d6000803e3d6000fd5b6000613121826002612123565b9050600061312f8383613212565b90504761313b836133ff565b60006131474783613212565b905061315383826135ae565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15050505050565b6000806131a5611ee9565b6001600160a01b0385166000908152601460205260408120600201549192506131cd8661147c565b90508115806131da575080155b156131e757829350613209565b846131f457819350613209565b61320682820284870201828701612123565b93505b50505092915050565b600061211c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612cc3565b60008061325f611ee9565b905060008515806132705750606485105b1561327e5760009250613306565b8186600a0110156133015760646132ac6132a561329e8986036002612123565b8590612123565b8290612123565b915084600e5411156132f65784600e54038210156132ca57816132d0565b84600e54035b9150600082116132e15760006132ef565b6132ef8161249a8885612165565b93506132fb565b600093505b50613306565b600092505b50509392505050565b6001600160a01b03821661336a576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61337660008383612cbe565b60025461338390826120c2565b6002556001600160a01b0382166000908152602081905260409020546133a990826120c2565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061342e57fe5b6001600160a01b03928316602091820292909201810191909152600854604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561348257600080fd5b505afa158015613496573d6000803e3d6000fd5b505050506040513d60208110156134ac57600080fd5b50518151829060019081106134bd57fe5b6001600160a01b0392831660209182029290920101526008546134e391309116846121c2565b60085460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b83811015613569578181015183820152602001613551565b505050509050019650505050505050600060405180830381600087803b15801561359257600080fd5b505af11580156135a6573d6000803e3d6000fd5b505050505050565b6008546135c69030906001600160a01b0316846121c2565b600854601b546040805163f305d71960e01b81523060048201526024810186905260006044820181905260648201526001600160a01b0392831660848201524260a48201529051919092169163f305d71991849160c48082019260609290919082900301818588803b15801561363b57600080fd5b505af115801561364f573d6000803e3d6000fd5b50505050506040513d606081101561366657600080fd5b5050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e6365596f75722061646472657373206f7220726563697069656e74206164647265737320697320626c61636b6c69737465644f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365546f6b656e3a2054686520726f7574657220616c726561647920686173207468617420616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0546f6b656e3a205468652050616e63616b655377617020706169722063616e6e6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b6572506169727345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737353656c6c207472616e7366657220616d6f756e74206578636565647320746865206d617853656c6c5472616e73616374696f6e416d6f756e742e45524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373546f6b656e3a204175746f6d61746564206d61726b6574206d616b6572207061697220697320616c72656164792073657420746f20746861742076616c7565596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220cb253c46d04232e5edb16a7980e9a7347a75005e4ddcb81910ac075a9acb27b264736f6c63430007060033536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77546f6b656e3a204175746f6d61746564206d61726b6574206d616b6572207061697220697320616c72656164792073657420746f20746861742076616c75650000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000038d7ea4c68000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c8c33488fb4293e5ed2a8df0cc62129e86d9152d000000000000000000000000c8c33488fb4293e5ed2a8df0cc62129e86d9152d0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

Deployed Bytecode

0x6080604052600436106103855760003560e01c8063877f4de5116101d1578063c1a106c611610102578063dd62ed3e116100a0578063e6db992f1161006f578063e6db992f14610cac578063eb91d37e14610cc1578063f2fde38b14610cd6578063f8b3c23e14610d095761038c565b8063dd62ed3e14610c1d578063ddbbf68314610c58578063e2f4560514610c82578063e6c75f7114610c975761038c565b8063cb0e55a8116100dc578063cb0e55a814610b69578063d9c3c61014610bc9578063da473fcd14610bde578063dd46706414610bf35761038c565b8063c1a106c614610a9c578063c492f04614610ad5578063ca02d79114610b545761038c565b8063a457c2d71161016f578063b6c5232411610149578063b6c52324146109fd578063b99d483914610a12578063bf56b37114610a4c578063c024666814610a615761038c565b8063a457c2d714610958578063a9059cbb14610991578063b62496f5146109ca5761038c565b806395d89b41116101ab57806395d89b41146108de57806398118cb4146108f35780639a7a23d6146109085780639ec5691d146109435761038c565b8063877f4de5146108795780638da5cb5b1461088e5780638e989382146108a35761038c565b8063316601a7116102b65780635aa821a91161025457806370a082311161022357806370a08231146107cf578063715018a6146108025780637290b621146108175780637316c2e91461084d5761038c565b80635aa821a91461073f5780635d098b381461075457806365b8dbc0146107875780636b67c4df146107ba5761038c565b8063455a439611610290578063455a43961461068c57806349bd5a5e146106c75780634fbee193146106dc57806352f7c9881461070f5761038c565b8063316601a71461061457806331a0a88c1461063e57806339509351146106535761038c565b806318160ddd116103235780631fca803d116102fd5780631fca803d1461055e57806323b872dd14610591578063264d26dd146105d4578063313ce567146105e95761038c565b806318160ddd146105015780631c15aa11146105165780631cdd3be31461052b5761038c565b806306fdde031161035f57806306fdde03146103e4578063095ea7b31461046e57806313114a9d146104bb5780631694505e146104d05761038c565b806301339c211461039157806301f59d16146103a857806302259e9e146103cf5761038c565b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610d1e565b005b3480156103b457600080fd5b506103bd610d99565b60408051918252519081900360200190f35b3480156103db57600080fd5b506103bd610d9f565b3480156103f057600080fd5b506103f9610da5565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561043357818101518382015260200161041b565b50505050905090810190601f1680156104605780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561047a57600080fd5b506104a76004803603604081101561049157600080fd5b506001600160a01b038135169060200135610e3b565b604080519115158252519081900360200190f35b3480156104c757600080fd5b506103bd610e59565b3480156104dc57600080fd5b506104e5610e5f565b604080516001600160a01b039092168252519081900360200190f35b34801561050d57600080fd5b506103bd610e6e565b34801561052257600080fd5b506104a7610e74565b34801561053757600080fd5b506104a76004803603602081101561054e57600080fd5b50356001600160a01b0316610e84565b34801561056a57600080fd5b506104a76004803603602081101561058157600080fd5b50356001600160a01b0316610e99565b34801561059d57600080fd5b506104a7600480360360608110156105b457600080fd5b506001600160a01b03813581169160208101359091169060400135610eae565b3480156105e057600080fd5b506104e5610f35565b3480156105f557600080fd5b506105fe610f44565b6040805160ff9092168252519081900360200190f35b34801561062057600080fd5b506103a66004803603602081101561063757600080fd5b5035610f49565b34801561064a57600080fd5b506104a7610fa6565b34801561065f57600080fd5b506104a76004803603604081101561067657600080fd5b506001600160a01b038135169060200135610fb6565b34801561069857600080fd5b506103a6600480360360408110156106af57600080fd5b506001600160a01b0381351690602001351515611004565b3480156106d357600080fd5b506104e5611087565b3480156106e857600080fd5b506104a7600480360360208110156106ff57600080fd5b50356001600160a01b0316611096565b34801561071b57600080fd5b506103a66004803603604081101561073257600080fd5b50803590602001356110b4565b34801561074b57600080fd5b506103bd611171565b34801561076057600080fd5b506103a66004803603602081101561077757600080fd5b50356001600160a01b0316611177565b34801561079357600080fd5b506103a6600480360360208110156107aa57600080fd5b50356001600160a01b03166111f1565b3480156107c657600080fd5b506103bd611476565b3480156107db57600080fd5b506103bd600480360360208110156107f257600080fd5b50356001600160a01b031661147c565b34801561080e57600080fd5b506103a6611497565b34801561082357600080fd5b506103a66004803603606081101561083a57600080fd5b508035906020810135906040013561153c565b34801561085957600080fd5b506103a66004803603602081101561087057600080fd5b503515156115ab565b34801561088557600080fd5b506104a7611621565b34801561089a57600080fd5b506104e5611631565b3480156108af57600080fd5b506103a6600480360360408110156108c657600080fd5b506001600160a01b0381358116916020013516611640565b3480156108ea57600080fd5b506103f961179a565b3480156108ff57600080fd5b506103bd6117fb565b34801561091457600080fd5b506103a66004803603604081101561092b57600080fd5b506001600160a01b0381351690602001351515611801565b34801561094f57600080fd5b506104a76118b4565b34801561096457600080fd5b506104a76004803603604081101561097b57600080fd5b506001600160a01b0381351690602001356118c4565b34801561099d57600080fd5b506104a7600480360360408110156109b457600080fd5b506001600160a01b03813516906020013561192c565b3480156109d657600080fd5b506104a7600480360360208110156109ed57600080fd5b50356001600160a01b0316611940565b348015610a0957600080fd5b506103bd611955565b348015610a1e57600080fd5b506103a660048036036060811015610a3557600080fd5b50803590602081013515159060400135151561195b565b348015610a5857600080fd5b506103bd6119f6565b348015610a6d57600080fd5b506103a660048036036040811015610a8457600080fd5b506001600160a01b03813516906020013515156119fc565b348015610aa857600080fd5b506103a660048036036040811015610abf57600080fd5b506001600160a01b038135169060200135611ab4565b348015610ae157600080fd5b506103a660048036036040811015610af857600080fd5b810190602081018135640100000000811115610b1357600080fd5b820183602082011115610b2557600080fd5b80359060200191846020830284011164010000000083111715610b4757600080fd5b9193509150351515611b1c565b348015610b6057600080fd5b506104e5611c3c565b348015610b7557600080fd5b50610b9c60048036036020811015610b8c57600080fd5b50356001600160a01b0316611c4b565b60408051958652602086019490945284840192909252606084015215156080830152519081900360a00190f35b348015610bd557600080fd5b506103a6611c7d565b348015610bea57600080fd5b506103bd611d17565b348015610bff57600080fd5b506103a660048036036020811015610c1657600080fd5b5035611d1d565b348015610c2957600080fd5b506103bd60048036036040811015610c4057600080fd5b506001600160a01b0381358116916020013516611dbe565b348015610c6457600080fd5b506104e560048036036020811015610c7b57600080fd5b5035611de9565b348015610c8e57600080fd5b506103bd611e13565b348015610ca357600080fd5b506103bd611e19565b348015610cb857600080fd5b506103a6611e1f565b348015610ccd57600080fd5b506103bd611ee9565b348015610ce257600080fd5b506103a660048036036020811015610cf957600080fd5b50356001600160a01b0316611fcb565b348015610d1557600080fd5b506104a76120b2565b610d266121be565b6005546001600160a01b03908116911614610d76576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b6008805460ff60b01b1916600160b01b179055610d9442600a6120c2565b601355565b600e5481565b60115481565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e315780601f10610e0657610100808354040283529160200191610e31565b820191906000526020600020905b815481529060010190602001808311610e1457829003601f168201915b5050505050905090565b6000610e4f610e486121be565b84846121c2565b5060015b92915050565b600d5481565b6008546001600160a01b031681565b60025490565b600854600160b81b900460ff1681565b60156020526000908152604090205460ff1681565b60166020526000908152604090205460ff1681565b6000610ebb8484846122ae565b610f2b84610ec76121be565b610f26856040518060600160405280602881526020016137e7602891396001600160a01b038a16600090815260016020526040812090610f056121be565b6001600160a01b031681526020810191909152604001600020549190612cc3565b6121c2565b5060019392505050565b601b546001600160a01b031681565b600990565b610f516121be565b6005546001600160a01b03908116911614610fa1576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b600955565b600854600160c81b900460ff1681565b6000610e4f610fc36121be565b84610f268560016000610fd46121be565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906120c2565b61100c6121be565b6005546001600160a01b0390811691161461105c576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b601a546001600160a01b031681565b6001600160a01b031660009081526017602052604090205460ff1690565b6110bc6121be565b6005546001600160a01b0390811691161461110c576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b600b829055600c81905561112082826120c2565b600d819055600b54600c546040805192835260208301919091528181019290925290517f9fef908e44cc0f51b9e9f7fd26bc506a50448657da0dc10a9661e37bc1c4a3929181900360600190a15050565b60105481565b61117f6121be565b6005546001600160a01b039081169116146111cf576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b601c80546001600160a01b0319166001600160a01b0392909216919091179055565b6111f96121be565b6005546001600160a01b03908116911614611249576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b6008546001600160a01b03828116911614156112965760405162461bcd60e51b815260040180806020018281038252602a815260200180613750602a913960400191505060405180910390fd5b6008546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600880546001600160a01b0319166001600160a01b0383811691909117918290556040805163c45a015560e01b815290516000939092169163c45a015591600480820192602092909190829003018186803b15801561132f57600080fd5b505afa158015611343573d6000803e3d6000fd5b505050506040513d602081101561135957600080fd5b5051600854604080516315ab88c960e31b815290516001600160a01b039384169363c9c6539693309391169163ad5c464891600480820192602092909190829003018186803b1580156113ab57600080fd5b505afa1580156113bf573d6000803e3d6000fd5b505050506040513d60208110156113d557600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b15801561142757600080fd5b505af115801561143b573d6000803e3d6000fd5b505050506040513d602081101561145157600080fd5b5051601a80546001600160a01b0319166001600160a01b039092169190911790555050565b600c5481565b6001600160a01b031660009081526020819052604090205490565b61149f6121be565b6005546001600160a01b039081169116146114ef576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b600554600680546001600160a01b0319166001600160a01b0390921691821790556040516000919060008051602061382f833981519152908390a3600580546001600160a01b0319169055565b6115446121be565b6005546001600160a01b03908116911614611594576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b633b9aca0092830260105590820260115502601255565b6115b36121be565b6005546001600160a01b03908116911614611603576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b60088054911515600160a81b0260ff60a81b19909216919091179055565b600854600160a81b900460ff1681565b6005546001600160a01b031690565b6116486121be565b6005546001600160a01b03908116911614611698576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b6000826001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156116e757600080fd5b505afa1580156116fb573d6000803e3d6000fd5b505050506040513d602081101561171157600080fd5b50516040805163a9059cbb60e01b81526001600160a01b0385811660048301526024820184905291519293509085169163a9059cbb916044808201926020929091908290030181600087803b15801561176957600080fd5b505af115801561177d573d6000803e3d6000fd5b505050506040513d602081101561179357600080fd5b5050505050565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e315780601f10610e0657610100808354040283529160200191610e31565b600b5481565b6118096121be565b6005546001600160a01b03908116911614611859576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b601a546001600160a01b03838116911614156118a65760405162461bcd60e51b815260040180806020018281038252604c81526020018061384f604c913960600191505060405180910390fd5b6118b08282612d5a565b5050565b600854600160c01b900460ff1681565b6000610e4f6118d16121be565b84610f26856040518060600160405280602581526020016139a160259139600160006118fb6121be565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612cc3565b6000610e4f6119396121be565b84846122ae565b60186020526000908152604090205460ff1681565b60075490565b6119636121be565b6005546001600160a01b039081169116146119b3576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b60418311156119c157600080fd5b60088054911515600160c01b0260ff60c01b19931515600160b81b0260ff60b81b199093169290921792909216179055600e55565b60135481565b611a046121be565b6005546001600160a01b03908116911614611a54576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b6001600160a01b038216600081815260176020908152604091829020805460ff1916851515908117909155825190815291517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79281900390910190a25050565b611abc6121be565b6005546001600160a01b03908116911614611b0c576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b6118b08282633b9aca0002612e0c565b611b246121be565b6005546001600160a01b03908116911614611b74576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b60005b82811015611bc9578160176000868685818110611b9057fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff1916911515919091179055600101611b77565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051808060200183151581526020018281038252858582818152602001925060200280828437600083820152604051601f909101601f1916909201829003965090945050505050a1505050565b601c546001600160a01b031681565b601460205260009081526040902080546001820154600283015460038401546004909401549293919290919060ff1685565b6006546001600160a01b03163314611cc65760405162461bcd60e51b815260040180806020018281038252602381526020018061397e6023913960400191505060405180910390fd5b6006546005546040516001600160a01b03928316929091169060008051602061382f83398151915290600090a3600654600580546001600160a01b0319166001600160a01b03909216919091179055565b60095481565b611d256121be565b6005546001600160a01b03908116911614611d75576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b60058054600680546001600160a01b03199081166001600160a01b03841617909155169055428101600755604051600090819060008051602061382f833981519152908290a350565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60198181548110611df957600080fd5b6000918252602090912001546001600160a01b0316905081565b600a5481565b60125481565b611e276121be565b6005546001600160a01b03908116911614611e77576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b60005b601954811015611ee657600060198281548110611e9357fe5b60009182526020822001546001600160a01b03169150611eb28261147c565b9050611ebe8282612e16565b506001600160a01b03166000908152601660205260409020805460ff19169055600101611e7a565b50565b601a5460408051630240bc6b60e21b815290516000926001600160a01b031691839182918491630902f1ac91600480820192606092909190829003018186803b158015611f3557600080fd5b505afa158015611f49573d6000803e3d6000fd5b505050506040513d6060811015611f5f57600080fd5b5080516020909101516dffffffffffffffffffffffffffff918216935016905081811115611f8957905b80611f975760009350611fc5565b8181655af3107a4000021115611fc057611fb9655af3107a4000820283612123565b9350611fc5565b600093505b50505090565b611fd36121be565b6005546001600160a01b03908116911614612023576040805162461bcd60e51b8152602060048201819052602482015260008051602061380f833981519152604482015290519081900360640190fd5b6001600160a01b0381166120685760405162461bcd60e51b81526004018080602001828103825260268152602001806136e26026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692169060008051602061382f83398151915290600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600854600160b01b900460ff1681565b60008282018381101561211c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600061211c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612f12565b60008261217457506000610e53565b8282028284828161218157fe5b041461211c5760405162461bcd60e51b81526004018080602001828103825260218152602001806137c66021913960400191505060405180910390fd5b3390565b6001600160a01b0383166122075760405162461bcd60e51b815260040180806020018281038252602481526020018061391b6024913960400191505060405180910390fd5b6001600160a01b03821661224c5760405162461bcd60e51b81526004018080602001828103825260228152602001806137086022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166122f35760405162461bcd60e51b81526004018080602001828103825260258152602001806138bc6025913960400191505060405180910390fd5b6001600160a01b0382166123385760405162461bcd60e51b815260040180806020018281038252602381526020018061366d6023913960400191505060405180910390fd5b6001600160a01b03821660009081526015602052604090205460ff1615801561237a57506001600160a01b03831660009081526015602052604090205460ff16155b6123b55760405162461bcd60e51b81526004018080602001828103825260308152602001806136b26030913960400191505060405180910390fd5b806123cb576123c683836000612f77565b612cbe565b60006123d63061147c565b90506000600a54821015905060008180156123fb5750600854600160a01b900460ff16155b801561242057506001600160a01b03861660009081526018602052604090205460ff16155b8015612445575061242f611631565b6001600160a01b0316866001600160a01b031614155b801561246a5750612454611631565b6001600160a01b0316856001600160a01b031614155b1561255f576008805460ff60a01b1916600160a01b179055600d54600c546000916124a09161249a908790612165565b90612123565b90506124ab816130d2565b601c54604080518381526001600160a01b03909216602083015280517feafa9125fd4b0edd379b9ab67721e8f4eb26bc018c352092ccac54a89ac6fed79281900390910190a1600061250e600d5461249a600b548861216590919063ffffffff16565b905061251981613114565b6040805182815290517f61d10b3f17a77466a4241488e37c886fa1637f9863ae76dd5076a80a932bc4eb9181900360200190a150506008805460ff60a01b191690555060015b6008546001600160a01b03871660009081526017602052604090205460ff600160a01b9092048216159116806125ad57506001600160a01b03861660009081526017602052604090205460ff165b156125b6575060005b8015612cae576001600160a01b03871660009081526018602052604090205460ff161561284f57600854600160b01b900460ff1661263b576040805162461bcd60e51b815260206004820152601860248201527f546f6b656e2069736e2774206c61756e63686564207965740000000000000000604482015290519081900360640190fd5b60105485111561267c5760405162461bcd60e51b815260040180806020018281038252602881526020018061377a6028913960400191505060405180910390fd5b601254856126898861147c565b0111156126c75760405162461bcd60e51b81526004018080602001828103825260248152602001806137a26024913960400191505060405180910390fd5b601354421180159081906126f457506001600160a01b03871660009081526016602052604090205460ff16155b1561274557601980546001810182556000919091527f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c96950180546001600160a01b0319166001600160a01b0389161790555b600854600160a81b900460ff16801561277757506001600160a01b03871660009081526016602052604090205460ff16155b156127c857601980546001810182556000919091527f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c96950180546001600160a01b0319166001600160a01b0389161790555b600854600160c01b900460ff16151560011415612806576127e9878761319a565b6001600160a01b0388166000908152601460205260409020600201555b604080518781526001600160a01b038916602082015281517f1df6c66a1a6eb6b0b6a23930c6ec94664e676e5d72f819a20a11e6c54540fa42929181900390910190a150612b6e565b6001600160a01b03861660009081526018602052604090205460ff1615612a70576001600160a01b03871660009081526016602052604090205460ff16156128cf576040805162461bcd60e51b815260206004820152600e60248201526d2cb7ba9030b9329039b734b832b960911b604482015290519081900360640190fd5b6011548511156129105760405162461bcd60e51b815260040180806020018281038252603a8152602001806138e1603a913960400191505060405180910390fd5b600854600160c81b900460ff161515600114801561294a57506001600160a01b03871660009081526014602052604090206004015460ff16155b156129f457600061295a8861147c565b905060028111156129f257612970816002612123565b86111561297c57600080fd5b6001600160a01b038816600090815260146020526040902060039081018054880190556129aa908290612123565b6001600160a01b038916600090815260146020526040902060030154106129f2576001600160a01b0388166000908152601460205260409020600401805460ff191660011790555b505b612a0785612a018961147c565b90613212565b612a28576001600160a01b0387166000908152601460205260408120600201555b604080518681526001600160a01b038916602082015281517f845540a7f3f9afb8980bffef1e5a59039c43bbd45de62cc2ce5def5830465f04929181900390910190a1612b6e565b6001600160a01b03871660009081526017602052604090205460ff16158015612ab257506001600160a01b03861660009081526017602052604090205460ff16155b15612b6e57600854600160c01b900460ff16151560011415612af557612ad8868661319a565b6001600160a01b0387166000908152601460205260409020600201555b612b0285612a018961147c565b612b23576001600160a01b0387166000908152601460205260408120600201555b604080516001600160a01b03808a1682528816602082015280820187905290517f38e8feed990acd7f5210170f614d354c7a0485670b9a787e9e00f8fca640d5749181900360600190a15b6000612b8a606461249a600d548961216590919063ffffffff16565b6001600160a01b03881660009081526018602052604090205490915060ff1615612bc057612bbe606461249a886001612165565b015b600854600090600160b81b900460ff1615156001148015612bfa57506001600160a01b03891660009081526017602052604090205460ff16155b8015612c1e57506001600160a01b03881660009081526018602052604090205460ff165b15612c9057600060018515151415612c5157600f548711612c40576001612c4e565b600f54612c4e908890612123565b90505b6001600160a01b038a16600090815260146020526040902060020154612c78908983613254565b9150828211612c88576000612c8c565b8282035b9150505b612c9c87838301613212565b9650612cab8930838501612f77565b50505b612cb9878787612f77565b505050505b505050565b60008184841115612d525760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612d17578181015183820152602001612cff565b50505050905090810190601f168015612d445780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b03821660009081526018602052604090205460ff1615158115151415612db85760405162461bcd60e51b815260040180806020018281038252603f81526020018061393f603f913960400191505060405180910390fd5b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6118b0828261330f565b6001600160a01b038216612e5b5760405162461bcd60e51b815260040180806020018281038252602181526020018061389b6021913960400191505060405180910390fd5b612e6782600083612cbe565b612ea481604051806060016040528060228152602001613690602291396001600160a01b0385166000908152602081905260409020549190612cc3565b6001600160a01b038316600090815260208190526040902055600254612eca9082613212565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60008183612f615760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612d17578181015183820152602001612cff565b506000838581612f6d57fe5b0495945050505050565b6001600160a01b038316612fbc5760405162461bcd60e51b81526004018080602001828103825260258152602001806138bc6025913960400191505060405180910390fd5b6001600160a01b0382166130015760405162461bcd60e51b815260040180806020018281038252602381526020018061366d6023913960400191505060405180910390fd5b61300c838383612cbe565b6130498160405180606001604052806026815260200161372a602691396001600160a01b0386166000908152602081905260409020549190612cc3565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461307890826120c2565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6130db816133ff565b601c546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156118b0573d6000803e3d6000fd5b6000613121826002612123565b9050600061312f8383613212565b90504761313b836133ff565b60006131474783613212565b905061315383826135ae565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15050505050565b6000806131a5611ee9565b6001600160a01b0385166000908152601460205260408120600201549192506131cd8661147c565b90508115806131da575080155b156131e757829350613209565b846131f457819350613209565b61320682820284870201828701612123565b93505b50505092915050565b600061211c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612cc3565b60008061325f611ee9565b905060008515806132705750606485105b1561327e5760009250613306565b8186600a0110156133015760646132ac6132a561329e8986036002612123565b8590612123565b8290612123565b915084600e5411156132f65784600e54038210156132ca57816132d0565b84600e54035b9150600082116132e15760006132ef565b6132ef8161249a8885612165565b93506132fb565b600093505b50613306565b600092505b50509392505050565b6001600160a01b03821661336a576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61337660008383612cbe565b60025461338390826120c2565b6002556001600160a01b0382166000908152602081905260409020546133a990826120c2565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061342e57fe5b6001600160a01b03928316602091820292909201810191909152600854604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561348257600080fd5b505afa158015613496573d6000803e3d6000fd5b505050506040513d60208110156134ac57600080fd5b50518151829060019081106134bd57fe5b6001600160a01b0392831660209182029290920101526008546134e391309116846121c2565b60085460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b83811015613569578181015183820152602001613551565b505050509050019650505050505050600060405180830381600087803b15801561359257600080fd5b505af11580156135a6573d6000803e3d6000fd5b505050505050565b6008546135c69030906001600160a01b0316846121c2565b600854601b546040805163f305d71960e01b81523060048201526024810186905260006044820181905260648201526001600160a01b0392831660848201524260a48201529051919092169163f305d71991849160c48082019260609290919082900301818588803b15801561363b57600080fd5b505af115801561364f573d6000803e3d6000fd5b50505050506040513d606081101561366657600080fd5b5050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e6365596f75722061646472657373206f7220726563697069656e74206164647265737320697320626c61636b6c69737465644f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365546f6b656e3a2054686520726f7574657220616c726561647920686173207468617420616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0546f6b656e3a205468652050616e63616b655377617020706169722063616e6e6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b6572506169727345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737353656c6c207472616e7366657220616d6f756e74206578636565647320746865206d617853656c6c5472616e73616374696f6e416d6f756e742e45524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373546f6b656e3a204175746f6d61746564206d61726b6574206d616b6572207061697220697320616c72656164792073657420746f20746861742076616c7565596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220cb253c46d04232e5edb16a7980e9a7347a75005e4ddcb81910ac075a9acb27b264736f6c63430007060033

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

0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000038d7ea4c68000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c8c33488fb4293e5ed2a8df0cc62129e86d9152d000000000000000000000000c8c33488fb4293e5ed2a8df0cc62129e86d9152d0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

-----Decoded View---------------
Arg [0] : liqFee (uint256): 4
Arg [1] : marketFee (uint256): 8
Arg [2] : supply (uint256): 1000000000000000
Arg [3] : maxBuyPercent (uint256): 1
Arg [4] : maxSellPercent (uint256): 1
Arg [5] : maxWalletPercent (uint256): 2
Arg [6] : marketingWallet (address): 0xc8c33488fB4293e5eD2a8dF0cC62129e86d9152D
Arg [7] : liqudityWallet (address): 0xc8c33488fB4293e5eD2a8dF0cC62129e86d9152D
Arg [8] : uniswapV2RouterAddress (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [2] : 00000000000000000000000000000000000000000000000000038d7ea4c68000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 000000000000000000000000c8c33488fb4293e5ed2a8df0cc62129e86d9152d
Arg [7] : 000000000000000000000000c8c33488fb4293e5ed2a8df0cc62129e86d9152d
Arg [8] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d


Deployed Bytecode Sourcemap

32028:17275:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38020:117;;;;;;;;;;;;;:::i;:::-;;32638:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;32756:39;;;;;;;;;;;;;:::i;23282:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25447:169;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25447:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;32574:57;;;;;;;;;;;;;:::i;32115:41::-;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;32115:41:0;;;;;;;;;;;;;;24400:108;;;;;;;;;;;;;:::i;32249:34::-;;;;;;;;;;;;;:::i;32926:47::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32926:47:0;-1:-1:-1;;;;;32926:47:0;;:::i;32980:42::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32980:42:0;-1:-1:-1;;;;;32980:42:0;;:::i;26098:355::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26098:355:0;;;;;;;;;;;;;;;;;:::i;33227:32::-;;;;;;;;;;;;;:::i;24243:92::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37636:97;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37636:97:0;;:::i;32329:41::-;;;;;;;;;;;;;:::i;26862:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26862:218:0;;;;;;;;:::i;38608:134::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;38608:134:0;;;;;;;;;;:::i;33192:28::-;;;;;;;;;;;;;:::i;38471:125::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38471:125:0;-1:-1:-1;;;;;38471:125:0;;:::i;37313:311::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37313:311:0;;;;;;;:::i;32711:38::-;;;;;;;;;;;;;:::i;36713:116::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36713:116:0;-1:-1:-1;;;;;36713:116:0;;:::i;35702:499::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35702:499:0;-1:-1:-1;;;;;35702:499:0;;:::i;32540:27::-;;;;;;;;;;;;;:::i;24571:127::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24571:127:0;-1:-1:-1;;;;;24571:127:0;;:::i;12995:182::-;;;;;;;;;;;;;:::i;35165:251::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35165:251:0;;;;;;;;;;;;:::i;35056:99::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35056:99:0;;;;:::i;32193:21::-;;;;;;;;;;;;;:::i;12353:79::-;;;;;;;;;;;;;:::i;38754:207::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;38754:207:0;;;;;;;;;;:::i;23501:104::-;;;;;;;;;;;;;:::i;32506:27::-;;;;;;;;;;;;;:::i;37745:263::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37745:263:0;;;;;;;;;;:::i;32290:32::-;;;;;;;;;;;;;:::i;27583:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27583:269:0;;;;;;;;:::i;24911:175::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24911:175:0;;;;;;;;:::i;33089:58::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33089:58:0;-1:-1:-1;;;;;33089:58:0;;:::i;13588:89::-;;;;;;;;;;;;;:::i;35426:265::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35426:265:0;;;;;;;;;;;;;;;;:::i;32838:25::-;;;;;;;;;;;;;:::i;36209:184::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;36209:184:0;;;;;;;;;;:::i;37162:133::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37162:133:0;;;;;;;;:::i;36401:304::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36401:304:0;-1:-1:-1;36401:304:0;;;;:::i;33266:33::-;;;;;;;;;;;;;:::i;32875:44::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32875:44:0;-1:-1:-1;;;;;32875:44:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14055:231;;;;;;;;;;;;;:::i;32383:33::-;;;;;;;;;;;;;:::i;13753:226::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13753:226:0;;:::i;25149:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25149:151:0;;;;;;;;;;:::i;33154:25::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33154:25:0;;:::i;32423:75::-;;;;;;;;;;;;;:::i;32802:29::-;;;;;;;;;;;;;:::i;36841:309::-;;;;;;;;;;;;;:::i;43787:649::-;;;;;;;;;;;;;:::i;13332:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13332:244:0;-1:-1:-1;;;;;13332:244:0;;:::i;32221:21::-;;;;;;;;;;;;;:::i;38020:117::-;12575:12;:10;:12::i;:::-;12565:6;;-1:-1:-1;;;;;12565:6:0;;;:22;;;12557:67;;;;;-1:-1:-1;;;12557:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12557:67:0;;;;;;;;;;;;;;;38066:9:::1;:16:::0;;-1:-1:-1;;;;38066:16:0::1;-1:-1:-1::0;;;38066:16:0::1;::::0;;38106:23:::1;:15;38126:2;38106:19;:23::i;:::-;38093:10;:36:::0;38020:117::o;32638:26::-;;;;:::o;32756:39::-;;;;:::o;23282:100::-;23369:5;23362:12;;;;;;;;-1:-1:-1;;23362:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23336:13;;23362:12;;23369:5;;23362:12;;23369:5;23362:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23282:100;:::o;25447:169::-;25530:4;25547:39;25556:12;:10;:12::i;:::-;25570:7;25579:6;25547:8;:39::i;:::-;-1:-1:-1;25604:4:0;25447:169;;;;;:::o;32574:57::-;;;;:::o;32115:41::-;;;-1:-1:-1;;;;;32115:41:0;;:::o;24400:108::-;24488:12;;24400:108;:::o;32249:34::-;;;-1:-1:-1;;;32249:34:0;;;;;:::o;32926:47::-;;;;;;;;;;;;;;;:::o;32980:42::-;;;;;;;;;;;;;;;:::o;26098:355::-;26238:4;26255:36;26265:6;26273:9;26284:6;26255:9;:36::i;:::-;26302:121;26311:6;26319:12;:10;:12::i;:::-;26333:89;26371:6;26333:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26333:19:0;;;;;;:11;:19;;;;;;26353:12;:10;:12::i;:::-;-1:-1:-1;;;;;26333:33:0;;;;;;;;;;;;-1:-1:-1;26333:33:0;;;:89;:37;:89::i;:::-;26302:8;:121::i;:::-;-1:-1:-1;26441:4:0;26098:355;;;;;:::o;33227:32::-;;;-1:-1:-1;;;;;33227:32:0;;:::o;24243:92::-;24326:1;24243:92;:::o;37636:97::-;12575:12;:10;:12::i;:::-;12565:6;;-1:-1:-1;;;;;12565:6:0;;;:22;;;12557:67;;;;;-1:-1:-1;;;12557:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12557:67:0;;;;;;;;;;;;;;;37705:12:::1;:20:::0;37636:97::o;32329:41::-;;;-1:-1:-1;;;32329:41:0;;;;;:::o;26862:218::-;26950:4;26967:83;26976:12;:10;:12::i;:::-;26990:7;26999:50;27038:10;26999:11;:25;27011:12;:10;:12::i;:::-;-1:-1:-1;;;;;26999:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;26999:25:0;;;:34;;;;;;;;;;;:38;:50::i;38608:134::-;12575:12;:10;:12::i;:::-;12565:6;;-1:-1:-1;;;;;12565:6:0;;;:22;;;12557:67;;;;;-1:-1:-1;;;12557:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12557:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;38697:23:0;;;::::1;;::::0;;;:14:::1;:23;::::0;;;;:37;;-1:-1:-1;;38697:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38608:134::o;33192:28::-;;;-1:-1:-1;;;;;33192:28:0;;:::o;38471:125::-;-1:-1:-1;;;;;38560:28:0;38536:4;38560:28;;;:19;:28;;;;;;;;;38471:125::o;37313:311::-;12575:12;:10;:12::i;:::-;12565:6;;-1:-1:-1;;;;;12565:6:0;;;:22;;;12557:67;;;;;-1:-1:-1;;;12557:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12557:67:0;;;;;;;;;;;;;;;37411:12:::1;:32:::0;;;37454:12:::1;:32:::0;;;37509:30:::1;37426:17:::0;37469;37509:16:::1;:30::i;:::-;37497:9;:42:::0;;;37576:12:::1;::::0;37590::::1;::::0;37565:49:::1;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;;;::::1;::::0;;;;;;;::::1;37313:311:::0;;:::o;32711:38::-;;;;:::o;36713:116::-;12575:12;:10;:12::i;:::-;12565:6;;-1:-1:-1;;;;;12565:6:0;;;:22;;;12557:67;;;;;-1:-1:-1;;;12557:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12557:67:0;;;;;;;;;;;;;;;36794:18:::1;:27:::0;;-1:-1:-1;;;;;;36794:27:0::1;-1:-1:-1::0;;;;;36794:27:0;;;::::1;::::0;;;::::1;::::0;;36713:116::o;35702:499::-;12575:12;:10;:12::i;:::-;12565:6;;-1:-1:-1;;;;;12565:6:0;;;:22;;;12557:67;;;;;-1:-1:-1;;;12557:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12557:67:0;;;;;;;;;;;;;;;35811:15:::1;::::0;-1:-1:-1;;;;;35789:38:0;;::::1;35811:15:::0;::::1;35789:38;;35781:93;;;;-1:-1:-1::0;;;35781:93:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35932:15;::::0;35890:59:::1;::::0;-1:-1:-1;;;;;35932:15:0;;::::1;::::0;35890:59;::::1;::::0;::::1;::::0;35932:15:::1;::::0;35890:59:::1;35960:15;:48:::0;;-1:-1:-1;;;;;;35960:48:0::1;-1:-1:-1::0;;;;;35960:48:0;;::::1;::::0;;;::::1;::::0;;;;36062:25:::1;::::0;;-1:-1:-1;;;36062:25:0;;;;-1:-1:-1;;36062:15:0;;::::1;::::0;:23:::1;::::0;:25:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;:15;:25;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;36062:25:0;36129:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;36129:22:0;;;;-1:-1:-1;;;;;36044:69:0;;::::1;::::0;::::1;::::0;36122:4:::1;::::0;36129:15;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;36062:25:::1;::::0;36129:22;;;;;;;;:15;:22;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;36129:22:0;36044:108:::1;::::0;;-1:-1:-1;;;;;;36044:108:0::1;::::0;;;;;;-1:-1:-1;;;;;36044:108:0;;::::1;;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;36129:22:::1;::::0;36044:108;;;;;;;-1:-1:-1;36044:108:0;;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;36044:108:0;36163:13:::1;:30:::0;;-1:-1:-1;;;;;;36163:30:0::1;-1:-1:-1::0;;;;;36163:30:0;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;35702:499:0:o;32540:27::-;;;;:::o;24571:127::-;-1:-1:-1;;;;;24672:18:0;24645:7;24672:18;;;;;;;;;;;;24571:127::o;12995:182::-;12575:12;:10;:12::i;:::-;12565:6;;-1:-1:-1;;;;;12565:6:0;;;:22;;;12557:67;;;;;-1:-1:-1;;;12557:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12557:67:0;;;;;;;;;;;;;;;13077:6:::1;::::0;13060:14:::1;:23:::0;;-1:-1:-1;;;;;;13060:23:0::1;-1:-1:-1::0;;;;;13077:6:0;;::::1;13060:23:::0;;::::1;::::0;;13099:40:::1;::::0;13077:6:::1;::::0;;-1:-1:-1;;;;;;;;;;;13099:40:0;13077:6;;13099:40:::1;13150:6;:19:::0;;-1:-1:-1;;;;;;13150:19:0::1;::::0;;12995:182::o;35165:251::-;12575:12;:10;:12::i;:::-;12565:6;;-1:-1:-1;;;;;12565:6:0;;;:22;;;12557:67;;;;;-1:-1:-1;;;12557:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12557:67:0;;;;;;;;;;;;;;;35303:5:::1;35293:16:::0;;::::1;35267:23;:42:::0;35346:17;;::::1;35319:24;:44:::0;35390:19:::1;35373:14;:36:::0;35165:251::o;35056:99::-;12575:12;:10;:12::i;:::-;12565:6;;-1:-1:-1;;;;;12565:6:0;;;:22;;;12557:67;;;;;-1:-1:-1;;;12557:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12557:67:0;;;;;;;;;;;;;;;35125:9:::1;:23:::0;;;::::1;;-1:-1:-1::0;;;35125:23:0::1;-1:-1:-1::0;;;;35125:23:0;;::::1;::::0;;;::::1;::::0;;35056:99::o;32193:21::-;;;-1:-1:-1;;;32193:21:0;;;;;:::o;12353:79::-;12418:6;;-1:-1:-1;;;;;12418:6:0;12353:79;:::o;38754:207::-;12575:12;:10;:12::i;:::-;12565:6;;-1:-1:-1;;;;;12565:6:0;;;:22;;;12557:67;;;;;-1:-1:-1;;;12557:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12557:67:0;;;;;;;;;;;;;;;38846:15:::1;38871:5;-1:-1:-1::0;;;;;38864:23:0::1;;38896:4;38864:38;;;;;;;;;;;;;-1:-1:-1::0;;;;;38864:38:0::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;38864:38:0;38913:40:::1;::::0;;-1:-1:-1;;;38913:40:0;;-1:-1:-1;;;;;38913:40:0;;::::1;;::::0;::::1;::::0;;;;;;;;;38864:38;;-1:-1:-1;38913:22:0;;::::1;::::0;::::1;::::0;:40;;;;;38864:38:::1;::::0;38913:40;;;;;;;;-1:-1:-1;38913:22:0;:40;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;;;;38754:207:0:o;23501:104::-;23590:7;23583:14;;;;;;;;-1:-1:-1;;23583:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23557:13;;23583:14;;23590:7;;23583:14;;23590:7;23583:14;;;;;;;;;;;;;;;;;;;;;;;;32506:27;;;;:::o;37745:263::-;12575:12;:10;:12::i;:::-;12565:6;;-1:-1:-1;;;;;12565:6:0;;;:22;;;12557:67;;;;;-1:-1:-1;;;12557:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12557:67:0;;;;;;;;;;;;;;;37852:13:::1;::::0;-1:-1:-1;;;;;37844:21:0;;::::1;37852:13:::0;::::1;37844:21;;37836:110;;;;-1:-1:-1::0;;;37836:110:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37959:41;37988:4;37994:5;37959:28;:41::i;:::-;37745:263:::0;;:::o;32290:32::-;;;-1:-1:-1;;;32290:32:0;;;;;:::o;27583:269::-;27676:4;27693:129;27702:12;:10;:12::i;:::-;27716:7;27725:96;27764:15;27725:96;;;;;;;;;;;;;;;;;:11;:25;27737:12;:10;:12::i;:::-;-1:-1:-1;;;;;27725:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;27725:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;24911:175::-;24997:4;25014:42;25024:12;:10;:12::i;:::-;25038:9;25049:6;25014:9;:42::i;33089:58::-;;;;;;;;;;;;;;;:::o;13588:89::-;13660:9;;13588:89;:::o;35426:265::-;12575:12;:10;:12::i;:::-;12565:6;;-1:-1:-1;;;;;12565:6:0;;;:22;;;12557:67;;;;;-1:-1:-1;;;12557:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12557:67:0;;;;;;;;;;;;;;;35570:2:::1;35559:7;:13;;35551:22;;;::::0;::::1;;35583:15;:35:::0;;35628:30;::::1;;-1:-1:-1::0;;;35628:30:0::1;-1:-1:-1::0;;;;35583:35:0;::::1;;-1:-1:-1::0;;;35583:35:0::1;-1:-1:-1::0;;;;35583:35:0;;::::1;::::0;;;::::1;35628:30:::0;;;::::1;;::::0;;35668:6:::1;:16:::0;35426:265::o;32838:25::-;;;;:::o;36209:184::-;12575:12;:10;:12::i;:::-;12565:6;;-1:-1:-1;;;;;12565:6:0;;;:22;;;12557:67;;;;;-1:-1:-1;;;12557:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12557:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;36294:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;36294:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;36351:34;;;;;;;::::1;::::0;;;;;;;;::::1;36209:184:::0;;:::o;37162:133::-;12575:12;:10;:12::i;:::-;12565:6;;-1:-1:-1;;;;;12565:6:0;;;:22;;;12557:67;;;;;-1:-1:-1;;;12557:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12557:67:0;;;;;;;;;;;;;;;37243:44:::1;37259:7;37268:6;37278:7;37268:18;37243:15;:44::i;36401:304::-:0;12575:12;:10;:12::i;:::-;12565:6;;-1:-1:-1;;;;;12565:6:0;;;:22;;;12557:67;;;;;-1:-1:-1;;;12557:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12557:67:0;;;;;;;;;;;;;;;36518:9:::1;36514:115;36533:19:::0;;::::1;36514:115;;;36609:8;36574:19;:32;36594:8;;36603:1;36594:11;;;;;;;;::::0;;::::1;::::0;;;::::1;;-1:-1:-1::0;;;;;36594:11:0::1;36574:32:::0;;-1:-1:-1;36574:32:0;::::1;::::0;;;;;;-1:-1:-1;36574:32:0;:43;;-1:-1:-1;;36574:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;36554:3:0::1;36514:115;;;;36646:51;36678:8;;36688;36646:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;-1:-1:-1::0;;36646:51:0::1;::::0;;::::1;::::0;;::::1;::::0;-1:-1:-1;36646:51:0;;-1:-1:-1;;;;;36646:51:0::1;36401:304:::0;;;:::o;33266:33::-;;;-1:-1:-1;;;;;33266:33:0;;:::o;32875:44::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14055:231::-;14116:14;;-1:-1:-1;;;;;14116:14:0;14134:10;14116:28;14108:76;;;;-1:-1:-1;;;14108:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14229:14;;14221:6;;14200:44;;-1:-1:-1;;;;;14229:14:0;;;;14221:6;;;;-1:-1:-1;;;;;;;;;;;14200:44:0;14229:14;;14200:44;14264:14;;14255:6;:23;;-1:-1:-1;;;;;;14255:23:0;-1:-1:-1;;;;;14264:14:0;;;14255:23;;;;;;14055:231::o;32383:33::-;;;;:::o;13753:226::-;12575:12;:10;:12::i;:::-;12565:6;;-1:-1:-1;;;;;12565:6:0;;;:22;;;12557:67;;;;;-1:-1:-1;;;12557:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12557:67:0;;;;;;;;;;;;;;;13834:6:::1;::::0;;13817:14:::1;:23:::0;;-1:-1:-1;;;;;;13817:23:0;;::::1;-1:-1:-1::0;;;;;13834:6:0;::::1;13817:23;::::0;;;13851:19:::1;::::0;;13893:15:::1;:22:::0;::::1;13881:9;:34:::0;13931:40:::1;::::0;13834:6:::1;::::0;;;-1:-1:-1;;;;;;;;;;;13931:40:0;13834:6;;13931:40:::1;13753:226:::0;:::o;25149:151::-;-1:-1:-1;;;;;25265:18:0;;;25238:7;25265:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;25149:151::o;33154:25::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33154:25:0;;-1:-1:-1;33154:25:0;:::o;32423:75::-;;;;:::o;32802:29::-;;;;:::o;36841:309::-;12575:12;:10;:12::i;:::-;12565:6;;-1:-1:-1;;;;;12565:6:0;;;:22;;;12557:67;;;;;-1:-1:-1;;;12557:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12557:67:0;;;;;;;;;;;;;;;36906:9:::1;36902:241;36925:8;:15:::0;36921:19;::::1;36902:241;;;36961:14;36978:8;36987:1;36978:11;;;;;;;;;::::0;;;::::1;::::0;;::::1;::::0;-1:-1:-1;;;;;36978:11:0::1;::::0;-1:-1:-1;37022:17:0::1;36978:11:::0;37022:9:::1;:17::i;:::-;37004:35;;37054:37;37074:6;37083:7;37054:11;:37::i;:::-;-1:-1:-1::0;;;;;;37106:17:0::1;37126:5;37106:17:::0;;;:9:::1;:17;::::0;;;;:25;;-1:-1:-1;;37106:25:0::1;::::0;;;36942:3:::1;36902:241;;;;36841:309::o:0;43787:649::-;43964:13;;44050:18;;;-1:-1:-1;;;44050:18:0;;;;43835:20;;-1:-1:-1;;;;;43964:13:0;;43835:20;;;;43964:13;;44050:16;;:18;;;;;;;;;;;;;;;43964:13;44050:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44050:18:0;;;;;;;44033:35;;;;;-1:-1:-1;44033:35:0;;-1:-1:-1;44081:12:0;;;44078:122;;;44157:3;44078:122;44213:8;44210:220;;44252:1;44237:16;;44210:220;;;44299:6;44274:3;44280:15;44274:21;44273:32;44270:160;;;44336:35;44343:15;44337:21;;44364:6;44336:27;:35::i;:::-;44321:50;;44270:160;;;44417:1;44402:16;;44270:160;43787:649;;;;:::o;13332:244::-;12575:12;:10;:12::i;:::-;12565:6;;-1:-1:-1;;;;;12565:6:0;;;:22;;;12557:67;;;;;-1:-1:-1;;;12557:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12557:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;13421:22:0;::::1;13413:73;;;;-1:-1:-1::0;;;13413:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13523:6;::::0;13502:38:::1;::::0;-1:-1:-1;;;;;13502:38:0;;::::1;::::0;13523:6:::1;::::0;-1:-1:-1;;;;;;;;;;;13502:38:0;13523:6:::1;::::0;13502:38:::1;13551:6;:17:::0;;-1:-1:-1;;;;;;13551:17:0::1;-1:-1:-1::0;;;;;13551:17:0;;;::::1;::::0;;;::::1;::::0;;13332:244::o;32221:21::-;;;-1:-1:-1;;;32221:21:0;;;;;:::o;14575:181::-;14633:7;14665:5;;;14689:6;;;;14681:46;;;;;-1:-1:-1;;;14681:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;14747:1;14575:181;-1:-1:-1;;;14575:181:0:o;16876:132::-;16934:7;16961:39;16965:1;16968;16961:39;;;;;;;;;;;;;;;;;:3;:39::i;15929:471::-;15987:7;16232:6;16228:47;;-1:-1:-1;16262:1:0;16255:8;;16228:47;16299:5;;;16303:1;16299;:5;:1;16323:5;;;;;:10;16315:56;;;;-1:-1:-1;;;16315:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2776:98;2856:10;2776:98;:::o;30887:380::-;-1:-1:-1;;;;;31023:19:0;;31015:68;;;;-1:-1:-1;;;31015:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31102:21:0;;31094:68;;;;-1:-1:-1;;;31094:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31175:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;31227:32;;;;;;;;;;;;;;;;;30887:380;;;:::o;38973:4802::-;-1:-1:-1;;;;;39071:18:0;;39063:68;;;;-1:-1:-1;;;39063:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39150:16:0;;39142:64;;;;-1:-1:-1;;;39142:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39226:18:0;;;;;;:14;:18;;;;;;;;39225:19;:44;;;;-1:-1:-1;;;;;;39249:20:0;;;;;;:14;:20;;;;;;;;39248:21;39225:44;39217:105;;;;-1:-1:-1;;;39217:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39346:11;39343:92;;39374:28;39390:4;39396:2;39400:1;39374:15;:28::i;:::-;39417:7;;39343:92;39449:28;39480:24;39498:4;39480:9;:24::i;:::-;39449:55;;39517:12;39556:18;;39532:20;:42;;39517:57;;39585:12;39614:7;:33;;;;-1:-1:-1;39639:8:0;;-1:-1:-1;;;39639:8:0;;;;39638:9;39614:33;:82;;;;-1:-1:-1;;;;;;39665:31:0;;;;;;:25;:31;;;;;;;;39664:32;39614:82;:114;;;;;39721:7;:5;:7::i;:::-;-1:-1:-1;;;;;39713:15:0;:4;-1:-1:-1;;;;;39713:15:0;;;39614:114;:144;;;;;39751:7;:5;:7::i;:::-;-1:-1:-1;;;;;39745:13:0;:2;-1:-1:-1;;;;;39745:13:0;;;39614:144;39610:705;;;39785:8;:15;;-1:-1:-1;;;;39785:15:0;-1:-1:-1;;;39785:15:0;;;39898:9;;39880:12;;39785:15;;39855:53;;:38;;:20;;:24;:38::i;:::-;:42;;:53::i;:::-;39829:79;;39923:45;39952:15;39923:28;:45::i;:::-;40027:18;;39988:58;;;;;;-1:-1:-1;;;;;40027:18:0;;;39988:58;;;;;;;;;;;;;;;;40075:18;40096:53;40139:9;;40096:38;40121:12;;40096:20;:24;;:38;;;;:::i;:53::-;40075:74;;40164:26;40179:10;40164:14;:26::i;:::-;40210:31;;;;;;;;;;;;;;;;;-1:-1:-1;;40258:8:0;:16;;-1:-1:-1;;;;40258:16:0;;;-1:-1:-1;40258:16:0;39610:705;40345:8;;-1:-1:-1;;;;;40454:25:0;;40329:12;40454:25;;;:19;:25;;;;;;40345:8;-1:-1:-1;;;40345:8:0;;;;;40344:9;;40454:25;;:52;;-1:-1:-1;;;;;;40483:23:0;;;;;;:19;:23;;;;;;;;40454:52;40451:99;;;-1:-1:-1;40533:5:0;40451:99;40565:7;40562:3160;;;-1:-1:-1;;;;;40592:31:0;;;;;;:25;:31;;;;;;;;40589:2278;;;40647:9;;-1:-1:-1;;;40647:9:0;;;;40639:46;;;;;-1:-1:-1;;;40639:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;40736:23;;40726:6;:33;;40700:135;;;;-1:-1:-1;;;40700:135:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40916:14;;40906:6;40890:13;40900:2;40890:9;:13::i;:::-;:22;:40;;40864:138;;;;-1:-1:-1;;;40864:138:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41066:10;;41047:15;:29;;;;;;41095:26;;-1:-1:-1;;;;;;41108:13:0;;;;;;:9;:13;;;;;;;;41107:14;41095:26;41091:62;;;41136:8;:17;;;;;;;-1:-1:-1;41136:17:0;;;;;;;;-1:-1:-1;;;;;;41136:17:0;-1:-1:-1;;;;;41136:17:0;;;;;41091:62;41185:9;;-1:-1:-1;;;41185:9:0;;;;:27;;;;-1:-1:-1;;;;;;41199:13:0;;;;;;:9;:13;;;;;;;;41198:14;41185:27;41182:62;;;41227:8;:17;;;;;;;-1:-1:-1;41227:17:0;;;;;;;;-1:-1:-1;;;;;;41227:17:0;-1:-1:-1;;;;;41227:17:0;;;;;41182:62;41276:13;;-1:-1:-1;;;41276:13:0;;;;:21;;41293:4;41276:21;41273:119;;;41344:32;41365:2;41369:6;41344:20;:32::i;:::-;-1:-1:-1;;;;;41317:12:0;;;;;;:8;:12;;;;;:24;;:59;41273:119;41425:18;;;;;;-1:-1:-1;;;;;41425:18:0;;;;;;;;;;;;;;;;;;;40589:2278;;;;-1:-1:-1;;;;;41481:29:0;;;;;;:25;:29;;;;;;;;41478:1389;;;-1:-1:-1;;;;;41539:15:0;;;;;;:9;:15;;;;;;;;41538:16;41530:43;;;;;-1:-1:-1;;;41530:43:0;;;;;;;;;;;;-1:-1:-1;;;41530:43:0;;;;;;;;;;;;;;;41610:24;;41600:6;:34;;41592:105;;;;-1:-1:-1;;;41592:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41721:21;;-1:-1:-1;;;41721:21:0;;;;:29;;41746:4;41721:29;:74;;;;-1:-1:-1;;;;;;41754:14:0;;;;;;:8;:14;;;;;:32;;;;;:41;41721:74;41718:492;;;41819:11;41833:15;41843:4;41833:9;:15::i;:::-;41819:29;;41880:1;41874:3;:7;41871:320;;;41927:10;:3;41935:1;41927:7;:10::i;:::-;41917:6;:20;;41909:29;;;;;;-1:-1:-1;;;;;41965:14:0;;;;;;:8;:14;;;;;:25;;;;:35;;;;;;42059:10;;:3;;:7;:10::i;:::-;-1:-1:-1;;;;;42030:14:0;;;;;;:8;:14;;;;;:25;;;:39;42027:141;;-1:-1:-1;;;;;42101:14:0;;;;;;:8;:14;;;;;:32;;:39;;-1:-1:-1;;42101:39:0;42136:4;42101:39;;;42027:141;41718:492;;42249:27;42269:6;42249:15;42259:4;42249:9;:15::i;:::-;:19;;:27::i;:::-;42246:109;;-1:-1:-1;;;;;42305:14:0;;42334:1;42305:14;;;:8;:14;;;;;:26;;:30;42246:109;42374:21;;;;;;-1:-1:-1;;;;;42374:21:0;;;;;;;;;;;;;;;;;;;41478:1389;;;-1:-1:-1;;;;;42435:25:0;;;;;;:19;:25;;;;;;;;42434:26;:54;;;;-1:-1:-1;;;;;;42465:23:0;;;;;;:19;:23;;;;;;;;42464:24;42434:54;42430:437;;;42525:13;;-1:-1:-1;;;42525:13:0;;;;:21;;42542:4;42525:21;42522:119;;;42593:32;42614:2;42618:6;42593:20;:32::i;:::-;-1:-1:-1;;;;;42566:12:0;;;;;;:8;:12;;;;;:24;;:59;42522:119;42676:27;42696:6;42676:15;42686:4;42676:9;:15::i;:27::-;42673:109;;-1:-1:-1;;;;;42732:14:0;;42761:1;42732:14;;;:8;:14;;;;;:26;;:30;42673:109;42819:32;;;-1:-1:-1;;;;;42819:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;42430:437;42892:12;42907:30;42933:3;42907:21;42918:9;;42907:6;:10;;:21;;;;:::i;:30::-;-1:-1:-1;;;;;42952:29:0;;;;;;:25;:29;;;;;;42892:45;;-1:-1:-1;42952:29:0;;42949:92;;;43006:22;43024:3;43006:13;:6;43017:1;43006:10;:13::i;:22::-;42998:30;42949:92;43101:15;;43063:23;;-1:-1:-1;;;43101:15:0;;;;:23;;43120:4;43101:23;:53;;;;-1:-1:-1;;;;;;43129:25:0;;;;;;:19;:25;;;;;;;;43128:26;43101:53;:86;;;;-1:-1:-1;;;;;;43158:29:0;;;;;;:25;:29;;;;;;;;43101:86;43098:470;;;43204:9;43243:4;43232:15;;;;43229:151;;;43295:17;;43272:20;:40;:90;;43361:1;43272:90;;;43340:17;;43315:43;;:20;;:24;:43::i;:::-;43268:94;;43229:151;-1:-1:-1;;;;;43432:14:0;;;;;;:8;:14;;;;;:26;;;43413:57;;43460:6;43468:1;43413:18;:57::i;:::-;43395:75;;43522:4;43504:15;:22;:51;;43554:1;43504:51;;;43547:4;43529:15;:22;43504:51;43486:69;;43098:470;;43599:34;:6;43610:22;;;43599:10;:34::i;:::-;43590:43;;43650:60;43666:4;43680;43694:15;43687:4;:22;43650:15;:60::i;:::-;40562:3160;;;43734:33;43750:4;43756:2;43760:6;43734:15;:33::i;:::-;38973:4802;;;;;;;;:::o;15478:192::-;15564:7;15600:12;15592:6;;;;15584:29;;;;-1:-1:-1;;;15584:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;15636:5:0;;;15478:192::o;38149:313::-;-1:-1:-1;;;;;38240:31:0;;;;;;:25;:31;;;;;;;;:40;;;;;;;38232:116;;;;-1:-1:-1;;;38232:116:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38359:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;38359:39:0;;;;;;;;;;38414:40;;38359:39;;:31;38414:40;;;38149:313;;:::o;30341:110::-;30421:22;30427:7;30436:6;30421:5;:22::i;29911:418::-;-1:-1:-1;;;;;29995:21:0;;29987:67;;;;-1:-1:-1;;;29987:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30067:49;30088:7;30105:1;30109:6;30067:20;:49::i;:::-;30150:68;30173:6;30150:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30150:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;30129:18:0;;:9;:18;;;;;;;;;;:89;30244:12;;:24;;30261:6;30244:16;:24::i;:::-;30229:12;:39;30284:37;;;;;;;;30310:1;;-1:-1:-1;;;;;30284:37:0;;;;;;;;;;;;29911:418;;:::o;17504:278::-;17590:7;17625:12;17618:5;17610:28;;;;-1:-1:-1;;;17610:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17649:9;17665:1;17661;:5;;;;;;;17504:278;-1:-1:-1;;;;;17504:278:0:o;28342:571::-;-1:-1:-1;;;;;28482:20:0;;28474:70;;;;-1:-1:-1;;;28474:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28563:23:0;;28555:71;;;;-1:-1:-1;;;28555:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28637:47;28658:6;28666:9;28677:6;28637:20;:47::i;:::-;28717:71;28739:6;28717:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28717:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;28697:17:0;;;:9;:17;;;;;;;;;;;:91;;;;28822:20;;;;;;;:32;;28847:6;28822:24;:32::i;:::-;-1:-1:-1;;;;;28799:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;28870:35;;;;;;;28799:20;;28870:35;;;;;;;;;;;;;28342:571;;;:::o;45894:178::-;45968:24;45985:6;45968:16;:24::i;:::-;46011:18;;46003:59;;-1:-1:-1;;;;;46011:18:0;;;;46040:21;46003:59;;;;;46011:18;46003:59;46011:18;46003:59;46040:21;46011:18;46003:59;;;;;;;;;;;;;;;;;;;46080:922;46189:12;46204:13;:6;46215:1;46204:10;:13::i;:::-;46189:28;-1:-1:-1;46228:17:0;46248:16;:6;46189:28;46248:10;:16::i;:::-;46228:36;-1:-1:-1;46567:21:0;46633:22;46650:4;46633:16;:22::i;:::-;46786:18;46807:41;:21;46833:14;46807:25;:41::i;:::-;46786:62;;46898:35;46911:9;46922:10;46898:12;:35::i;:::-;46951:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46080:922;;;;;:::o;45346:540::-;45435:13;45460:20;45483:17;:15;:17::i;:::-;-1:-1:-1;;;;;45524:15:0;;45511:10;45524:15;;;:8;:15;;;;;:27;;;45460:40;;-1:-1:-1;45585:16:0;45533:5;45585:9;:16::i;:::-;45562:39;-1:-1:-1;45615:7:0;;;:28;;-1:-1:-1;45626:17:0;;45615:28;45612:267;;;45667:12;45659:20;;45612:267;;;45699:17;45696:183;;45740:2;45732:10;;45696:183;;;45781:86;45783:17;;;45805:27;;;45782:51;45839:27;;;45781:57;:86::i;:::-;45773:94;;45696:183;45346:540;;;;;;;:::o;15039:136::-;15097:7;15124:43;15128:1;15131;15124:43;;;;;;;;;;;;;;;;;:3;:43::i;44444:890::-;44567:17;44596:20;44619:17;:15;:17::i;:::-;44596:40;-1:-1:-1;44647:21:0;44682:16;;;:39;;;44718:3;44702:13;:19;44682:39;44679:648;;;44749:1;44737:13;;44679:648;;;44799:12;44780:11;44794:2;44780:16;:31;44777:550;;;44839:3;44873:62;44880:53;44897:35;44898:26;;;44930:1;44897:32;:35::i;:::-;44880:12;;:16;:53::i;:::-;44873:1;;:5;:62::i;:::-;44857:78;;44962:19;44953:6;;:28;44950:322;;;45043:19;45034:6;;:28;45017:13;:45;;:92;;45096:13;45017:92;;;45074:19;45065:6;;:28;45017:92;45001:108;;45157:1;45141:13;:17;:63;;45203:1;45141:63;;;45161:39;45198:1;45161:32;:13;45179;45161:17;:32::i;:39::-;45129:75;;44950:322;;;45255:1;45243:13;;44950:322;44777:550;;;;45314:1;45302:13;;44777:550;44444:890;;;;;;;:::o;29200:378::-;-1:-1:-1;;;;;29284:21:0;;29276:65;;;;;-1:-1:-1;;;29276:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;29354:49;29383:1;29387:7;29396:6;29354:20;:49::i;:::-;29431:12;;:24;;29448:6;29431:16;:24::i;:::-;29416:12;:39;-1:-1:-1;;;;;29487:18:0;;:9;:18;;;;;;;;;;;:30;;29510:6;29487:22;:30::i;:::-;-1:-1:-1;;;;;29466:18:0;;:9;:18;;;;;;;;;;;:51;;;;29533:37;;;;;;;29466:18;;:9;;29533:37;;;;;;;;;;29200:378;;:::o;47010:595::-;47164:16;;;47178:1;47164:16;;;;;;;;47140:21;;47164:16;;;;;;;;;;-1:-1:-1;47164:16:0;47140:40;;47209:4;47191;47196:1;47191:7;;;;;;;;-1:-1:-1;;;;;47191:23:0;;;:7;;;;;;;;;;:23;;;;47235:15;;:22;;;-1:-1:-1;;;47235:22:0;;;;:15;;;;;:20;;:22;;;;;47191:7;;47235:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47235:22:0;47225:7;;:4;;47230:1;;47225:7;;;;;;-1:-1:-1;;;;;47225:32:0;;;:7;;;;;;;;;:32;47302:15;;47270:62;;47287:4;;47302:15;47320:11;47270:8;:62::i;:::-;47371:15;;:224;;-1:-1:-1;;;47371:224:0;;;;;;;;:15;:224;;;;;;47549:4;47371:224;;;;;;47569:15;47371:224;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47371:15:0;;;;:66;;47452:11;;47522:4;;47549;47569:15;47371:224;;;;;;;;;;;;;;;;:15;:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47010:595;;:::o;47613:536::-;47795:15;;47763:62;;47780:4;;-1:-1:-1;;;;;47795:15:0;47813:11;47763:8;:62::i;:::-;47868:15;;48080:17;;47868:271;;;-1:-1:-1;;;47868:271:0;;47940:4;47868:271;;;;;;;;;;:15;:271;;;;;;;;;;-1:-1:-1;;;;;48080:17:0;;;47868:271;;;;48113:15;47868:271;;;;;;:15;;;;;:31;;47907:9;;47868:271;;;;;;;;;;;;;;;47907:9;47868:15;:271;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;47613:536:0:o

Swarm Source

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