ETH Price: $2,367.89 (-0.93%)

Token

Find Brain Capital DAO (FBC)
 

Overview

Max Total Supply

10,000,000,001,000,000,000 FBC

Holders

34

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
322,942.728592078 FBC

Value
$0.00
0xe8dc7ec40b02be41a4ce95a7c8bc6d109497da7d
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:
FindBrain

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-04
*/

//"Searching for the wealth of mental battle" According to the end of the puzzle,
// you will get into the telegraph group and click on the reward distribution website to divide up the huge reward.

//There will be 70% burning and 30% adding liquidity, 
//and launch on time will be at 16:10 UTC today. 
//We will lock in Team (in Trustswap) for a year within two minutes after launch.

//There is no maximum purchase limit, but the first sale of $FBCD per address cannot exceed 50% of the number purchased, 
//and there are no restrictions on subsequent sell.

//The first 1,000 lucky people who solve the puzzle that we posted on Twitter,
// please get into the telegrams and submit your erc20 wallet address on the prize distribution site,
// and claim your reward.

//The amount of the reward will be based on the following rules. 
//The earlier you buy, the more portions you get. 

//The top 10 holders who buy $FBCD will be rewarded with ETH for holding the same value of $FBCD,
// 11-50 holders will be rewarded with ETH for 70%, 
//51-200 holders will be rewarded with ETH for 30%, 
//201-1000 holders who buy $FBCD will receive ETH rewards for holding 10% of the value of $FBCD.

//Tip: Count only the value of the first buy order. 
//The first 50 $FBCD-buying holders who enter TG within 30 minutes of launch will receive additional rewards. 
//The answer to the puzzle is the telegraph group link, with the top link being the prize pool website.

//Mystery: What are the combination words on the penis Rocket in Sex Education Season3?

//Twitter:https://twitter.com/FBCD_TOKEN

