ETH Price: $3,472.48 (+6.03%)
Gas: 6 Gwei

Token

Lucky Cat (LUCKY😺)
 

Overview

Max Total Supply

1,000,000,000,000,000 LUCKY😺

Holders

231

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
117,336,354,754.586249782 LUCKY😺

Value
$0.00
0xe4fbef3dd6ed59b1ce2b7627c366bd822f4d34fd
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:
LuckyCat

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-29
*/

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

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

    function _msgData() internal view virtual 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;
    }
}

/**
 * @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;
    address private _previousOwner;
    uint256 private _lockTime;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () 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;
    }

    function geUnlockTime() public view returns (uint256) {
        return _lockTime;
    }

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

// pragma solidity >=0.5.0;

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

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

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

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

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

// pragma solidity >=0.5.0;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

// pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

// pragma solidity >=0.6.2;

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

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

    mapping (address => uint256) private _rOwned;
    mapping (address => uint256) private _tOwned;
    mapping (address => mapping (address => uint256)) private _allowances;
    mapping (address => bool) private _isExcludedFromFee;

    mapping (address => bool) private _isExcluded;
    address[] private _excluded;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 1000000000000000 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = "Lucky Cat";
    string private _symbol = "LUCKY😺"; 
    uint8 private _decimals = 9;
    
    uint256 public _taxFee = 2;
    uint256 private _previousTaxFee = _taxFee;
    
    uint256 public _liquidityFee = 8;
    uint256 private _previousLiquidityFee = _liquidityFee;
    
    address [] public tokenHolder;
    uint256 public numberOfTokenHolders = 0;
    mapping(address => bool) public exist;

    mapping (address => bool) private _isBlackListedBot;
    address[] private _blackListedBots;
    mapping (address => bool) private bots;
    mapping (address => bool) private _isBlacklisted;

    uint256 public _maxTxAmount = 100000000 * 10**9;
    address payable wallet;
    address payable rewardsWallet;
    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;
    
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = false;
    uint256 private minTokensBeforeSwap = 20000 * 10**9;
    
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
         _;
        inSwapAndLiquify = false;
    }
    
    constructor () public {
        _rOwned[_msgSender()] = _rTotal;
        wallet = msg.sender;
        rewardsWallet= msg.sender;
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        
        //exclude owner and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        
        emit Transfer(address(0), _msgSender(), _tTotal);
    }

    // @dev set Pair
    function setPair(address _uniswapV2Pair) external onlyOwner {
        uniswapV2Pair = _uniswapV2Pair;
    }

    // @dev set Router
    function setRouter(address _newUniswapV2Router) external onlyOwner {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(_newUniswapV2Router);
        uniswapV2Router = _uniswapV2Router;
    }

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

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

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

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

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

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

    function addBotToBlackList(address account) external onlyOwner() {
        require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not blacklist UniswapV2 router.');
        require(!_isBlackListedBot[account], "Account is already blacklisted");
        _isBlackListedBot[account] = true;
        _blackListedBots.push(account);
    }
    
    function removeBotFromBlackList(address account) external onlyOwner() {
        require(_isBlackListedBot[account], "Account is not blacklisted");
        for (uint256 i = 0; i < _blackListedBots.length; i++) {
            if (_blackListedBots[i] == account) {
                _blackListedBots[i] = _blackListedBots[_blackListedBots.length - 1];
                _isBlackListedBot[account] = false;
                _blackListedBots.pop();
                break;
            }
        }
    }

    function isBlackListed(address account) public view returns (bool) {
        return _isBlackListedBot[account];
    }
    
    function blacklistSingleWallet(address addresses) public onlyOwner(){
        if(_isBlacklisted[addresses] == true) return;
        _isBlacklisted[addresses] = true;
    }

    function blacklistMultipleWallets(address[] calldata addresses) public onlyOwner(){
        for (uint256 i; i < addresses.length; ++i) {
            _isBlacklisted[addresses[i]] = true;
        }
    }
    
    function isBlacklisted(address addresses) public view returns (bool){
        if(_isBlacklisted[addresses] == true) return true;
        else return false;
    }
    
    
    function unBlacklistSingleWallet(address addresses) external onlyOwner(){
         if(_isBlacklisted[addresses] == false) return;
        _isBlacklisted[addresses] = false;
    }

    function unBlacklistMultipleWallets(address[] calldata addresses) public onlyOwner(){
        for (uint256 i; i < addresses.length; ++i) {
            _isBlacklisted[addresses[i]] = false;
        }
    }
    
    function allowance(address owner, address spender) public view override 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 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 isExcludedFromReward(address account) public view returns (bool) {
        return _isExcluded[account];
    }

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }

    function deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 rAmount,,,,,) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 rAmount,,,,,) = _getValues(tAmount);
            return rAmount;
        } else {
            (,uint256 rTransferAmount,,,,) = _getValues(tAmount);
            return rTransferAmount;
        }
    }

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

    function excludeFromReward(address account) public onlyOwner() {
        // require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude uniswapV2 router.');
        require(!_isExcluded[account], "Account is already excluded");
        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeInReward(address account) external onlyOwner() {
        require(_isExcluded[account], "Account is already excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }
    
    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0));
        require(spender != address(0));

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

    bool public limit = true;
    function changeLimit() public onlyOwner(){
        require(limit == true, 'limit is already false');
            limit = false;
    }
    
    function expectedRewards(address _sender) external view returns(uint256){
        uint256 _balance = address(this).balance;
        address sender = _sender;
        uint256 holdersBal = balanceOf(sender);
        uint totalExcludedBal;
        for(uint256 i = 0; i<_excluded.length; i++){
         totalExcludedBal = balanceOf(_excluded[i]).add(totalExcludedBal);   
        }
        uint256 rewards = holdersBal.mul(_balance).div(_tTotal.sub(balanceOf(uniswapV2Pair)).sub(totalExcludedBal));
        return rewards;
    }
    
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        require(!_isBlackListedBot[to], "You have no power here!");
        require(!_isBlackListedBot[from], "You have no power here!");
        require(_isBlacklisted[from] == false || to == address(0), "You are banned");
        require(_isBlacklisted[to] == false, "The recipient is banned");
        
        if(limit ==  true && from != owner() && to != owner()){
            if(to != uniswapV2Pair){
                require(((balanceOf(to).add(amount)) <= 500 ether));
            }
            require(amount <= 100 ether, 'Transfer amount must be less than 100 tokens');
            }
        if(from != owner() && to != owner())
            require(amount <= _maxTxAmount);

        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & liquify if sender is uniswapV2 pair.
        if(!exist[to]){
            tokenHolder.push(to);
            numberOfTokenHolders++;
            exist[to] = true;
        }
        uint256 contractTokenBalance = balanceOf(address(this));
        bool overMinTokenBalance = contractTokenBalance >= minTokensBeforeSwap;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            //add liquidity
            swapAndLiquify(contractTokenBalance);
        }
        
        //indicates if fee should be deducted from transfer
        bool takeFee = true;
        
        //if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){
            takeFee = false;
        }
        
        //transfer amount, it will take tax, burn, liquidity fee
        _tokenTransfer(from,to,amount,takeFee);
    }
    mapping(address => uint256) public myRewards;
    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 forLiquidity = contractTokenBalance.div(2);
        uint256 devExp = contractTokenBalance.div(4);
        uint256 forRewards = contractTokenBalance.div(4);
        // split the liquidity
        uint256 half = forLiquidity.div(2);
        uint256 otherHalf = forLiquidity.sub(half);
        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the liquidity event include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;

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

        // how much ETH did we just swap into?
        uint256 Balance = address(this).balance.sub(initialBalance);
        uint256 oneThird = Balance.div(3);
        wallet.transfer(oneThird);
        rewardsWallet.transfer(oneThird);
 
        // add liquidity to uniswapV2
        addLiquidity(otherHalf, oneThird);
        
        emit SwapAndLiquify(half, oneThird, otherHalf);
    }
       
    function ETHBalance() external view returns(uint256){
        return address(this).balance;
    }
    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswapV2 pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

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

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

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

    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private {
        if(!takeFee)
            removeAllFee();
        
        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }
        
        if(!takeFee)
            restoreAllFee();
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);           
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);   
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);        
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _reflectFee(uint256 rFee, uint256 tFee) private {
        _rTotal = _rTotal.sub(rFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, _getRate());
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity);
    }

    function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256) {
        uint256 tFee = calculateTaxFee(tAmount);
        uint256 tLiquidity = calculateLiquidityFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity);
        return (tTransferAmount, tFee, tLiquidity);
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity);
        return (rAmount, rTransferAmount, rFee);
    }

    function _getRate() private view returns(uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply.div(tSupply);
    }

    function _getCurrentSupply() private view returns(uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;      
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }
    
    function _takeLiquidity(uint256 tLiquidity) private {
        uint256 currentRate =  _getRate();
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity);
        if(_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity);
    }
    
    function calculateTaxFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_taxFee).div(
            10**2
        );
    }

    function calculateLiquidityFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_liquidityFee).div(
            10**2
        );
    }
    
    function removeAllFee() private {
        if(_taxFee == 0 && _liquidityFee == 0) return;
        
        _previousTaxFee = _taxFee;
        _previousLiquidityFee = _liquidityFee;
        
        _taxFee = 0;
        _liquidityFee = 0;
    }
    
    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;
    }
    
    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }
    
    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }
    
    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }
    
    function setTaxFeePercent(uint256 taxFee) external onlyOwner() {
         require(taxFee <= 10, "Maximum fee limit is 10 percent");
        _taxFee = taxFee;
    }
    
    function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() {
        require(liquidityFee <= 10, "Maximum fee limit is 10 percent");
        _liquidityFee = liquidityFee;
    }
   
    function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() {
         require(maxTxPercent <= 50, "MaxTxPercent is 50 percent of total supplyC");
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(
            10**2
        );
    }

    function setNumTokensSellToAddToLiquidity(uint256 _minTokensBeforeSwap) external onlyOwner() {
        minTokensBeforeSwap = _minTokensBeforeSwap;
    }

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }
    
     //to recieve ETH from uniswapV2Router when swaping
    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":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","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":"ETHBalance","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":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBotToBlackList","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"blacklistMultipleWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addresses","type":"address"}],"name":"blacklistSingleWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"changeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"exist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"}],"name":"expectedRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","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":"isBlackListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addresses","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"myRewards","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":"numberOfTokenHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBotFromBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minTokensBeforeSwap","type":"uint256"}],"name":"setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newUniswapV2Router","type":"address"}],"name":"setRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","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":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenHolder","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"unBlacklistMultipleWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addresses","type":"address"}],"name":"unBlacklistSingleWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

69d3c21bcecceda1000000600990815569085afffa6ff50bffffff19600a5560c0604052608081905268131d58dade4810d85d60ba1b60a09081526200004991600c9190620003e8565b5060408051808201909152600980825268262aa1a5acf84fcc5d60b91b60209092019182526200007c91600d91620003e8565b50600e805460ff199081166009179091556002600f81905560105560086011819055601255600060145567016345785d8a0000601a55601e805460ff60a81b191690556512309ce54000601f55602080549091166001179055348015620000e257600080fd5b506000620000ef620003d5565b9050620000fb620003d5565b600080546001600160a01b0319166001600160a01b03928316178155604051918316917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600a546003600062000155620003d5565b6001600160a01b03168152602080820192909252604090810160002092909255601b8054336001600160a01b03199182168117909255601c80549091169091179055815163c45a015560e01b81529151737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a015592600480840193829003018186803b158015620001de57600080fd5b505afa158015620001f3573d6000803e3d6000fd5b505050506040513d60208110156200020a57600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200025b57600080fd5b505afa15801562000270573d6000803e3d6000fd5b505050506040513d60208110156200028757600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620002da57600080fd5b505af1158015620002ef573d6000803e3d6000fd5b505050506040513d60208110156200030657600080fd5b5051601e80546001600160a01b0319166001600160a01b0390921691909117905560016006600062000337620003d9565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff19958616179055308152600690925290208054909116600117905562000381620003d5565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040518082815260200191505060405180910390a35062000484565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200042b57805160ff19168380011785556200045b565b828001600101855582156200045b579182015b828111156200045b5782518255916020019190600101906200043e565b50620004699291506200046d565b5090565b5b808211156200046957600081556001016200046e565b613c6580620004946000396000f3fe60806040526004361061036f5760003560e01c8063772558ce116101c6578063a9059cbb116100f7578063dd62ed3e11610095578063f0f165af1161006f578063f0f165af14610ce9578063f157ce4014610d13578063f2fde38b14610d46578063fe575a8714610d7957610376565b8063dd62ed3e14610c48578063e47d606014610c83578063ea2f0b3714610cb657610376565b8063c49b9a80116100d1578063c49b9a8014610b95578063cad6ebf914610bc1578063d543dbeb14610bf4578063dd46706414610c1e57610376565b8063a9059cbb14610b14578063b6c5232414610b4d578063c0d7865514610b6257610376565b80638da5cb5b11610164578063a1bdc3991161013e578063a1bdc39914610a34578063a457c2d714610ab1578063a4d66daf14610aea578063a69df4b514610aff57610376565b80638da5cb5b146109e05780638ee88c53146109f557806395d89b4114610a1f57610376565b80637ded4d6a116101a05780637ded4d6a1461091d5780638187f51614610950578063862a4bf21461098357806388f82020146109ad57610376565b8063772558ce1461085857806377e5006f146108d55780637d1db4a51461090857610376565b806339509351116102a05780634a74bb021161023e5780635342acb4116102185780635342acb4146107c85780636bc87c3a146107fb57806370a0823114610810578063715018a61461084357610376565b80634a74bb021461074d5780634dfefc4b1461076257806352390c021461079557610376565b80634303443d1161027a5780634303443d146106a0578063437823ec146106d35780634549b0391461070657806349bd5a5e1461073857610376565b806339509351146106285780633b124fe7146106615780633bd5d1731461067657610376565b806320b9588c1161030d5780632d838119116102e75780632d8381191461058b5780633055a78c146105b5578063313ce567146105ca5780633685d419146105f557610376565b806320b9588c1461050057806323b872dd146105335780632cde60811461057657610376565b806313114a9d1161034957806313114a9d1461047e5780631694505e146104a5578063178ef307146104d657806318160ddd146104eb57610376565b8063061c82d01461037b57806306fdde03146103a7578063095ea7b31461043157610376565b3661037657005b600080fd5b34801561038757600080fd5b506103a56004803603602081101561039e57600080fd5b5035610dac565b005b3480156103b357600080fd5b506103bc610e5f565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103f65781810151838201526020016103de565b50505050905090810190601f1680156104235780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561043d57600080fd5b5061046a6004803603604081101561045457600080fd5b506001600160a01b038135169060200135610ef5565b604080519115158252519081900360200190f35b34801561048a57600080fd5b50610493610f13565b60408051918252519081900360200190f35b3480156104b157600080fd5b506104ba610f19565b604080516001600160a01b039092168252519081900360200190f35b3480156104e257600080fd5b50610493610f28565b3480156104f757600080fd5b50610493610f2e565b34801561050c57600080fd5b506104936004803603602081101561052357600080fd5b50356001600160a01b0316610f34565b34801561053f57600080fd5b5061046a6004803603606081101561055657600080fd5b506001600160a01b03813581169160208101359091169060400135610f46565b34801561058257600080fd5b506103a5610fcd565b34801561059757600080fd5b50610493600480360360208110156105ae57600080fd5b503561108d565b3480156105c157600080fd5b506104936110ef565b3480156105d657600080fd5b506105df6110f3565b6040805160ff9092168252519081900360200190f35b34801561060157600080fd5b506103a56004803603602081101561061857600080fd5b50356001600160a01b03166110fc565b34801561063457600080fd5b5061046a6004803603604081101561064b57600080fd5b506001600160a01b0381351690602001356112bd565b34801561066d57600080fd5b5061049361130b565b34801561068257600080fd5b506103a56004803603602081101561069957600080fd5b5035611311565b3480156106ac57600080fd5b506103a5600480360360208110156106c357600080fd5b50356001600160a01b03166113eb565b3480156106df57600080fd5b506103a5600480360360208110156106f657600080fd5b50356001600160a01b0316611573565b34801561071257600080fd5b506104936004803603604081101561072957600080fd5b508035906020013515156115ef565b34801561074457600080fd5b506104ba611681565b34801561075957600080fd5b5061046a611690565b34801561076e57600080fd5b5061046a6004803603602081101561078557600080fd5b50356001600160a01b03166116a0565b3480156107a157600080fd5b506103a5600480360360208110156107b857600080fd5b50356001600160a01b03166116b5565b3480156107d457600080fd5b5061046a600480360360208110156107eb57600080fd5b50356001600160a01b031661183b565b34801561080757600080fd5b50610493611859565b34801561081c57600080fd5b506104936004803603602081101561083357600080fd5b50356001600160a01b031661185f565b34801561084f57600080fd5b506103a56118c1565b34801561086457600080fd5b506103a56004803603602081101561087b57600080fd5b81019060208101813564010000000081111561089657600080fd5b8201836020820111156108a857600080fd5b803590602001918460208302840111640100000000831117156108ca57600080fd5b509092509050611963565b3480156108e157600080fd5b50610493600480360360208110156108f857600080fd5b50356001600160a01b0316611a16565b34801561091457600080fd5b50610493611ac3565b34801561092957600080fd5b506103a56004803603602081101561094057600080fd5b50356001600160a01b0316611ac9565b34801561095c57600080fd5b506103a56004803603602081101561097357600080fd5b50356001600160a01b0316611c56565b34801561098f57600080fd5b506104ba600480360360208110156109a657600080fd5b5035611cd0565b3480156109b957600080fd5b5061046a600480360360208110156109d057600080fd5b50356001600160a01b0316611cf7565b3480156109ec57600080fd5b506104ba611d15565b348015610a0157600080fd5b506103a560048036036020811015610a1857600080fd5b5035611d24565b348015610a2b57600080fd5b506103bc611dd7565b348015610a4057600080fd5b506103a560048036036020811015610a5757600080fd5b810190602081018135640100000000811115610a7257600080fd5b820183602082011115610a8457600080fd5b80359060200191846020830284011164010000000083111715610aa657600080fd5b509092509050611e38565b348015610abd57600080fd5b5061046a60048036036040811015610ad457600080fd5b506001600160a01b038135169060200135611ee6565b348015610af657600080fd5b5061046a611f4e565b348015610b0b57600080fd5b506103a5611f57565b348015610b2057600080fd5b5061046a60048036036040811015610b3757600080fd5b506001600160a01b038135169060200135612057565b348015610b5957600080fd5b5061049361206b565b348015610b6e57600080fd5b506103a560048036036020811015610b8557600080fd5b50356001600160a01b0316612071565b348015610ba157600080fd5b506103a560048036036020811015610bb857600080fd5b503515156120eb565b348015610bcd57600080fd5b506103a560048036036020811015610be457600080fd5b50356001600160a01b03166121b1565b348015610c0057600080fd5b506103a560048036036020811015610c1757600080fd5b503561225b565b348015610c2a57600080fd5b506103a560048036036020811015610c4157600080fd5b5035612313565b348015610c5457600080fd5b5061049360048036036040811015610c6b57600080fd5b506001600160a01b03813581169160200135166123c3565b348015610c8f57600080fd5b5061046a60048036036020811015610ca657600080fd5b50356001600160a01b03166123ee565b348015610cc257600080fd5b506103a560048036036020811015610cd957600080fd5b50356001600160a01b031661240c565b348015610cf557600080fd5b506103a560048036036020811015610d0c57600080fd5b5035612485565b348015610d1f57600080fd5b506103a560048036036020811015610d3657600080fd5b50356001600160a01b03166124e2565b348015610d5257600080fd5b506103a560048036036020811015610d6957600080fd5b50356001600160a01b0316612580565b348015610d8557600080fd5b5061046a60048036036020811015610d9c57600080fd5b50356001600160a01b0316612678565b610db46126ae565b6000546001600160a01b03908116911614610e04576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b600a811115610e5a576040805162461bcd60e51b815260206004820152601f60248201527f4d6178696d756d20666565206c696d69742069732031302070657263656e7400604482015290519081900360640190fd5b600f55565b600c8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610eeb5780601f10610ec057610100808354040283529160200191610eeb565b820191906000526020600020905b815481529060010190602001808311610ece57829003601f168201915b5050505050905090565b6000610f09610f026126ae565b84846126b2565b5060015b92915050565b600b5490565b601d546001600160a01b031681565b60145481565b60095490565b60216020526000908152604090205481565b6000610f5384848461273a565b610fc384610f5f6126ae565b610fbe85604051806060016040528060288152602001613afb602891396001600160a01b038a16600090815260056020526040812090610f9d6126ae565b6001600160a01b031681526020810191909152604001600020549190612c50565b6126b2565b5060019392505050565b610fd56126ae565b6000546001600160a01b03908116911614611025576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b60205460ff161515600114611081576040805162461bcd60e51b815260206004820152601660248201527f6c696d697420697320616c72656164792066616c736500000000000000000000604482015290519081900360640190fd5b6020805460ff19169055565b6000600a548211156110d05760405162461bcd60e51b815260040180806020018281038252602a815260200180613a64602a913960400191505060405180910390fd5b60006110da612ce7565b90506110e68382612d0a565b9150505b919050565b4790565b600e5460ff1690565b6111046126ae565b6000546001600160a01b03908116911614611154576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff166111c1576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b6008548110156112b957816001600160a01b0316600882815481106111e557fe5b6000918252602090912001546001600160a01b031614156112b15760088054600019810190811061121257fe5b600091825260209091200154600880546001600160a01b03909216918390811061123857fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff19169055600880548061128a57fe5b600082815260209020810160001990810180546001600160a01b03191690550190556112b9565b6001016111c4565b5050565b6000610f096112ca6126ae565b84610fbe85600560006112db6126ae565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612d53565b600f5481565b600061131b6126ae565b6001600160a01b03811660009081526007602052604090205490915060ff16156113765760405162461bcd60e51b815260040180806020018281038252602c815260200180613b91602c913960400191505060405180910390fd5b600061138183612dad565b505050506001600160a01b0384166000908152600360205260409020549192506113ad91905082612dfc565b6001600160a01b038316600090815260036020526040902055600a546113d39082612dfc565b600a55600b546113e39084612d53565b600b55505050565b6113f36126ae565b6000546001600160a01b03908116911614611443576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b038216141561149f5760405162461bcd60e51b8152600401808060200182810382526026815260200180613ab46026913960400191505060405180910390fd5b6001600160a01b03811660009081526016602052604090205460ff161561150d576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152601660205260408120805460ff191660019081179091556017805491820181559091527fc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c150180546001600160a01b0319169091179055565b61157b6126ae565b6000546001600160a01b039081169116146115cb576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600954831115611648576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161166757600061165884612dad565b50939550610f0d945050505050565b600061167284612dad565b50929550610f0d945050505050565b601e546001600160a01b031681565b601e54600160a81b900460ff1681565b60156020526000908152604090205460ff1681565b6116bd6126ae565b6000546001600160a01b0390811691161461170d576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff161561177b576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260036020526040902054156117d5576001600160a01b0381166000908152600360205260409020546117bb9061108d565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b60115481565b6001600160a01b03811660009081526007602052604081205460ff161561189f57506001600160a01b0381166000908152600460205260409020546110ea565b6001600160a01b038216600090815260036020526040902054610f0d9061108d565b6118c96126ae565b6000546001600160a01b03908116911614611919576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b61196b6126ae565b6000546001600160a01b039081169116146119bb576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b60005b81811015611a11576001601960008585858181106119d857fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff19169115159190911790556001016119be565b505050565b6000478282611a248261185f565b90506000805b600854811015611a7257611a6882611a6260088481548110611a4857fe5b6000918252602090912001546001600160a01b031661185f565b90612d53565b9150600101611a2a565b50601e54600090611ab890611aa8908490611aa290611a99906001600160a01b031661185f565b60095490612dfc565b90612dfc565b611ab28588612e3e565b90612d0a565b979650505050505050565b601a5481565b611ad16126ae565b6000546001600160a01b03908116911614611b21576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526016602052604090205460ff16611b8e576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b6017548110156112b957816001600160a01b031660178281548110611bb257fe5b6000918252602090912001546001600160a01b03161415611c4e57601780546000198101908110611bdf57fe5b600091825260209091200154601780546001600160a01b039092169183908110611c0557fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152601690915260409020805460ff19169055601780548061128a57fe5b600101611b91565b611c5e6126ae565b6000546001600160a01b03908116911614611cae576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b601e80546001600160a01b0319166001600160a01b0392909216919091179055565b60138181548110611cdd57fe5b6000918252602090912001546001600160a01b0316905081565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b611d2c6126ae565b6000546001600160a01b03908116911614611d7c576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b600a811115611dd2576040805162461bcd60e51b815260206004820152601f60248201527f4d6178696d756d20666565206c696d69742069732031302070657263656e7400604482015290519081900360640190fd5b601155565b600d8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610eeb5780601f10610ec057610100808354040283529160200191610eeb565b611e406126ae565b6000546001600160a01b03908116911614611e90576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b60005b81811015611a1157600060196000858585818110611ead57fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff1916911515919091179055600101611e93565b6000610f09611ef36126ae565b84610fbe85604051806060016040528060258152602001613c0b6025913960056000611f1d6126ae565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612c50565b60205460ff1681565b6001546001600160a01b03163314611fa05760405162461bcd60e51b8152600401808060200182810382526023815260200180613be86023913960400191505060405180910390fd5b6002544211611ff6576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610f096120646126ae565b848461273a565b60025490565b6120796126ae565b6000546001600160a01b039081169116146120c9576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b601d80546001600160a01b0319166001600160a01b0392909216919091179055565b6120f36126ae565b6000546001600160a01b03908116911614612143576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b601e8054821515600160a81b81027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff9092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b6121b96126ae565b6000546001600160a01b03908116911614612209576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526019602052604090205460ff1615156001141561223457612258565b6001600160a01b0381166000908152601960205260409020805460ff191660011790555b50565b6122636126ae565b6000546001600160a01b039081169116146122b3576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b60328111156122f35760405162461bcd60e51b815260040180806020018281038252602b815260200180613bbd602b913960400191505060405180910390fd5b61230d6064611ab283600954612e3e90919063ffffffff16565b601a5550565b61231b6126ae565b6000546001600160a01b0390811691161461236b576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b0384161790915516815542820160025560405181907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6001600160a01b031660009081526016602052604090205460ff1690565b6124146126ae565b6000546001600160a01b03908116911614612464576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b61248d6126ae565b6000546001600160a01b039081169116146124dd576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b601f55565b6124ea6126ae565b6000546001600160a01b0390811691161461253a576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526019602052604090205460ff1661255f57612258565b6001600160a01b03166000908152601960205260409020805460ff19169055565b6125886126ae565b6000546001600160a01b039081169116146125d8576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b6001600160a01b03811661261d5760405162461bcd60e51b8152600401808060200182810382526026815260200180613a8e6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526019602052604081205460ff161515600114156126a6575060016110ea565b5060006110ea565b3390565b6001600160a01b0383166126c557600080fd5b6001600160a01b0382166126d857600080fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661277f5760405162461bcd60e51b8152600401808060200182810382526025815260200180613b6c6025913960400191505060405180910390fd5b6001600160a01b0382166127c45760405162461bcd60e51b8152600401808060200182810382526023815260200180613a156023913960400191505060405180910390fd5b600081116128035760405162461bcd60e51b8152600401808060200182810382526029815260200180613b436029913960400191505060405180910390fd5b6001600160a01b03821660009081526016602052604090205460ff1615612871576040805162461bcd60e51b815260206004820152601760248201527f596f752068617665206e6f20706f776572206865726521000000000000000000604482015290519081900360640190fd5b6001600160a01b03831660009081526016602052604090205460ff16156128df576040805162461bcd60e51b815260206004820152601760248201527f596f752068617665206e6f20706f776572206865726521000000000000000000604482015290519081900360640190fd5b6001600160a01b03831660009081526019602052604090205460ff16158061290e57506001600160a01b038216155b61295f576040805162461bcd60e51b815260206004820152600e60248201527f596f75206172652062616e6e6564000000000000000000000000000000000000604482015290519081900360640190fd5b6001600160a01b03821660009081526019602052604090205460ff16156129cd576040805162461bcd60e51b815260206004820152601760248201527f54686520726563697069656e742069732062616e6e6564000000000000000000604482015290519081900360640190fd5b60205460ff16151560011480156129fd57506129e7611d15565b6001600160a01b0316836001600160a01b031614155b8015612a225750612a0c611d15565b6001600160a01b0316826001600160a01b031614155b15612aa657601e546001600160a01b03838116911614612a5e57681b1ae4d6e2ef500000612a5382611a628561185f565b1115612a5e57600080fd5b68056bc75e2d63100000811115612aa65760405162461bcd60e51b815260040180806020018281038252602c815260200180613a38602c913960400191505060405180910390fd5b612aae611d15565b6001600160a01b0316836001600160a01b031614158015612ae85750612ad2611d15565b6001600160a01b0316826001600160a01b031614155b15612afc57601a54811115612afc57600080fd5b6001600160a01b03821660009081526015602052604090205460ff16612b88576013805460018082019092557f66de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a0900180546001600160a01b0319166001600160a01b03851690811790915560148054830190556000908152601560205260409020805460ff191690911790555b6000612b933061185f565b601f5490915081108015908190612bb45750601e54600160a01b900460ff16155b8015612bce5750601e546001600160a01b03868116911614155b8015612be35750601e54600160a81b900460ff165b15612bf157612bf182612e97565b6001600160a01b03851660009081526006602052604090205460019060ff1680612c3357506001600160a01b03851660009081526006602052604090205460ff165b15612c3c575060005b612c4886868684612fff565b505050505050565b60008184841115612cdf5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612ca4578181015183820152602001612c8c565b50505050905090810190601f168015612cd15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000612cf4613173565b9092509050612d038282612d0a565b9250505090565b6000612d4c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506132d6565b9392505050565b600082820183811015612d4c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000612dc48a61333b565b9250925092506000806000612de28d8686612ddd612ce7565b613377565b919f909e50909c50959a5093985091965092945050505050565b6000612d4c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612c50565b600082612e4d57506000610f0d565b82820282848281612e5a57fe5b0414612d4c5760405162461bcd60e51b8152600401808060200182810382526021815260200180613ada6021913960400191505060405180910390fd5b601e805460ff60a01b1916600160a01b1790556000612eb7826002612d0a565b90506000612ec6836004612d0a565b90506000612ed5846004612d0a565b90506000612ee4846002612d0a565b90506000612ef28583612dfc565b905047612f0b612f0685611a628689612d53565b6133c7565b6000612f174783612dfc565b90506000612f26826003612d0a565b601b546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015612f61573d6000803e3d6000fd5b50601c546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612f9c573d6000803e3d6000fd5b50612fa7848261359f565b604080518681526020810183905280820186905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15050601e805460ff60a01b1916905550505050505050565b8061300c5761300c61366c565b6001600160a01b03841660009081526007602052604090205460ff16801561304d57506001600160a01b03831660009081526007602052604090205460ff16155b156130625761305d84848461369e565b613160565b6001600160a01b03841660009081526007602052604090205460ff161580156130a357506001600160a01b03831660009081526007602052604090205460ff165b156130b35761305d8484846137c2565b6001600160a01b03841660009081526007602052604090205460ff161580156130f557506001600160a01b03831660009081526007602052604090205460ff16155b156131055761305d84848461386b565b6001600160a01b03841660009081526007602052604090205460ff16801561314557506001600160a01b03831660009081526007602052604090205460ff165b156131555761305d8484846138af565b61316084848461386b565b8061316d5761316d613922565b50505050565b600a546009546000918291825b6008548110156132a45782600360006008848154811061319c57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061320157508160046000600884815481106131da57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561321857600a54600954945094505050506132d2565b613258600360006008848154811061322c57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612dfc565b925061329a600460006008848154811061326e57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612dfc565b9150600101613180565b50600954600a546132b491612d0a565b8210156132cc57600a546009549350935050506132d2565b90925090505b9091565b600081836133255760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612ca4578181015183820152602001612c8c565b50600083858161333157fe5b0495945050505050565b60008060008061334a85613930565b905060006133578661394c565b9050600061336982611aa28986612dfc565b979296509094509092505050565b60008080806133868886612e3e565b905060006133948887612e3e565b905060006133a28888612e3e565b905060006133b482611aa28686612dfc565b939b939a50919850919650505050505050565b604080516002808252606080830184529260208301908036833701905050905030816000815181106133f557fe5b6001600160a01b03928316602091820292909201810191909152601d54604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c4648926004808301939192829003018186803b15801561346257600080fd5b505afa158015613476573d6000803e3d6000fd5b505050506040513d602081101561348c57600080fd5b505181518290600190811061349d57fe5b6001600160a01b039283166020918202929092010152601d546134c391309116846126b2565b601d546040517f791ac947000000000000000000000000000000000000000000000000000000008152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b8381101561356257818101518382015260200161354a565b505050509050019650505050505050600060405180830381600087803b15801561358b57600080fd5b505af1158015612c48573d6000803e3d6000fd5b601d546135b79030906001600160a01b0316846126b2565b601d546001600160a01b031663f305d7198230856000806135d6611d15565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b15801561364157600080fd5b505af1158015613655573d6000803e3d6000fd5b50505050506040513d606081101561316d57600080fd5b600f5415801561367c5750601154155b156136865761369c565b600f805460105560118054601255600091829055555b565b6000806000806000806136b087612dad565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506136e29088612dfc565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546137119087612dfc565b6001600160a01b03808b1660009081526003602052604080822093909355908a16815220546137409086612d53565b6001600160a01b03891660009081526003602052604090205561376281613968565b61376c84836139f0565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806137d487612dad565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506138069087612dfc565b6001600160a01b03808b16600090815260036020908152604080832094909455918b1681526004909152205461383c9084612d53565b6001600160a01b0389166000908152600460209081526040808320939093556003905220546137409086612d53565b60008060008060008061387d87612dad565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506137119087612dfc565b6000806000806000806138c187612dad565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506138f39088612dfc565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546138069087612dfc565b601054600f55601254601155565b6000610f0d6064611ab2600f5485612e3e90919063ffffffff16565b6000610f0d6064611ab260115485612e3e90919063ffffffff16565b6000613972612ce7565b905060006139808383612e3e565b3060009081526003602052604090205490915061399d9082612d53565b3060009081526003602090815260408083209390935560079052205460ff1615611a1157306000908152600460205260409020546139db9084612d53565b30600090815260046020526040902055505050565b600a546139fd9083612dfc565b600a55600b54613a0d9082612d53565b600b55505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206d757374206265206c657373207468616e2031303020746f6b656e73416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737357652063616e206e6f7420626c61636b6c69737420556e6973776170563220726f757465722e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e4d6178547850657263656e742069732035302070657263656e74206f6620746f74616c20737570706c7943596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d6f637e6c69336fa18d1607ada9866670272b179a192ebaa0866704095f1f99c64736f6c634300060c0033

Deployed Bytecode

0x60806040526004361061036f5760003560e01c8063772558ce116101c6578063a9059cbb116100f7578063dd62ed3e11610095578063f0f165af1161006f578063f0f165af14610ce9578063f157ce4014610d13578063f2fde38b14610d46578063fe575a8714610d7957610376565b8063dd62ed3e14610c48578063e47d606014610c83578063ea2f0b3714610cb657610376565b8063c49b9a80116100d1578063c49b9a8014610b95578063cad6ebf914610bc1578063d543dbeb14610bf4578063dd46706414610c1e57610376565b8063a9059cbb14610b14578063b6c5232414610b4d578063c0d7865514610b6257610376565b80638da5cb5b11610164578063a1bdc3991161013e578063a1bdc39914610a34578063a457c2d714610ab1578063a4d66daf14610aea578063a69df4b514610aff57610376565b80638da5cb5b146109e05780638ee88c53146109f557806395d89b4114610a1f57610376565b80637ded4d6a116101a05780637ded4d6a1461091d5780638187f51614610950578063862a4bf21461098357806388f82020146109ad57610376565b8063772558ce1461085857806377e5006f146108d55780637d1db4a51461090857610376565b806339509351116102a05780634a74bb021161023e5780635342acb4116102185780635342acb4146107c85780636bc87c3a146107fb57806370a0823114610810578063715018a61461084357610376565b80634a74bb021461074d5780634dfefc4b1461076257806352390c021461079557610376565b80634303443d1161027a5780634303443d146106a0578063437823ec146106d35780634549b0391461070657806349bd5a5e1461073857610376565b806339509351146106285780633b124fe7146106615780633bd5d1731461067657610376565b806320b9588c1161030d5780632d838119116102e75780632d8381191461058b5780633055a78c146105b5578063313ce567146105ca5780633685d419146105f557610376565b806320b9588c1461050057806323b872dd146105335780632cde60811461057657610376565b806313114a9d1161034957806313114a9d1461047e5780631694505e146104a5578063178ef307146104d657806318160ddd146104eb57610376565b8063061c82d01461037b57806306fdde03146103a7578063095ea7b31461043157610376565b3661037657005b600080fd5b34801561038757600080fd5b506103a56004803603602081101561039e57600080fd5b5035610dac565b005b3480156103b357600080fd5b506103bc610e5f565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103f65781810151838201526020016103de565b50505050905090810190601f1680156104235780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561043d57600080fd5b5061046a6004803603604081101561045457600080fd5b506001600160a01b038135169060200135610ef5565b604080519115158252519081900360200190f35b34801561048a57600080fd5b50610493610f13565b60408051918252519081900360200190f35b3480156104b157600080fd5b506104ba610f19565b604080516001600160a01b039092168252519081900360200190f35b3480156104e257600080fd5b50610493610f28565b3480156104f757600080fd5b50610493610f2e565b34801561050c57600080fd5b506104936004803603602081101561052357600080fd5b50356001600160a01b0316610f34565b34801561053f57600080fd5b5061046a6004803603606081101561055657600080fd5b506001600160a01b03813581169160208101359091169060400135610f46565b34801561058257600080fd5b506103a5610fcd565b34801561059757600080fd5b50610493600480360360208110156105ae57600080fd5b503561108d565b3480156105c157600080fd5b506104936110ef565b3480156105d657600080fd5b506105df6110f3565b6040805160ff9092168252519081900360200190f35b34801561060157600080fd5b506103a56004803603602081101561061857600080fd5b50356001600160a01b03166110fc565b34801561063457600080fd5b5061046a6004803603604081101561064b57600080fd5b506001600160a01b0381351690602001356112bd565b34801561066d57600080fd5b5061049361130b565b34801561068257600080fd5b506103a56004803603602081101561069957600080fd5b5035611311565b3480156106ac57600080fd5b506103a5600480360360208110156106c357600080fd5b50356001600160a01b03166113eb565b3480156106df57600080fd5b506103a5600480360360208110156106f657600080fd5b50356001600160a01b0316611573565b34801561071257600080fd5b506104936004803603604081101561072957600080fd5b508035906020013515156115ef565b34801561074457600080fd5b506104ba611681565b34801561075957600080fd5b5061046a611690565b34801561076e57600080fd5b5061046a6004803603602081101561078557600080fd5b50356001600160a01b03166116a0565b3480156107a157600080fd5b506103a5600480360360208110156107b857600080fd5b50356001600160a01b03166116b5565b3480156107d457600080fd5b5061046a600480360360208110156107eb57600080fd5b50356001600160a01b031661183b565b34801561080757600080fd5b50610493611859565b34801561081c57600080fd5b506104936004803603602081101561083357600080fd5b50356001600160a01b031661185f565b34801561084f57600080fd5b506103a56118c1565b34801561086457600080fd5b506103a56004803603602081101561087b57600080fd5b81019060208101813564010000000081111561089657600080fd5b8201836020820111156108a857600080fd5b803590602001918460208302840111640100000000831117156108ca57600080fd5b509092509050611963565b3480156108e157600080fd5b50610493600480360360208110156108f857600080fd5b50356001600160a01b0316611a16565b34801561091457600080fd5b50610493611ac3565b34801561092957600080fd5b506103a56004803603602081101561094057600080fd5b50356001600160a01b0316611ac9565b34801561095c57600080fd5b506103a56004803603602081101561097357600080fd5b50356001600160a01b0316611c56565b34801561098f57600080fd5b506104ba600480360360208110156109a657600080fd5b5035611cd0565b3480156109b957600080fd5b5061046a600480360360208110156109d057600080fd5b50356001600160a01b0316611cf7565b3480156109ec57600080fd5b506104ba611d15565b348015610a0157600080fd5b506103a560048036036020811015610a1857600080fd5b5035611d24565b348015610a2b57600080fd5b506103bc611dd7565b348015610a4057600080fd5b506103a560048036036020811015610a5757600080fd5b810190602081018135640100000000811115610a7257600080fd5b820183602082011115610a8457600080fd5b80359060200191846020830284011164010000000083111715610aa657600080fd5b509092509050611e38565b348015610abd57600080fd5b5061046a60048036036040811015610ad457600080fd5b506001600160a01b038135169060200135611ee6565b348015610af657600080fd5b5061046a611f4e565b348015610b0b57600080fd5b506103a5611f57565b348015610b2057600080fd5b5061046a60048036036040811015610b3757600080fd5b506001600160a01b038135169060200135612057565b348015610b5957600080fd5b5061049361206b565b348015610b6e57600080fd5b506103a560048036036020811015610b8557600080fd5b50356001600160a01b0316612071565b348015610ba157600080fd5b506103a560048036036020811015610bb857600080fd5b503515156120eb565b348015610bcd57600080fd5b506103a560048036036020811015610be457600080fd5b50356001600160a01b03166121b1565b348015610c0057600080fd5b506103a560048036036020811015610c1757600080fd5b503561225b565b348015610c2a57600080fd5b506103a560048036036020811015610c4157600080fd5b5035612313565b348015610c5457600080fd5b5061049360048036036040811015610c6b57600080fd5b506001600160a01b03813581169160200135166123c3565b348015610c8f57600080fd5b5061046a60048036036020811015610ca657600080fd5b50356001600160a01b03166123ee565b348015610cc257600080fd5b506103a560048036036020811015610cd957600080fd5b50356001600160a01b031661240c565b348015610cf557600080fd5b506103a560048036036020811015610d0c57600080fd5b5035612485565b348015610d1f57600080fd5b506103a560048036036020811015610d3657600080fd5b50356001600160a01b03166124e2565b348015610d5257600080fd5b506103a560048036036020811015610d6957600080fd5b50356001600160a01b0316612580565b348015610d8557600080fd5b5061046a60048036036020811015610d9c57600080fd5b50356001600160a01b0316612678565b610db46126ae565b6000546001600160a01b03908116911614610e04576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b600a811115610e5a576040805162461bcd60e51b815260206004820152601f60248201527f4d6178696d756d20666565206c696d69742069732031302070657263656e7400604482015290519081900360640190fd5b600f55565b600c8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610eeb5780601f10610ec057610100808354040283529160200191610eeb565b820191906000526020600020905b815481529060010190602001808311610ece57829003601f168201915b5050505050905090565b6000610f09610f026126ae565b84846126b2565b5060015b92915050565b600b5490565b601d546001600160a01b031681565b60145481565b60095490565b60216020526000908152604090205481565b6000610f5384848461273a565b610fc384610f5f6126ae565b610fbe85604051806060016040528060288152602001613afb602891396001600160a01b038a16600090815260056020526040812090610f9d6126ae565b6001600160a01b031681526020810191909152604001600020549190612c50565b6126b2565b5060019392505050565b610fd56126ae565b6000546001600160a01b03908116911614611025576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b60205460ff161515600114611081576040805162461bcd60e51b815260206004820152601660248201527f6c696d697420697320616c72656164792066616c736500000000000000000000604482015290519081900360640190fd5b6020805460ff19169055565b6000600a548211156110d05760405162461bcd60e51b815260040180806020018281038252602a815260200180613a64602a913960400191505060405180910390fd5b60006110da612ce7565b90506110e68382612d0a565b9150505b919050565b4790565b600e5460ff1690565b6111046126ae565b6000546001600160a01b03908116911614611154576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff166111c1576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b6008548110156112b957816001600160a01b0316600882815481106111e557fe5b6000918252602090912001546001600160a01b031614156112b15760088054600019810190811061121257fe5b600091825260209091200154600880546001600160a01b03909216918390811061123857fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff19169055600880548061128a57fe5b600082815260209020810160001990810180546001600160a01b03191690550190556112b9565b6001016111c4565b5050565b6000610f096112ca6126ae565b84610fbe85600560006112db6126ae565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612d53565b600f5481565b600061131b6126ae565b6001600160a01b03811660009081526007602052604090205490915060ff16156113765760405162461bcd60e51b815260040180806020018281038252602c815260200180613b91602c913960400191505060405180910390fd5b600061138183612dad565b505050506001600160a01b0384166000908152600360205260409020549192506113ad91905082612dfc565b6001600160a01b038316600090815260036020526040902055600a546113d39082612dfc565b600a55600b546113e39084612d53565b600b55505050565b6113f36126ae565b6000546001600160a01b03908116911614611443576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b038216141561149f5760405162461bcd60e51b8152600401808060200182810382526026815260200180613ab46026913960400191505060405180910390fd5b6001600160a01b03811660009081526016602052604090205460ff161561150d576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152601660205260408120805460ff191660019081179091556017805491820181559091527fc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c150180546001600160a01b0319169091179055565b61157b6126ae565b6000546001600160a01b039081169116146115cb576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600954831115611648576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161166757600061165884612dad565b50939550610f0d945050505050565b600061167284612dad565b50929550610f0d945050505050565b601e546001600160a01b031681565b601e54600160a81b900460ff1681565b60156020526000908152604090205460ff1681565b6116bd6126ae565b6000546001600160a01b0390811691161461170d576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff161561177b576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260036020526040902054156117d5576001600160a01b0381166000908152600360205260409020546117bb9061108d565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b60115481565b6001600160a01b03811660009081526007602052604081205460ff161561189f57506001600160a01b0381166000908152600460205260409020546110ea565b6001600160a01b038216600090815260036020526040902054610f0d9061108d565b6118c96126ae565b6000546001600160a01b03908116911614611919576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b61196b6126ae565b6000546001600160a01b039081169116146119bb576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b60005b81811015611a11576001601960008585858181106119d857fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff19169115159190911790556001016119be565b505050565b6000478282611a248261185f565b90506000805b600854811015611a7257611a6882611a6260088481548110611a4857fe5b6000918252602090912001546001600160a01b031661185f565b90612d53565b9150600101611a2a565b50601e54600090611ab890611aa8908490611aa290611a99906001600160a01b031661185f565b60095490612dfc565b90612dfc565b611ab28588612e3e565b90612d0a565b979650505050505050565b601a5481565b611ad16126ae565b6000546001600160a01b03908116911614611b21576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526016602052604090205460ff16611b8e576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b6017548110156112b957816001600160a01b031660178281548110611bb257fe5b6000918252602090912001546001600160a01b03161415611c4e57601780546000198101908110611bdf57fe5b600091825260209091200154601780546001600160a01b039092169183908110611c0557fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152601690915260409020805460ff19169055601780548061128a57fe5b600101611b91565b611c5e6126ae565b6000546001600160a01b03908116911614611cae576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b601e80546001600160a01b0319166001600160a01b0392909216919091179055565b60138181548110611cdd57fe5b6000918252602090912001546001600160a01b0316905081565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b611d2c6126ae565b6000546001600160a01b03908116911614611d7c576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b600a811115611dd2576040805162461bcd60e51b815260206004820152601f60248201527f4d6178696d756d20666565206c696d69742069732031302070657263656e7400604482015290519081900360640190fd5b601155565b600d8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610eeb5780601f10610ec057610100808354040283529160200191610eeb565b611e406126ae565b6000546001600160a01b03908116911614611e90576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b60005b81811015611a1157600060196000858585818110611ead57fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff1916911515919091179055600101611e93565b6000610f09611ef36126ae565b84610fbe85604051806060016040528060258152602001613c0b6025913960056000611f1d6126ae565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612c50565b60205460ff1681565b6001546001600160a01b03163314611fa05760405162461bcd60e51b8152600401808060200182810382526023815260200180613be86023913960400191505060405180910390fd5b6002544211611ff6576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610f096120646126ae565b848461273a565b60025490565b6120796126ae565b6000546001600160a01b039081169116146120c9576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b601d80546001600160a01b0319166001600160a01b0392909216919091179055565b6120f36126ae565b6000546001600160a01b03908116911614612143576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b601e8054821515600160a81b81027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff9092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b6121b96126ae565b6000546001600160a01b03908116911614612209576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526019602052604090205460ff1615156001141561223457612258565b6001600160a01b0381166000908152601960205260409020805460ff191660011790555b50565b6122636126ae565b6000546001600160a01b039081169116146122b3576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b60328111156122f35760405162461bcd60e51b815260040180806020018281038252602b815260200180613bbd602b913960400191505060405180910390fd5b61230d6064611ab283600954612e3e90919063ffffffff16565b601a5550565b61231b6126ae565b6000546001600160a01b0390811691161461236b576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b0384161790915516815542820160025560405181907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6001600160a01b031660009081526016602052604090205460ff1690565b6124146126ae565b6000546001600160a01b03908116911614612464576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b61248d6126ae565b6000546001600160a01b039081169116146124dd576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b601f55565b6124ea6126ae565b6000546001600160a01b0390811691161461253a576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526019602052604090205460ff1661255f57612258565b6001600160a01b03166000908152601960205260409020805460ff19169055565b6125886126ae565b6000546001600160a01b039081169116146125d8576040805162461bcd60e51b81526020600482018190526024820152600080516020613b23833981519152604482015290519081900360640190fd5b6001600160a01b03811661261d5760405162461bcd60e51b8152600401808060200182810382526026815260200180613a8e6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526019602052604081205460ff161515600114156126a6575060016110ea565b5060006110ea565b3390565b6001600160a01b0383166126c557600080fd5b6001600160a01b0382166126d857600080fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661277f5760405162461bcd60e51b8152600401808060200182810382526025815260200180613b6c6025913960400191505060405180910390fd5b6001600160a01b0382166127c45760405162461bcd60e51b8152600401808060200182810382526023815260200180613a156023913960400191505060405180910390fd5b600081116128035760405162461bcd60e51b8152600401808060200182810382526029815260200180613b436029913960400191505060405180910390fd5b6001600160a01b03821660009081526016602052604090205460ff1615612871576040805162461bcd60e51b815260206004820152601760248201527f596f752068617665206e6f20706f776572206865726521000000000000000000604482015290519081900360640190fd5b6001600160a01b03831660009081526016602052604090205460ff16156128df576040805162461bcd60e51b815260206004820152601760248201527f596f752068617665206e6f20706f776572206865726521000000000000000000604482015290519081900360640190fd5b6001600160a01b03831660009081526019602052604090205460ff16158061290e57506001600160a01b038216155b61295f576040805162461bcd60e51b815260206004820152600e60248201527f596f75206172652062616e6e6564000000000000000000000000000000000000604482015290519081900360640190fd5b6001600160a01b03821660009081526019602052604090205460ff16156129cd576040805162461bcd60e51b815260206004820152601760248201527f54686520726563697069656e742069732062616e6e6564000000000000000000604482015290519081900360640190fd5b60205460ff16151560011480156129fd57506129e7611d15565b6001600160a01b0316836001600160a01b031614155b8015612a225750612a0c611d15565b6001600160a01b0316826001600160a01b031614155b15612aa657601e546001600160a01b03838116911614612a5e57681b1ae4d6e2ef500000612a5382611a628561185f565b1115612a5e57600080fd5b68056bc75e2d63100000811115612aa65760405162461bcd60e51b815260040180806020018281038252602c815260200180613a38602c913960400191505060405180910390fd5b612aae611d15565b6001600160a01b0316836001600160a01b031614158015612ae85750612ad2611d15565b6001600160a01b0316826001600160a01b031614155b15612afc57601a54811115612afc57600080fd5b6001600160a01b03821660009081526015602052604090205460ff16612b88576013805460018082019092557f66de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a0900180546001600160a01b0319166001600160a01b03851690811790915560148054830190556000908152601560205260409020805460ff191690911790555b6000612b933061185f565b601f5490915081108015908190612bb45750601e54600160a01b900460ff16155b8015612bce5750601e546001600160a01b03868116911614155b8015612be35750601e54600160a81b900460ff165b15612bf157612bf182612e97565b6001600160a01b03851660009081526006602052604090205460019060ff1680612c3357506001600160a01b03851660009081526006602052604090205460ff165b15612c3c575060005b612c4886868684612fff565b505050505050565b60008184841115612cdf5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612ca4578181015183820152602001612c8c565b50505050905090810190601f168015612cd15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000612cf4613173565b9092509050612d038282612d0a565b9250505090565b6000612d4c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506132d6565b9392505050565b600082820183811015612d4c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000612dc48a61333b565b9250925092506000806000612de28d8686612ddd612ce7565b613377565b919f909e50909c50959a5093985091965092945050505050565b6000612d4c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612c50565b600082612e4d57506000610f0d565b82820282848281612e5a57fe5b0414612d4c5760405162461bcd60e51b8152600401808060200182810382526021815260200180613ada6021913960400191505060405180910390fd5b601e805460ff60a01b1916600160a01b1790556000612eb7826002612d0a565b90506000612ec6836004612d0a565b90506000612ed5846004612d0a565b90506000612ee4846002612d0a565b90506000612ef28583612dfc565b905047612f0b612f0685611a628689612d53565b6133c7565b6000612f174783612dfc565b90506000612f26826003612d0a565b601b546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015612f61573d6000803e3d6000fd5b50601c546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612f9c573d6000803e3d6000fd5b50612fa7848261359f565b604080518681526020810183905280820186905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15050601e805460ff60a01b1916905550505050505050565b8061300c5761300c61366c565b6001600160a01b03841660009081526007602052604090205460ff16801561304d57506001600160a01b03831660009081526007602052604090205460ff16155b156130625761305d84848461369e565b613160565b6001600160a01b03841660009081526007602052604090205460ff161580156130a357506001600160a01b03831660009081526007602052604090205460ff165b156130b35761305d8484846137c2565b6001600160a01b03841660009081526007602052604090205460ff161580156130f557506001600160a01b03831660009081526007602052604090205460ff16155b156131055761305d84848461386b565b6001600160a01b03841660009081526007602052604090205460ff16801561314557506001600160a01b03831660009081526007602052604090205460ff165b156131555761305d8484846138af565b61316084848461386b565b8061316d5761316d613922565b50505050565b600a546009546000918291825b6008548110156132a45782600360006008848154811061319c57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061320157508160046000600884815481106131da57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561321857600a54600954945094505050506132d2565b613258600360006008848154811061322c57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612dfc565b925061329a600460006008848154811061326e57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612dfc565b9150600101613180565b50600954600a546132b491612d0a565b8210156132cc57600a546009549350935050506132d2565b90925090505b9091565b600081836133255760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612ca4578181015183820152602001612c8c565b50600083858161333157fe5b0495945050505050565b60008060008061334a85613930565b905060006133578661394c565b9050600061336982611aa28986612dfc565b979296509094509092505050565b60008080806133868886612e3e565b905060006133948887612e3e565b905060006133a28888612e3e565b905060006133b482611aa28686612dfc565b939b939a50919850919650505050505050565b604080516002808252606080830184529260208301908036833701905050905030816000815181106133f557fe5b6001600160a01b03928316602091820292909201810191909152601d54604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c4648926004808301939192829003018186803b15801561346257600080fd5b505afa158015613476573d6000803e3d6000fd5b505050506040513d602081101561348c57600080fd5b505181518290600190811061349d57fe5b6001600160a01b039283166020918202929092010152601d546134c391309116846126b2565b601d546040517f791ac947000000000000000000000000000000000000000000000000000000008152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b8381101561356257818101518382015260200161354a565b505050509050019650505050505050600060405180830381600087803b15801561358b57600080fd5b505af1158015612c48573d6000803e3d6000fd5b601d546135b79030906001600160a01b0316846126b2565b601d546001600160a01b031663f305d7198230856000806135d6611d15565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b15801561364157600080fd5b505af1158015613655573d6000803e3d6000fd5b50505050506040513d606081101561316d57600080fd5b600f5415801561367c5750601154155b156136865761369c565b600f805460105560118054601255600091829055555b565b6000806000806000806136b087612dad565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506136e29088612dfc565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546137119087612dfc565b6001600160a01b03808b1660009081526003602052604080822093909355908a16815220546137409086612d53565b6001600160a01b03891660009081526003602052604090205561376281613968565b61376c84836139f0565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806137d487612dad565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506138069087612dfc565b6001600160a01b03808b16600090815260036020908152604080832094909455918b1681526004909152205461383c9084612d53565b6001600160a01b0389166000908152600460209081526040808320939093556003905220546137409086612d53565b60008060008060008061387d87612dad565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506137119087612dfc565b6000806000806000806138c187612dad565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506138f39088612dfc565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546138069087612dfc565b601054600f55601254601155565b6000610f0d6064611ab2600f5485612e3e90919063ffffffff16565b6000610f0d6064611ab260115485612e3e90919063ffffffff16565b6000613972612ce7565b905060006139808383612e3e565b3060009081526003602052604090205490915061399d9082612d53565b3060009081526003602090815260408083209390935560079052205460ff1615611a1157306000908152600460205260409020546139db9084612d53565b30600090815260046020526040902055505050565b600a546139fd9083612dfc565b600a55600b54613a0d9082612d53565b600b55505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206d757374206265206c657373207468616e2031303020746f6b656e73416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737357652063616e206e6f7420626c61636b6c69737420556e6973776170563220726f757465722e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e4d6178547850657263656e742069732035302070657263656e74206f6620746f74616c20737570706c7943596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d6f637e6c69336fa18d1607ada9866670272b179a192ebaa0866704095f1f99c64736f6c634300060c0033

Deployed Bytecode Sourcemap

25746:22946:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47618:166;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47618:166:0;;:::i;:::-;;28772:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31679:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31679:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;32800:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;27158:41;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;27158:41:0;;;;;;;;;;;;;;26746:39;;;;;;;;;;;;;:::i;29049:95::-;;;;;;;;;;;;;:::i;38227:44::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38227:44:0;-1:-1:-1;;;;;38227:44:0;;:::i;31848:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31848:313:0;;;;;;;;;;;;;;;;;:::i;35231:136::-;;;;;;;;;;;;;:::i;33724:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33724:253:0;;:::i;39563:99::-;;;;;;;;;;;;;:::i;28958:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34442:479;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34442:479:0;-1:-1:-1;;;;;34442:479:0;;:::i;32169:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32169:218:0;;;;;;;;:::i;26518:26::-;;;;;;;;;;;;;:::i;32895:377::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32895:377:0;;:::i;29533:354::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29533:354:0;-1:-1:-1;;;;;29533:354:0;;:::i;47373:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47373:111:0;-1:-1:-1;;;;;47373:111:0;;:::i;33280:436::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33280:436:0;;;;;;;;;:::i;27206:28::-;;;;;;;;;;;;;:::i;27275:41::-;;;;;;;;;;;;;:::i;26792:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26792:37:0;-1:-1:-1;;;;;26792:37:0;;:::i;33985:449::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33985:449:0;-1:-1:-1;;;;;33985:449:0;;:::i;47238:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47238:123:0;-1:-1:-1;;;;;47238:123:0;;:::i;26605:32::-;;;;;;;;;;;;;:::i;29152:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29152:198:0;-1:-1:-1;;;;;29152:198:0;;:::i;16349:148::-;;;;;;;;;;;;;:::i;30720:205::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30720:205:0;;-1:-1:-1;30720:205:0;-1:-1:-1;30720:205:0;:::i;35379:534::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35379:534:0;-1:-1:-1;;;;;35379:534:0;;:::i;27039:47::-;;;;;;;;;;;;;:::i;29899:500::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29899:500:0;-1:-1:-1;;;;;29899:500:0;;:::i;28415:109::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28415:109:0;-1:-1:-1;;;;;28415:109:0;;:::i;26710:29::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26710:29:0;;:::i;32672:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32672:120:0;-1:-1:-1;;;;;32672:120:0;;:::i;15706:79::-;;;;;;;;;;;;;:::i;47796:195::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47796:195:0;;:::i;28863:87::-;;;;;;;;;;;;;:::i;31308:208::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31308:208:0;;-1:-1:-1;31308:208:0;-1:-1:-1;31308:208:0;:::i;32395:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32395:269:0;;;;;;;;:::i;35200:24::-;;;;;;;;;;;;;:::i;17359:293::-;;;;;;;;;;;;;:::i;29358:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29358:167:0;;;;;;;;:::i;16904:89::-;;;;;;;;;;;;;:::i;28556:208::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28556:208:0;-1:-1:-1;;;;;28556:208:0;;:::i;48420:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48420:171:0;;;;:::i;30538:174::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30538:174:0;-1:-1:-1;;;;;30538:174:0;;:::i;48002:248::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48002:248:0;;:::i;17069:214::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17069:214:0;;:::i;31528:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31528:143:0;;;;;;;;;;:::i;30407:119::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30407:119:0;-1:-1:-1;;;;;30407:119:0;;:::i;47496:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47496:110:0;-1:-1:-1;;;;;47496:110:0;;:::i;48258:154::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48258:154:0;;:::i;31119:181::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31119:181:0;-1:-1:-1;;;;;31119:181:0;;:::i;16652:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16652:244:0;-1:-1:-1;;;;;16652:244:0;;:::i;30937:164::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30937:164:0;-1:-1:-1;;;;;30937:164:0;;:::i;47618:166::-;15928:12;:10;:12::i;:::-;15918:6;;-1:-1:-1;;;;;15918:6:0;;;:22;;;15910:67;;;;;-1:-1:-1;;;15910:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15910:67:0;;;;;;;;;;;;;;;47711:2:::1;47701:6;:12;;47693:56;;;::::0;;-1:-1:-1;;;47693:56:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;47760:7;:16:::0;47618:166::o;28772:83::-;28842:5;28835:12;;;;;;;;-1:-1:-1;;28835:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28809:13;;28835:12;;28842:5;;28835:12;;28842:5;28835:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28772:83;:::o;31679:161::-;31754:4;31771:39;31780:12;:10;:12::i;:::-;31794:7;31803:6;31771:8;:39::i;:::-;-1:-1:-1;31828:4:0;31679:161;;;;;:::o;32800:87::-;32869:10;;32800:87;:::o;27158:41::-;;;-1:-1:-1;;;;;27158:41:0;;:::o;26746:39::-;;;;:::o;29049:95::-;29129:7;;29049:95;:::o;38227:44::-;;;;;;;;;;;;;:::o;31848:313::-;31946:4;31963:36;31973:6;31981:9;31992:6;31963:9;:36::i;:::-;32010:121;32019:6;32027:12;:10;:12::i;:::-;32041:89;32079:6;32041:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32041:19:0;;;;;;:11;:19;;;;;;32061:12;:10;:12::i;:::-;-1:-1:-1;;;;;32041:33:0;;;;;;;;;;;;-1:-1:-1;32041:33:0;;;:89;:37;:89::i;:::-;32010:8;:121::i;:::-;-1:-1:-1;32149:4:0;31848:313;;;;;:::o;35231:136::-;15928:12;:10;:12::i;:::-;15918:6;;-1:-1:-1;;;;;15918:6:0;;;:22;;;15910:67;;;;;-1:-1:-1;;;15910:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15910:67:0;;;;;;;;;;;;;;;35291:5:::1;::::0;::::1;;:13;;:5:::0;:13:::1;35283:48;;;::::0;;-1:-1:-1;;;35283:48:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;35346:5;:13:::0;;-1:-1:-1;;35346:13:0::1;::::0;;35231:136::o;33724:253::-;33790:7;33829;;33818;:18;;33810:73;;;;-1:-1:-1;;;33810:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33894:19;33917:10;:8;:10::i;:::-;33894:33;-1:-1:-1;33945:24:0;:7;33894:33;33945:11;:24::i;:::-;33938:31;;;33724:253;;;;:::o;39563:99::-;39633:21;39563:99;:::o;28958:83::-;29024:9;;;;28958:83;:::o;34442:479::-;15928:12;:10;:12::i;:::-;15918:6;;-1:-1:-1;;;;;15918:6:0;;;:22;;;15910:67;;;;;-1:-1:-1;;;15910:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15910:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;34524:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;34516:60;;;::::0;;-1:-1:-1;;;34516:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;34592:9;34587:327;34611:9;:16:::0;34607:20;::::1;34587:327;;;34669:7;-1:-1:-1::0;;;;;34653:23:0::1;:9;34663:1;34653:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;34653:12:0::1;:23;34649:254;;;34712:9;34722:16:::0;;-1:-1:-1;;34722:20:0;;;34712:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;34697:9:::1;:12:::0;;-1:-1:-1;;;;;34712:31:0;;::::1;::::0;34707:1;;34697:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;34697:46:0::1;-1:-1:-1::0;;;;;34697:46:0;;::::1;;::::0;;34762:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;34801:11:::1;:20:::0;;;;:28;;-1:-1:-1;;34801:28:0::1;::::0;;34848:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;34848:15:0;;;;;-1:-1:-1;;;;;;34848:15:0::1;::::0;;;;;34882:5:::1;;34649:254;34629:3;;34587:327;;;;34442:479:::0;:::o;32169:218::-;32257:4;32274:83;32283:12;:10;:12::i;:::-;32297:7;32306:50;32345:10;32306:11;:25;32318:12;:10;:12::i;:::-;-1:-1:-1;;;;;32306:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;32306:25:0;;;:34;;;;;;;;;;;:38;:50::i;26518:26::-;;;;:::o;32895:377::-;32947:14;32964:12;:10;:12::i;:::-;-1:-1:-1;;;;;32996:19:0;;;;;;:11;:19;;;;;;32947:29;;-1:-1:-1;32996:19:0;;32995:20;32987:77;;;;-1:-1:-1;;;32987:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33076:15;33100:19;33111:7;33100:10;:19::i;:::-;-1:-1:-1;;;;;;;;;33148:15:0;;;;;;:7;:15;;;;;;33075:44;;-1:-1:-1;33148:28:0;;:15;-1:-1:-1;33075:44:0;33148:19;:28::i;:::-;-1:-1:-1;;;;;33130:15:0;;;;;;:7;:15;;;;;:46;33197:7;;:20;;33209:7;33197:11;:20::i;:::-;33187:7;:30;33241:10;;:23;;33256:7;33241:14;:23::i;:::-;33228:10;:36;-1:-1:-1;;;32895:377:0:o;29533:354::-;15928:12;:10;:12::i;:::-;15918:6;;-1:-1:-1;;;;;15918:6:0;;;:22;;;15910:67;;;;;-1:-1:-1;;;15910:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15910:67:0;;;;;;;;;;;;;;;29628:42:::1;-1:-1:-1::0;;;;;29617:53:0;::::1;;;29609:104;;;;-1:-1:-1::0;;;29609:104:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;29733:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;29732:27;29724:70;;;::::0;;-1:-1:-1;;;29724:70:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;29805:26:0::1;;::::0;;;:17:::1;:26;::::0;;;;:33;;-1:-1:-1;;29805:33:0::1;29834:4;29805:33:::0;;::::1;::::0;;;29849:16:::1;:30:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;29849:30:0::1;::::0;;::::1;::::0;;29533:354::o;47373:111::-;15928:12;:10;:12::i;:::-;15918:6;;-1:-1:-1;;;;;15918:6:0;;;:22;;;15910:67;;;;;-1:-1:-1;;;15910:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15910:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;47442:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;47442:34:0::1;47472:4;47442:34;::::0;;47373:111::o;33280:436::-;33370:7;33409;;33398;:18;;33390:62;;;;;-1:-1:-1;;;33390:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;33468:17;33463:246;;33503:15;33527:19;33538:7;33527:10;:19::i;:::-;-1:-1:-1;33502:44:0;;-1:-1:-1;33561:14:0;;-1:-1:-1;;;;;33561:14:0;33463:246;33610:23;33641:19;33652:7;33641:10;:19::i;:::-;-1:-1:-1;33608:52:0;;-1:-1:-1;33675:22:0;;-1:-1:-1;;;;;33675:22:0;27206:28;;;-1:-1:-1;;;;;27206:28:0;;:::o;27275:41::-;;;-1:-1:-1;;;27275:41:0;;;;;:::o;26792:37::-;;;;;;;;;;;;;;;:::o;33985:449::-;15928:12;:10;:12::i;:::-;15918:6;;-1:-1:-1;;;;;15918:6:0;;;:22;;;15910:67;;;;;-1:-1:-1;;;15910:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15910:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;34184:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;34183:21;34175:61;;;::::0;;-1:-1:-1;;;34175:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;34250:16:0;::::1;34269:1;34250:16:::0;;;:7:::1;:16;::::0;;;;;:20;34247:108:::1;;-1:-1:-1::0;;;;;34326:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;34306:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;34287:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;34247:108:::1;-1:-1:-1::0;;;;;34365:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;34365:27:0::1;34388:4;34365:27:::0;;::::1;::::0;;;34403:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;34403:23:0::1;::::0;;::::1;::::0;;33985:449::o;47238:123::-;-1:-1:-1;;;;;47326:27:0;47302:4;47326:27;;;:18;:27;;;;;;;;;47238:123::o;26605:32::-;;;;:::o;29152:198::-;-1:-1:-1;;;;;29242:20:0;;29218:7;29242:20;;;:11;:20;;;;;;;;29238:49;;;-1:-1:-1;;;;;;29271:16:0;;;;;;:7;:16;;;;;;29264:23;;29238:49;-1:-1:-1;;;;;29325:16:0;;;;;;:7;:16;;;;;;29305:37;;:19;:37::i;16349:148::-;15928:12;:10;:12::i;:::-;15918:6;;-1:-1:-1;;;;;15918:6:0;;;:22;;;15910:67;;;;;-1:-1:-1;;;15910:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15910:67:0;;;;;;;;;;;;;;;16456:1:::1;16440:6:::0;;16419:40:::1;::::0;-1:-1:-1;;;;;16440:6:0;;::::1;::::0;16419:40:::1;::::0;16456:1;;16419:40:::1;16487:1;16470:19:::0;;-1:-1:-1;;;;;;16470:19:0::1;::::0;;16349:148::o;30720:205::-;15928:12;:10;:12::i;:::-;15918:6;;-1:-1:-1;;;;;15918:6:0;;;:22;;;15910:67;;;;;-1:-1:-1;;;15910:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15910:67:0;;;;;;;;;;;;;;;30818:9:::1;30813:105;30829:20:::0;;::::1;30813:105;;;30902:4;30871:14;:28;30886:9;;30896:1;30886:12;;;;;;;;::::0;;::::1;::::0;;;::::1;;-1:-1:-1::0;;;;;30886:12:0::1;30871:28:::0;;-1:-1:-1;30871:28:0;::::1;::::0;;;;;;-1:-1:-1;30871:28:0;:35;;-1:-1:-1;;30871:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;30851:3:0::1;30813:105;;;;30720:205:::0;;:::o;35379:534::-;35443:7;35481:21;35530:7;35443;35569:17;35530:7;35569:9;:17::i;:::-;35548:38;-1:-1:-1;35597:21:0;;35629:134;35650:9;:16;35648:18;;35629:134;;;35703:45;35731:16;35703:23;35713:9;35723:1;35713:12;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35713:12:0;35703:9;:23::i;:::-;:27;;:45::i;:::-;35684:64;-1:-1:-1;35668:3:0;;35629:134;;;-1:-1:-1;35842:13:0;;35773:15;;35791:89;;35820:59;;35862:16;;35820:37;;35832:24;;-1:-1:-1;;;;;35842:13:0;35832:9;:24::i;:::-;35820:7;;;:11;:37::i;:::-;:41;;:59::i;:::-;35791:24;:10;35806:8;35791:14;:24::i;:::-;:28;;:89::i;:::-;35773:107;35379:534;-1:-1:-1;;;;;;;35379:534:0:o;27039:47::-;;;;:::o;29899:500::-;15928:12;:10;:12::i;:::-;15918:6;;-1:-1:-1;;;;;15918:6:0;;;:22;;;15910:67;;;;;-1:-1:-1;;;15910:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15910:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;29988:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;29980:65;;;::::0;;-1:-1:-1;;;29980:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;30061:9;30056:336;30080:16;:23:::0;30076:27;::::1;30056:336;;;30152:7;-1:-1:-1::0;;;;;30129:30:0::1;:16;30146:1;30129:19;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;30129:19:0::1;:30;30125:256;;;30202:16;30219:23:::0;;-1:-1:-1;;30219:27:0;;;30202:45;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;30180:16:::1;:19:::0;;-1:-1:-1;;;;;30202:45:0;;::::1;::::0;30197:1;;30180:19;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:67:::0;;-1:-1:-1;;;;;;30180:67:0::1;-1:-1:-1::0;;;;;30180:67:0;;::::1;;::::0;;30266:26;;::::1;::::0;;:17:::1;:26:::0;;;;;;:34;;-1:-1:-1;;30266:34:0::1;::::0;;30319:16:::1;:22:::0;;;::::1;;;30125:256;30105:3;;30056:336;;28415:109:::0;15928:12;:10;:12::i;:::-;15918:6;;-1:-1:-1;;;;;15918:6:0;;;:22;;;15910:67;;;;;-1:-1:-1;;;15910:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15910:67:0;;;;;;;;;;;;;;;28486:13:::1;:30:::0;;-1:-1:-1;;;;;;28486:30:0::1;-1:-1:-1::0;;;;;28486:30:0;;;::::1;::::0;;;::::1;::::0;;28415:109::o;26710:29::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26710:29:0;;-1:-1:-1;26710:29:0;:::o;32672:120::-;-1:-1:-1;;;;;32764:20:0;32740:4;32764:20;;;:11;:20;;;;;;;;;32672:120::o;15706:79::-;15744:7;15771:6;-1:-1:-1;;;;;15771:6:0;15706:79;:::o;47796:195::-;15928:12;:10;:12::i;:::-;15918:6;;-1:-1:-1;;;;;15918:6:0;;;:22;;;15910:67;;;;;-1:-1:-1;;;15910:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15910:67:0;;;;;;;;;;;;;;;47906:2:::1;47890:12;:18;;47882:62;;;::::0;;-1:-1:-1;;;47882:62:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;47955:13;:28:::0;47796:195::o;28863:87::-;28935:7;28928:14;;;;;;;;-1:-1:-1;;28928:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28902:13;;28928:14;;28935:7;;28928:14;;28935:7;28928:14;;;;;;;;;;;;;;;;;;;;;;;;31308:208;15928:12;:10;:12::i;:::-;15918:6;;-1:-1:-1;;;;;15918:6:0;;;:22;;;15910:67;;;;;-1:-1:-1;;;15910:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15910:67:0;;;;;;;;;;;;;;;31408:9:::1;31403:106;31419:20:::0;;::::1;31403:106;;;31492:5;31461:14;:28;31476:9;;31486:1;31476:12;;;;;;;;::::0;;::::1;::::0;;;::::1;;-1:-1:-1::0;;;;;31476:12:0::1;31461:28:::0;;-1:-1:-1;31461:28:0;::::1;::::0;;;;;;-1:-1:-1;31461:28:0;:36;;-1:-1:-1;;31461:36:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;31441:3:0::1;31403:106;;32395:269:::0;32488:4;32505:129;32514:12;:10;:12::i;:::-;32528:7;32537:96;32576:15;32537:96;;;;;;;;;;;;;;;;;:11;:25;32549:12;:10;:12::i;:::-;-1:-1:-1;;;;;32537:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;32537:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;35200:24::-;;;;;;:::o;17359:293::-;17411:14;;-1:-1:-1;;;;;17411:14:0;17429:10;17411:28;17403:76;;;;-1:-1:-1;;;17403:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17504:9;;17498:3;:15;17490:60;;;;;-1:-1:-1;;;17490:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17595:14;;;17587:6;;17566:44;;-1:-1:-1;;;;;17595:14:0;;;;17587:6;;;;17566:44;;;17630:14;;;17621:23;;-1:-1:-1;;;;;;17621:23:0;-1:-1:-1;;;;;17630:14:0;;;17621:23;;;;;;17359:293::o;29358:167::-;29436:4;29453:42;29463:12;:10;:12::i;:::-;29477:9;29488:6;29453:9;:42::i;16904:89::-;16976:9;;16904:89;:::o;28556:208::-;15928:12;:10;:12::i;:::-;15918:6;;-1:-1:-1;;;;;15918:6:0;;;:22;;;15910:67;;;;;-1:-1:-1;;;15910:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15910:67:0;;;;;;;;;;;;;;;28722:15:::1;:34:::0;;-1:-1:-1;;;;;;28722:34:0::1;-1:-1:-1::0;;;;;28722:34:0;;;::::1;::::0;;;::::1;::::0;;28556:208::o;48420:171::-;15928:12;:10;:12::i;:::-;15918:6;;-1:-1:-1;;;;;15918:6:0;;;:22;;;15910:67;;;;;-1:-1:-1;;;15910:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15910:67:0;;;;;;;;;;;;;;;48497:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;48497:32:0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;;48545:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;48420:171:::0;:::o;30538:174::-;15928:12;:10;:12::i;:::-;15918:6;;-1:-1:-1;;;;;15918:6:0;;;:22;;;15910:67;;;;;-1:-1:-1;;;15910:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15910:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;30620:25:0;::::1;;::::0;;;:14:::1;:25;::::0;;;;;::::1;;:33;;:25:::0;:33:::1;30617:45;;;30655:7;;30617:45;-1:-1:-1::0;;;;;30672:25:0;::::1;;::::0;;;:14:::1;:25;::::0;;;;:32;;-1:-1:-1;;30672:32:0::1;30700:4;30672:32;::::0;;15988:1:::1;30538:174:::0;:::o;48002:248::-;15928:12;:10;:12::i;:::-;15918:6;;-1:-1:-1;;;;;15918:6:0;;;:22;;;15910:67;;;;;-1:-1:-1;;;15910:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15910:67:0;;;;;;;;;;;;;;;48106:2:::1;48090:12;:18;;48082:74;;;;-1:-1:-1::0;;;48082:74:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48182:60;48226:5;48182:25;48194:12;48182:7;;:11;;:25;;;;:::i;:60::-;48167:12;:75:::0;-1:-1:-1;48002:248:0:o;17069:214::-;15928:12;:10;:12::i;:::-;15918:6;;-1:-1:-1;;;;;15918:6:0;;;:22;;;15910:67;;;;;-1:-1:-1;;;15910:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15910:67:0;;;;;;;;;;;;;;;17150:6:::1;::::0;;;17133:23;;-1:-1:-1;;;;;;17133:23:0;;::::1;-1:-1:-1::0;;;;;17150:6:0;::::1;17133:23;::::0;;;17167:19:::1;::::0;;17209:3:::1;:10:::0;::::1;17197:9;:22:::0;17235:40:::1;::::0;17150:6;;17235:40:::1;::::0;17150:6;;17235:40:::1;17069:214:::0;:::o;31528:143::-;-1:-1:-1;;;;;31636:18:0;;;31609:7;31636:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;31528:143::o;30407:119::-;-1:-1:-1;;;;;30492:26:0;30468:4;30492:26;;;:17;:26;;;;;;;;;30407:119::o;47496:110::-;15928:12;:10;:12::i;:::-;15918:6;;-1:-1:-1;;;;;15918:6:0;;;:22;;;15910:67;;;;;-1:-1:-1;;;15910:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15910:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;47563:27:0::1;47593:5;47563:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;47563:35:0::1;::::0;;47496:110::o;48258:154::-;15928:12;:10;:12::i;:::-;15918:6;;-1:-1:-1;;;;;15918:6:0;;;:22;;;15910:67;;;;;-1:-1:-1;;;15910:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15910:67:0;;;;;;;;;;;;;;;48362:19:::1;:42:::0;48258:154::o;31119:181::-;15928:12;:10;:12::i;:::-;15918:6;;-1:-1:-1;;;;;15918:6:0;;;:22;;;15910:67;;;;;-1:-1:-1;;;15910:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15910:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31206:25:0;::::1;;::::0;;;:14:::1;:25;::::0;;;;;::::1;;31203:46;;31242:7;;31203:46;-1:-1:-1::0;;;;;31259:25:0::1;31287:5;31259:25:::0;;;:14:::1;:25;::::0;;;;:33;;-1:-1:-1;;31259:33:0::1;::::0;;31119:181::o;16652:244::-;15928:12;:10;:12::i;:::-;15918:6;;-1:-1:-1;;;;;15918:6:0;;;:22;;;15910:67;;;;;-1:-1:-1;;;15910:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15910:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16741:22:0;::::1;16733:73;;;;-1:-1:-1::0;;;16733:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16843:6;::::0;;16822:38:::1;::::0;-1:-1:-1;;;;;16822:38:0;;::::1;::::0;16843:6;::::1;::::0;16822:38:::1;::::0;::::1;16871:6;:17:::0;;-1:-1:-1;;;;;;16871:17:0::1;-1:-1:-1::0;;;;;16871:17:0;;;::::1;::::0;;;::::1;::::0;;16652:244::o;30937:164::-;-1:-1:-1;;;;;31019:25:0;;31000:4;31019:25;;;:14;:25;;;;;;;;:33;;:25;:33;31016:77;;;-1:-1:-1;31061:4:0;31054:11;;31016:77;-1:-1:-1;31088:5:0;31081:12;;93:106;181:10;93:106;:::o;34933:259::-;-1:-1:-1;;;;;35026:19:0;;35018:28;;;;;;-1:-1:-1;;;;;35065:21:0;;35057:30;;;;;;-1:-1:-1;;;;;35100:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;35152:32;;;;;;;;;;;;;;;;;34933:259;;;:::o;35925:2296::-;-1:-1:-1;;;;;36047:18:0;;36039:68;;;;-1:-1:-1;;;36039:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36126:16:0;;36118:64;;;;-1:-1:-1;;;36118:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36210:1;36201:6;:10;36193:64;;;;-1:-1:-1;;;36193:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36277:21:0;;;;;;:17;:21;;;;;;;;36276:22;36268:58;;;;;-1:-1:-1;;;36268:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36346:23:0;;;;;;:17;:23;;;;;;;;36345:24;36337:60;;;;;-1:-1:-1;;;36337:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36416:20:0;;;;;;:14;:20;;;;;;;;:29;;:49;;-1:-1:-1;;;;;;36449:16:0;;;36416:49;36408:76;;;;;-1:-1:-1;;;36408:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36503:18:0;;;;;;:14;:18;;;;;;;;:27;36495:63;;;;;-1:-1:-1;;;36495:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;36582:5;;;;:14;;:5;:14;:33;;;;;36608:7;:5;:7::i;:::-;-1:-1:-1;;;;;36600:15:0;:4;-1:-1:-1;;;;;36600:15:0;;;36582:33;:50;;;;;36625:7;:5;:7::i;:::-;-1:-1:-1;;;;;36619:13:0;:2;-1:-1:-1;;;;;36619:13:0;;;36582:50;36579:284;;;36657:13;;-1:-1:-1;;;;;36651:19:0;;;36657:13;;36651:19;36648:109;;36730:9;36700:25;36718:6;36700:13;36710:2;36700:9;:13::i;:25::-;36699:40;;36690:51;;;;;;36789:9;36779:6;:19;;36771:76;;;;-1:-1:-1;;;36771:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36884:7;:5;:7::i;:::-;-1:-1:-1;;;;;36876:15:0;:4;-1:-1:-1;;;;;36876:15:0;;;:32;;;;;36901:7;:5;:7::i;:::-;-1:-1:-1;;;;;36895:13:0;:2;-1:-1:-1;;;;;36895:13:0;;;36876:32;36873:81;;;36941:12;;36931:6;:22;;36923:31;;;;;;-1:-1:-1;;;;;37255:9:0;;;;;;:5;:9;;;;;;;;37251:129;;37280:11;:20;;;;;;;;;;;;;-1:-1:-1;;;;;;37280:20:0;-1:-1:-1;;;;;37280:20:0;;;;;;;;37315;:22;;;;;;-1:-1:-1;37352:9:0;;;:5;37280:20;37352:9;;;;:16;;-1:-1:-1;;37352:16:0;;;;;;37251:129;37390:28;37421:24;37439:4;37421:9;:24::i;:::-;37507:19;;37390:55;;-1:-1:-1;37483:43:0;;;;;;;37555:53;;-1:-1:-1;37592:16:0;;-1:-1:-1;;;37592:16:0;;;;37591:17;37555:53;:91;;;;-1:-1:-1;37633:13:0;;-1:-1:-1;;;;;37625:21:0;;;37633:13;;37625:21;;37555:91;:129;;;;-1:-1:-1;37663:21:0;;-1:-1:-1;;;37663:21:0;;;;37555:129;37537:251;;;37740:36;37755:20;37740:14;:36::i;:::-;-1:-1:-1;;;;;37996:24:0;;37869:12;37996:24;;;:18;:24;;;;;;37884:4;;37996:24;;;:50;;-1:-1:-1;;;;;;38024:22:0;;;;;;:18;:22;;;;;;;;37996:50;37993:96;;;-1:-1:-1;38072:5:0;37993:96;38175:38;38190:4;38195:2;38198:6;38205:7;38175:14;:38::i;:::-;35925:2296;;;;;;:::o;4910:192::-;4996:7;5032:12;5024:6;;;;5016:29;;;;-1:-1:-1;;;5016:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5068:5:0;;;4910:192::o;45388:163::-;45429:7;45450:15;45467;45486:19;:17;:19::i;:::-;45449:56;;-1:-1:-1;45449:56:0;-1:-1:-1;45523:20:0;45449:56;;45523:11;:20::i;:::-;45516:27;;;;45388:163;:::o;6308:132::-;6366:7;6393:39;6397:1;6400;6393:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6386:46;6308:132;-1:-1:-1;;;6308:132:0:o;4007:181::-;4065:7;4097:5;;;4121:6;;;;4113:46;;;;;-1:-1:-1;;;4113:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;44186:419;44245:7;44254;44263;44272;44281;44290;44311:23;44336:12;44350:18;44372:20;44384:7;44372:11;:20::i;:::-;44310:82;;;;;;44404:15;44421:23;44446:12;44462:50;44474:7;44483:4;44489:10;44501;:8;:10::i;:::-;44462:11;:50::i;:::-;44403:109;;;;-1:-1:-1;44403:109:0;;-1:-1:-1;44563:15:0;;-1:-1:-1;44580:4:0;;-1:-1:-1;44586:10:0;;-1:-1:-1;44186:419:0;;-1:-1:-1;;;;;44186:419:0:o;4471:136::-;4529:7;4556:43;4560:1;4563;4556:43;;;;;;;;;;;;;;;;;:3;:43::i;5361:471::-;5419:7;5664:6;5660:47;;-1:-1:-1;5694:1:0;5687:8;;5660:47;5731:5;;;5735:1;5731;:5;:1;5755:5;;;;;:10;5747:56;;;;-1:-1:-1;;;5747:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38278:1270;27681:16;:23;;-1:-1:-1;;;;27681:23:0;-1:-1:-1;;;27681:23:0;;;;38386:27:::1;:20:::0;38411:1:::1;38386:24;:27::i;:::-;38363:50:::0;-1:-1:-1;38424:14:0::1;38441:27;:20:::0;38466:1:::1;38441:24;:27::i;:::-;38424:44:::0;-1:-1:-1;38479:18:0::1;38500:27;:20:::0;38525:1:::1;38500:24;:27::i;:::-;38479:48:::0;-1:-1:-1;38570:12:0::1;38585:19;:12:::0;38602:1:::1;38585:16;:19::i;:::-;38570:34:::0;-1:-1:-1;38615:17:0::1;38635:22;:12:::0;38570:34;38635:16:::1;:22::i;:::-;38615:42:::0;-1:-1:-1;38958:21:0::1;39024:50;39041:32;39062:10:::0;39041:16:::1;:4:::0;39050:6;39041:8:::1;:16::i;:32::-;39024:16;:50::i;:::-;39205:15;39223:41;:21;39249:14:::0;39223:25:::1;:41::i;:::-;39205:59:::0;-1:-1:-1;39275:16:0::1;39294:14;39205:59:::0;39306:1:::1;39294:11;:14::i;:::-;39319:6;::::0;:25:::1;::::0;39275:33;;-1:-1:-1;;;;;;39319:6:0::1;::::0;:25;::::1;;;::::0;39275:33;;39319:6:::1;:25:::0;:6;:25;39275:33;39319:6;:25;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;39355:13:0::1;::::0;:32:::1;::::0;-1:-1:-1;;;;;39355:13:0;;::::1;::::0;:32;::::1;;;::::0;39378:8;;39355:13:::1;:32:::0;:13;:32;39378:8;39355:13;:32;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;39440:33;39453:9;39464:8;39440:12;:33::i;:::-;39499:41;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;;27728:16:0;:24;;-1:-1:-1;;;;27728:24:0;;;-1:-1:-1;;;;;;;38278:1270:0:o;40861:834::-;40972:7;40968:40;;40994:14;:12;:14::i;:::-;-1:-1:-1;;;;;41033:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;41057:22:0;;;;;;:11;:22;;;;;;;;41056:23;41033:46;41029:597;;;41096:48;41118:6;41126:9;41137:6;41096:21;:48::i;:::-;41029:597;;;-1:-1:-1;;;;;41167:19:0;;;;;;:11;:19;;;;;;;;41166:20;:46;;;;-1:-1:-1;;;;;;41190:22:0;;;;;;:11;:22;;;;;;;;41166:46;41162:464;;;41229:46;41249:6;41257:9;41268:6;41229:19;:46::i;41162:464::-;-1:-1:-1;;;;;41298:19:0;;;;;;:11;:19;;;;;;;;41297:20;:47;;;;-1:-1:-1;;;;;;41322:22:0;;;;;;:11;:22;;;;;;;;41321:23;41297:47;41293:333;;;41361:44;41379:6;41387:9;41398:6;41361:17;:44::i;41293:333::-;-1:-1:-1;;;;;41427:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;41450:22:0;;;;;;:11;:22;;;;;;;;41427:45;41423:203;;;41489:48;41511:6;41519:9;41530:6;41489:21;:48::i;41423:203::-;41570:44;41588:6;41596:9;41607:6;41570:17;:44::i;:::-;41650:7;41646:41;;41672:15;:13;:15::i;:::-;40861:834;;;;:::o;45559:561::-;45656:7;;45692;;45609;;;;;45716:289;45740:9;:16;45736:20;;45716:289;;;45806:7;45782;:21;45790:9;45800:1;45790:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45790:12:0;45782:21;;;;;;;;;;;;;:31;;:66;;;45841:7;45817;:21;45825:9;45835:1;45825:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45825:12:0;45817:21;;;;;;;;;;;;;:31;45782:66;45778:97;;;45858:7;;45867;;45850:25;;;;;;;;;45778:97;45900:34;45912:7;:21;45920:9;45930:1;45920:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45920:12:0;45912:21;;;;;;;;;;;;;45900:7;;:11;:34::i;:::-;45890:44;;45959:34;45971:7;:21;45979:9;45989:1;45979:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45979:12:0;45971:21;;;;;;;;;;;;;45959:7;;:11;:34::i;:::-;45949:44;-1:-1:-1;45758:3:0;;45716:289;;;-1:-1:-1;46041:7:0;;46029;;:20;;:11;:20::i;:::-;46019:7;:30;46015:61;;;46059:7;;46068;;46051:25;;;;;;;;46015:61;46095:7;;-1:-1:-1;46104:7:0;-1:-1:-1;45559:561:0;;;:::o;6936:278::-;7022:7;7057:12;7050:5;7042:28;;;;-1:-1:-1;;;7042:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7081:9;7097:1;7093;:5;;;;;;;6936:278;-1:-1:-1;;;;;6936:278:0:o;44613:330::-;44673:7;44682;44691;44711:12;44726:24;44742:7;44726:15;:24::i;:::-;44711:39;;44761:18;44782:30;44804:7;44782:21;:30::i;:::-;44761:51;-1:-1:-1;44823:23:0;44849:33;44761:51;44849:17;:7;44861:4;44849:11;:17::i;:33::-;44823:59;44918:4;;-1:-1:-1;44924:10:0;;-1:-1:-1;44613:330:0;;-1:-1:-1;;;44613:330:0:o;44951:429::-;45066:7;;;;45122:24;:7;45134:11;45122;:24::i;:::-;45104:42;-1:-1:-1;45157:12:0;45172:21;:4;45181:11;45172:8;:21::i;:::-;45157:36;-1:-1:-1;45204:18:0;45225:27;:10;45240:11;45225:14;:27::i;:::-;45204:48;-1:-1:-1;45263:23:0;45289:33;45204:48;45289:17;:7;45301:4;45289:11;:17::i;:33::-;45341:7;;;;-1:-1:-1;45367:4:0;;-1:-1:-1;44951:429:0;;-1:-1:-1;;;;;;;44951:429:0:o;39668:591::-;39820:16;;;39834:1;39820:16;;;39796:21;39820:16;;;;;39796:21;39820:16;;;;;;;;;;-1:-1:-1;39820:16:0;39796:40;;39865:4;39847;39852:1;39847:7;;;;;;;;-1:-1:-1;;;;;39847:23:0;;;:7;;;;;;;;;;:23;;;;39891:15;;:22;;;;;;;;:15;;;;;:20;;:22;;;;;39847:7;;39891:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39891:22:0;39881:7;;:4;;39886:1;;39881:7;;;;;;-1:-1:-1;;;;;39881:32:0;;;:7;;;;;;;;;:32;39958:15;;39926:62;;39943:4;;39958:15;39976:11;39926:8;:62::i;:::-;40027:15;;:224;;;;;;;;;;;:15;:224;;;;;;40205:4;40027:224;;;;;;40225:15;40027:224;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40027:15:0;;;;:66;;40108:11;;40178:4;;40205;40225:15;40027:224;;;;;;;;;;;;;;;;:15;:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40267:513;40447:15;;40415:62;;40432:4;;-1:-1:-1;;;;;40447:15:0;40465:11;40415:8;:62::i;:::-;40520:15;;-1:-1:-1;;;;;40520:15:0;:31;40559:9;40592:4;40612:11;40520:15;;40724:7;:5;:7::i;:::-;40746:15;40520:252;;;;;;;;;;;;;-1:-1:-1;;;;;40520:252:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40520:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46839:250;46885:7;;:12;:34;;;;-1:-1:-1;46901:13:0;;:18;46885:34;46882:46;;;46921:7;;46882:46;46966:7;;;46948:15;:25;47008:13;;;46984:21;:37;-1:-1:-1;47042:11:0;;;;47064:17;46839:250;:::o;42807:566::-;42910:15;42927:23;42952:12;42966:23;42991:12;43005:18;43027:19;43038:7;43027:10;:19::i;:::-;-1:-1:-1;;;;;43075:15:0;;;;;;:7;:15;;;;;;42909:137;;-1:-1:-1;42909:137:0;;-1:-1:-1;42909:137:0;;-1:-1:-1;42909:137:0;-1:-1:-1;42909:137:0;-1:-1:-1;42909:137:0;-1:-1:-1;43075:28:0;;43095:7;43075:19;:28::i;:::-;-1:-1:-1;;;;;43057:15:0;;;;;;:7;:15;;;;;;;;:46;;;;43132:7;:15;;;;:28;;43152:7;43132:19;:28::i;:::-;-1:-1:-1;;;;;43114:15:0;;;;;;;:7;:15;;;;;;:46;;;;43192:18;;;;;;;:39;;43215:15;43192:22;:39::i;:::-;-1:-1:-1;;;;;43171:18:0;;;;;;:7;:18;;;;;:60;43245:26;43260:10;43245:14;:26::i;:::-;43282:23;43294:4;43300;43282:11;:23::i;:::-;43338:9;-1:-1:-1;;;;;43321:44:0;43330:6;-1:-1:-1;;;;;43321:44:0;;43349:15;43321:44;;;;;;;;;;;;;;;;;;42807:566;;;;;;;;;:::o;42213:586::-;42314:15;42331:23;42356:12;42370:23;42395:12;42409:18;42431:19;42442:7;42431:10;:19::i;:::-;-1:-1:-1;;;;;42479:15:0;;;;;;:7;:15;;;;;;42313:137;;-1:-1:-1;42313:137:0;;-1:-1:-1;42313:137:0;;-1:-1:-1;42313:137:0;-1:-1:-1;42313:137:0;-1:-1:-1;42313:137:0;-1:-1:-1;42479:28:0;;42313:137;42479:19;:28::i;:::-;-1:-1:-1;;;;;42461:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;42539:18;;;;;:7;:18;;;;;:39;;42562:15;42539:22;:39::i;:::-;-1:-1:-1;;;;;42518:18:0;;;;;;:7;:18;;;;;;;;:60;;;;42610:7;:18;;;;:39;;42633:15;42610:22;:39::i;41703:502::-;41802:15;41819:23;41844:12;41858:23;41883:12;41897:18;41919:19;41930:7;41919:10;:19::i;:::-;-1:-1:-1;;;;;41967:15:0;;;;;;:7;:15;;;;;;41801:137;;-1:-1:-1;41801:137:0;;-1:-1:-1;41801:137:0;;-1:-1:-1;41801:137:0;-1:-1:-1;41801:137:0;-1:-1:-1;41801:137:0;-1:-1:-1;41967:28:0;;41801:137;41967:19;:28::i;43381:642::-;43484:15;43501:23;43526:12;43540:23;43565:12;43579:18;43601:19;43612:7;43601:10;:19::i;:::-;-1:-1:-1;;;;;43649:15:0;;;;;;:7;:15;;;;;;43483:137;;-1:-1:-1;43483:137:0;;-1:-1:-1;43483:137:0;;-1:-1:-1;43483:137:0;-1:-1:-1;43483:137:0;-1:-1:-1;43483:137:0;-1:-1:-1;43649:28:0;;43669:7;43649:19;:28::i;:::-;-1:-1:-1;;;;;43631:15:0;;;;;;:7;:15;;;;;;;;:46;;;;43706:7;:15;;;;:28;;43726:7;43706:19;:28::i;47101:125::-;47155:15;;47145:7;:25;47197:21;;47181:13;:37;47101:125::o;46499:154::-;46563:7;46590:55;46629:5;46590:20;46602:7;;46590;:11;;:20;;;;:::i;46661:166::-;46731:7;46758:61;46803:5;46758:26;46770:13;;46758:7;:11;;:26;;;;:::i;46132:355::-;46195:19;46218:10;:8;:10::i;:::-;46195:33;-1:-1:-1;46239:18:0;46260:27;:10;46195:33;46260:14;:27::i;:::-;46339:4;46323:22;;;;:7;:22;;;;;;46239:48;;-1:-1:-1;46323:38:0;;46239:48;46323:26;:38::i;:::-;46314:4;46298:22;;;;:7;:22;;;;;;;;:63;;;;46375:11;:26;;;;;;46372:107;;;46457:4;46441:22;;;;:7;:22;;;;;;:38;;46468:10;46441:26;:38::i;:::-;46432:4;46416:22;;;;:7;:22;;;;;:63;46132:355;;;:::o;44031:147::-;44109:7;;:17;;44121:4;44109:11;:17::i;:::-;44099:7;:27;44150:10;;:20;;44165:4;44150:14;:20::i;:::-;44137:10;:33;-1:-1:-1;;44031:147:0:o

Swarm Source

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