ETH Price: $2,543.61 (+4.36%)

Token

BullishInu (LAMBO)
 

Overview

Max Total Supply

1,000,000,000,000 LAMBO

Holders

212

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
843,382,778.466675763240805065 LAMBO

Value
$0.00
0x450b2f19d247eb1071d5c96dabf16a8dd7add1cf
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:
BullishInu

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.12;

/*
     * TG: https://t.me/bullishinu
     * Twitter: https://twitter.com/BULLISHINUTOKEN
     * Web: https://www.bullishinutoken.com
*/

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal virtual view returns (address payable) {
        return msg.sender;
    }

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

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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
    );
}

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
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;
    }

    function ceil(uint256 a, uint256 m) internal pure returns (uint256) {
    uint256 c = add(a,m);
    uint256 d = sub(c,1);
    return mul(div(d,m),m);
  }
}

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;


            bytes32 accountHash
         = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            codehash := extcodehash(account)
        }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(
        address target,
        bytes memory data,
        uint256 weiValue,
        string memory errorMessage
    ) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{value: weiValue}(
            data
        );
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

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


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

interface IUniswapV2Pair {
    function sync() external;
}

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

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
      address token,
      uint liquidity,
      uint amountTokenMin,
      uint amountETHMin,
      address to,
      uint deadline
    ) external returns (uint amountETH);
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    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;
}