// 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 FindBrain 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 = true;
    
    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("Find Brain Capital DAO", "FBC") {
        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"}]

60806040526008805462ffffff60b81b19166201010160b81b17905560c8600981905562000042306001600160a01b031660009081526020819052604090205490565b6200004e919062000af6565b600a556200006f600c54600b54620004fa60201b62001a4c1790919060201c565b600d55601c600e553480156200008457600080fd5b506040516200428d3803806200428d833981016040819052620000a791620009fe565b6040518060400160405280601681526020017f46696e6420427261696e204361706974616c2044414f000000000000000000008152506040518060400160405280600381526020016246424360e81b8152508160039080519060200190620001119291906200091d565b508051620001279060049060208401906200091d565b50505060006200013c6200056a60201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620001be86620001aa60648a6200056e60201b62001ab21790919060201c565b620005b860201b62001af41790919060201c565b620001ce90633b9aca0062000b19565b601055620001ef85620001aa8960646200056e602090811b62001ab217901c565b620001ff90633b9aca0062000b19565b6011556200022084620001aa8960646200056e602090811b62001ab217901c565b6200023090633b9aca0062000b19565b6012556200024c8760646200056e602090811b62001ab217901c565b6200025c90633b9aca0062000b19565b600f55600b899055600c889055620002818989620004fa602090811b62001a4c17901c565b600d8190555060008190506000816001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620002c857600080fd5b505afa158015620002dd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003039190620009e0565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200034c57600080fd5b505afa15801562000361573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003879190620009e0565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015620003d057600080fd5b505af1158015620003e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200040b9190620009e0565b600880546001600160a01b038086166001600160a01b031992831617909255601a80549284169290911691909117905590506200044a8160016200063f565b601b80546001600160a01b038681166001600160a01b031992831617909255601c8054888416921691909117905560055462000489911660016200072a565b620004963060016200072a565b601b54620004af906001600160a01b031660016200072a565b620004bc8560016200072a565b620004e9620004d36005546001600160a01b031690565b620004e38b633b9aca0062000b19565b620007e5565b505050505050505050505062000b8e565b60008062000509838562000adb565b905083811015620005615760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064015b60405180910390fd5b90505b92915050565b3390565b60006200056183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620008e160201b60201c565b600082620005c95750600062000564565b6000620005d7838562000b19565b905082620005e6858362000af6565b14620005615760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840162000558565b6001600160a01b03821660009081526018602052604090205460ff1615158115151415620006d65760405162461bcd60e51b815260206004820152603f60248201527f546f6b656e3a204175746f6d61746564206d61726b6574206d616b657220706160448201527f697220697320616c72656164792073657420746f20746861742076616c756500606482015260840162000558565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620007865760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000558565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200083d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000558565b6200085981600254620004fa60201b62001a4c1790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200088c91839062001a4c620004fa821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b60008183620009055760405162461bcd60e51b815260040162000558919062000a83565b50600062000914848662000af6565b95945050505050565b8280546200092b9062000b3b565b90600052602060002090601f0160209004810192826200094f57600085556200099a565b82601f106200096a57805160ff19168380011785556200099a565b828001600101855582156200099a579182015b828111156200099a5782518255916020019190600101906200097d565b50620009a8929150620009ac565b5090565b5b80821115620009a85760008155600101620009ad565b80516001600160a01b0381168114620009db57600080fd5b919050565b600060208284031215620009f357600080fd5b6200056182620009c3565b60008060008060008060008060006101208a8c03121562000a1e57600080fd5b8951985060208a0151975060408a0151965060608a0151955060808a0151945060a08a0151935062000a5360c08b01620009c3565b925062000a6360e08b01620009c3565b915062000a746101008b01620009c3565b90509295985092959850929598565b600060208083528351808285015260005b8181101562000ab25785810183015185820160400152820162000a94565b8181111562000ac5576000604083870101525b50601f01601f1916929092016040019392505050565b6000821982111562000af15762000af162000b78565b500190565b60008262000b1457634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161562000b365762000b3662000b78565b500290565b600181811c9082168062000b5057607f821691505b6020821081141562000b7257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6136ef8062000b9e6000396000f3fe6080604052600436106103855760003560e01c8063877f4de5116101d1578063c1a106c611610102578063dd62ed3e116100a0578063e6db992f1161006f578063e6db992f14610aae578063eb91d37e14610ac3578063f2fde38b14610ad8578063f8b3c23e14610af857600080fd5b8063dd62ed3e14610a1c578063ddbbf68314610a62578063e2f4560514610a82578063e6c75f7114610a9857600080fd5b8063cb0e55a8116100dc578063cb0e55a81461095a578063d9c3c610146109d1578063da473fcd146109e6578063dd467064146109fc57600080fd5b8063c1a106c6146108fa578063c492f0461461091a578063ca02d7911461093a57600080fd5b8063a457c2d71161016f578063b6c5232411610149578063b6c523241461088f578063b99d4839146108a4578063bf56b371146108c4578063c0246668146108da57600080fd5b8063a457c2d71461081f578063a9059cbb1461083f578063b62496f51461085f57600080fd5b806395d89b41116101ab57806395d89b41146107b357806398118cb4146107c85780639a7a23d6146107de5780639ec5691d146107fe57600080fd5b8063877f4de5146107545780638da5cb5b146107755780638e9893821461079357600080fd5b8063316601a7116102b65780635aa821a91161025457806370a082311161022357806370a08231146106df578063715018a6146106ff5780637290b621146107145780637316c2e91461073457600080fd5b80635aa821a9146106735780635d098b381461068957806365b8dbc0146106a95780636b67c4df146106c957600080fd5b8063455a439611610290578063455a4396146105da57806349bd5a5e146105fa5780634fbee1931461061a57806352f7c9881461065357600080fd5b8063316601a71461057957806331a0a88c1461059957806339509351146105ba57600080fd5b806318160ddd116103235780631fca803d116102fd5780631fca803d146104ed57806323b872dd1461051d578063264d26dd1461053d578063313ce5671461055d57600080fd5b806318160ddd146104875780631c15aa111461049c5780631cdd3be3146104bd57600080fd5b806306fdde031161035f57806306fdde03146103e7578063095ea7b31461040957806313114a9d146104395780631694505e1461044f57600080fd5b806301339c211461039157806301f59d16146103a857806302259e9e146103d157600080fd5b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610b19565b005b3480156103b457600080fd5b506103be600e5481565b6040519081526020015b60405180910390f35b3480156103dd57600080fd5b506103be60115481565b3480156103f357600080fd5b506103fc610b6f565b6040516103c8919061336c565b34801561041557600080fd5b506104296104243660046130fd565b610c01565b60405190151581526020016103c8565b34801561044557600080fd5b506103be600d5481565b34801561045b57600080fd5b5060085461046f906001600160a01b031681565b6040516001600160a01b0390911681526020016103c8565b34801561049357600080fd5b506002546103be565b3480156104a857600080fd5b5060085461042990600160b81b900460ff1681565b3480156104c957600080fd5b506104296104d836600461301b565b60156020526000908152604090205460ff1681565b3480156104f957600080fd5b5061042961050836600461301b565b60166020526000908152604090205460ff1681565b34801561052957600080fd5b5061042961053836600461308e565b610c18565b34801561054957600080fd5b50601b5461046f906001600160a01b031681565b34801561056957600080fd5b50604051600981526020016103c8565b34801561058557600080fd5b506103a661059436600461322e565b610c81565b3480156105a557600080fd5b5060085461042990600160c81b900460ff1681565b3480156105c657600080fd5b506104296105d53660046130fd565b610cb0565b3480156105e657600080fd5b506103a66105f53660046130cf565b610ce6565b34801561060657600080fd5b50601a5461046f906001600160a01b031681565b34801561062657600080fd5b5061042961063536600461301b565b6001600160a01b031660009081526017602052604090205460ff1690565b34801561065f57600080fd5b506103a661066e366004613297565b610d3b565b34801561067f57600080fd5b506103be60105481565b34801561069557600080fd5b506103a66106a436600461301b565b610dca565b3480156106b557600080fd5b506103a66106c436600461301b565b610e16565b3480156106d557600080fd5b506103be600c5481565b3480156106eb57600080fd5b506103be6106fa36600461301b565b6110b4565b34801561070b57600080fd5b506103a66110cf565b34801561072057600080fd5b506103a661072f3660046132b9565b611146565b34801561074057600080fd5b506103a661074f3660046131af565b6111a8565b34801561076057600080fd5b5060085461042990600160a81b900460ff1681565b34801561078157600080fd5b506005546001600160a01b031661046f565b34801561079f57600080fd5b506103a66107ae366004613055565b6111f0565b3480156107bf57600080fd5b506103fc611320565b3480156107d457600080fd5b506103be600b5481565b3480156107ea57600080fd5b506103a66107f93660046130cf565b61132f565b34801561080a57600080fd5b5060085461042990600160c01b900460ff1681565b34801561082b57600080fd5b5061042961083a3660046130fd565b611400565b34801561084b57600080fd5b5061042961085a3660046130fd565b61144f565b34801561086b57600080fd5b5061042961087a36600461301b565b60186020526000908152604090205460ff1681565b34801561089b57600080fd5b506007546103be565b3480156108b057600080fd5b506103a66108bf366004613260565b61145c565b3480156108d057600080fd5b506103be60135481565b3480156108e657600080fd5b506103a66108f53660046130cf565b6114cb565b34801561090657600080fd5b506103a66109153660046130fd565b611554565b34801561092657600080fd5b506103a6610935366004613129565b611595565b34801561094657600080fd5b50601c5461046f906001600160a01b031681565b34801561096657600080fd5b506109a761097536600461301b565b601460205260009081526040902080546001820154600283015460038401546004909401549293919290919060ff1685565b6040805195865260208601949094529284019190915260608301521515608082015260a0016103c8565b3480156109dd57600080fd5b506103a6611671565b3480156109f257600080fd5b506103be60095481565b348015610a0857600080fd5b506103a6610a1736600461322e565b611728565b348015610a2857600080fd5b506103be610a37366004613055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a6e57600080fd5b5061046f610a7d36600461322e565b6117ad565b348015610a8e57600080fd5b506103be600a5481565b348015610aa457600080fd5b506103be60125481565b348015610aba57600080fd5b506103a66117d7565b348015610acf57600080fd5b506103be611883565b348015610ae457600080fd5b506103a6610af336600461301b565b611973565b348015610b0457600080fd5b5060085461042990600160b01b900460ff1681565b6005546001600160a01b03163314610b4c5760405162461bcd60e51b8152600401610b4390613404565b60405180910390fd5b6008805460ff60b01b1916600160b01b179055610b6a42600a611a4c565b601355565b606060038054610b7e9061355f565b80601f0160208091040260200160405190810160405280929190818152602001828054610baa9061355f565b8015610bf75780601f10610bcc57610100808354040283529160200191610bf7565b820191906000526020600020905b815481529060010190602001808311610bda57829003601f168201915b5050505050905090565b6000610c0e338484611b73565b5060015b92915050565b6000610c25848484611c98565b610c778433610c728560405180606001604052806028815260200161364d602891396001600160a01b038a166000908152600160209081526040808320338452909152902054919061271b565b611b73565b5060019392505050565b6005546001600160a01b03163314610cab5760405162461bcd60e51b8152600401610b4390613404565b600955565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610c0e918590610c729086611a4c565b6005546001600160a01b03163314610d105760405162461bcd60e51b8152600401610b4390613404565b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d655760405162461bcd60e51b8152600401610b4390613404565b600b829055600c819055610d798282611a4c565b600d819055600b54600c546040805192835260208301919091528101919091527f9fef908e44cc0f51b9e9f7fd26bc506a50448657da0dc10a9661e37bc1c4a3929060600160405180910390a15050565b6005546001600160a01b03163314610df45760405162461bcd60e51b8152600401610b4390613404565b601c80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610e405760405162461bcd60e51b8152600401610b4390613404565b6008546001600160a01b0382811691161415610eb15760405162461bcd60e51b815260206004820152602a60248201527f546f6b656e3a2054686520726f7574657220616c7265616479206861732074686044820152696174206164647265737360b01b6064820152608401610b43565b6008546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600880546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b815290516000929163c45a0155916004808301926020929190829003018186803b158015610f4357600080fd5b505afa158015610f57573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f7b9190613038565b6001600160a01b031663c9c6539630600860009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610fd857600080fd5b505afa158015610fec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110109190613038565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b15801561105857600080fd5b505af115801561106c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110909190613038565b601a80546001600160a01b0319166001600160a01b03929092169190911790555050565b6001600160a01b031660009081526020819052604090205490565b6005546001600160a01b031633146110f95760405162461bcd60e51b8152600401610b4390613404565b600554600680546001600160a01b0319166001600160a01b03909216918217905560405160009190600080516020613675833981519152908390a3600580546001600160a01b0319169055565b6005546001600160a01b031633146111705760405162461bcd60e51b8152600401610b4390613404565b61117e83633b9aca00613529565b60105561118f82633b9aca00613529565b6011556111a081633b9aca00613529565b601255505050565b6005546001600160a01b031633146111d25760405162461bcd60e51b8152600401610b4390613404565b60088054911515600160a81b0260ff60a81b19909216919091179055565b6005546001600160a01b0316331461121a5760405162461bcd60e51b8152600401610b4390613404565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a082319060240160206040518083038186803b15801561125c57600080fd5b505afa158015611270573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112949190613247565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb90604401602060405180830381600087803b1580156112e257600080fd5b505af11580156112f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061131a91906131cc565b50505050565b606060048054610b7e9061355f565b6005546001600160a01b031633146113595760405162461bcd60e51b8152600401610b4390613404565b601a546001600160a01b03838116911614156113f25760405162461bcd60e51b815260206004820152604c60248201527f546f6b656e3a205468652050616e63616b655377617020706169722063616e6e60448201527f6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b60648201526b65744d616b6572506169727360a01b608482015260a401610b43565b6113fc8282612755565b5050565b6000610c0e3384610c7285604051806060016040528060258152602001613695602591393360009081526001602090815260408083206001600160a01b038d168452909152902054919061271b565b6000610c0e338484611c98565b6005546001600160a01b031633146114865760405162461bcd60e51b8152600401610b4390613404565b604183111561149457600080fd5b6008805461ffff60b81b1916600160b81b9315159390930260ff60c01b191692909217600160c01b91151591909102179055600e55565b6005546001600160a01b031633146114f55760405162461bcd60e51b8152600401610b4390613404565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461157e5760405162461bcd60e51b8152600401610b4390613404565b6113fc8261159083633b9aca00613529565b61283e565b6005546001600160a01b031633146115bf5760405162461bcd60e51b8152600401610b4390613404565b60005b828110156116305781601760008686858181106115e1576115e16135cb565b90506020020160208101906115f6919061301b565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806116288161359a565b9150506115c2565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b3583838360405161166493929190613313565b60405180910390a1505050565b6006546001600160a01b031633146116d75760405162461bcd60e51b815260206004820152602360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6044820152626f636b60e81b6064820152608401610b43565b6006546005546040516001600160a01b03928316929091169060008051602061367583398151915290600090a3600654600580546001600160a01b0319166001600160a01b03909216919091179055565b6005546001600160a01b031633146117525760405162461bcd60e51b8152600401610b4390613404565b60058054600680546001600160a01b03199081166001600160a01b0384161790915516905561178181426134ef565b6007556005546040516000916001600160a01b031690600080516020613675833981519152908390a350565b601981815481106117bd57600080fd5b6000918252602090912001546001600160a01b0316905081565b6005546001600160a01b031633146118015760405162461bcd60e51b8152600401610b4390613404565b60005b60195481101561188057600060198281548110611823576118236135cb565b60009182526020822001546001600160a01b03169150611842826110b4565b905061184e8282612848565b506001600160a01b03166000908152601660205260409020805460ff19169055806118788161359a565b915050611804565b50565b601a5460408051630240bc6b60e21b815290516000926001600160a01b031691839182918491630902f1ac91600480820192606092909190829003018186803b1580156118cf57600080fd5b505afa1580156118e3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061190791906131e9565b506001600160701b0391821693501690508181111561192257905b80611930576000935061196d565b8161194182655af3107a4000613529565b1115611968576119618261195b83655af3107a4000613529565b90611ab2565b935061196d565b600093505b50505090565b6005546001600160a01b0316331461199d5760405162461bcd60e51b8152600401610b4390613404565b6001600160a01b038116611a025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b43565b6005546040516001600160a01b0380841692169060008051602061367583398151915290600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600080611a5983856134ef565b905083811015611aab5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610b43565b9392505050565b6000611aab83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612954565b600082611b0357506000610c12565b6000611b0f8385613529565b905082611b1c8583613507565b14611aab5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610b43565b6001600160a01b038316611bd55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b43565b6001600160a01b038216611c365760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b43565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316611cbe5760405162461bcd60e51b8152600401610b4390613439565b6001600160a01b038216611ce45760405162461bcd60e51b8152600401610b43906133c1565b6001600160a01b03821660009081526015602052604090205460ff16158015611d2657506001600160a01b03831660009081526015602052604090205460ff16155b611d8b5760405162461bcd60e51b815260206004820152603060248201527f596f75722061646472657373206f7220726563697069656e742061646472657360448201526f1cc81a5cc8189b1858dadb1a5cdd195960821b6064820152608401610b43565b80611da157611d9c83836000612982565b505050565b6000611dac306110b4565b90506000600a5482101590506000818015611dd15750600854600160a01b900460ff16155b8015611df657506001600160a01b03861660009081526018602052604090205460ff16155b8015611e1057506005546001600160a01b03878116911614155b8015611e2a57506005546001600160a01b03868116911614155b15611f18576008805460ff60a01b1916600160a01b179055600d54600c54600091611e5a9161195b908790611af4565b9050611e6581612a8b565b601c54604080518381526001600160a01b0390921660208301527feafa9125fd4b0edd379b9ab67721e8f4eb26bc018c352092ccac54a89ac6fed7910160405180910390a16000611ec7600d5461195b600b5488611af490919063ffffffff16565b9050611ed281612acd565b6040518181527f61d10b3f17a77466a4241488e37c886fa1637f9863ae76dd5076a80a932bc4eb9060200160405180910390a150506008805460ff60a01b191690555060015b6008546001600160a01b03871660009081526017602052604090205460ff600160a01b909204821615911680611f6657506001600160a01b03861660009081526017602052604090205460ff165b15611f6f575060005b8015612707576001600160a01b03871660009081526018602052604090205460ff161561224957600854600160b01b900460ff16611fef5760405162461bcd60e51b815260206004820152601860248201527f546f6b656e2069736e2774206c61756e636865642079657400000000000000006044820152606401610b43565b6010548511156120525760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610b43565b6012548561205f886110b4565b61206991906134ef565b11156120c35760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b6064820152608401610b43565b601354421180159081906120f057506001600160a01b03871660009081526016602052604090205460ff16155b1561214157601980546001810182556000919091527f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c96950180546001600160a01b0319166001600160a01b0389161790555b600854600160a81b900460ff16801561217357506001600160a01b03871660009081526016602052604090205460ff16155b156121c457601980546001810182556000919091527f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c96950180546001600160a01b0319166001600160a01b0389161790555b600854600160c01b900460ff16151560011415612202576121e58787612b54565b6001600160a01b0388166000908152601460205260409020600201555b604080518781526001600160a01b03891660208201527f1df6c66a1a6eb6b0b6a23930c6ec94664e676e5d72f819a20a11e6c54540fa42910160405180910390a1506125a7565b6001600160a01b03861660009081526018602052604090205460ff16156124a8576001600160a01b03871660009081526016602052604090205460ff16156122c45760405162461bcd60e51b815260206004820152600e60248201526d2cb7ba9030b9329039b734b832b960911b6044820152606401610b43565b60115485111561233c5760405162461bcd60e51b815260206004820152603a60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d617853656c6c5472616e73616374696f6e416d6f756e742e0000000000006064820152608401610b43565b600854600160c81b900460ff161515600114801561237657506001600160a01b03871660009081526014602052604090206004015460ff16155b1561242e576000612386886110b4565b9050600281111561242c5761239c816002611ab2565b8611156123a857600080fd5b6001600160a01b038816600090815260146020526040812060030180548892906123d39084906134ef565b909155506123e49050816003611ab2565b6001600160a01b0389166000908152601460205260409020600301541061242c576001600160a01b0388166000908152601460205260409020600401805460ff191660011790555b505b6124418561243b896110b4565b90612be5565b612462576001600160a01b0387166000908152601460205260408120600201555b604080518681526001600160a01b03891660208201527f845540a7f3f9afb8980bffef1e5a59039c43bbd45de62cc2ce5def5830465f04910160405180910390a16125a7565b6001600160a01b03871660009081526017602052604090205460ff161580156124ea57506001600160a01b03861660009081526017602052604090205460ff16155b156125a757600854600160c01b900460ff1615156001141561252d576125108686612b54565b6001600160a01b0387166000908152601460205260409020600201555b61253a8561243b896110b4565b61255b576001600160a01b0387166000908152601460205260408120600201555b604080516001600160a01b03808a168252881660208201529081018690527f38e8feed990acd7f5210170f614d354c7a0485670b9a787e9e00f8fca640d5749060600160405180910390a15b60006125c3606461195b600d5489611af490919063ffffffff16565b6001600160a01b03881660009081526018602052604090205490915060ff1615612604576125f7606461195b886001611af4565b61260190826134ef565b90505b600854600090600160b81b900460ff161515600114801561263e57506001600160a01b03891660009081526017602052604090205460ff16155b801561266257506001600160a01b03881660009081526018602052604090205460ff165b156126da5760006001851515141561269557600f548711612684576001612692565b600f54612692908890611ab2565b90505b6001600160a01b038a166000908152601460205260409020600201546126bc908983612c27565b91508282116126cc5760006126d6565b6126d68383613548565b9150505b6126ee6126e782846134ef565b8890612be5565b965061270489306126ff84866134ef565b612982565b50505b612712878787612982565b50505050505050565b6000818484111561273f5760405162461bcd60e51b8152600401610b43919061336c565b50600061274c8486613548565b95945050505050565b6001600160a01b03821660009081526018602052604090205460ff16151581151514156127ea5760405162461bcd60e51b815260206004820152603f60248201527f546f6b656e3a204175746f6d61746564206d61726b6574206d616b657220706160448201527f697220697320616c72656164792073657420746f20746861742076616c7565006064820152608401610b43565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6113fc8282612cfc565b6001600160a01b0382166128a85760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610b43565b6128e581604051806060016040528060228152602001613605602291396001600160a01b038516600090815260208190526040902054919061271b565b6001600160a01b03831660009081526020819052604090205560025461290b9082612be5565b6002556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020015b60405180910390a35050565b600081836129755760405162461bcd60e51b8152600401610b43919061336c565b50600061274c8486613507565b6001600160a01b0383166129a85760405162461bcd60e51b8152600401610b4390613439565b6001600160a01b0382166129ce5760405162461bcd60e51b8152600401610b43906133c1565b612a0b81604051806060016040528060268152602001613627602691396001600160a01b038616600090815260208190526040902054919061271b565b6001600160a01b038085166000908152602081905260408082209390935590841681522054612a3a9082611a4c565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611c8b565b612a9481612dd3565b601c546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156113fc573d6000803e3d6000fd5b6000612ada826002611ab2565b90506000612ae88383612be5565b905047612af483612dd3565b6000612b004783612be5565b9050612b0c8382612f3c565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15050505050565b600080612b5f611883565b6001600160a01b038516600090815260146020526040812060020154919250612b87866110b4565b9050811580612b94575080155b15612ba157829350612bdc565b84612bae57819350612bdc565b612bd9612bbb86836134ef565b612bc58786613529565b612bcf8486613529565b61195b91906134ef565b93505b50505092915050565b6000611aab83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061271b565b600080612c32611883565b90506000851580612c435750606485105b15612c515760009250612cf3565b81612c5d87600a6134ef565b1015612cee576064612c88612c81612c7a600261195b8b88613548565b8590611ab2565b8290611ab2565b915084600e541115612ce35784600e54612ca29190613548565b821015612caf5781612cbd565b84600e54612cbd9190613548565b915060008211612cce576000612cdc565b612cdc8161195b8885611af4565b9350612ce8565b600093505b50612cf3565b600092505b50509392505050565b6001600160a01b038216612d525760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610b43565b600254612d5f9082611a4c565b6002556001600160a01b038216600090815260208190526040902054612d859082611a4c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101612948565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612e0857612e086135cb565b6001600160a01b03928316602091820292909201810191909152600854604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612e5c57600080fd5b505afa158015612e70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e949190613038565b81600181518110612ea757612ea76135cb565b6001600160a01b039283166020918202929092010152600854612ecd9130911684611b73565b60085460405163791ac94760e01b81526001600160a01b039091169063791ac94790612f0690859060009086903090429060040161347e565b600060405180830381600087803b158015612f2057600080fd5b505af1158015612f34573d6000803e3d6000fd5b505050505050565b600854612f549030906001600160a01b031684611b73565b600854601b5460405163f305d71960e01b81523060048201526024810185905260006044820181905260648201526001600160a01b0391821660848201524260a482015291169063f305d71990839060c4016060604051808303818588803b158015612fbf57600080fd5b505af1158015612fd3573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612ff891906132e5565b5050505050565b80516001600160701b038116811461301657600080fd5b919050565b60006020828403121561302d57600080fd5b8135611aab816135e1565b60006020828403121561304a57600080fd5b8151611aab816135e1565b6000806040838503121561306857600080fd5b8235613073816135e1565b91506020830135613083816135e1565b809150509250929050565b6000806000606084860312156130a357600080fd5b83356130ae816135e1565b925060208401356130be816135e1565b929592945050506040919091013590565b600080604083850312156130e257600080fd5b82356130ed816135e1565b91506020830135613083816135f6565b6000806040838503121561311057600080fd5b823561311b816135e1565b946020939093013593505050565b60008060006040848603121561313e57600080fd5b833567ffffffffffffffff8082111561315657600080fd5b818601915086601f83011261316a57600080fd5b81358181111561317957600080fd5b8760208260051b850101111561318e57600080fd5b602092830195509350508401356131a4816135f6565b809150509250925092565b6000602082840312156131c157600080fd5b8135611aab816135f6565b6000602082840312156131de57600080fd5b8151611aab816135f6565b6000806000606084860312156131fe57600080fd5b61320784612fff565b925061321560208501612fff565b9150604084015163ffffffff811681146131a457600080fd5b60006020828403121561324057600080fd5b5035919050565b60006020828403121561325957600080fd5b5051919050565b60008060006060848603121561327557600080fd5b833592506020840135613287816135f6565b915060408401356131a4816135f6565b600080604083850312156132aa57600080fd5b50508035926020909101359150565b6000806000606084860312156132ce57600080fd5b505081359360208301359350604090920135919050565b6000806000606084860312156132fa57600080fd5b8351925060208401519150604084015190509250925092565b6040808252810183905260008460608301825b86811015613356578235613339816135e1565b6001600160a01b0316825260209283019290910190600101613326565b5080925050508215156020830152949350505050565b600060208083528351808285015260005b818110156133995785810183015185820160400152820161337d565b818111156133ab576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156134ce5784516001600160a01b0316835293830193918301916001016134a9565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115613502576135026135b5565b500190565b60008261352457634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615613543576135436135b5565b500290565b60008282101561355a5761355a6135b5565b500390565b600181811c9082168061357357607f821691505b6020821081141561359457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156135ae576135ae6135b5565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038116811461188057600080fd5b801515811461188057600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122021af1c018252469300b9bba150daae885d493ec23f52ecc0bcd8fce0b37e8f6264736f6c634300080700330000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000064000000000000000000000000e18978addf5f863a748447ba33e19dd2964d7a0800000000000000000000000030689a6cfe09870ec8db91df8513714d8dca114c0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

Deployed Bytecode

0x6080604052600436106103855760003560e01c8063877f4de5116101d1578063c1a106c611610102578063dd62ed3e116100a0578063e6db992f1161006f578063e6db992f14610aae578063eb91d37e14610ac3578063f2fde38b14610ad8578063f8b3c23e14610af857600080fd5b8063dd62ed3e14610a1c578063ddbbf68314610a62578063e2f4560514610a82578063e6c75f7114610a9857600080fd5b8063cb0e55a8116100dc578063cb0e55a81461095a578063d9c3c610146109d1578063da473fcd146109e6578063dd467064146109fc57600080fd5b8063c1a106c6146108fa578063c492f0461461091a578063ca02d7911461093a57600080fd5b8063a457c2d71161016f578063b6c5232411610149578063b6c523241461088f578063b99d4839146108a4578063bf56b371146108c4578063c0246668146108da57600080fd5b8063a457c2d71461081f578063a9059cbb1461083f578063b62496f51461085f57600080fd5b806395d89b41116101ab57806395d89b41146107b357806398118cb4146107c85780639a7a23d6146107de5780639ec5691d146107fe57600080fd5b8063877f4de5146107545780638da5cb5b146107755780638e9893821461079357600080fd5b8063316601a7116102b65780635aa821a91161025457806370a082311161022357806370a08231146106df578063715018a6146106ff5780637290b621146107145780637316c2e91461073457600080fd5b80635aa821a9146106735780635d098b381461068957806365b8dbc0146106a95780636b67c4df146106c957600080fd5b8063455a439611610290578063455a4396146105da57806349bd5a5e146105fa5780634fbee1931461061a57806352f7c9881461065357600080fd5b8063316601a71461057957806331a0a88c1461059957806339509351146105ba57600080fd5b806318160ddd116103235780631fca803d116102fd5780631fca803d146104ed57806323b872dd1461051d578063264d26dd1461053d578063313ce5671461055d57600080fd5b806318160ddd146104875780631c15aa111461049c5780631cdd3be3146104bd57600080fd5b806306fdde031161035f57806306fdde03146103e7578063095ea7b31461040957806313114a9d146104395780631694505e1461044f57600080fd5b806301339c211461039157806301f59d16146103a857806302259e9e146103d157600080fd5b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610b19565b005b3480156103b457600080fd5b506103be600e5481565b6040519081526020015b60405180910390f35b3480156103dd57600080fd5b506103be60115481565b3480156103f357600080fd5b506103fc610b6f565b6040516103c8919061336c565b34801561041557600080fd5b506104296104243660046130fd565b610c01565b60405190151581526020016103c8565b34801561044557600080fd5b506103be600d5481565b34801561045b57600080fd5b5060085461046f906001600160a01b031681565b6040516001600160a01b0390911681526020016103c8565b34801561049357600080fd5b506002546103be565b3480156104a857600080fd5b5060085461042990600160b81b900460ff1681565b3480156104c957600080fd5b506104296104d836600461301b565b60156020526000908152604090205460ff1681565b3480156104f957600080fd5b5061042961050836600461301b565b60166020526000908152604090205460ff1681565b34801561052957600080fd5b5061042961053836600461308e565b610c18565b34801561054957600080fd5b50601b5461046f906001600160a01b031681565b34801561056957600080fd5b50604051600981526020016103c8565b34801561058557600080fd5b506103a661059436600461322e565b610c81565b3480156105a557600080fd5b5060085461042990600160c81b900460ff1681565b3480156105c657600080fd5b506104296105d53660046130fd565b610cb0565b3480156105e657600080fd5b506103a66105f53660046130cf565b610ce6565b34801561060657600080fd5b50601a5461046f906001600160a01b031681565b34801561062657600080fd5b5061042961063536600461301b565b6001600160a01b031660009081526017602052604090205460ff1690565b34801561065f57600080fd5b506103a661066e366004613297565b610d3b565b34801561067f57600080fd5b506103be60105481565b34801561069557600080fd5b506103a66106a436600461301b565b610dca565b3480156106b557600080fd5b506103a66106c436600461301b565b610e16565b3480156106d557600080fd5b506103be600c5481565b3480156106eb57600080fd5b506103be6106fa36600461301b565b6110b4565b34801561070b57600080fd5b506103a66110cf565b34801561072057600080fd5b506103a661072f3660046132b9565b611146565b34801561074057600080fd5b506103a661074f3660046131af565b6111a8565b34801561076057600080fd5b5060085461042990600160a81b900460ff1681565b34801561078157600080fd5b506005546001600160a01b031661046f565b34801561079f57600080fd5b506103a66107ae366004613055565b6111f0565b3480156107bf57600080fd5b506103fc611320565b3480156107d457600080fd5b506103be600b5481565b3480156107ea57600080fd5b506103a66107f93660046130cf565b61132f565b34801561080a57600080fd5b5060085461042990600160c01b900460ff1681565b34801561082b57600080fd5b5061042961083a3660046130fd565b611400565b34801561084b57600080fd5b5061042961085a3660046130fd565b61144f565b34801561086b57600080fd5b5061042961087a36600461301b565b60186020526000908152604090205460ff1681565b34801561089b57600080fd5b506007546103be565b3480156108b057600080fd5b506103a66108bf366004613260565b61145c565b3480156108d057600080fd5b506103be60135481565b3480156108e657600080fd5b506103a66108f53660046130cf565b6114cb565b34801561090657600080fd5b506103a66109153660046130fd565b611554565b34801561092657600080fd5b506103a6610935366004613129565b611595565b34801561094657600080fd5b50601c5461046f906001600160a01b031681565b34801561096657600080fd5b506109a761097536600461301b565b601460205260009081526040902080546001820154600283015460038401546004909401549293919290919060ff1685565b6040805195865260208601949094529284019190915260608301521515608082015260a0016103c8565b3480156109dd57600080fd5b506103a6611671565b3480156109f257600080fd5b506103be60095481565b348015610a0857600080fd5b506103a6610a1736600461322e565b611728565b348015610a2857600080fd5b506103be610a37366004613055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a6e57600080fd5b5061046f610a7d36600461322e565b6117ad565b348015610a8e57600080fd5b506103be600a5481565b348015610aa457600080fd5b506103be60125481565b348015610aba57600080fd5b506103a66117d7565b348015610acf57600080fd5b506103be611883565b348015610ae457600080fd5b506103a6610af336600461301b565b611973565b348015610b0457600080fd5b5060085461042990600160b01b900460ff1681565b6005546001600160a01b03163314610b4c5760405162461bcd60e51b8152600401610b4390613404565b60405180910390fd5b6008805460ff60b01b1916600160b01b179055610b6a42600a611a4c565b601355565b606060038054610b7e9061355f565b80601f0160208091040260200160405190810160405280929190818152602001828054610baa9061355f565b8015610bf75780601f10610bcc57610100808354040283529160200191610bf7565b820191906000526020600020905b815481529060010190602001808311610bda57829003601f168201915b5050505050905090565b6000610c0e338484611b73565b5060015b92915050565b6000610c25848484611c98565b610c778433610c728560405180606001604052806028815260200161364d602891396001600160a01b038a166000908152600160209081526040808320338452909152902054919061271b565b611b73565b5060019392505050565b6005546001600160a01b03163314610cab5760405162461bcd60e51b8152600401610b4390613404565b600955565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610c0e918590610c729086611a4c565b6005546001600160a01b03163314610d105760405162461bcd60e51b8152600401610b4390613404565b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d655760405162461bcd60e51b8152600401610b4390613404565b600b829055600c819055610d798282611a4c565b600d819055600b54600c546040805192835260208301919091528101919091527f9fef908e44cc0f51b9e9f7fd26bc506a50448657da0dc10a9661e37bc1c4a3929060600160405180910390a15050565b6005546001600160a01b03163314610df45760405162461bcd60e51b8152600401610b4390613404565b601c80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610e405760405162461bcd60e51b8152600401610b4390613404565b6008546001600160a01b0382811691161415610eb15760405162461bcd60e51b815260206004820152602a60248201527f546f6b656e3a2054686520726f7574657220616c7265616479206861732074686044820152696174206164647265737360b01b6064820152608401610b43565b6008546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600880546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b815290516000929163c45a0155916004808301926020929190829003018186803b158015610f4357600080fd5b505afa158015610f57573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f7b9190613038565b6001600160a01b031663c9c6539630600860009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610fd857600080fd5b505afa158015610fec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110109190613038565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b15801561105857600080fd5b505af115801561106c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110909190613038565b601a80546001600160a01b0319166001600160a01b03929092169190911790555050565b6001600160a01b031660009081526020819052604090205490565b6005546001600160a01b031633146110f95760405162461bcd60e51b8152600401610b4390613404565b600554600680546001600160a01b0319166001600160a01b03909216918217905560405160009190600080516020613675833981519152908390a3600580546001600160a01b0319169055565b6005546001600160a01b031633146111705760405162461bcd60e51b8152600401610b4390613404565b61117e83633b9aca00613529565b60105561118f82633b9aca00613529565b6011556111a081633b9aca00613529565b601255505050565b6005546001600160a01b031633146111d25760405162461bcd60e51b8152600401610b4390613404565b60088054911515600160a81b0260ff60a81b19909216919091179055565b6005546001600160a01b0316331461121a5760405162461bcd60e51b8152600401610b4390613404565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a082319060240160206040518083038186803b15801561125c57600080fd5b505afa158015611270573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112949190613247565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb90604401602060405180830381600087803b1580156112e257600080fd5b505af11580156112f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061131a91906131cc565b50505050565b606060048054610b7e9061355f565b6005546001600160a01b031633146113595760405162461bcd60e51b8152600401610b4390613404565b601a546001600160a01b03838116911614156113f25760405162461bcd60e51b815260206004820152604c60248201527f546f6b656e3a205468652050616e63616b655377617020706169722063616e6e60448201527f6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b60648201526b65744d616b6572506169727360a01b608482015260a401610b43565b6113fc8282612755565b5050565b6000610c0e3384610c7285604051806060016040528060258152602001613695602591393360009081526001602090815260408083206001600160a01b038d168452909152902054919061271b565b6000610c0e338484611c98565b6005546001600160a01b031633146114865760405162461bcd60e51b8152600401610b4390613404565b604183111561149457600080fd5b6008805461ffff60b81b1916600160b81b9315159390930260ff60c01b191692909217600160c01b91151591909102179055600e55565b6005546001600160a01b031633146114f55760405162461bcd60e51b8152600401610b4390613404565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461157e5760405162461bcd60e51b8152600401610b4390613404565b6113fc8261159083633b9aca00613529565b61283e565b6005546001600160a01b031633146115bf5760405162461bcd60e51b8152600401610b4390613404565b60005b828110156116305781601760008686858181106115e1576115e16135cb565b90506020020160208101906115f6919061301b565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806116288161359a565b9150506115c2565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b3583838360405161166493929190613313565b60405180910390a1505050565b6006546001600160a01b031633146116d75760405162461bcd60e51b815260206004820152602360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6044820152626f636b60e81b6064820152608401610b43565b6006546005546040516001600160a01b03928316929091169060008051602061367583398151915290600090a3600654600580546001600160a01b0319166001600160a01b03909216919091179055565b6005546001600160a01b031633146117525760405162461bcd60e51b8152600401610b4390613404565b60058054600680546001600160a01b03199081166001600160a01b0384161790915516905561178181426134ef565b6007556005546040516000916001600160a01b031690600080516020613675833981519152908390a350565b601981815481106117bd57600080fd5b6000918252602090912001546001600160a01b0316905081565b6005546001600160a01b031633146118015760405162461bcd60e51b8152600401610b4390613404565b60005b60195481101561188057600060198281548110611823576118236135cb565b60009182526020822001546001600160a01b03169150611842826110b4565b905061184e8282612848565b506001600160a01b03166000908152601660205260409020805460ff19169055806118788161359a565b915050611804565b50565b601a5460408051630240bc6b60e21b815290516000926001600160a01b031691839182918491630902f1ac91600480820192606092909190829003018186803b1580156118cf57600080fd5b505afa1580156118e3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061190791906131e9565b506001600160701b0391821693501690508181111561192257905b80611930576000935061196d565b8161194182655af3107a4000613529565b1115611968576119618261195b83655af3107a4000613529565b90611ab2565b935061196d565b600093505b50505090565b6005546001600160a01b0316331461199d5760405162461bcd60e51b8152600401610b4390613404565b6001600160a01b038116611a025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b43565b6005546040516001600160a01b0380841692169060008051602061367583398151915290600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600080611a5983856134ef565b905083811015611aab5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610b43565b9392505050565b6000611aab83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612954565b600082611b0357506000610c12565b6000611b0f8385613529565b905082611b1c8583613507565b14611aab5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610b43565b6001600160a01b038316611bd55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b43565b6001600160a01b038216611c365760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b43565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316611cbe5760405162461bcd60e51b8152600401610b4390613439565b6001600160a01b038216611ce45760405162461bcd60e51b8152600401610b43906133c1565b6001600160a01b03821660009081526015602052604090205460ff16158015611d2657506001600160a01b03831660009081526015602052604090205460ff16155b611d8b5760405162461bcd60e51b815260206004820152603060248201527f596f75722061646472657373206f7220726563697069656e742061646472657360448201526f1cc81a5cc8189b1858dadb1a5cdd195960821b6064820152608401610b43565b80611da157611d9c83836000612982565b505050565b6000611dac306110b4565b90506000600a5482101590506000818015611dd15750600854600160a01b900460ff16155b8015611df657506001600160a01b03861660009081526018602052604090205460ff16155b8015611e1057506005546001600160a01b03878116911614155b8015611e2a57506005546001600160a01b03868116911614155b15611f18576008805460ff60a01b1916600160a01b179055600d54600c54600091611e5a9161195b908790611af4565b9050611e6581612a8b565b601c54604080518381526001600160a01b0390921660208301527feafa9125fd4b0edd379b9ab67721e8f4eb26bc018c352092ccac54a89ac6fed7910160405180910390a16000611ec7600d5461195b600b5488611af490919063ffffffff16565b9050611ed281612acd565b6040518181527f61d10b3f17a77466a4241488e37c886fa1637f9863ae76dd5076a80a932bc4eb9060200160405180910390a150506008805460ff60a01b191690555060015b6008546001600160a01b03871660009081526017602052604090205460ff600160a01b909204821615911680611f6657506001600160a01b03861660009081526017602052604090205460ff165b15611f6f575060005b8015612707576001600160a01b03871660009081526018602052604090205460ff161561224957600854600160b01b900460ff16611fef5760405162461bcd60e51b815260206004820152601860248201527f546f6b656e2069736e2774206c61756e636865642079657400000000000000006044820152606401610b43565b6010548511156120525760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610b43565b6012548561205f886110b4565b61206991906134ef565b11156120c35760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b6064820152608401610b43565b601354421180159081906120f057506001600160a01b03871660009081526016602052604090205460ff16155b1561214157601980546001810182556000919091527f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c96950180546001600160a01b0319166001600160a01b0389161790555b600854600160a81b900460ff16801561217357506001600160a01b03871660009081526016602052604090205460ff16155b156121c457601980546001810182556000919091527f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c96950180546001600160a01b0319166001600160a01b0389161790555b600854600160c01b900460ff16151560011415612202576121e58787612b54565b6001600160a01b0388166000908152601460205260409020600201555b604080518781526001600160a01b03891660208201527f1df6c66a1a6eb6b0b6a23930c6ec94664e676e5d72f819a20a11e6c54540fa42910160405180910390a1506125a7565b6001600160a01b03861660009081526018602052604090205460ff16156124a8576001600160a01b03871660009081526016602052604090205460ff16156122c45760405162461bcd60e51b815260206004820152600e60248201526d2cb7ba9030b9329039b734b832b960911b6044820152606401610b43565b60115485111561233c5760405162461bcd60e51b815260206004820152603a60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d617853656c6c5472616e73616374696f6e416d6f756e742e0000000000006064820152608401610b43565b600854600160c81b900460ff161515600114801561237657506001600160a01b03871660009081526014602052604090206004015460ff16155b1561242e576000612386886110b4565b9050600281111561242c5761239c816002611ab2565b8611156123a857600080fd5b6001600160a01b038816600090815260146020526040812060030180548892906123d39084906134ef565b909155506123e49050816003611ab2565b6001600160a01b0389166000908152601460205260409020600301541061242c576001600160a01b0388166000908152601460205260409020600401805460ff191660011790555b505b6124418561243b896110b4565b90612be5565b612462576001600160a01b0387166000908152601460205260408120600201555b604080518681526001600160a01b03891660208201527f845540a7f3f9afb8980bffef1e5a59039c43bbd45de62cc2ce5def5830465f04910160405180910390a16125a7565b6001600160a01b03871660009081526017602052604090205460ff161580156124ea57506001600160a01b03861660009081526017602052604090205460ff16155b156125a757600854600160c01b900460ff1615156001141561252d576125108686612b54565b6001600160a01b0387166000908152601460205260409020600201555b61253a8561243b896110b4565b61255b576001600160a01b0387166000908152601460205260408120600201555b604080516001600160a01b03808a168252881660208201529081018690527f38e8feed990acd7f5210170f614d354c7a0485670b9a787e9e00f8fca640d5749060600160405180910390a15b60006125c3606461195b600d5489611af490919063ffffffff16565b6001600160a01b03881660009081526018602052604090205490915060ff1615612604576125f7606461195b886001611af4565b61260190826134ef565b90505b600854600090600160b81b900460ff161515600114801561263e57506001600160a01b03891660009081526017602052604090205460ff16155b801561266257506001600160a01b03881660009081526018602052604090205460ff165b156126da5760006001851515141561269557600f548711612684576001612692565b600f54612692908890611ab2565b90505b6001600160a01b038a166000908152601460205260409020600201546126bc908983612c27565b91508282116126cc5760006126d6565b6126d68383613548565b9150505b6126ee6126e782846134ef565b8890612be5565b965061270489306126ff84866134ef565b612982565b50505b612712878787612982565b50505050505050565b6000818484111561273f5760405162461bcd60e51b8152600401610b43919061336c565b50600061274c8486613548565b95945050505050565b6001600160a01b03821660009081526018602052604090205460ff16151581151514156127ea5760405162461bcd60e51b815260206004820152603f60248201527f546f6b656e3a204175746f6d61746564206d61726b6574206d616b657220706160448201527f697220697320616c72656164792073657420746f20746861742076616c7565006064820152608401610b43565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6113fc8282612cfc565b6001600160a01b0382166128a85760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610b43565b6128e581604051806060016040528060228152602001613605602291396001600160a01b038516600090815260208190526040902054919061271b565b6001600160a01b03831660009081526020819052604090205560025461290b9082612be5565b6002556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020015b60405180910390a35050565b600081836129755760405162461bcd60e51b8152600401610b43919061336c565b50600061274c8486613507565b6001600160a01b0383166129a85760405162461bcd60e51b8152600401610b4390613439565b6001600160a01b0382166129ce5760405162461bcd60e51b8152600401610b43906133c1565b612a0b81604051806060016040528060268152602001613627602691396001600160a01b038616600090815260208190526040902054919061271b565b6001600160a01b038085166000908152602081905260408082209390935590841681522054612a3a9082611a4c565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611c8b565b612a9481612dd3565b601c546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156113fc573d6000803e3d6000fd5b6000612ada826002611ab2565b90506000612ae88383612be5565b905047612af483612dd3565b6000612b004783612be5565b9050612b0c8382612f3c565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15050505050565b600080612b5f611883565b6001600160a01b038516600090815260146020526040812060020154919250612b87866110b4565b9050811580612b94575080155b15612ba157829350612bdc565b84612bae57819350612bdc565b612bd9612bbb86836134ef565b612bc58786613529565b612bcf8486613529565b61195b91906134ef565b93505b50505092915050565b6000611aab83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061271b565b600080612c32611883565b90506000851580612c435750606485105b15612c515760009250612cf3565b81612c5d87600a6134ef565b1015612cee576064612c88612c81612c7a600261195b8b88613548565b8590611ab2565b8290611ab2565b915084600e541115612ce35784600e54612ca29190613548565b821015612caf5781612cbd565b84600e54612cbd9190613548565b915060008211612cce576000612cdc565b612cdc8161195b8885611af4565b9350612ce8565b600093505b50612cf3565b600092505b50509392505050565b6001600160a01b038216612d525760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610b43565b600254612d5f9082611a4c565b6002556001600160a01b038216600090815260208190526040902054612d859082611a4c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101612948565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612e0857612e086135cb565b6001600160a01b03928316602091820292909201810191909152600854604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612e5c57600080fd5b505afa158015612e70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e949190613038565b81600181518110612ea757612ea76135cb565b6001600160a01b039283166020918202929092010152600854612ecd9130911684611b73565b60085460405163791ac94760e01b81526001600160a01b039091169063791ac94790612f0690859060009086903090429060040161347e565b600060405180830381600087803b158015612f2057600080fd5b505af1158015612f34573d6000803e3d6000fd5b505050505050565b600854612f549030906001600160a01b031684611b73565b600854601b5460405163f305d71960e01b81523060048201526024810185905260006044820181905260648201526001600160a01b0391821660848201524260a482015291169063f305d71990839060c4016060604051808303818588803b158015612fbf57600080fd5b505af1158015612fd3573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612ff891906132e5565b5050505050565b80516001600160701b038116811461301657600080fd5b919050565b60006020828403121561302d57600080fd5b8135611aab816135e1565b60006020828403121561304a57600080fd5b8151611aab816135e1565b6000806040838503121561306857600080fd5b8235613073816135e1565b91506020830135613083816135e1565b809150509250929050565b6000806000606084860312156130a357600080fd5b83356130ae816135e1565b925060208401356130be816135e1565b929592945050506040919091013590565b600080604083850312156130e257600080fd5b82356130ed816135e1565b91506020830135613083816135f6565b6000806040838503121561311057600080fd5b823561311b816135e1565b946020939093013593505050565b60008060006040848603121561313e57600080fd5b833567ffffffffffffffff8082111561315657600080fd5b818601915086601f83011261316a57600080fd5b81358181111561317957600080fd5b8760208260051b850101111561318e57600080fd5b602092830195509350508401356131a4816135f6565b809150509250925092565b6000602082840312156131c157600080fd5b8135611aab816135f6565b6000602082840312156131de57600080fd5b8151611aab816135f6565b6000806000606084860312156131fe57600080fd5b61320784612fff565b925061321560208501612fff565b9150604084015163ffffffff811681146131a457600080fd5b60006020828403121561324057600080fd5b5035919050565b60006020828403121561325957600080fd5b5051919050565b60008060006060848603121561327557600080fd5b833592506020840135613287816135f6565b915060408401356131a4816135f6565b600080604083850312156132aa57600080fd5b50508035926020909101359150565b6000806000606084860312156132ce57600080fd5b505081359360208301359350604090920135919050565b6000806000606084860312156132fa57600080fd5b8351925060208401519150604084015190509250925092565b6040808252810183905260008460608301825b86811015613356578235613339816135e1565b6001600160a01b0316825260209283019290910190600101613326565b5080925050508215156020830152949350505050565b600060208083528351808285015260005b818110156133995785810183015185820160400152820161337d565b818111156133ab576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156134ce5784516001600160a01b0316835293830193918301916001016134a9565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115613502576135026135b5565b500190565b60008261352457634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615613543576135436135b5565b500290565b60008282101561355a5761355a6135b5565b500390565b600181811c9082168061357357607f821691505b6020821081141561359457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156135ae576135ae6135b5565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038116811461188057600080fd5b801515811461188057600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122021af1c018252469300b9bba150daae885d493ec23f52ecc0bcd8fce0b37e8f6264736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000064000000000000000000000000e18978addf5f863a748447ba33e19dd2964d7a0800000000000000000000000030689a6cfe09870ec8db91df8513714d8dca114c0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

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

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [1] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [2] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [6] : 000000000000000000000000e18978addf5f863a748447ba33e19dd2964d7a08
Arg [7] : 00000000000000000000000030689a6cfe09870ec8db91df8513714d8dca114c
Arg [8] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d


Deployed Bytecode Sourcemap

33650:17269:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39636:117;;;;;;;;;;;;;:::i;:::-;;34251:26;;;;;;;;;;;;;;;;;;;17703:25:1;;;17691:2;17676:18;34251:26:0;;;;;;;;34369:39;;;;;;;;;;;;;;;;24904:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27069:169::-;;;;;;;;;;-1:-1:-1;27069:169:0;;;;;:::i;:::-;;:::i;:::-;;;8702:14:1;;8695:22;8677:41;;8665:2;8650:18;27069:169:0;8537:187:1;34187:57:0;;;;;;;;;;;;;;;;33729:41;;;;;;;;;;-1:-1:-1;33729:41:0;;;;-1:-1:-1;;;;;33729:41:0;;;;;;-1:-1:-1;;;;;6114:32:1;;;6096:51;;6084:2;6069:18;33729:41:0;5950:203:1;26022:108:0;;;;;;;;;;-1:-1:-1;26110:12:0;;26022:108;;33863:34;;;;;;;;;;-1:-1:-1;33863:34:0;;;;-1:-1:-1;;;33863:34:0;;;;;;34539:47;;;;;;;;;;-1:-1:-1;34539:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;34593:42;;;;;;;;;;-1:-1:-1;34593:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;27720:355;;;;;;;;;;-1:-1:-1;27720:355:0;;;;;:::i;:::-;;:::i;34840:32::-;;;;;;;;;;-1:-1:-1;34840:32:0;;;;-1:-1:-1;;;;;34840:32:0;;;25865:92;;;;;;;;;;-1:-1:-1;25865:92:0;;25948:1;19947:36:1;;19935:2;19920:18;25865:92:0;19805:184:1;39252:97:0;;;;;;;;;;-1:-1:-1;39252:97:0;;;;;:::i;:::-;;:::i;33943:40::-;;;;;;;;;;-1:-1:-1;33943:40:0;;;;-1:-1:-1;;;33943:40:0;;;;;;28484:218;;;;;;;;;;-1:-1:-1;28484:218:0;;;;;:::i;:::-;;:::i;40224:134::-;;;;;;;;;;-1:-1:-1;40224:134:0;;;;;:::i;:::-;;:::i;34805:28::-;;;;;;;;;;-1:-1:-1;34805:28:0;;;;-1:-1:-1;;;;;34805:28:0;;;40087:125;;;;;;;;;;-1:-1:-1;40087:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;40176:28:0;40152:4;40176:28;;;:19;:28;;;;;;;;;40087:125;38929:311;;;;;;;;;;-1:-1:-1;38929:311:0;;;;;:::i;:::-;;:::i;34324:38::-;;;;;;;;;;;;;;;;38329:116;;;;;;;;;;-1:-1:-1;38329:116:0;;;;;:::i;:::-;;:::i;37318:499::-;;;;;;;;;;-1:-1:-1;37318:499:0;;;;;:::i;:::-;;:::i;34153:27::-;;;;;;;;;;;;;;;;26193:127;;;;;;;;;;-1:-1:-1;26193:127:0;;;;;:::i;:::-;;:::i;14617:182::-;;;;;;;;;;;;;:::i;36781:251::-;;;;;;;;;;-1:-1:-1;36781:251:0;;;;;:::i;:::-;;:::i;36672:99::-;;;;;;;;;;-1:-1:-1;36672:99:0;;;;;:::i;:::-;;:::i;33807:21::-;;;;;;;;;;-1:-1:-1;33807:21:0;;;;-1:-1:-1;;;33807:21:0;;;;;;13975:79;;;;;;;;;;-1:-1:-1;14040:6:0;;-1:-1:-1;;;;;14040:6:0;13975:79;;40370:207;;;;;;;;;;-1:-1:-1;40370:207:0;;;;;:::i;:::-;;:::i;25123:104::-;;;;;;;;;;;;;:::i;34119:27::-;;;;;;;;;;;;;;;;39361:263;;;;;;;;;;-1:-1:-1;39361:263:0;;;;;:::i;:::-;;:::i;33904:32::-;;;;;;;;;;-1:-1:-1;33904:32:0;;;;-1:-1:-1;;;33904:32:0;;;;;;29205:269;;;;;;;;;;-1:-1:-1;29205:269:0;;;;;:::i;:::-;;:::i;26533:175::-;;;;;;;;;;-1:-1:-1;26533:175:0;;;;;:::i;:::-;;:::i;34702:58::-;;;;;;;;;;-1:-1:-1;34702:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;15210:89;;;;;;;;;;-1:-1:-1;15282:9:0;;15210:89;;37042:265;;;;;;;;;;-1:-1:-1;37042:265:0;;;;;:::i;:::-;;:::i;34451:25::-;;;;;;;;;;;;;;;;37825:184;;;;;;;;;;-1:-1:-1;37825:184:0;;;;;:::i;:::-;;:::i;38778:133::-;;;;;;;;;;-1:-1:-1;38778:133:0;;;;;:::i;:::-;;:::i;38017:304::-;;;;;;;;;;-1:-1:-1;38017:304:0;;;;;:::i;:::-;;:::i;34879:33::-;;;;;;;;;;-1:-1:-1;34879:33:0;;;;-1:-1:-1;;;;;34879:33:0;;;34488:44;;;;;;;;;;-1:-1:-1;34488:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19580:25:1;;;19636:2;19621:18;;19614:34;;;;19664:18;;;19657:34;;;;19722:2;19707:18;;19700:34;19778:14;19771:22;19765:3;19750:19;;19743:51;19567:3;19552:19;34488:44:0;19327:473:1;15677:231:0;;;;;;;;;;;;;:::i;33996:33::-;;;;;;;;;;;;;;;;15375:226;;;;;;;;;;-1:-1:-1;15375:226:0;;;;;:::i;:::-;;:::i;26771:151::-;;;;;;;;;;-1:-1:-1;26771:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;26887:18:0;;;26860:7;26887:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;26771:151;34767:25;;;;;;;;;;-1:-1:-1;34767:25:0;;;;;:::i;:::-;;:::i;34036:75::-;;;;;;;;;;;;;;;;34415:29;;;;;;;;;;;;;;;;38457:309;;;;;;;;;;;;;:::i;45403:649::-;;;;;;;;;;;;;:::i;14954:244::-;;;;;;;;;;-1:-1:-1;14954:244:0;;;;;:::i;:::-;;:::i;33835:21::-;;;;;;;;;;-1:-1:-1;33835:21:0;;;;-1:-1:-1;;;33835:21:0;;;;;;39636:117;14187:6;;-1:-1:-1;;;;;14187:6:0;4478:10;14187:22;14179:67;;;;-1:-1:-1;;;14179:67:0;;;;;;;:::i;:::-;;;;;;;;;39682:9:::1;:16:::0;;-1:-1:-1;;;;39682:16:0::1;-1:-1:-1::0;;;39682:16:0::1;::::0;;39722:23:::1;:15;39742:2;39722:19;:23::i;:::-;39709:10;:36:::0;39636:117::o;24904:100::-;24958:13;24991:5;24984:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24904:100;:::o;27069:169::-;27152:4;27169:39;4478:10;27192:7;27201:6;27169:8;:39::i;:::-;-1:-1:-1;27226:4:0;27069:169;;;;;:::o;27720:355::-;27860:4;27877:36;27887:6;27895:9;27906:6;27877:9;:36::i;:::-;27924:121;27933:6;4478:10;27955:89;27993:6;27955:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27955:19:0;;;;;;:11;:19;;;;;;;;4478:10;27955:33;;;;;;;;;;:37;:89::i;:::-;27924:8;:121::i;:::-;-1:-1:-1;28063:4:0;27720:355;;;;;:::o;39252:97::-;14187:6;;-1:-1:-1;;;;;14187:6:0;4478:10;14187:22;14179:67;;;;-1:-1:-1;;;14179:67:0;;;;;;;:::i;:::-;39321:12:::1;:20:::0;39252:97::o;28484:218::-;4478:10;28572:4;28621:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;28621:34:0;;;;;;;;;;28572:4;;28589:83;;28612:7;;28621:50;;28660:10;28621:38;:50::i;40224:134::-;14187:6;;-1:-1:-1;;;;;14187:6:0;4478:10;14187:22;14179:67;;;;-1:-1:-1;;;14179:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40313:23:0;;;::::1;;::::0;;;:14:::1;:23;::::0;;;;:37;;-1:-1:-1;;40313:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;40224:134::o;38929:311::-;14187:6;;-1:-1:-1;;;;;14187:6:0;4478:10;14187:22;14179:67;;;;-1:-1:-1;;;14179:67:0;;;;;;;:::i;:::-;39027:12:::1;:32:::0;;;39070:12:::1;:32:::0;;;39125:30:::1;39042:17:::0;39085;39125:16:::1;:30::i;:::-;39113:9;:42:::0;;;39192:12:::1;::::0;39206::::1;::::0;39181:49:::1;::::0;;19205:25:1;;;19261:2;19246:18;;19239:34;;;;19289:18;;19282:34;;;;39181:49:0::1;::::0;19193:2:1;19178:18;39181:49:0::1;;;;;;;38929:311:::0;;:::o;38329:116::-;14187:6;;-1:-1:-1;;;;;14187:6:0;4478:10;14187:22;14179:67;;;;-1:-1:-1;;;14179:67:0;;;;;;;:::i;:::-;38410:18:::1;:27:::0;;-1:-1:-1;;;;;;38410:27:0::1;-1:-1:-1::0;;;;;38410:27:0;;;::::1;::::0;;;::::1;::::0;;38329:116::o;37318:499::-;14187:6;;-1:-1:-1;;;;;14187:6:0;4478:10;14187:22;14179:67;;;;-1:-1:-1;;;14179:67:0;;;;;;;:::i;:::-;37427:15:::1;::::0;-1:-1:-1;;;;;37405:38:0;;::::1;37427:15:::0;::::1;37405:38;;37397:93;;;::::0;-1:-1:-1;;;37397:93:0;;11754:2:1;37397:93:0::1;::::0;::::1;11736:21:1::0;11793:2;11773:18;;;11766:30;11832:34;11812:18;;;11805:62;-1:-1:-1;;;11883:18:1;;;11876:40;11933:19;;37397:93:0::1;11552:406:1::0;37397:93:0::1;37548:15;::::0;37506:59:::1;::::0;-1:-1:-1;;;;;37548:15:0;;::::1;::::0;37506:59;::::1;::::0;::::1;::::0;37548:15:::1;::::0;37506:59:::1;37576:15;:48:::0;;-1:-1:-1;;;;;;37576:48:0::1;-1:-1:-1::0;;;;;37576:48:0;::::1;::::0;;::::1;::::0;;;37678:25:::1;::::0;;-1:-1:-1;;;37678:25:0;;;;-1:-1:-1;;37576:48:0;37678:23:::1;::::0;:25:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;37576:48;37678:25;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;37660:69:0::1;;37738:4;37745:15;;;;;;;;;-1:-1:-1::0;;;;;37745:15:0::1;-1:-1:-1::0;;;;;37745:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37660:108;::::0;-1:-1:-1;;;;;;37660:108:0::1;::::0;;;;;;-1:-1:-1;;;;;6388:15:1;;;37660:108:0::1;::::0;::::1;6370:34:1::0;6440:15;;6420:18;;;6413:43;6305:18;;37660:108:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37779:13;:30:::0;;-1:-1:-1;;;;;;37779:30:0::1;-1:-1:-1::0;;;;;37779:30:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;37318:499:0:o;26193:127::-;-1:-1:-1;;;;;26294:18:0;26267:7;26294:18;;;;;;;;;;;;26193:127::o;14617:182::-;14187:6;;-1:-1:-1;;;;;14187:6:0;4478:10;14187:22;14179:67;;;;-1:-1:-1;;;14179:67:0;;;;;;;:::i;:::-;14699:6:::1;::::0;14682:14:::1;:23:::0;;-1:-1:-1;;;;;;14682:23:0::1;-1:-1:-1::0;;;;;14699:6:0;;::::1;14682:23:::0;;::::1;::::0;;14721:40:::1;::::0;14699:6:::1;::::0;;-1:-1:-1;;;;;;;;;;;14721:40:0;14699:6;;14721:40:::1;14772:6;:19:::0;;-1:-1:-1;;;;;;14772:19:0::1;::::0;;14617:182::o;36781:251::-;14187:6;;-1:-1:-1;;;;;14187:6:0;4478:10;14187:22;14179:67;;;;-1:-1:-1;;;14179:67:0;;;;;;;:::i;:::-;36909:16:::1;:6:::0;36919:5:::1;36909:16;:::i;:::-;36883:23;:42:::0;36962:17:::1;:7:::0;36973:5:::1;36962:17;:::i;:::-;36935:24;:44:::0;37006:19:::1;:9:::0;37019:5:::1;37006:19;:::i;:::-;36989:14;:36:::0;-1:-1:-1;;;36781:251:0:o;36672:99::-;14187:6;;-1:-1:-1;;;;;14187:6:0;4478:10;14187:22;14179:67;;;;-1:-1:-1;;;14179:67:0;;;;;;;:::i;:::-;36741:9:::1;:23:::0;;;::::1;;-1:-1:-1::0;;;36741:23:0::1;-1:-1:-1::0;;;;36741:23:0;;::::1;::::0;;;::::1;::::0;;36672:99::o;40370:207::-;14187:6;;-1:-1:-1;;;;;14187:6:0;4478:10;14187:22;14179:67;;;;-1:-1:-1;;;14179:67:0;;;;;;;:::i;:::-;40480:38:::1;::::0;-1:-1:-1;;;40480:38:0;;40512:4:::1;40480:38;::::0;::::1;6096:51:1::0;40462:15:0::1;::::0;-1:-1:-1;;;;;40480:23:0;::::1;::::0;::::1;::::0;6069:18:1;;40480:38:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40529:40;::::0;-1:-1:-1;;;40529:40:0;;-1:-1:-1;;;;;7039:32:1;;;40529:40:0::1;::::0;::::1;7021:51:1::0;7088:18;;;7081:34;;;40462:56:0;;-1:-1:-1;40529:22:0;;::::1;::::0;::::1;::::0;6994:18:1;;40529:40:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;40451:126;40370:207:::0;;:::o;25123:104::-;25179:13;25212:7;25205:14;;;;;:::i;39361:263::-;14187:6;;-1:-1:-1;;;;;14187:6:0;4478:10;14187:22;14179:67;;;;-1:-1:-1;;;14179:67:0;;;;;;;:::i;:::-;39468:13:::1;::::0;-1:-1:-1;;;;;39460:21:0;;::::1;39468:13:::0;::::1;39460:21;;39452:110;;;::::0;-1:-1:-1;;;39452:110:0;;14085:2:1;39452:110:0::1;::::0;::::1;14067:21:1::0;14124:2;14104:18;;;14097:30;14163:34;14143:18;;;14136:62;14234:34;14214:18;;;14207:62;-1:-1:-1;;;14285:19:1;;;14278:43;14338:19;;39452:110:0::1;13883:480:1::0;39452:110:0::1;39575:41;39604:4;39610:5;39575:28;:41::i;:::-;39361:263:::0;;:::o;29205:269::-;29298:4;29315:129;4478:10;29338:7;29347:96;29386:15;29347:96;;;;;;;;;;;;;;;;;4478:10;29347:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;29347:34:0;;;;;;;;;;;;:38;:96::i;26533:175::-;26619:4;26636:42;4478:10;26660:9;26671:6;26636:9;:42::i;37042:265::-;14187:6;;-1:-1:-1;;;;;14187:6:0;4478:10;14187:22;14179:67;;;;-1:-1:-1;;;14179:67:0;;;;;;;:::i;:::-;37186:2:::1;37175:7;:13;;37167:22;;;::::0;::::1;;37199:15;:35:::0;;-1:-1:-1;;;;37244:30:0;-1:-1:-1;;;37199:35:0;::::1;;::::0;;;::::1;-1:-1:-1::0;;;;37244:30:0;;;;;-1:-1:-1;;;37244:30:0;::::1;;::::0;;;::::1;;::::0;;37284:6:::1;:16:::0;37042:265::o;37825:184::-;14187:6;;-1:-1:-1;;;;;14187:6:0;4478:10;14187:22;14179:67;;;;-1:-1:-1;;;14179:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37910:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;37910:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;37967:34;;8677:41:1;;;37967:34:0::1;::::0;8650:18:1;37967:34:0::1;;;;;;;37825:184:::0;;:::o;38778:133::-;14187:6;;-1:-1:-1;;;;;14187:6:0;4478:10;14187:22;14179:67;;;;-1:-1:-1;;;14179:67:0;;;;;;;:::i;:::-;38859:44:::1;38875:7:::0;38884:18:::1;:6:::0;38894:7:::1;38884:18;:::i;:::-;38859:15;:44::i;38017:304::-:0;14187:6;;-1:-1:-1;;;;;14187:6:0;4478:10;14187:22;14179:67;;;;-1:-1:-1;;;14179:67:0;;;;;;;:::i;:::-;38134:9:::1;38130:115;38149:19:::0;;::::1;38130:115;;;38225:8;38190:19;:32;38210:8;;38219:1;38210:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;38190:32:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;38190:32:0;:43;;-1:-1:-1;;38190:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38170:3;::::1;::::0;::::1;:::i;:::-;;;;38130:115;;;;38262:51;38294:8;;38304;38262:51;;;;;;;;:::i;:::-;;;;;;;;38017:304:::0;;;:::o;15677:231::-;15738:14;;-1:-1:-1;;;;;15738:14:0;15756:10;15738:28;15730:76;;;;-1:-1:-1;;;15730:76:0;;16995:2:1;15730:76:0;;;16977:21:1;17034:2;17014:18;;;17007:30;17073:34;17053:18;;;17046:62;-1:-1:-1;;;17124:18:1;;;17117:33;17167:19;;15730:76:0;16793:399:1;15730:76:0;15851:14;;15843:6;;15822:44;;-1:-1:-1;;;;;15851:14:0;;;;15843:6;;;;-1:-1:-1;;;;;;;;;;;15822:44:0;15851:14;;15822:44;15886:14;;15877:6;:23;;-1:-1:-1;;;;;;15877:23:0;-1:-1:-1;;;;;15886:14:0;;;15877:23;;;;;;15677:231::o;15375:226::-;14187:6;;-1:-1:-1;;;;;14187:6:0;4478:10;14187:22;14179:67;;;;-1:-1:-1;;;14179:67:0;;;;;;;:::i;:::-;15456:6:::1;::::0;;15439:14:::1;:23:::0;;-1:-1:-1;;;;;;15439:23:0;;::::1;-1:-1:-1::0;;;;;15456:6:0;::::1;15439:23;::::0;;;15473:19:::1;::::0;;15515:22:::1;15533:4:::0;15515:15:::1;:22;:::i;:::-;15503:9;:34:::0;15574:6:::1;::::0;15553:40:::1;::::0;15590:1:::1;::::0;-1:-1:-1;;;;;15574:6:0::1;::::0;-1:-1:-1;;;;;;;;;;;15553:40:0;15590:1;;15553:40:::1;15375:226:::0;:::o;34767:25::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34767:25:0;;-1:-1:-1;34767:25:0;:::o;38457:309::-;14187:6;;-1:-1:-1;;;;;14187:6:0;4478:10;14187:22;14179:67;;;;-1:-1:-1;;;14179:67:0;;;;;;;:::i;:::-;38522:9:::1;38518:241;38541:8;:15:::0;38537:19;::::1;38518:241;;;38577:14;38594:8;38603:1;38594:11;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;::::1;::::0;-1:-1:-1;;;;;38594:11:0::1;::::0;-1:-1:-1;38638:17:0::1;38594:11:::0;38638:9:::1;:17::i;:::-;38620:35;;38670:37;38690:6;38699:7;38670:11;:37::i;:::-;-1:-1:-1::0;;;;;;38722:17:0::1;38742:5;38722:17:::0;;;:9:::1;:17;::::0;;;;:25;;-1:-1:-1;;38722:25:0::1;::::0;;38558:3;::::1;::::0;::::1;:::i;:::-;;;;38518:241;;;;38457:309::o:0;45403:649::-;45580:13;;45666:18;;;-1:-1:-1;;;45666:18:0;;;;45451:20;;-1:-1:-1;;;;;45580:13:0;;45451:20;;;;45580:13;;45666:16;;:18;;;;;;;;;;;;;;;45580:13;45666:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;45649:35:0;;;;-1:-1:-1;45649:35:0;;-1:-1:-1;45697:12:0;;;45694:122;;;45773:3;45694:122;45829:8;45826:220;;45868:1;45853:16;;45826:220;;;45915:6;45890:21;:3;45896:15;45890:21;:::i;:::-;45889:32;45886:160;;;45952:35;45980:6;45953:21;:3;45959:15;45953:21;:::i;:::-;45952:27;;:35::i;:::-;45937:50;;45886:160;;;46033:1;46018:16;;45886:160;45473:579;;;45403:649;:::o;14954:244::-;14187:6;;-1:-1:-1;;;;;14187:6:0;4478:10;14187:22;14179:67;;;;-1:-1:-1;;;14179:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15043:22:0;::::1;15035:73;;;::::0;-1:-1:-1;;;15035:73:0;;10588:2:1;15035:73:0::1;::::0;::::1;10570:21:1::0;10627:2;10607:18;;;10600:30;10666:34;10646:18;;;10639:62;-1:-1:-1;;;10717:18:1;;;10710:36;10763:19;;15035:73:0::1;10386:402:1::0;15035:73:0::1;15145:6;::::0;15124:38:::1;::::0;-1:-1:-1;;;;;15124:38:0;;::::1;::::0;15145:6:::1;::::0;-1:-1:-1;;;;;;;;;;;15124:38:0;15145:6:::1;::::0;15124:38:::1;15173:6;:17:::0;;-1:-1:-1;;;;;;15173:17:0::1;-1:-1:-1::0;;;;;15173:17:0;;;::::1;::::0;;;::::1;::::0;;14954:244::o;16197:181::-;16255:7;;16287:5;16291:1;16287;:5;:::i;:::-;16275:17;;16316:1;16311;:6;;16303:46;;;;-1:-1:-1;;;16303:46:0;;11398:2:1;16303:46:0;;;11380:21:1;11437:2;11417:18;;;11410:30;11476:29;11456:18;;;11449:57;11523:18;;16303:46:0;11196:351:1;16303:46:0;16369:1;16197:181;-1:-1:-1;;;16197:181:0:o;18498:132::-;18556:7;18583:39;18587:1;18590;18583:39;;;;;;;;;;;;;;;;;:3;:39::i;17551:471::-;17609:7;17854:6;17850:47;;-1:-1:-1;17884:1:0;17877:8;;17850:47;17909:9;17921:5;17925:1;17921;:5;:::i;:::-;17909:17;-1:-1:-1;17954:1:0;17945:5;17949:1;17909:17;17945:5;:::i;:::-;:10;17937:56;;;;-1:-1:-1;;;17937:56:0;;13322:2:1;17937:56:0;;;13304:21:1;13361:2;13341:18;;;13334:30;13400:34;13380:18;;;13373:62;-1:-1:-1;;;13451:18:1;;;13444:31;13492:19;;17937:56:0;13120:397:1;32509:380:0;-1:-1:-1;;;;;32645:19:0;;32637:68;;;;-1:-1:-1;;;32637:68:0;;16158:2:1;32637:68:0;;;16140:21:1;16197:2;16177:18;;;16170:30;16236:34;16216:18;;;16209:62;-1:-1:-1;;;16287:18:1;;;16280:34;16331:19;;32637:68:0;15956:400:1;32637:68:0;-1:-1:-1;;;;;32724:21:0;;32716:68;;;;-1:-1:-1;;;32716:68:0;;10995:2:1;32716:68:0;;;10977:21:1;11034:2;11014:18;;;11007:30;11073:34;11053:18;;;11046:62;-1:-1:-1;;;11124:18:1;;;11117:32;11166:19;;32716:68:0;10793:398:1;32716:68:0;-1:-1:-1;;;;;32797:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;32849:32;;17703:25:1;;;32849:32:0;;17676:18:1;32849:32:0;;;;;;;;32509:380;;;:::o;40589:4802::-;-1:-1:-1;;;;;40687:18:0;;40679:68;;;;-1:-1:-1;;;40679:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40766:16:0;;40758:64;;;;-1:-1:-1;;;40758:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40842:18:0;;;;;;:14;:18;;;;;;;;40841:19;:44;;;;-1:-1:-1;;;;;;40865:20:0;;;;;;:14;:20;;;;;;;;40864:21;40841:44;40833:105;;;;-1:-1:-1;;;40833:105:0;;10171:2:1;40833:105:0;;;10153:21:1;10210:2;10190:18;;;10183:30;10249:34;10229:18;;;10222:62;-1:-1:-1;;;10300:18:1;;;10293:46;10356:19;;40833:105:0;9969:412:1;40833:105:0;40962:11;40959:92;;40990:28;41006:4;41012:2;41016:1;40990:15;:28::i;:::-;40589:4802;;;:::o;40959:92::-;41065:28;41096:24;41114:4;41096:9;:24::i;:::-;41065:55;;41133:12;41172:18;;41148:20;:42;;41133:57;;41201:12;41230:7;:33;;;;-1:-1:-1;41255:8:0;;-1:-1:-1;;;41255:8:0;;;;41254:9;41230:33;:82;;;;-1:-1:-1;;;;;;41281:31:0;;;;;;:25;:31;;;;;;;;41280:32;41230:82;:114;;;;-1:-1:-1;14040:6:0;;-1:-1:-1;;;;;41329:15:0;;;14040:6;;41329:15;;41230:114;:144;;;;-1:-1:-1;14040:6:0;;-1:-1:-1;;;;;41361:13:0;;;14040:6;;41361:13;;41230:144;41226:705;;;41401:8;:15;;-1:-1:-1;;;;41401:15:0;-1:-1:-1;;;41401:15:0;;;41514:9;;41496:12;;41401:15;;41471:53;;:38;;:20;;:24;:38::i;:53::-;41445:79;;41539:45;41568:15;41539:28;:45::i;:::-;41643:18;;41604:58;;;17913:25:1;;;-1:-1:-1;;;;;41643:18:0;;;17969:2:1;17954:18;;17947:60;41604:58:0;;17886:18:1;41604:58:0;;;;;;;41691:18;41712:53;41755:9;;41712:38;41737:12;;41712:20;:24;;:38;;;;:::i;:53::-;41691:74;;41780:26;41795:10;41780:14;:26::i;:::-;41826:31;;17703:25:1;;;41826:31:0;;17691:2:1;17676:18;41826:31:0;;;;;;;-1:-1:-1;;41874:8:0;:16;;-1:-1:-1;;;;41874:16:0;;;-1:-1:-1;41874:16:0;41226:705;41961:8;;-1:-1:-1;;;;;42070:25:0;;41945:12;42070:25;;;:19;:25;;;;;;41961:8;-1:-1:-1;;;41961:8:0;;;;;41960:9;;42070:25;;:52;;-1:-1:-1;;;;;;42099:23:0;;;;;;:19;:23;;;;;;;;42070:52;42067:99;;;-1:-1:-1;42149:5:0;42067:99;42181:7;42178:3160;;;-1:-1:-1;;;;;42208:31:0;;;;;;:25;:31;;;;;;;;42205:2278;;;42263:9;;-1:-1:-1;;;42263:9:0;;;;42255:46;;;;-1:-1:-1;;;42255:46:0;;15805:2:1;42255:46:0;;;15787:21:1;15844:2;15824:18;;;15817:30;15883:26;15863:18;;;15856:54;15927:18;;42255:46:0;15603:348:1;42255:46:0;42352:23;;42342:6;:33;;42316:135;;;;-1:-1:-1;;;42316:135:0;;12165:2:1;42316:135:0;;;12147:21:1;12204:2;12184:18;;;12177:30;12243:34;12223:18;;;12216:62;-1:-1:-1;;;12294:18:1;;;12287:38;12342:19;;42316:135:0;11963:404:1;42316:135:0;42532:14;;42522:6;42506:13;42516:2;42506:9;:13::i;:::-;:22;;;;:::i;:::-;:40;;42480:138;;;;-1:-1:-1;;;42480:138:0;;12574:2:1;42480:138:0;;;12556:21:1;12613:2;12593:18;;;12586:30;12652:34;12632:18;;;12625:62;-1:-1:-1;;;12703:18:1;;;12696:34;12747:19;;42480:138:0;12372:400:1;42480:138:0;42682:10;;42663:15;:29;;;;;;42711:26;;-1:-1:-1;;;;;;42724:13:0;;;;;;:9;:13;;;;;;;;42723:14;42711:26;42707:62;;;42752:8;:17;;;;;;;-1:-1:-1;42752:17:0;;;;;;;;-1:-1:-1;;;;;;42752:17:0;-1:-1:-1;;;;;42752:17:0;;;;;42707:62;42801:9;;-1:-1:-1;;;42801:9:0;;;;:27;;;;-1:-1:-1;;;;;;42815:13:0;;;;;;:9;:13;;;;;;;;42814:14;42801:27;42798:62;;;42843:8;:17;;;;;;;-1:-1:-1;42843:17:0;;;;;;;;-1:-1:-1;;;;;;42843:17:0;-1:-1:-1;;;;;42843:17:0;;;;;42798:62;42892:13;;-1:-1:-1;;;42892:13:0;;;;:21;;42909:4;42892:21;42889:119;;;42960:32;42981:2;42985:6;42960:20;:32::i;:::-;-1:-1:-1;;;;;42933:12:0;;;;;;:8;:12;;;;;:24;;:59;42889:119;43041:18;;;17913:25:1;;;-1:-1:-1;;;;;17974:32:1;;17969:2;17954:18;;17947:60;43041:18:0;;17886::1;43041::0;;;;;;;42240:849;42205:2278;;;-1:-1:-1;;;;;43097:29:0;;;;;;:25;:29;;;;;;;;43094:1389;;;-1:-1:-1;;;;;43155:15:0;;;;;;:9;:15;;;;;;;;43154:16;43146:43;;;;-1:-1:-1;;;43146:43:0;;12979:2:1;43146:43:0;;;12961:21:1;13018:2;12998:18;;;12991:30;-1:-1:-1;;;13037:18:1;;;13030:44;13091:18;;43146:43:0;12777:338:1;43146:43:0;43226:24;;43216:6;:34;;43208:105;;;;-1:-1:-1;;;43208:105:0;;15378:2:1;43208:105:0;;;15360:21:1;15417:2;15397:18;;;15390:30;15456:34;15436:18;;;15429:62;15527:28;15507:18;;;15500:56;15573:19;;43208:105:0;15176:422:1;43208:105:0;43337:21;;-1:-1:-1;;;43337:21:0;;;;:29;;43362:4;43337:29;:74;;;;-1:-1:-1;;;;;;43370:14:0;;;;;;:8;:14;;;;;:32;;;;;:41;43337:74;43334:492;;;43435:11;43449:15;43459:4;43449:9;:15::i;:::-;43435:29;;43496:1;43490:3;:7;43487:320;;;43543:10;:3;43551:1;43543:7;:10::i;:::-;43533:6;:20;;43525:29;;;;;;-1:-1:-1;;;;;43581:14:0;;;;;;:8;:14;;;;;:25;;:35;;43610:6;;43581:14;:35;;43610:6;;43581:35;:::i;:::-;;;;-1:-1:-1;43675:10:0;;-1:-1:-1;43675:3:0;43683:1;43675:7;:10::i;:::-;-1:-1:-1;;;;;43646:14:0;;;;;;:8;:14;;;;;:25;;;:39;43643:141;;-1:-1:-1;;;;;43717:14:0;;;;;;:8;:14;;;;;:32;;:39;;-1:-1:-1;;43717:39:0;43752:4;43717:39;;;43643:141;43412:414;43334:492;43865:27;43885:6;43865:15;43875:4;43865:9;:15::i;:::-;:19;;:27::i;:::-;43862:109;;-1:-1:-1;;;;;43921:14:0;;43950:1;43921:14;;;:8;:14;;;;;:26;;:30;43862:109;43990:21;;;17913:25:1;;;-1:-1:-1;;;;;17974:32:1;;17969:2;17954:18;;17947:60;43990:21:0;;17886:18:1;43990:21:0;;;;;;;43094:1389;;;-1:-1:-1;;;;;44051:25:0;;;;;;:19;:25;;;;;;;;44050:26;:54;;;;-1:-1:-1;;;;;;44081:23:0;;;;;;:19;:23;;;;;;;;44080:24;44050:54;44046:437;;;44141:13;;-1:-1:-1;;;44141:13:0;;;;:21;;44158:4;44141:21;44138:119;;;44209:32;44230:2;44234:6;44209:20;:32::i;:::-;-1:-1:-1;;;;;44182:12:0;;;;;;:8;:12;;;;;:24;;:59;44138:119;44292:27;44312:6;44292:15;44302:4;44292:9;:15::i;:27::-;44289:109;;-1:-1:-1;;;;;44348:14:0;;44377:1;44348:14;;;:8;:14;;;;;:26;;:30;44289:109;44435:32;;;-1:-1:-1;;;;;6725:15:1;;;6707:34;;6777:15;;6772:2;6757:18;;6750:43;6809:18;;;6802:34;;;44435:32:0;;6657:2:1;6642:18;44435:32:0;;;;;;;44046:437;44508:12;44523:30;44549:3;44523:21;44534:9;;44523:6;:10;;:21;;;;:::i;:30::-;-1:-1:-1;;;;;44568:29:0;;;;;;:25;:29;;;;;;44508:45;;-1:-1:-1;44568:29:0;;44565:92;;;44622:22;44640:3;44622:13;:6;44633:1;44622:10;:13::i;:22::-;44614:30;;;;:::i;:::-;;;44565:92;44717:15;;44679:23;;-1:-1:-1;;;44717:15:0;;;;:23;;44736:4;44717:23;:53;;;;-1:-1:-1;;;;;;44745:25:0;;;;;;:19;:25;;;;;;;;44744:26;44717:53;:86;;;;-1:-1:-1;;;;;;44774:29:0;;;;;;:25;:29;;;;;;;;44717:86;44714:470;;;44820:9;44859:4;44848:15;;;;44845:151;;;44911:17;;44888:20;:40;:90;;44977:1;44888:90;;;44956:17;;44931:43;;:20;;:24;:43::i;:::-;44884:94;;44845:151;-1:-1:-1;;;;;45048:14:0;;;;;;:8;:14;;;;;:26;;;45029:57;;45076:6;45084:1;45029:18;:57::i;:::-;45011:75;;45138:4;45120:15;:22;:51;;45170:1;45120:51;;;45145:22;45163:4;45145:15;:22;:::i;:::-;45102:69;;44804:380;44714:470;45215:34;45226:22;45233:15;45226:4;:22;:::i;:::-;45215:6;;:10;:34::i;:::-;45206:43;-1:-1:-1;45266:60:0;45282:4;45296;45303:22;45310:15;45303:4;:22;:::i;:::-;45266:15;:60::i;:::-;42190:3148;;42178:3160;45350:33;45366:4;45372:2;45376:6;45350:15;:33::i;:::-;40668:4723;;;;40589:4802;;;:::o;17100:192::-;17186:7;17222:12;17214:6;;;;17206:29;;;;-1:-1:-1;;;17206:29:0;;;;;;;;:::i;:::-;-1:-1:-1;17246:9:0;17258:5;17262:1;17258;:5;:::i;:::-;17246:17;17100:192;-1:-1:-1;;;;;17100:192:0:o;39765:313::-;-1:-1:-1;;;;;39856:31:0;;;;;;:25;:31;;;;;;;;:40;;;;;;;39848:116;;;;-1:-1:-1;;;39848:116:0;;16563:2:1;39848:116:0;;;16545:21:1;16602:2;16582:18;;;16575:30;16641:34;16621:18;;;16614:62;16712:33;16692:18;;;16685:61;16763:19;;39848:116:0;16361:427:1;39848:116:0;-1:-1:-1;;;;;39975:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;39975:39:0;;;;;;;;;;40030:40;;39975:39;;:31;40030:40;;;39765:313;;:::o;31963:110::-;32043:22;32049:7;32058:6;32043:5;:22::i;31533:418::-;-1:-1:-1;;;;;31617:21:0;;31609:67;;;;-1:-1:-1;;;31609:67:0;;14570:2:1;31609:67:0;;;14552:21:1;14609:2;14589:18;;;14582:30;14648:34;14628:18;;;14621:62;-1:-1:-1;;;14699:18:1;;;14692:31;14740:19;;31609:67:0;14368:397:1;31609:67:0;31772:68;31795:6;31772:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31772:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;31751:18:0;;:9;:18;;;;;;;;;;:89;31866:12;;:24;;31883:6;31866:16;:24::i;:::-;31851:12;:39;31906:37;;17703:25:1;;;31932:1:0;;-1:-1:-1;;;;;31906:37:0;;;;;17691:2:1;17676:18;31906:37:0;;;;;;;;31533:418;;:::o;19126:278::-;19212:7;19247:12;19240:5;19232:28;;;;-1:-1:-1;;;19232:28:0;;;;;;;;:::i;:::-;-1:-1:-1;19271:9:0;19283:5;19287:1;19283;:5;:::i;29964:571::-;-1:-1:-1;;;;;30104:20:0;;30096:70;;;;-1:-1:-1;;;30096:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30185:23:0;;30177:71;;;;-1:-1:-1;;;30177:71:0;;;;;;;:::i;:::-;30339;30361:6;30339:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30339:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;30319:17:0;;;:9;:17;;;;;;;;;;;:91;;;;30444:20;;;;;;;:32;;30469:6;30444:24;:32::i;:::-;-1:-1:-1;;;;;30421:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;30492:35;17703:25:1;;;30421:20:0;;30492:35;;;;;;17676:18:1;30492:35:0;17557:177:1;47510:178:0;47584:24;47601:6;47584:16;:24::i;:::-;47627:18;;47619:59;;-1:-1:-1;;;;;47627:18:0;;;;47656:21;47619:59;;;;;47627:18;47619:59;47627:18;47619:59;47656:21;47627:18;47619:59;;;;;;;;;;;;;;;;;;;47696:922;47805:12;47820:13;:6;47831:1;47820:10;:13::i;:::-;47805:28;-1:-1:-1;47844:17:0;47864:16;:6;47805:28;47864:10;:16::i;:::-;47844:36;-1:-1:-1;48183:21:0;48249:22;48266:4;48249:16;:22::i;:::-;48402:18;48423:41;:21;48449:14;48423:25;:41::i;:::-;48402:62;;48514:35;48527:9;48538:10;48514:12;:35::i;:::-;48567:43;;;19205:25:1;;;19261:2;19246:18;;19239:34;;;19289:18;;;19282:34;;;48567:43:0;;19193:2:1;19178:18;48567:43:0;;;;;;;47744:874;;;;47696:922;:::o;46962:540::-;47051:13;47076:20;47099:17;:15;:17::i;:::-;-1:-1:-1;;;;;47140:15:0;;47127:10;47140:15;;;:8;:15;;;;;:27;;;47076:40;;-1:-1:-1;47201:16:0;47149:5;47201:9;:16::i;:::-;47178:39;-1:-1:-1;47231:7:0;;;:28;;-1:-1:-1;47242:17:0;;47231:28;47228:267;;;47283:12;47275:20;;47228:267;;;47315:17;47312:183;;47356:2;47348:10;;47312:183;;;47397:86;47455:27;47470:12;47455;:27;:::i;:::-;47421;47436:12;47421;:27;:::i;:::-;47399:17;47404:12;47399:2;:17;:::i;:::-;47398:51;;;;:::i;47397:86::-;47389:94;;47312:183;47065:437;;;46962:540;;;;:::o;16661:136::-;16719:7;16746:43;16750:1;16753;16746:43;;;;;;;;;;;;;;;;;:3;:43::i;46060:890::-;46183:17;46212:20;46235:17;:15;:17::i;:::-;46212:40;-1:-1:-1;46263:21:0;46298:16;;;:39;;;46334:3;46318:13;:19;46298:39;46295:648;;;46365:1;46353:13;;46295:648;;;46415:12;46396:16;:11;46410:2;46396:16;:::i;:::-;:31;46393:550;;;46455:3;46489:62;46496:53;46513:35;46546:1;46514:26;46529:11;46514:12;:26;:::i;46513:35::-;46496:12;;:16;:53::i;:::-;46489:1;;:5;:62::i;:::-;46473:78;;46578:19;46569:6;;:28;46566:322;;;46659:19;46650:6;;:28;;;;:::i;:::-;46633:13;:45;;:92;;46712:13;46633:92;;;46690:19;46681:6;;:28;;;;:::i;:::-;46617:108;;46773:1;46757:13;:17;:63;;46819:1;46757:63;;;46777:39;46814:1;46777:32;:13;46795;46777:17;:32::i;:39::-;46745:75;;46566:322;;;46871:1;46859:13;;46566:322;46428:471;46393:550;;;46930:1;46918:13;;46393:550;46201:749;;46060:890;;;;;:::o;30822:378::-;-1:-1:-1;;;;;30906:21:0;;30898:65;;;;-1:-1:-1;;;30898:65:0;;17399:2:1;30898:65:0;;;17381:21:1;17438:2;17418:18;;;17411:30;17477:33;17457:18;;;17450:61;17528:18;;30898:65:0;17197:355:1;30898:65:0;31053:12;;:24;;31070:6;31053:16;:24::i;:::-;31038:12;:39;-1:-1:-1;;;;;31109:18:0;;:9;:18;;;;;;;;;;;:30;;31132:6;31109:22;:30::i;:::-;-1:-1:-1;;;;;31088:18:0;;:9;:18;;;;;;;;;;;:51;;;;31155:37;;17703:25:1;;;31088:18:0;;:9;;31155:37;;17676:18:1;31155:37:0;17557:177:1;48626:595:0;48780:16;;;48794:1;48780:16;;;;;;;;48756:21;;48780:16;;;;;;;;;;-1:-1:-1;48780:16:0;48756:40;;48825:4;48807;48812:1;48807:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;48807:23:0;;;:7;;;;;;;;;;:23;;;;48851:15;;:22;;;-1:-1:-1;;;48851:22:0;;;;:15;;;;;:20;;:22;;;;;48807:7;;48851:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48841:4;48846:1;48841:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;48841:32:0;;;:7;;;;;;;;;:32;48918:15;;48886:62;;48903:4;;48918:15;48936:11;48886:8;:62::i;:::-;48987:15;;:224;;-1:-1:-1;;;48987:224:0;;-1:-1:-1;;;;;48987:15:0;;;;:66;;:224;;49068:11;;48987:15;;49138:4;;49165;;49185:15;;48987:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48681:540;48626:595;:::o;49229:536::-;49411:15;;49379:62;;49396:4;;-1:-1:-1;;;;;49411:15:0;49429:11;49379:8;:62::i;:::-;49484:15;;49696:17;;49484:271;;-1:-1:-1;;;49484:271:0;;49556:4;49484:271;;;7467:34:1;7517:18;;;7510:34;;;49484:15:0;7560:18:1;;;7553:34;;;7603:18;;;7596:34;-1:-1:-1;;;;;49696:17:0;;;7646:19:1;;;7639:44;49729:15:0;7699:19:1;;;7692:35;49484:15:0;;;:31;;49523:9;;7401:19:1;;49484:271:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;49229:536;;:::o;14:188:1:-;93:13;;-1:-1:-1;;;;;135:42:1;;125:53;;115:81;;192:1;189;182:12;115:81;14:188;;;:::o;207:247::-;266:6;319:2;307:9;298:7;294:23;290:32;287:52;;;335:1;332;325:12;287:52;374:9;361:23;393:31;418:5;393:31;:::i;459:251::-;529:6;582:2;570:9;561:7;557:23;553:32;550:52;;;598:1;595;588:12;550:52;630:9;624:16;649:31;674:5;649:31;:::i;975:388::-;1043:6;1051;1104:2;1092:9;1083:7;1079:23;1075:32;1072:52;;;1120:1;1117;1110:12;1072:52;1159:9;1146:23;1178:31;1203:5;1178:31;:::i;:::-;1228:5;-1:-1:-1;1285:2:1;1270:18;;1257:32;1298:33;1257:32;1298:33;:::i;:::-;1350:7;1340:17;;;975:388;;;;;:::o;1368:456::-;1445:6;1453;1461;1514:2;1502:9;1493:7;1489:23;1485:32;1482:52;;;1530:1;1527;1520:12;1482:52;1569:9;1556:23;1588:31;1613:5;1588:31;:::i;:::-;1638:5;-1:-1:-1;1695:2:1;1680:18;;1667:32;1708:33;1667:32;1708:33;:::i;:::-;1368:456;;1760:7;;-1:-1:-1;;;1814:2:1;1799:18;;;;1786:32;;1368:456::o;1829:382::-;1894:6;1902;1955:2;1943:9;1934:7;1930:23;1926:32;1923:52;;;1971:1;1968;1961:12;1923:52;2010:9;1997:23;2029:31;2054:5;2029:31;:::i;:::-;2079:5;-1:-1:-1;2136:2:1;2121:18;;2108:32;2149:30;2108:32;2149:30;:::i;2216:315::-;2284:6;2292;2345:2;2333:9;2324:7;2320:23;2316:32;2313:52;;;2361:1;2358;2351:12;2313:52;2400:9;2387:23;2419:31;2444:5;2419:31;:::i;:::-;2469:5;2521:2;2506:18;;;;2493:32;;-1:-1:-1;;;2216:315:1:o;2536:750::-;2628:6;2636;2644;2697:2;2685:9;2676:7;2672:23;2668:32;2665:52;;;2713:1;2710;2703:12;2665:52;2753:9;2740:23;2782:18;2823:2;2815:6;2812:14;2809:34;;;2839:1;2836;2829:12;2809:34;2877:6;2866:9;2862:22;2852:32;;2922:7;2915:4;2911:2;2907:13;2903:27;2893:55;;2944:1;2941;2934:12;2893:55;2984:2;2971:16;3010:2;3002:6;2999:14;2996:34;;;3026:1;3023;3016:12;2996:34;3081:7;3074:4;3064:6;3061:1;3057:14;3053:2;3049:23;3045:34;3042:47;3039:67;;;3102:1;3099;3092:12;3039:67;3133:4;3125:13;;;;-1:-1:-1;3157:6:1;-1:-1:-1;;3198:20:1;;3185:34;3228:28;3185:34;3228:28;:::i;:::-;3275:5;3265:15;;;2536:750;;;;;:::o;3291:241::-;3347:6;3400:2;3388:9;3379:7;3375:23;3371:32;3368:52;;;3416:1;3413;3406:12;3368:52;3455:9;3442:23;3474:28;3496:5;3474:28;:::i;3537:245::-;3604:6;3657:2;3645:9;3636:7;3632:23;3628:32;3625:52;;;3673:1;3670;3663:12;3625:52;3705:9;3699:16;3724:28;3746:5;3724:28;:::i;3787:450::-;3874:6;3882;3890;3943:2;3931:9;3922:7;3918:23;3914:32;3911:52;;;3959:1;3956;3949:12;3911:52;3982:40;4012:9;3982:40;:::i;:::-;3972:50;;4041:49;4086:2;4075:9;4071:18;4041:49;:::i;:::-;4031:59;;4133:2;4122:9;4118:18;4112:25;4177:10;4170:5;4166:22;4159:5;4156:33;4146:61;;4203:1;4200;4193:12;4242:180;4301:6;4354:2;4342:9;4333:7;4329:23;4325:32;4322:52;;;4370:1;4367;4360:12;4322:52;-1:-1:-1;4393:23:1;;4242:180;-1:-1:-1;4242:180:1:o;4427:184::-;4497:6;4550:2;4538:9;4529:7;4525:23;4521:32;4518:52;;;4566:1;4563;4556:12;4518:52;-1:-1:-1;4589:16:1;;4427:184;-1:-1:-1;4427:184:1:o;4616:444::-;4687:6;4695;4703;4756:2;4744:9;4735:7;4731:23;4727:32;4724:52;;;4772:1;4769;4762:12;4724:52;4808:9;4795:23;4785:33;;4868:2;4857:9;4853:18;4840:32;4881:28;4903:5;4881:28;:::i;:::-;4928:5;-1:-1:-1;4985:2:1;4970:18;;4957:32;4998:30;4957:32;4998:30;:::i;5065:248::-;5133:6;5141;5194:2;5182:9;5173:7;5169:23;5165:32;5162:52;;;5210:1;5207;5200:12;5162:52;-1:-1:-1;;5233:23:1;;;5303:2;5288:18;;;5275:32;;-1:-1:-1;5065:248:1:o;5318:316::-;5395:6;5403;5411;5464:2;5452:9;5443:7;5439:23;5435:32;5432:52;;;5480:1;5477;5470:12;5432:52;-1:-1:-1;;5503:23:1;;;5573:2;5558:18;;5545:32;;-1:-1:-1;5624:2:1;5609:18;;;5596:32;;5318:316;-1:-1:-1;5318:316:1:o;5639:306::-;5727:6;5735;5743;5796:2;5784:9;5775:7;5771:23;5767:32;5764:52;;;5812:1;5809;5802:12;5764:52;5841:9;5835:16;5825:26;;5891:2;5880:9;5876:18;5870:25;5860:35;;5935:2;5924:9;5920:18;5914:25;5904:35;;5639:306;;;;;:::o;7738:794::-;7960:2;7972:21;;;7945:18;;8028:22;;;7912:4;8107:6;8081:2;8066:18;;7912:4;8141:304;8155:6;8152:1;8149:13;8141:304;;;8230:6;8217:20;8250:31;8275:5;8250:31;:::i;:::-;-1:-1:-1;;;;;8306:31:1;8294:44;;8361:4;8420:15;;;;8385:12;;;;8334:1;8170:9;8141:304;;;8145:3;8462;8454:11;;;;8517:6;8510:14;8503:22;8496:4;8485:9;8481:20;8474:52;7738:794;;;;;;:::o;8963:597::-;9075:4;9104:2;9133;9122:9;9115:21;9165:6;9159:13;9208:6;9203:2;9192:9;9188:18;9181:34;9233:1;9243:140;9257:6;9254:1;9251:13;9243:140;;;9352:14;;;9348:23;;9342:30;9318:17;;;9337:2;9314:26;9307:66;9272:10;;9243:140;;;9401:6;9398:1;9395:13;9392:91;;;9471:1;9466:2;9457:6;9446:9;9442:22;9438:31;9431:42;9392:91;-1:-1:-1;9544:2:1;9523:15;-1:-1:-1;;9519:29:1;9504:45;;;;9551:2;9500:54;;8963:597;-1:-1:-1;;;8963:597:1:o;9565:399::-;9767:2;9749:21;;;9806:2;9786:18;;;9779:30;9845:34;9840:2;9825:18;;9818:62;-1:-1:-1;;;9911:2:1;9896:18;;9889:33;9954:3;9939:19;;9565:399::o;13522:356::-;13724:2;13706:21;;;13743:18;;;13736:30;13802:34;13797:2;13782:18;;13775:62;13869:2;13854:18;;13522:356::o;14770:401::-;14972:2;14954:21;;;15011:2;14991:18;;;14984:30;15050:34;15045:2;15030:18;;15023:62;-1:-1:-1;;;15116:2:1;15101:18;;15094:35;15161:3;15146:19;;14770:401::o;18018:980::-;18280:4;18328:3;18317:9;18313:19;18359:6;18348:9;18341:25;18385:2;18423:6;18418:2;18407:9;18403:18;18396:34;18466:3;18461:2;18450:9;18446:18;18439:31;18490:6;18525;18519:13;18556:6;18548;18541:22;18594:3;18583:9;18579:19;18572:26;;18633:2;18625:6;18621:15;18607:29;;18654:1;18664:195;18678:6;18675:1;18672:13;18664:195;;;18743:13;;-1:-1:-1;;;;;18739:39:1;18727:52;;18834:15;;;;18799:12;;;;18775:1;18693:9;18664:195;;;-1:-1:-1;;;;;;;18915:32:1;;;;18910:2;18895:18;;18888:60;-1:-1:-1;;;18979:3:1;18964:19;18957:35;18876:3;18018:980;-1:-1:-1;;;18018:980:1:o;19994:128::-;20034:3;20065:1;20061:6;20058:1;20055:13;20052:39;;;20071:18;;:::i;:::-;-1:-1:-1;20107:9:1;;19994:128::o;20127:217::-;20167:1;20193;20183:132;;20237:10;20232:3;20228:20;20225:1;20218:31;20272:4;20269:1;20262:15;20300:4;20297:1;20290:15;20183:132;-1:-1:-1;20329:9:1;;20127:217::o;20349:168::-;20389:7;20455:1;20451;20447:6;20443:14;20440:1;20437:21;20432:1;20425:9;20418:17;20414:45;20411:71;;;20462:18;;:::i;:::-;-1:-1:-1;20502:9:1;;20349:168::o;20522:125::-;20562:4;20590:1;20587;20584:8;20581:34;;;20595:18;;:::i;:::-;-1:-1:-1;20632:9:1;;20522:125::o;20652:380::-;20731:1;20727:12;;;;20774;;;20795:61;;20849:4;20841:6;20837:17;20827:27;;20795:61;20902:2;20894:6;20891:14;20871:18;20868:38;20865:161;;;20948:10;20943:3;20939:20;20936:1;20929:31;20983:4;20980:1;20973:15;21011:4;21008:1;21001:15;20865:161;;20652:380;;;:::o;21037:135::-;21076:3;-1:-1:-1;;21097:17:1;;21094:43;;;21117:18;;:::i;:::-;-1:-1:-1;21164:1:1;21153:13;;21037:135::o;21177:127::-;21238:10;21233:3;21229:20;21226:1;21219:31;21269:4;21266:1;21259:15;21293:4;21290:1;21283:15;21309:127;21370:10;21365:3;21361:20;21358:1;21351:31;21401:4;21398:1;21391:15;21425:4;21422:1;21415:15;21573:131;-1:-1:-1;;;;;21648:31:1;;21638:42;;21628:70;;21694:1;21691;21684:12;21709:118;21795:5;21788:13;21781:21;21774:5;21771:32;21761:60;;21817:1;21814;21807:12

Swarm Source

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