contract BullishInu is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

    string private _name = "BullishInu";
    string private _symbol = "LAMBO";
    uint256 private _decimals = 18;

    mapping(address => uint256) internal _reflectionBalance;
    mapping(address => uint256) internal _tokenBalance;
    mapping(address => mapping(address => uint256)) internal _allowances;

    uint256 private constant MAX = ~uint256(0);
    uint256 internal _tokenTotal = 1_000_000_000_000*(10**decimals());
    uint256 internal _reflectionTotal = (MAX - (MAX % _tokenTotal));

    mapping(address => bool) isTaxless;
    mapping(address => bool) internal _isExcluded;
    address[] internal _excluded;


    uint256 public _feeDecimal = 0; // do not change this value...
    uint256 public _taxFee = 0; // means 2% which distribute to all holders
    uint256 public _liquidityFee = 10; // means 10% add liquidity on each buy and sell
    uint256 public _burnFee = 0; // .


    address liquidityWallet=0x85253Ec98Ee7518E6E2f8A3DC27e1C117Ac92Bb8;
    address DEAD = 0x000000000000000000000000000000000000dEaD;

    uint256 public _taxFeeTotal;
    uint256 public _burnFeeTotal;
    uint256 public _liquidityFeeTotal;

    bool public isFeeActive = true; // should be true
    bool private inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;

    uint256 public maxTxAmount = 10_000_000_000_000*(10**decimals()) ; 
    uint256 public minTokensBeforeSwap = 10_000_000*(10**decimals());

    IUniswapV2Router02 public  uniswapV2Router;
    address public  uniswapV2Pair;

    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(uint256 tokensSwapped,uint256 ethReceived, uint256 tokensIntoLiqudity);

    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    constructor() public {
        //IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x10ED43C718714eb63d5aA57B78B54704E256024E); // for BSC Pncake v2
        // IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x05fF2B0DB69458A0750badebc4f9e13aDd608C7F); // for BSC pancake v1
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // for Ethereum uniswap v2

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

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

        // exlcude pair address from tax rewards
        _isExcluded[address(uniswapV2Pair)] = true;
        _excluded.push(address(uniswapV2Pair));

        _reflectionBalance[owner()] = _reflectionTotal;
        emit Transfer(address(0),owner(), _tokenTotal);
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint256) {
        return _decimals;
    }

    function totalSupply() public override view returns (uint256) {
        return _tokenTotal;
    }

    function balanceOf(address account) public override view returns (uint256) {
        if (_isExcluded[account]) return _tokenBalance[account];
        return tokenFromReflection(_reflectionBalance[account]);
    }

    function transfer(address recipient, uint256 amount)
        public
        override
        virtual
        returns (bool)
    {
       _transfer(_msgSender(),recipient,amount);
        return true;
    }

    function allowance(address owner, address spender)
        public
        override
        view
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount)
        public
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override virtual returns (bool) {
        _transfer(sender,recipient,amount);

        _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub( amount,"ERC20: transfer amount exceeds allowance"));
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].add(addedValue)
        );
        return true;
    }

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

    function isExcluded(address account) public view returns (bool) {
        return _isExcluded[account];
    }

    function reflectionFromToken(uint256 tokenAmount, bool deductTransferFee)
        public
        view
        returns (uint256)
    {
        require(tokenAmount <= _tokenTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            return tokenAmount.mul(_getReflectionRate());
        } else {
            return
                tokenAmount.sub(tokenAmount.mul(_taxFee).div(10** _feeDecimal + 2)).mul(
                    _getReflectionRate()
                );
        }
    }

    function tokenFromReflection(uint256 reflectionAmount)
        public
        view
        returns (uint256)
    {
        require(
            reflectionAmount <= _reflectionTotal,
            "Amount must be less than total reflections"
        );
        uint256 currentRate = _getReflectionRate();
        return reflectionAmount.div(currentRate);
    }

    function excludeAccount(address account) external onlyOwner() {
        require(
            account != address(uniswapV2Router),
            "ERC20: We can not exclude Uniswap router."
        );
        require(!_isExcluded[account], "ERC20: Account is already excluded");
        if (_reflectionBalance[account] > 0) {
            _tokenBalance[account] = tokenFromReflection(
                _reflectionBalance[account]
            );
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeAccount(address account) external onlyOwner() {
        require(_isExcluded[account], "ERC20: Account is already included");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tokenBalance[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) private {
        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);
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) private {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");

        bool isOwnerTransfer = sender == owner() || recipient == owner();
        bool isLiquidityWalletTransfer = sender == liquidityWallet || recipient == liquidityWallet;
        bool isRouterTransfer = sender == address(uniswapV2Router) || recipient == address(uniswapV2Router);

        if(!isOwnerTransfer && !isLiquidityWalletTransfer && !isRouterTransfer) {
            require(amount <= maxTxAmount, "Transfer Limit Exceeds");
        }

        uint256 contractTokenBalance = balanceOf(address(this));
        bool overMinTokenBalance = contractTokenBalance >= minTokensBeforeSwap;
        if (!inSwapAndLiquify && overMinTokenBalance && sender != uniswapV2Pair && swapAndLiquifyEnabled) {
            swapAndLiquify(contractTokenBalance);
        }

        uint256 transferAmount = amount;
        uint256 rate = _getReflectionRate();

        if(isFeeActive && !isTaxless[_msgSender()] && !isTaxless[recipient] && !inSwapAndLiquify){

            transferAmount = collectFee(sender,transferAmount,rate);

        }

        //transfer reflection
        _reflectionBalance[sender] = _reflectionBalance[sender].sub(amount.mul(rate));

        _reflectionBalance[recipient] = _reflectionBalance[recipient].add(transferAmount.mul(rate));

        //if any account belongs to the excludedAccount transfer token
        if (_isExcluded[sender]) {
            _tokenBalance[sender] = _tokenBalance[sender].sub(amount);
        }
        if (_isExcluded[recipient]) {
            _tokenBalance[recipient] = _tokenBalance[recipient].add(transferAmount);

            emit Transfer(sender, recipient, transferAmount);

        return;
        }

        emit Transfer(sender, recipient, transferAmount);

    }

    function collectFee(address account, uint256 amount, uint256 rate) private returns (uint256) {
        uint256 transferAmount = amount;

        //@dev tax fee
        if(_taxFee != 0){
            uint256 taxFee = amount.mul(_taxFee).div(10**(_feeDecimal + 2));
            transferAmount = transferAmount.sub(taxFee);
            _reflectionTotal = _reflectionTotal.sub(taxFee.mul(rate));
            _taxFeeTotal = _taxFeeTotal.add(taxFee);
        }

        //@dev liquidity fee
        if(_liquidityFee != 0){
            uint256 liquidityFee = amount.mul(_liquidityFee).div(10**(_feeDecimal + 2));
            transferAmount = transferAmount.sub(liquidityFee);
            _reflectionBalance[address(this)] = _reflectionBalance[address(this)].add(liquidityFee.mul(rate));
            if(_isExcluded[address(this)]){
                _tokenBalance[address(this)] = _tokenBalance[address(this)].add(liquidityFee);
            }
            _liquidityFeeTotal = _liquidityFeeTotal.add(liquidityFee);
            emit Transfer(account,address(this),liquidityFee);
        }

        if(_burnFee != 0){
            uint256 burnFee = amount.mul(_burnFee).div(10**(_feeDecimal + 2));
            transferAmount = transferAmount.sub(burnFee);
            _tokenTotal = _tokenTotal.sub(burnFee);
            _reflectionBalance[DEAD] = _reflectionBalance[DEAD].add(burnFee.mul(rate));
            if (_isExcluded[DEAD]) {
                _tokenBalance[DEAD] = _tokenBalance[DEAD].add(burnFee);
            }
            _reflectionTotal = _reflectionTotal.sub(burnFee.mul(rate));
            _burnFeeTotal = _burnFeeTotal.add(burnFee);
            emit Transfer(account,DEAD,burnFee);
        }

        return transferAmount;
    }

    function _getReflectionRate() private view returns (uint256) {
        uint256 reflectionSupply = _reflectionTotal;
        uint256 tokenSupply = _tokenTotal;
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (
                _reflectionBalance[_excluded[i]] > reflectionSupply ||
                _tokenBalance[_excluded[i]] > tokenSupply
            ) return _reflectionTotal.div(_tokenTotal);
            reflectionSupply = reflectionSupply.sub(
                _reflectionBalance[_excluded[i]]
            );
            tokenSupply = tokenSupply.sub(_tokenBalance[_excluded[i]]);
        }
        if (reflectionSupply < _reflectionTotal.div(_tokenTotal))
            return _reflectionTotal.div(_tokenTotal);
        return reflectionSupply.div(tokenSupply);
    }

     function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
         if(contractTokenBalance > maxTxAmount){
             contractTokenBalance = maxTxAmount;
         }
        // 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(contractTokenBalance); // <- 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);

        payable(liquidityWallet).transfer(newBalance);


    }

    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 setPair(address pair) external onlyOwner {
        uniswapV2Pair = pair;
    }

    function setTaxless(address account, bool value) external onlyOwner {
        isTaxless[account] = value;
    }

    function setSwapAndLiquifyEnabled(bool enabled) external onlyOwner {
        swapAndLiquifyEnabled = enabled;
        SwapAndLiquifyEnabledUpdated(enabled);
    }

    function setFeeActive(bool value) external onlyOwner {
        isFeeActive = value;
    }

    function setTaxFee(uint256 fee) external onlyOwner {
        _taxFee = fee;
    }

    function setBurnFee(uint256 fee) external onlyOwner {
        _burnFee = fee;
    }

    function setLiquidityFee(uint256 fee) external onlyOwner {
        _liquidityFee = fee;
    }


    function setMaxTxAmount(uint256 amount) external onlyOwner {
        maxTxAmount = amount;
    }

    function setMinTokensBeforeSwap(uint256 amount) external onlyOwner {
        minTokensBeforeSwap = amount;
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_burnFeeTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feeDecimal","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":"_liquidityFeeTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFeeTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFeeActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minTokensBeforeSwap","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":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"setBurnFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setFeeActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"setLiquidityFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMinTokensBeforeSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setTaxless","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"reflectionAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600a60808190526942756c6c697368496e7560b01b60a09081526200002d916001919062000487565b50604080518082019091526005808252644c414d424f60d81b60209092019182526200005c9160029162000487565b5060126003556200006c6200046e565b600a0a64e8d4a5100002600755600754600019816200008757fe5b06196008556000600c819055600d819055600a600e55600f55601080546001600160a01b03199081167385253ec98ee7518e6e2f8a3dc27e1c117ac92bb8179091556011805490911661dead1790556015805462ff00001960ff199091166001171662010000179055620000fa6200046e565b600a0a6509184e72a00002601655620001186200046e60201b60201c565b600a0a62989680026017553480156200013057600080fd5b5060006200013d62000474565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001da57600080fd5b505afa158015620001ef573d6000803e3d6000fd5b505050506040513d60208110156200020657600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200025757600080fd5b505afa1580156200026c573d6000803e3d6000fd5b505050506040513d60208110156200028357600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620002d657600080fd5b505af1158015620002eb573d6000803e3d6000fd5b505050506040513d60208110156200030257600080fd5b5051601980546001600160a01b03199081166001600160a01b0393841617909155601880549091169183169190911790556001600960006200034362000478565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600984528281208054861660019081179091556019805484168352600a909552928120805490951683179094559154600b8054928301815584527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db990910180546001600160a01b0319169190921617905560085490600490620003f662000478565b6001600160a01b031681526020810191909152604001600020556200041a62000478565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6007546040518082815260200191505060405180910390a35062000523565b60035490565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004ca57805160ff1916838001178555620004fa565b82800160010185558215620004fa579182015b82811115620004fa578251825591602001919060010190620004dd565b50620005089291506200050c565b5090565b5b808211156200050857600081556001016200050d565b6126dd80620005336000396000f3fe60806040526004361061024a5760003560e01c806370a0823111610139578063c0b0fda2116100b6578063e43504da1161007a578063e43504da14610806578063e5d41c6b1461081b578063ec28438a14610830578063f2cc0c181461085a578063f2fde38b1461088d578063f84354f1146108c057610251565b8063c0b0fda21461072d578063c4081a4c14610742578063c49b9a801461076c578063cba0e99614610798578063dd62ed3e146107cb57610251565b806395d89b41116100fd57806395d89b41146106655780639d46cf8a1461067a578063a457c2d71461068f578063a9059cbb146106c8578063b7bfff651461070157610251565b806370a08231146105c0578063715018a6146105f35780638187f516146106085780638c0b5e221461063b5780638da5cb5b1461065057610251565b8063357bf15c116101c757806348a464731161018b57806348a464731461052d57806349bd5a5e146105575780634a74bb021461056c5780634bf2c7c9146105815780636bc87c3a146105ab57610251565b8063357bf15c1461044657806339509351146104725780633b124fe7146104ab5780634549b039146104c057806347f2dc5b146104f257610251565b806319db457d1161020e57806319db457d1461039a57806323b872dd146103af5780632d838119146103f2578063313ce5671461041c578063355bc60b1461043157610251565b806306fdde0314610256578063095ea7b3146102e05780630d9a52191461032d5780631694505e1461035457806318160ddd1461038557610251565b3661025157005b600080fd5b34801561026257600080fd5b5061026b6108f3565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102a557818101518382015260200161028d565b50505050905090810190601f1680156102d25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102ec57600080fd5b506103196004803603604081101561030357600080fd5b506001600160a01b038135169060200135610989565b604080519115158252519081900360200190f35b34801561033957600080fd5b506103426109a7565b60408051918252519081900360200190f35b34801561036057600080fd5b506103696109ad565b604080516001600160a01b039092168252519081900360200190f35b34801561039157600080fd5b506103426109bc565b3480156103a657600080fd5b506103426109c2565b3480156103bb57600080fd5b50610319600480360360608110156103d257600080fd5b506001600160a01b038135811691602081013590911690604001356109c8565b3480156103fe57600080fd5b506103426004803603602081101561041557600080fd5b5035610a4f565b34801561042857600080fd5b50610342610ab1565b34801561043d57600080fd5b50610342610ab7565b34801561045257600080fd5b506104706004803603602081101561046957600080fd5b5035610abd565b005b34801561047e57600080fd5b506103196004803603604081101561049557600080fd5b506001600160a01b038135169060200135610b1a565b3480156104b757600080fd5b50610342610b68565b3480156104cc57600080fd5b50610342600480360360408110156104e357600080fd5b50803590602001351515610b6e565b3480156104fe57600080fd5b506104706004803603604081101561051557600080fd5b506001600160a01b0381351690602001351515610c27565b34801561053957600080fd5b506104706004803603602081101561055057600080fd5b5035610caa565b34801561056357600080fd5b50610369610d07565b34801561057857600080fd5b50610319610d16565b34801561058d57600080fd5b50610470600480360360208110156105a457600080fd5b5035610d25565b3480156105b757600080fd5b50610342610d82565b3480156105cc57600080fd5b50610342600480360360208110156105e357600080fd5b50356001600160a01b0316610d88565b3480156105ff57600080fd5b50610470610dea565b34801561061457600080fd5b506104706004803603602081101561062b57600080fd5b50356001600160a01b0316610e8c565b34801561064757600080fd5b50610342610f06565b34801561065c57600080fd5b50610369610f0c565b34801561067157600080fd5b5061026b610f1b565b34801561068657600080fd5b50610342610f79565b34801561069b57600080fd5b50610319600480360360408110156106b257600080fd5b506001600160a01b038135169060200135610f7f565b3480156106d457600080fd5b50610319600480360360408110156106eb57600080fd5b506001600160a01b038135169060200135610fe7565b34801561070d57600080fd5b506104706004803603602081101561072457600080fd5b50351515610ffb565b34801561073957600080fd5b50610342611066565b34801561074e57600080fd5b506104706004803603602081101561076557600080fd5b503561106c565b34801561077857600080fd5b506104706004803603602081101561078f57600080fd5b503515156110c9565b3480156107a457600080fd5b50610319600480360360208110156107bb57600080fd5b50356001600160a01b0316611172565b3480156107d757600080fd5b50610342600480360360408110156107ee57600080fd5b506001600160a01b0381358116916020013516611190565b34801561081257600080fd5b506103196111bb565b34801561082757600080fd5b506103426111c4565b34801561083c57600080fd5b506104706004803603602081101561085357600080fd5b50356111ca565b34801561086657600080fd5b506104706004803603602081101561087d57600080fd5b50356001600160a01b0316611227565b34801561089957600080fd5b50610470600480360360208110156108b057600080fd5b50356001600160a01b03166113e4565b3480156108cc57600080fd5b50610470600480360360208110156108e357600080fd5b50356001600160a01b03166114dc565b60018054604080516020601f6002600019610100878916150201909516949094049384018190048102820181019092528281526060939092909183018282801561097e5780601f106109535761010080835404028352916020019161097e565b820191906000526020600020905b81548152906001019060200180831161096157829003601f168201915b505050505090505b90565b600061099d610996611687565b848461168b565b5060015b92915050565b60135481565b6018546001600160a01b031681565b60075490565b600c5481565b60006109d5848484611777565b610a45846109e1611687565b610a408560405180606001604052806028815260200161255e602891396001600160a01b038a16600090815260066020526040812090610a1f611687565b6001600160a01b031681526020810191909152604001600020549190611c01565b61168b565b5060019392505050565b6000600854821115610a925760405162461bcd60e51b815260040180806020018281038252602a8152602001806124cb602a913960400191505060405180910390fd5b6000610a9c611c98565b9050610aa88382611e0f565b9150505b919050565b60035490565b60125481565b610ac5611687565b6000546001600160a01b03908116911614610b15576040805162461bcd60e51b81526020600482018190526024820152600080516020612586833981519152604482015290519081900360640190fd5b600e55565b600061099d610b27611687565b84610a408560066000610b38611687565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611e58565b600d5481565b6000600754831115610bc7576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610be557610bde610bd7611c98565b8490611eb2565b90506109a1565b610bde610bf0611c98565b610c21610c1a600c54600a0a600201610c14600d5489611eb290919063ffffffff16565b90611e0f565b8690611f0b565b90611eb2565b610c2f611687565b6000546001600160a01b03908116911614610c7f576040805162461bcd60e51b81526020600482018190526024820152600080516020612586833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b610cb2611687565b6000546001600160a01b03908116911614610d02576040805162461bcd60e51b81526020600482018190526024820152600080516020612586833981519152604482015290519081900360640190fd5b601755565b6019546001600160a01b031681565b60155462010000900460ff1681565b610d2d611687565b6000546001600160a01b03908116911614610d7d576040805162461bcd60e51b81526020600482018190526024820152600080516020612586833981519152604482015290519081900360640190fd5b600f55565b600e5481565b6001600160a01b0381166000908152600a602052604081205460ff1615610dc857506001600160a01b038116600090815260056020526040902054610aac565b6001600160a01b0382166000908152600460205260409020546109a190610a4f565b610df2611687565b6000546001600160a01b03908116911614610e42576040805162461bcd60e51b81526020600482018190526024820152600080516020612586833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b610e94611687565b6000546001600160a01b03908116911614610ee4576040805162461bcd60e51b81526020600482018190526024820152600080516020612586833981519152604482015290519081900360640190fd5b601980546001600160a01b0319166001600160a01b0392909216919091179055565b60165481565b6000546001600160a01b031690565b60028054604080516020601f600019610100600187161502019094168590049384018190048102820181019092528281526060939092909183018282801561097e5780601f106109535761010080835404028352916020019161097e565b60145481565b600061099d610f8c611687565b84610a40856040518060600160405280602581526020016126836025913960066000610fb6611687565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611c01565b600061099d610ff4611687565b8484611777565b611003611687565b6000546001600160a01b03908116911614611053576040805162461bcd60e51b81526020600482018190526024820152600080516020612586833981519152604482015290519081900360640190fd5b6015805460ff1916911515919091179055565b600f5481565b611074611687565b6000546001600160a01b039081169116146110c4576040805162461bcd60e51b81526020600482018190526024820152600080516020612586833981519152604482015290519081900360640190fd5b600d55565b6110d1611687565b6000546001600160a01b03908116911614611121576040805162461bcd60e51b81526020600482018190526024820152600080516020612586833981519152604482015290519081900360640190fd5b6015805482151562010000810262ff0000199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b6001600160a01b03166000908152600a602052604090205460ff1690565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b60155460ff1681565b60175481565b6111d2611687565b6000546001600160a01b03908116911614611222576040805162461bcd60e51b81526020600482018190526024820152600080516020612586833981519152604482015290519081900360640190fd5b601655565b61122f611687565b6000546001600160a01b0390811691161461127f576040805162461bcd60e51b81526020600482018190526024820152600080516020612586833981519152604482015290519081900360640190fd5b6018546001600160a01b03828116911614156112cc5760405162461bcd60e51b81526004018080602001828103825260298152602001806125cf6029913960400191505060405180910390fd5b6001600160a01b0381166000908152600a602052604090205460ff16156113245760405162461bcd60e51b81526004018080602001828103825260228152602001806124a96022913960400191505060405180910390fd5b6001600160a01b0381166000908152600460205260409020541561137e576001600160a01b03811660009081526004602052604090205461136490610a4f565b6001600160a01b0382166000908152600560205260409020555b6001600160a01b03166000818152600a60205260408120805460ff19166001908117909155600b805491820181559091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319169091179055565b6113ec611687565b6000546001600160a01b0390811691161461143c576040805162461bcd60e51b81526020600482018190526024820152600080516020612586833981519152604482015290519081900360640190fd5b6001600160a01b0381166114815760405162461bcd60e51b81526004018080602001828103825260268152602001806124f56026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6114e4611687565b6000546001600160a01b03908116911614611534576040805162461bcd60e51b81526020600482018190526024820152600080516020612586833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff1661158b5760405162461bcd60e51b81526004018080602001828103825260228152602001806126616022913960400191505060405180910390fd5b60005b600b5481101561168357816001600160a01b0316600b82815481106115af57fe5b6000918252602090912001546001600160a01b0316141561167b57600b805460001981019081106115dc57fe5b600091825260209091200154600b80546001600160a01b03909216918390811061160257fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600582526040808220829055600a90925220805460ff19169055600b80548061165457fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611683565b60010161158e565b5050565b3390565b6001600160a01b0383166116d05760405162461bcd60e51b815260040180806020018281038252602481526020018061263d6024913960400191505060405180910390fd5b6001600160a01b0382166117155760405162461bcd60e51b815260040180806020018281038252602281526020018061251b6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260066020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166117bc5760405162461bcd60e51b81526004018080602001828103825260258152602001806126186025913960400191505060405180910390fd5b6001600160a01b0382166118015760405162461bcd60e51b81526004018080602001828103825260238152602001806124866023913960400191505060405180910390fd5b600081116118405760405162461bcd60e51b81526004018080602001828103825260298152602001806125a66029913960400191505060405180910390fd5b600061184a610f0c565b6001600160a01b0316846001600160a01b03161480611881575061186c610f0c565b6001600160a01b0316836001600160a01b0316145b6010549091506000906001600160a01b03868116911614806118b057506010546001600160a01b038581169116145b6018549091506000906001600160a01b03878116911614806118df57506018546001600160a01b038681169116145b9050821580156118ed575081155b80156118f7575080155b1561194c5760165484111561194c576040805162461bcd60e51b81526020600482015260166024820152755472616e73666572204c696d6974204578636565647360501b604482015290519081900360640190fd5b600061195730610d88565b60175460155491925082101590610100900460ff161580156119765750805b801561199057506019546001600160a01b03898116911614155b80156119a4575060155462010000900460ff165b156119b2576119b282611f4d565b8560006119bd611c98565b60155490915060ff1680156119f85750600960006119d9611687565b6001600160a01b0316815260208101919091526040016000205460ff16155b8015611a1d57506001600160a01b03891660009081526009602052604090205460ff16155b8015611a315750601554610100900460ff16155b15611a4457611a418a8383611fcd565b91505b611a70611a518983611eb2565b6001600160a01b038c1660009081526004602052604090205490611f0b565b6001600160a01b038b16600090815260046020526040902055611ab5611a968383611eb2565b6001600160a01b038b1660009081526004602052604090205490611e58565b6001600160a01b03808b16600090815260046020908152604080832094909455918d168152600a909152205460ff1615611b26576001600160a01b038a16600090815260056020526040902054611b0c9089611f0b565b6001600160a01b038b166000908152600560205260409020555b6001600160a01b0389166000908152600a602052604090205460ff1615611bbb576001600160a01b038916600090815260056020526040902054611b6a9083611e58565b6001600160a01b03808b1660008181526005602090815260409182902094909455805186815290519193928e16926000805160206125f883398151915292918290030190a350505050505050611bfc565b886001600160a01b03168a6001600160a01b03166000805160206125f8833981519152846040518082815260200191505060405180910390a3505050505050505b505050565b60008184841115611c905760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611c55578181015183820152602001611c3d565b50505050905090810190601f168015611c825780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60085460075460009190825b600b54811015611dcf578260046000600b8481548110611cc057fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611d2557508160056000600b8481548110611cfe57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611d4357600754600854611d3991611e0f565b9350505050610986565b611d8360046000600b8481548110611d5757fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611f0b565b9250611dc560056000600b8481548110611d9957fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611f0b565b9150600101611ca4565b50600754600854611ddf91611e0f565b821015611dfe57600754600854611df591611e0f565b92505050610986565b611e088282611e0f565b9250505090565b6000611e5183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612272565b9392505050565b600082820183811015611e51576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600082611ec1575060006109a1565b82820282848281611ece57fe5b0414611e515760405162461bcd60e51b815260040180806020018281038252602181526020018061253d6021913960400191505060405180910390fd5b6000611e5183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c01565b6015805461ff001916610100179055601654811115611f6b57506016545b47611f75826122d7565b6000611f814783611f0b565b6010546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015611fbc573d6000803e3d6000fd5b50506015805461ff00191690555050565b600d54600090839015612036576000611ffd600c54600201600a0a610c14600d5488611eb290919063ffffffff16565b90506120098282611f0b565b91506120216120188286611eb2565b60085490611f0b565b6008556012546120319082611e58565b601255505b600e5415612121576000612061600c54600201600a0a610c14600e5488611eb290919063ffffffff16565b905061206d8282611f0b565b915061209261207c8286611eb2565b3060009081526004602052604090205490611e58565b30600090815260046020908152604080832093909355600a9052205460ff16156120e157306000908152600560205260409020546120d09082611e58565b306000908152600560205260409020555b6014546120ee9082611e58565b60145560408051828152905130916001600160a01b038916916000805160206125f88339815191529181900360200190a3505b600f541561226a57600061214c600c54600201600a0a610c14600f5488611eb290919063ffffffff16565b90506121588282611f0b565b6007549092506121689082611f0b565b6007556121996121788286611eb2565b6011546001600160a01b031660009081526004602052604090205490611e58565b601180546001600160a01b0390811660009081526004602090815260408083209590955592549091168152600a909152205460ff1615612214576011546001600160a01b03166000908152600560205260409020546121f89082611e58565b6011546001600160a01b03166000908152600560205260409020555b6122216120188286611eb2565b6008556013546122319082611e58565b6013556011546040805183815290516001600160a01b03928316928916916000805160206125f8833981519152919081900360200190a3505b949350505050565b600081836122c15760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611c55578181015183820152602001611c3d565b5060008385816122cd57fe5b0495945050505050565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061230557fe5b6001600160a01b03928316602091820292909201810191909152601854604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561235957600080fd5b505afa15801561236d573d6000803e3d6000fd5b505050506040513d602081101561238357600080fd5b505181518290600190811061239457fe5b6001600160a01b0392831660209182029290920101526018546123ba913091168461168b565b60185460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b83811015612440578181015183820152602001612428565b505050509050019650505050505050600060405180830381600087803b15801561246957600080fd5b505af115801561247d573d6000803e3d6000fd5b50505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a204163636f756e7420697320616c7265616479206578636c75646564416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a2057652063616e206e6f74206578636c75646520556e697377617020726f757465722eddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a204163636f756e7420697320616c726561647920696e636c7564656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e323f88142c2beef031183ed750766a200b0eb19427f58aacb3407c80bfdea7d64736f6c634300060c0033

Deployed Bytecode

0x60806040526004361061024a5760003560e01c806370a0823111610139578063c0b0fda2116100b6578063e43504da1161007a578063e43504da14610806578063e5d41c6b1461081b578063ec28438a14610830578063f2cc0c181461085a578063f2fde38b1461088d578063f84354f1146108c057610251565b8063c0b0fda21461072d578063c4081a4c14610742578063c49b9a801461076c578063cba0e99614610798578063dd62ed3e146107cb57610251565b806395d89b41116100fd57806395d89b41146106655780639d46cf8a1461067a578063a457c2d71461068f578063a9059cbb146106c8578063b7bfff651461070157610251565b806370a08231146105c0578063715018a6146105f35780638187f516146106085780638c0b5e221461063b5780638da5cb5b1461065057610251565b8063357bf15c116101c757806348a464731161018b57806348a464731461052d57806349bd5a5e146105575780634a74bb021461056c5780634bf2c7c9146105815780636bc87c3a146105ab57610251565b8063357bf15c1461044657806339509351146104725780633b124fe7146104ab5780634549b039146104c057806347f2dc5b146104f257610251565b806319db457d1161020e57806319db457d1461039a57806323b872dd146103af5780632d838119146103f2578063313ce5671461041c578063355bc60b1461043157610251565b806306fdde0314610256578063095ea7b3146102e05780630d9a52191461032d5780631694505e1461035457806318160ddd1461038557610251565b3661025157005b600080fd5b34801561026257600080fd5b5061026b6108f3565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102a557818101518382015260200161028d565b50505050905090810190601f1680156102d25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102ec57600080fd5b506103196004803603604081101561030357600080fd5b506001600160a01b038135169060200135610989565b604080519115158252519081900360200190f35b34801561033957600080fd5b506103426109a7565b60408051918252519081900360200190f35b34801561036057600080fd5b506103696109ad565b604080516001600160a01b039092168252519081900360200190f35b34801561039157600080fd5b506103426109bc565b3480156103a657600080fd5b506103426109c2565b3480156103bb57600080fd5b50610319600480360360608110156103d257600080fd5b506001600160a01b038135811691602081013590911690604001356109c8565b3480156103fe57600080fd5b506103426004803603602081101561041557600080fd5b5035610a4f565b34801561042857600080fd5b50610342610ab1565b34801561043d57600080fd5b50610342610ab7565b34801561045257600080fd5b506104706004803603602081101561046957600080fd5b5035610abd565b005b34801561047e57600080fd5b506103196004803603604081101561049557600080fd5b506001600160a01b038135169060200135610b1a565b3480156104b757600080fd5b50610342610b68565b3480156104cc57600080fd5b50610342600480360360408110156104e357600080fd5b50803590602001351515610b6e565b3480156104fe57600080fd5b506104706004803603604081101561051557600080fd5b506001600160a01b0381351690602001351515610c27565b34801561053957600080fd5b506104706004803603602081101561055057600080fd5b5035610caa565b34801561056357600080fd5b50610369610d07565b34801561057857600080fd5b50610319610d16565b34801561058d57600080fd5b50610470600480360360208110156105a457600080fd5b5035610d25565b3480156105b757600080fd5b50610342610d82565b3480156105cc57600080fd5b50610342600480360360208110156105e357600080fd5b50356001600160a01b0316610d88565b3480156105ff57600080fd5b50610470610dea565b34801561061457600080fd5b506104706004803603602081101561062b57600080fd5b50356001600160a01b0316610e8c565b34801561064757600080fd5b50610342610f06565b34801561065c57600080fd5b50610369610f0c565b34801561067157600080fd5b5061026b610f1b565b34801561068657600080fd5b50610342610f79565b34801561069b57600080fd5b50610319600480360360408110156106b257600080fd5b506001600160a01b038135169060200135610f7f565b3480156106d457600080fd5b50610319600480360360408110156106eb57600080fd5b506001600160a01b038135169060200135610fe7565b34801561070d57600080fd5b506104706004803603602081101561072457600080fd5b50351515610ffb565b34801561073957600080fd5b50610342611066565b34801561074e57600080fd5b506104706004803603602081101561076557600080fd5b503561106c565b34801561077857600080fd5b506104706004803603602081101561078f57600080fd5b503515156110c9565b3480156107a457600080fd5b50610319600480360360208110156107bb57600080fd5b50356001600160a01b0316611172565b3480156107d757600080fd5b50610342600480360360408110156107ee57600080fd5b506001600160a01b0381358116916020013516611190565b34801561081257600080fd5b506103196111bb565b34801561082757600080fd5b506103426111c4565b34801561083c57600080fd5b506104706004803603602081101561085357600080fd5b50356111ca565b34801561086657600080fd5b506104706004803603602081101561087d57600080fd5b50356001600160a01b0316611227565b34801561089957600080fd5b50610470600480360360208110156108b057600080fd5b50356001600160a01b03166113e4565b3480156108cc57600080fd5b50610470600480360360208110156108e357600080fd5b50356001600160a01b03166114dc565b60018054604080516020601f6002600019610100878916150201909516949094049384018190048102820181019092528281526060939092909183018282801561097e5780601f106109535761010080835404028352916020019161097e565b820191906000526020600020905b81548152906001019060200180831161096157829003601f168201915b505050505090505b90565b600061099d610996611687565b848461168b565b5060015b92915050565b60135481565b6018546001600160a01b031681565b60075490565b600c5481565b60006109d5848484611777565b610a45846109e1611687565b610a408560405180606001604052806028815260200161255e602891396001600160a01b038a16600090815260066020526040812090610a1f611687565b6001600160a01b031681526020810191909152604001600020549190611c01565b61168b565b5060019392505050565b6000600854821115610a925760405162461bcd60e51b815260040180806020018281038252602a8152602001806124cb602a913960400191505060405180910390fd5b6000610a9c611c98565b9050610aa88382611e0f565b9150505b919050565b60035490565b60125481565b610ac5611687565b6000546001600160a01b03908116911614610b15576040805162461bcd60e51b81526020600482018190526024820152600080516020612586833981519152604482015290519081900360640190fd5b600e55565b600061099d610b27611687565b84610a408560066000610b38611687565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611e58565b600d5481565b6000600754831115610bc7576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610be557610bde610bd7611c98565b8490611eb2565b90506109a1565b610bde610bf0611c98565b610c21610c1a600c54600a0a600201610c14600d5489611eb290919063ffffffff16565b90611e0f565b8690611f0b565b90611eb2565b610c2f611687565b6000546001600160a01b03908116911614610c7f576040805162461bcd60e51b81526020600482018190526024820152600080516020612586833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b610cb2611687565b6000546001600160a01b03908116911614610d02576040805162461bcd60e51b81526020600482018190526024820152600080516020612586833981519152604482015290519081900360640190fd5b601755565b6019546001600160a01b031681565b60155462010000900460ff1681565b610d2d611687565b6000546001600160a01b03908116911614610d7d576040805162461bcd60e51b81526020600482018190526024820152600080516020612586833981519152604482015290519081900360640190fd5b600f55565b600e5481565b6001600160a01b0381166000908152600a602052604081205460ff1615610dc857506001600160a01b038116600090815260056020526040902054610aac565b6001600160a01b0382166000908152600460205260409020546109a190610a4f565b610df2611687565b6000546001600160a01b03908116911614610e42576040805162461bcd60e51b81526020600482018190526024820152600080516020612586833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b610e94611687565b6000546001600160a01b03908116911614610ee4576040805162461bcd60e51b81526020600482018190526024820152600080516020612586833981519152604482015290519081900360640190fd5b601980546001600160a01b0319166001600160a01b0392909216919091179055565b60165481565b6000546001600160a01b031690565b60028054604080516020601f600019610100600187161502019094168590049384018190048102820181019092528281526060939092909183018282801561097e5780601f106109535761010080835404028352916020019161097e565b60145481565b600061099d610f8c611687565b84610a40856040518060600160405280602581526020016126836025913960066000610fb6611687565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611c01565b600061099d610ff4611687565b8484611777565b611003611687565b6000546001600160a01b03908116911614611053576040805162461bcd60e51b81526020600482018190526024820152600080516020612586833981519152604482015290519081900360640190fd5b6015805460ff1916911515919091179055565b600f5481565b611074611687565b6000546001600160a01b039081169116146110c4576040805162461bcd60e51b81526020600482018190526024820152600080516020612586833981519152604482015290519081900360640190fd5b600d55565b6110d1611687565b6000546001600160a01b03908116911614611121576040805162461bcd60e51b81526020600482018190526024820152600080516020612586833981519152604482015290519081900360640190fd5b6015805482151562010000810262ff0000199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b6001600160a01b03166000908152600a602052604090205460ff1690565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b60155460ff1681565b60175481565b6111d2611687565b6000546001600160a01b03908116911614611222576040805162461bcd60e51b81526020600482018190526024820152600080516020612586833981519152604482015290519081900360640190fd5b601655565b61122f611687565b6000546001600160a01b0390811691161461127f576040805162461bcd60e51b81526020600482018190526024820152600080516020612586833981519152604482015290519081900360640190fd5b6018546001600160a01b03828116911614156112cc5760405162461bcd60e51b81526004018080602001828103825260298152602001806125cf6029913960400191505060405180910390fd5b6001600160a01b0381166000908152600a602052604090205460ff16156113245760405162461bcd60e51b81526004018080602001828103825260228152602001806124a96022913960400191505060405180910390fd5b6001600160a01b0381166000908152600460205260409020541561137e576001600160a01b03811660009081526004602052604090205461136490610a4f565b6001600160a01b0382166000908152600560205260409020555b6001600160a01b03166000818152600a60205260408120805460ff19166001908117909155600b805491820181559091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319169091179055565b6113ec611687565b6000546001600160a01b0390811691161461143c576040805162461bcd60e51b81526020600482018190526024820152600080516020612586833981519152604482015290519081900360640190fd5b6001600160a01b0381166114815760405162461bcd60e51b81526004018080602001828103825260268152602001806124f56026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6114e4611687565b6000546001600160a01b03908116911614611534576040805162461bcd60e51b81526020600482018190526024820152600080516020612586833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff1661158b5760405162461bcd60e51b81526004018080602001828103825260228152602001806126616022913960400191505060405180910390fd5b60005b600b5481101561168357816001600160a01b0316600b82815481106115af57fe5b6000918252602090912001546001600160a01b0316141561167b57600b805460001981019081106115dc57fe5b600091825260209091200154600b80546001600160a01b03909216918390811061160257fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600582526040808220829055600a90925220805460ff19169055600b80548061165457fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611683565b60010161158e565b5050565b3390565b6001600160a01b0383166116d05760405162461bcd60e51b815260040180806020018281038252602481526020018061263d6024913960400191505060405180910390fd5b6001600160a01b0382166117155760405162461bcd60e51b815260040180806020018281038252602281526020018061251b6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260066020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166117bc5760405162461bcd60e51b81526004018080602001828103825260258152602001806126186025913960400191505060405180910390fd5b6001600160a01b0382166118015760405162461bcd60e51b81526004018080602001828103825260238152602001806124866023913960400191505060405180910390fd5b600081116118405760405162461bcd60e51b81526004018080602001828103825260298152602001806125a66029913960400191505060405180910390fd5b600061184a610f0c565b6001600160a01b0316846001600160a01b03161480611881575061186c610f0c565b6001600160a01b0316836001600160a01b0316145b6010549091506000906001600160a01b03868116911614806118b057506010546001600160a01b038581169116145b6018549091506000906001600160a01b03878116911614806118df57506018546001600160a01b038681169116145b9050821580156118ed575081155b80156118f7575080155b1561194c5760165484111561194c576040805162461bcd60e51b81526020600482015260166024820152755472616e73666572204c696d6974204578636565647360501b604482015290519081900360640190fd5b600061195730610d88565b60175460155491925082101590610100900460ff161580156119765750805b801561199057506019546001600160a01b03898116911614155b80156119a4575060155462010000900460ff165b156119b2576119b282611f4d565b8560006119bd611c98565b60155490915060ff1680156119f85750600960006119d9611687565b6001600160a01b0316815260208101919091526040016000205460ff16155b8015611a1d57506001600160a01b03891660009081526009602052604090205460ff16155b8015611a315750601554610100900460ff16155b15611a4457611a418a8383611fcd565b91505b611a70611a518983611eb2565b6001600160a01b038c1660009081526004602052604090205490611f0b565b6001600160a01b038b16600090815260046020526040902055611ab5611a968383611eb2565b6001600160a01b038b1660009081526004602052604090205490611e58565b6001600160a01b03808b16600090815260046020908152604080832094909455918d168152600a909152205460ff1615611b26576001600160a01b038a16600090815260056020526040902054611b0c9089611f0b565b6001600160a01b038b166000908152600560205260409020555b6001600160a01b0389166000908152600a602052604090205460ff1615611bbb576001600160a01b038916600090815260056020526040902054611b6a9083611e58565b6001600160a01b03808b1660008181526005602090815260409182902094909455805186815290519193928e16926000805160206125f883398151915292918290030190a350505050505050611bfc565b886001600160a01b03168a6001600160a01b03166000805160206125f8833981519152846040518082815260200191505060405180910390a3505050505050505b505050565b60008184841115611c905760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611c55578181015183820152602001611c3d565b50505050905090810190601f168015611c825780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60085460075460009190825b600b54811015611dcf578260046000600b8481548110611cc057fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611d2557508160056000600b8481548110611cfe57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611d4357600754600854611d3991611e0f565b9350505050610986565b611d8360046000600b8481548110611d5757fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611f0b565b9250611dc560056000600b8481548110611d9957fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611f0b565b9150600101611ca4565b50600754600854611ddf91611e0f565b821015611dfe57600754600854611df591611e0f565b92505050610986565b611e088282611e0f565b9250505090565b6000611e5183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612272565b9392505050565b600082820183811015611e51576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600082611ec1575060006109a1565b82820282848281611ece57fe5b0414611e515760405162461bcd60e51b815260040180806020018281038252602181526020018061253d6021913960400191505060405180910390fd5b6000611e5183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c01565b6015805461ff001916610100179055601654811115611f6b57506016545b47611f75826122d7565b6000611f814783611f0b565b6010546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015611fbc573d6000803e3d6000fd5b50506015805461ff00191690555050565b600d54600090839015612036576000611ffd600c54600201600a0a610c14600d5488611eb290919063ffffffff16565b90506120098282611f0b565b91506120216120188286611eb2565b60085490611f0b565b6008556012546120319082611e58565b601255505b600e5415612121576000612061600c54600201600a0a610c14600e5488611eb290919063ffffffff16565b905061206d8282611f0b565b915061209261207c8286611eb2565b3060009081526004602052604090205490611e58565b30600090815260046020908152604080832093909355600a9052205460ff16156120e157306000908152600560205260409020546120d09082611e58565b306000908152600560205260409020555b6014546120ee9082611e58565b60145560408051828152905130916001600160a01b038916916000805160206125f88339815191529181900360200190a3505b600f541561226a57600061214c600c54600201600a0a610c14600f5488611eb290919063ffffffff16565b90506121588282611f0b565b6007549092506121689082611f0b565b6007556121996121788286611eb2565b6011546001600160a01b031660009081526004602052604090205490611e58565b601180546001600160a01b0390811660009081526004602090815260408083209590955592549091168152600a909152205460ff1615612214576011546001600160a01b03166000908152600560205260409020546121f89082611e58565b6011546001600160a01b03166000908152600560205260409020555b6122216120188286611eb2565b6008556013546122319082611e58565b6013556011546040805183815290516001600160a01b03928316928916916000805160206125f8833981519152919081900360200190a3505b949350505050565b600081836122c15760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611c55578181015183820152602001611c3d565b5060008385816122cd57fe5b0495945050505050565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061230557fe5b6001600160a01b03928316602091820292909201810191909152601854604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561235957600080fd5b505afa15801561236d573d6000803e3d6000fd5b505050506040513d602081101561238357600080fd5b505181518290600190811061239457fe5b6001600160a01b0392831660209182029290920101526018546123ba913091168461168b565b60185460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b83811015612440578181015183820152602001612428565b505050509050019650505050505050600060405180830381600087803b15801561246957600080fd5b505af115801561247d573d6000803e3d6000fd5b50505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a204163636f756e7420697320616c7265616479206578636c75646564416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a2057652063616e206e6f74206578636c75646520556e697377617020726f757465722eddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a204163636f756e7420697320616c726561647920696e636c7564656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e323f88142c2beef031183ed750766a200b0eb19427f58aacb3407c80bfdea7d64736f6c634300060c0033

Deployed Bytecode Sourcemap

20217:14868:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23131:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24153:193;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24153:193:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;21429:28;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;21792:42;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;21792:42:0;;;;;;;;;;;;;;23410:99;;;;;;;;;;;;;:::i;20980:30::-;;;;;;;;;;;;;:::i;24354:353::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24354:353:0;;;;;;;;;;;;;;;;;:::i;26077:368::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26077:368:0;;:::i;23317:85::-;;;;;;;;;;;;;:::i;21395:27::-;;;;;;;;;;;;;:::i;34720:95::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34720:95:0;;:::i;:::-;;24715:300;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24715:300:0;;;;;;;;:::i;21048:26::-;;;;;;;;;;;;;:::i;25549:520::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25549:520:0;;;;;;;;;:::i;34143:113::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;34143:113:0;;;;;;;;;;:::i;34931:114::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34931:114:0;;:::i;21841:29::-;;;;;;;;;;;;;:::i;21597:40::-;;;;;;;;;;;;;:::i;34627:85::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34627:85:0;;:::i;21125:33::-;;;;;;;;;;;;;:::i;23517:215::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23517:215:0;-1:-1:-1;;;;;23517:215:0;;:::i;17776:148::-;;;;;;;;;;;;;:::i;34046:89::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34046:89:0;-1:-1:-1;;;;;34046:89:0;;:::i;21646:64::-;;;;;;;;;;;;;:::i;17134:79::-;;;;;;;;;;;;;:::i;23222:87::-;;;;;;;;;;;;;:::i;21464:33::-;;;;;;;;;;;;;:::i;25023:400::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25023:400:0;;;;;;;;:::i;23740:213::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23740:213:0;;;;;;;;:::i;34437:91::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34437:91:0;;;;:::i;21213:27::-;;;;;;;;;;;;;:::i;34536:83::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34536:83:0;;:::i;34264:165::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34264:165:0;;;;:::i;25431:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25431:110:0;-1:-1:-1;;;;;25431:110:0;;:::i;23961:184::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23961:184:0;;;;;;;;;;:::i;21506:30::-;;;;;;;;;;;;;:::i;21719:64::-;;;;;;;;;;;;;:::i;34825:98::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34825:98:0;;:::i;26453:537::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26453:537:0;-1:-1:-1;;;;;26453:537:0;;:::i;18079:281::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18079:281:0;-1:-1:-1;;;;;18079:281:0;;:::i;26998:491::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26998:491:0;-1:-1:-1;;;;;26998:491:0;;:::i;23131:83::-;23201:5;23194:12;;;;;;;;-1:-1:-1;;23194:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23168:13;;23194:12;;23201:5;;23194:12;;23201:5;23194:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23131:83;;:::o;24153:193::-;24255:4;24277:39;24286:12;:10;:12::i;:::-;24300:7;24309:6;24277:8;:39::i;:::-;-1:-1:-1;24334:4:0;24153:193;;;;;:::o;21429:28::-;;;;:::o;21792:42::-;;;-1:-1:-1;;;;;21792:42:0;;:::o;23410:99::-;23490:11;;23410:99;:::o;20980:30::-;;;;:::o;24354:353::-;24494:4;24511:34;24521:6;24528:9;24538:6;24511:9;:34::i;:::-;24558:119;24567:6;24574:12;:10;:12::i;:::-;24587:89;24626:6;24587:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24587:19:0;;;;;;:11;:19;;;;;;24607:12;:10;:12::i;:::-;-1:-1:-1;;;;;24587:33:0;;;;;;;;;;;;-1:-1:-1;24587:33:0;;;:89;:37;:89::i;:::-;24558:8;:119::i;:::-;-1:-1:-1;24695:4:0;24354:353;;;;;:::o;26077:368::-;26180:7;26247:16;;26227;:36;;26205:128;;;;-1:-1:-1;;;26205:128:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26344:19;26366:20;:18;:20::i;:::-;26344:42;-1:-1:-1;26404:33:0;:16;26344:42;26404:20;:33::i;:::-;26397:40;;;26077:368;;;;:::o;23317:85::-;23385:9;;23317:85;:::o;21395:27::-;;;;:::o;34720:95::-;17356:12;:10;:12::i;:::-;17346:6;;-1:-1:-1;;;;;17346:6:0;;;:22;;;17338:67;;;;;-1:-1:-1;;;17338:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17338:67:0;;;;;;;;;;;;;;;34788:13:::1;:19:::0;34720:95::o;24715:300::-;24830:4;24852:133;24875:12;:10;:12::i;:::-;24902:7;24924:50;24963:10;24924:11;:25;24936:12;:10;:12::i;:::-;-1:-1:-1;;;;;24924:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;24924:25:0;;;:34;;;;;;;;;;;:38;:50::i;21048:26::-;;;;:::o;25549:520::-;25671:7;25719:11;;25704;:26;;25696:70;;;;;-1:-1:-1;;;25696:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;25782:17;25777:285;;25823:37;25839:20;:18;:20::i;:::-;25823:11;;:15;:37::i;:::-;25816:44;;;;25777:285;25917:133;26011:20;:18;:20::i;:::-;25917:67;25933:50;25967:11;;25962:2;:16;25981:1;25962:20;25933:24;25949:7;;25933:11;:15;;:24;;;;:::i;:::-;:28;;:50::i;:::-;25917:11;;:15;:67::i;:::-;:71;;:133::i;34143:113::-;17356:12;:10;:12::i;:::-;17346:6;;-1:-1:-1;;;;;17346:6:0;;;:22;;;17338:67;;;;;-1:-1:-1;;;17338:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17338:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;34222:18:0;;;::::1;;::::0;;;:9:::1;:18;::::0;;;;:26;;-1:-1:-1;;34222:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;34143:113::o;34931:114::-;17356:12;:10;:12::i;:::-;17346:6;;-1:-1:-1;;;;;17346:6:0;;;:22;;;17338:67;;;;;-1:-1:-1;;;17338:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17338:67:0;;;;;;;;;;;;;;;35009:19:::1;:28:::0;34931:114::o;21841:29::-;;;-1:-1:-1;;;;;21841:29:0;;:::o;21597:40::-;;;;;;;;;:::o;34627:85::-;17356:12;:10;:12::i;:::-;17346:6;;-1:-1:-1;;;;;17346:6:0;;;:22;;;17338:67;;;;;-1:-1:-1;;;17338:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17338:67:0;;;;;;;;;;;;;;;34690:8:::1;:14:::0;34627:85::o;21125:33::-;;;;:::o;23517:215::-;-1:-1:-1;;;;;23607:20:0;;23583:7;23607:20;;;:11;:20;;;;;;;;23603:55;;;-1:-1:-1;;;;;;23636:22:0;;;;;;:13;:22;;;;;;23629:29;;23603:55;-1:-1:-1;;;;;23696:27:0;;;;;;:18;:27;;;;;;23676:48;;:19;:48::i;17776:148::-;17356:12;:10;:12::i;:::-;17346:6;;-1:-1:-1;;;;;17346:6:0;;;:22;;;17338:67;;;;;-1:-1:-1;;;17338:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17338:67:0;;;;;;;;;;;;;;;17883:1:::1;17867:6:::0;;17846:40:::1;::::0;-1:-1:-1;;;;;17867:6:0;;::::1;::::0;17846:40:::1;::::0;17883:1;;17846:40:::1;17914:1;17897:19:::0;;-1:-1:-1;;;;;;17897:19:0::1;::::0;;17776:148::o;34046:89::-;17356:12;:10;:12::i;:::-;17346:6;;-1:-1:-1;;;;;17346:6:0;;;:22;;;17338:67;;;;;-1:-1:-1;;;17338:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17338:67:0;;;;;;;;;;;;;;;34107:13:::1;:20:::0;;-1:-1:-1;;;;;;34107:20:0::1;-1:-1:-1::0;;;;;34107:20:0;;;::::1;::::0;;;::::1;::::0;;34046:89::o;21646:64::-;;;;:::o;17134:79::-;17172:7;17199:6;-1:-1:-1;;;;;17199:6:0;17134:79;:::o;23222:87::-;23294:7;23287:14;;;;;;;-1:-1:-1;;23287:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23261:13;;23287:14;;23294:7;;23287:14;;23294:7;23287:14;;;;;;;;;;;;;;;;;;;;;;;;21464:33;;;;:::o;25023:400::-;25143:4;25165:228;25188:12;:10;:12::i;:::-;25215:7;25237:145;25294:15;25237:145;;;;;;;;;;;;;;;;;:11;:25;25249:12;:10;:12::i;:::-;-1:-1:-1;;;;;25237:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;25237:25:0;;;:34;;;;;;;;;;;:145;:38;:145::i;23740:213::-;23862:4;23883:40;23893:12;:10;:12::i;:::-;23906:9;23916:6;23883:9;:40::i;34437:91::-;17356:12;:10;:12::i;:::-;17346:6;;-1:-1:-1;;;;;17346:6:0;;;:22;;;17338:67;;;;;-1:-1:-1;;;17338:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17338:67:0;;;;;;;;;;;;;;;34501:11:::1;:19:::0;;-1:-1:-1;;34501:19:0::1;::::0;::::1;;::::0;;;::::1;::::0;;34437:91::o;21213:27::-;;;;:::o;34536:83::-;17356:12;:10;:12::i;:::-;17346:6;;-1:-1:-1;;;;;17346:6:0;;;:22;;;17338:67;;;;;-1:-1:-1;;;17338:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17338:67:0;;;;;;;;;;;;;;;34598:7:::1;:13:::0;34536:83::o;34264:165::-;17356:12;:10;:12::i;:::-;17346:6;;-1:-1:-1;;;;;17346:6:0;;;:22;;;17338:67;;;;;-1:-1:-1;;;17338:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17338:67:0;;;;;;;;;;;;;;;34342:21:::1;:31:::0;;;::::1;;::::0;;::::1;-1:-1:-1::0;;34342:31:0;;::::1;::::0;;;::::1;::::0;;;34384:37:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;34264:165:::0;:::o;25431:110::-;-1:-1:-1;;;;;25513:20:0;25489:4;25513:20;;;:11;:20;;;;;;;;;25431:110::o;23961:184::-;-1:-1:-1;;;;;24110:18:0;;;24078:7;24110:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;23961:184::o;21506:30::-;;;;;;:::o;21719:64::-;;;;:::o;34825:98::-;17356:12;:10;:12::i;:::-;17346:6;;-1:-1:-1;;;;;17346:6:0;;;:22;;;17338:67;;;;;-1:-1:-1;;;17338:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17338:67:0;;;;;;;;;;;;;;;34895:11:::1;:20:::0;34825:98::o;26453:537::-;17356:12;:10;:12::i;:::-;17346:6;;-1:-1:-1;;;;;17346:6:0;;;:22;;;17338:67;;;;;-1:-1:-1;;;17338:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17338:67:0;;;;;;;;;;;;;;;26567:15:::1;::::0;-1:-1:-1;;;;;26548:35:0;;::::1;26567:15:::0;::::1;26548:35;;26526:126;;;;-1:-1:-1::0;;;26526:126:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;26672:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;26671:21;26663:68;;;;-1:-1:-1::0;;;26663:68:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;26746:27:0;::::1;26776:1;26746:27:::0;;;:18:::1;:27;::::0;;;;;:31;26742:169:::1;;-1:-1:-1::0;;;;;26857:27:0;::::1;;::::0;;;:18:::1;:27;::::0;;;;;26819:80:::1;::::0;:19:::1;:80::i;:::-;-1:-1:-1::0;;;;;26794:22:0;::::1;;::::0;;;:13:::1;:22;::::0;;;;:105;26742:169:::1;-1:-1:-1::0;;;;;26921:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;26921:27:0::1;26944:4;26921:27:::0;;::::1;::::0;;;26959:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;26959:23:0::1;::::0;;::::1;::::0;;26453:537::o;18079:281::-;17356:12;:10;:12::i;:::-;17346:6;;-1:-1:-1;;;;;17346:6:0;;;:22;;;17338:67;;;;;-1:-1:-1;;;17338:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17338:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;18182:22:0;::::1;18160:110;;;;-1:-1:-1::0;;;18160:110:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18307:6;::::0;;18286:38:::1;::::0;-1:-1:-1;;;;;18286:38:0;;::::1;::::0;18307:6;::::1;::::0;18286:38:::1;::::0;::::1;18335:6;:17:::0;;-1:-1:-1;;;;;;18335:17:0::1;-1:-1:-1::0;;;;;18335:17:0;;;::::1;::::0;;;::::1;::::0;;18079:281::o;26998:491::-;17356:12;:10;:12::i;:::-;17346:6;;-1:-1:-1;;;;;17346:6:0;;;:22;;;17338:67;;;;;-1:-1:-1;;;17338:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17338:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;27079:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;27071:67;;;;-1:-1:-1::0;;;27071:67:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27154:9;27149:333;27173:9;:16:::0;27169:20;::::1;27149:333;;;27231:7;-1:-1:-1::0;;;;;27215:23:0::1;:9;27225:1;27215:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;27215:12:0::1;:23;27211:260;;;27274:9;27284:16:::0;;-1:-1:-1;;27284:20:0;;;27274:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;27259:9:::1;:12:::0;;-1:-1:-1;;;;;27274:31:0;;::::1;::::0;27269:1;;27259:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;27259:46:0::1;-1:-1:-1::0;;;;;27259:46:0;;::::1;;::::0;;27324:22;;::::1;::::0;;:13:::1;:22:::0;;;;;;:26;;;27369:11:::1;:20:::0;;;;:28;;-1:-1:-1;;27369:28:0::1;::::0;;27416:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;27416:15:0;;;;;-1:-1:-1;;;;;;27416:15:0::1;::::0;;;;;27450:5:::1;;27211:260;27191:3;;27149:333;;;;26998:491:::0;:::o;750:106::-;838:10;750:106;:::o;27497:371::-;-1:-1:-1;;;;;27624:19:0;;27616:68;;;;-1:-1:-1;;;27616:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27703:21:0;;27695:68;;;;-1:-1:-1;;;27695:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27776:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;27828:32;;;;;;;;;;;;;;;;;27497:371;;;:::o;27876:2111::-;-1:-1:-1;;;;;28007:20:0;;27999:70;;;;-1:-1:-1;;;27999:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28088:23:0;;28080:71;;;;-1:-1:-1;;;28080:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28179:1;28170:6;:10;28162:64;;;;-1:-1:-1;;;28162:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28239:20;28272:7;:5;:7::i;:::-;-1:-1:-1;;;;;28262:17:0;:6;-1:-1:-1;;;;;28262:17:0;;:41;;;;28296:7;:5;:7::i;:::-;-1:-1:-1;;;;;28283:20:0;:9;-1:-1:-1;;;;;28283:20:0;;28262:41;28357:15;;28239:64;;-1:-1:-1;28314:30:0;;-1:-1:-1;;;;;28347:25:0;;;28357:15;;28347:25;;:57;;-1:-1:-1;28389:15:0;;-1:-1:-1;;;;;28376:28:0;;;28389:15;;28376:28;28347:57;28457:15;;28314:90;;-1:-1:-1;28415:21:0;;-1:-1:-1;;;;;28439:34:0;;;28457:15;;28439:34;;:75;;-1:-1:-1;28498:15:0;;-1:-1:-1;;;;;28477:37:0;;;28498:15;;28477:37;28439:75;28415:99;;28531:15;28530:16;:46;;;;;28551:25;28550:26;28530:46;:67;;;;;28581:16;28580:17;28530:67;28527:155;;;28632:11;;28622:6;:21;;28614:56;;;;;-1:-1:-1;;;28614:56:0;;;;;;;;;;;;-1:-1:-1;;;28614:56:0;;;;;;;;;;;;;;;28694:28;28725:24;28743:4;28725:9;:24::i;:::-;28811:19;;28846:16;;28694:55;;-1:-1:-1;28787:43:0;;;;28846:16;;;;;28845:17;:40;;;;;28866:19;28845:40;:67;;;;-1:-1:-1;28899:13:0;;-1:-1:-1;;;;;28889:23:0;;;28899:13;;28889:23;;28845:67;:92;;;;-1:-1:-1;28916:21:0;;;;;;;28845:92;28841:161;;;28954:36;28969:20;28954:14;:36::i;:::-;29039:6;29014:22;29071:20;:18;:20::i;:::-;29107:11;;29056:35;;-1:-1:-1;29107:11:0;;:39;;;;;29123:9;:23;29133:12;:10;:12::i;:::-;-1:-1:-1;;;;;29123:23:0;;;;;;;;;;;;-1:-1:-1;29123:23:0;;;;29122:24;29107:39;:64;;;;-1:-1:-1;;;;;;29151:20:0;;;;;;:9;:20;;;;;;;;29150:21;29107:64;:85;;;;-1:-1:-1;29176:16:0;;;;;;;29175:17;29107:85;29104:175;;;29227:38;29238:6;29245:14;29260:4;29227:10;:38::i;:::-;29210:55;;29104:175;29351:48;29382:16;:6;29393:4;29382:10;:16::i;:::-;-1:-1:-1;;;;;29351:26:0;;;;;;:18;:26;;;;;;;:30;:48::i;:::-;-1:-1:-1;;;;;29322:26:0;;;;;;:18;:26;;;;;:77;29444:59;29478:24;:14;29497:4;29478:18;:24::i;:::-;-1:-1:-1;;;;;29444:29:0;;;;;;:18;:29;;;;;;;:33;:59::i;:::-;-1:-1:-1;;;;;29412:29:0;;;;;;;:18;:29;;;;;;;;:91;;;;29592:19;;;;;:11;:19;;;;;;;29588:109;;;-1:-1:-1;;;;;29652:21:0;;;;;;:13;:21;;;;;;:33;;29678:6;29652:25;:33::i;:::-;-1:-1:-1;;;;;29628:21:0;;;;;;:13;:21;;;;;:57;29588:109;-1:-1:-1;;;;;29711:22:0;;;;;;:11;:22;;;;;;;;29707:210;;;-1:-1:-1;;;;;29777:24:0;;;;;;:13;:24;;;;;;:44;;29806:14;29777:28;:44::i;:::-;-1:-1:-1;;;;;29750:24:0;;;;;;;:13;:24;;;;;;;;;:71;;;;29843:43;;;;;;;29750:24;;29843:43;;;;-1:-1:-1;;;;;;;;;;;29843:43:0;;;;;;;;29899:7;;;;;;;;;29707:210;29951:9;-1:-1:-1;;;;;29934:43:0;29943:6;-1:-1:-1;;;;;29934:43:0;-1:-1:-1;;;;;;;;;;;29962:14:0;29934:43;;;;;;;;;;;;;;;;;;27876:2111;;;;;;;;;;;:::o;5673:226::-;5793:7;5829:12;5821:6;;;;5813:29;;;;-1:-1:-1;;;5813:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5865:5:0;;;5673:226::o;31768:808::-;31867:16;;31916:11;;31820:7;;31867:16;31820:7;31938:458;31962:9;:16;31958:20;;31938:458;;;32057:16;32022:18;:32;32041:9;32051:1;32041:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32041:12:0;32022:32;;;;;;;;;;;;;:51;;:113;;;32124:11;32094:13;:27;32108:9;32118:1;32108:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32108:12:0;32094:27;;;;;;;;;;;;;:41;32022:113;32000:191;;;32179:11;;32158:16;;:33;;:20;:33::i;:::-;32151:40;;;;;;;32000:191;32225:86;32264:18;:32;32283:9;32293:1;32283:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32283:12:0;32264:32;;;;;;;;;;;;;32225:16;;:20;:86::i;:::-;32206:105;;32340:44;32356:13;:27;32370:9;32380:1;32370:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32370:12:0;32356:27;;;;;;;;;;;;;32340:11;;:15;:44::i;:::-;32326:58;-1:-1:-1;31980:3:0;;31938:458;;;-1:-1:-1;32450:11:0;;32429:16;;:33;;:20;:33::i;:::-;32410:16;:52;32406:111;;;32505:11;;32484:16;;:33;;:20;:33::i;:::-;32477:40;;;;;;32406:111;32535:33;:16;32556:11;32535:20;:33::i;:::-;32528:40;;;;31768:808;:::o;7105:132::-;7163:7;7190:39;7194:1;7197;7190:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;7183:46;7105:132;-1:-1:-1;;;7105:132:0:o;4770:181::-;4828:7;4860:5;;;4884:6;;;;4876:46;;;;;-1:-1:-1;;;4876:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;6158:471;6216:7;6461:6;6457:47;;-1:-1:-1;6491:1:0;6484:8;;6457:47;6528:5;;;6532:1;6528;:5;:1;6552:5;;;;;:10;6544:56;;;;-1:-1:-1;;;6544:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5234:136;5292:7;5319:43;5323:1;5326;5319:43;;;;;;;;;;;;;;;;;:3;:43::i;32585:854::-;22066:16;:23;;-1:-1:-1;;22066:23:0;;;;;32697:11:::1;::::0;32674:34;::::1;32671:101;;;-1:-1:-1::0;32748:11:0::1;::::0;32671:101:::1;33072:21;33138:38;33155:20:::0;33138:16:::1;:38::i;:::-;33307:18;33328:41;:21;33354:14:::0;33328:25:::1;:41::i;:::-;33390:15;::::0;33382:45:::1;::::0;33307:62;;-1:-1:-1;;;;;;33390:15:0::1;::::0;33382:45;::::1;;;::::0;33307:62;;33390:15:::1;33382:45:::0;33390:15;33382:45;33307:62;33390:15;33382:45;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;22112:16:0;:24;;-1:-1:-1;;22112:24:0;;;-1:-1:-1;;32585:854:0:o;29995:1765::-;30170:7;;30079;;30124:6;;30170:12;30167:290;;30198:14;30215:46;30244:11;;30258:1;30244:15;30239:2;:21;30215:19;30226:7;;30215:6;:10;;:19;;;;:::i;:46::-;30198:63;-1:-1:-1;30293:26:0;:14;30198:63;30293:18;:26::i;:::-;30276:43;-1:-1:-1;30353:38:0;30374:16;:6;30385:4;30374:10;:16::i;:::-;30353;;;:20;:38::i;:::-;30334:16;:57;30421:12;;:24;;30438:6;30421:16;:24::i;:::-;30406:12;:39;-1:-1:-1;30167:290:0;30502:13;;:18;30499:592;;30536:20;30559:52;30594:11;;30608:1;30594:15;30589:2;:21;30559:25;30570:13;;30559:6;:10;;:25;;;;:::i;:52::-;30536:75;-1:-1:-1;30643:32:0;:14;30536:75;30643:18;:32::i;:::-;30626:49;-1:-1:-1;30726:61:0;30764:22;:12;30781:4;30764:16;:22::i;:::-;30753:4;30726:33;;;;:18;:33;;;;;;;:37;:61::i;:::-;30717:4;30690:33;;;;:18;:33;;;;;;;;:97;;;;30805:11;:26;;;;;;30802:142;;;30904:4;30882:28;;;;:13;:28;;;;;;:46;;30915:12;30882:32;:46::i;:::-;30873:4;30851:28;;;;:13;:28;;;;;:77;30802:142;30979:18;;:36;;31002:12;30979:22;:36::i;:::-;30958:18;:57;31035:44;;;;;;;;31060:4;;-1:-1:-1;;;;;31035:44:0;;;-1:-1:-1;;;;;;;;;;;31035:44:0;;;;;;;;30499:592;;31106:8;;:13;31103:616;;31135:15;31153:47;31183:11;;31197:1;31183:15;31178:2;:21;31153:20;31164:8;;31153:6;:10;;:20;;;;:::i;:47::-;31135:65;-1:-1:-1;31232:27:0;:14;31135:65;31232:18;:27::i;:::-;31288:11;;31215:44;;-1:-1:-1;31288:24:0;;31304:7;31288:15;:24::i;:::-;31274:11;:38;31354:47;31383:17;:7;31395:4;31383:11;:17::i;:::-;31373:4;;-1:-1:-1;;;;;31373:4:0;31354:24;;;;:18;:24;;;;;;;:28;:47::i;:::-;31346:4;;;-1:-1:-1;;;;;31346:4:0;;;31327:24;;;;:18;:24;;;;;;;;:74;;;;31432:4;;;;;31420:17;;:11;:17;;;;;;;31416:112;;;31494:4;;-1:-1:-1;;;;;31494:4:0;31480:19;;;;:13;:19;;;;;;:32;;31504:7;31480:23;:32::i;:::-;31472:4;;-1:-1:-1;;;;;31472:4:0;31458:19;;;;:13;:19;;;;;:54;31416:112;31561:39;31582:17;:7;31594:4;31582:11;:17::i;31561:39::-;31542:16;:58;31631:13;;:26;;31649:7;31631:17;:26::i;:::-;31615:13;:42;31694:4;;31677:30;;;;;;;;-1:-1:-1;;;;;31694:4:0;;;;31677:30;;;-1:-1:-1;;;;;;;;;;;31677:30:0;;;;;;;;;31103:616;;31738:14;29995:1765;-1:-1:-1;;;;29995:1765:0:o;7733:312::-;7853:7;7888:12;7881:5;7873:28;;;;-1:-1:-1;;;7873:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7912:9;7928:1;7924;:5;;;;;;;7733:312;-1:-1:-1;;;;;7733:312:0:o;33447:589::-;33597:16;;;33611:1;33597:16;;;33573:21;33597:16;;;;;33573:21;33597:16;;;;;;;;;;-1:-1:-1;33597:16:0;33573:40;;33642:4;33624;33629:1;33624:7;;;;;;;;-1:-1:-1;;;;;33624:23:0;;;:7;;;;;;;;;;:23;;;;33668:15;;:22;;;-1:-1:-1;;;33668:22:0;;;;:15;;;;;:20;;:22;;;;;33624:7;;33668:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33668:22:0;33658:7;;:4;;33663:1;;33658:7;;;;;;-1:-1:-1;;;;;33658:32:0;;;:7;;;;;;;;;:32;33735:15;;33703:62;;33720:4;;33735:15;33753:11;33703:8;:62::i;:::-;33804:15;;:224;;-1:-1:-1;;;33804:224:0;;;;;;;;:15;:224;;;;;;33982:4;33804:224;;;;;;34002:15;33804:224;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33804:15:0;;;;:66;;33885:11;;33955:4;;33982;34002:15;33804:224;;;;;;;;;;;;;;;;:15;:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33447:589;;:::o

Swarm Source

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