ETH Price: $3,276.11 (+0.93%)
Gas: 2 Gwei

Token

EtherTerrestrial ($ET)
 

Overview

Max Total Supply

1,000,000,000,000 $ET

Holders

520

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
865,592,235.571329309 $ET

Value
$0.00
0x0Ae856415Ad838C7E8525f05e0164455511d8B6D
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:
EtherTerrestrial

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

pragma solidity ^0.6.12;
// SPDX-License-Identifier: Unlicensed
interface IERC20 {

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

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 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 EtherTerrestrial 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;
    mapping (address => bool) private _isBlackListedBot;
    address[] private _blackListedBots;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 1000000 * 10**6 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    address payable public _marketingAddress = 0xaDD25260C3F299E49891a5E096B7321f38b006d3;
    address private _donationAddress = 0x000000000000000000000000000000000000dEaD;

    string private _name = "EtherTerrestrial";
    string private _symbol = "$ET";
    uint8 private _decimals = 9;
    
    uint256 public _taxFee = 1;
    uint256 private _previousTaxFee = _taxFee;
    
    uint256 public _liquidityFee = 4;
    uint256 private _previousLiquidityFee = _liquidityFee;

    uint256 public _marketingFee = 90;
    uint256 private _previousMarketingFee = _marketingFee;

    uint256 public _donationFee = 0;
    uint256 private _previousDonationFee = _donationFee;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    
    uint256 public _maxTxAmount = 10000 * 10**6 * 10**9;
    uint256 private numTokensSellToAddToLiquidity = 5000 * 10**6 * 10**9;
    uint256 public _maxWalletSize = 1000000 * 10**6 * 10**9;
    
    event botAddedToBlacklist(address account);
    event botRemovedFromBlacklist(address account);
    
    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;
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D );
         // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;

        // exclude owner, dev wallet, and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[_marketingAddress] = true;

        emit Transfer(address(0), _msgSender(), _tTotal);
    }

    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 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 donationAddress() public view returns (address) {
        return _donationAddress;
    }

    function marketingAddress() public view returns (address) {
        return _marketingAddress;
    }

    function deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");

        (,uint256 tFee, uint256 tLiquidity, uint256 tMarketing, uint256 tDonation) = _getTValues(tAmount);
        (uint256 rAmount,,) = _getRValues(tAmount, tFee, tLiquidity, tMarketing, tDonation, _getRate());
        
        _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");
        
        (,uint256 tFee, uint256 tLiquidity, uint256 tMarketing, uint256 tDonation) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount,) = _getRValues(tAmount, tFee, tLiquidity, tMarketing, tDonation, _getRate());

        if (!deductTransferFee) {
            return rAmount;
        } else {
            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 addBotToBlacklist (address account) external onlyOwner() {
           require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We cannot blacklist UniSwap 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 excludeFromReward(address account) public onlyOwner() {
        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 not 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 _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing, uint256 tDonation) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, tMarketing, tDonation, _getRate());

        _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);
        _takeMarketingFee(tMarketing);
        _takeDonationFee(tDonation);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
        
    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }
    
    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }
    
    function setTaxFeePercent(uint256 taxFee) external onlyOwner() {
        _taxFee = taxFee;
    }
    
    function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() {
        _liquidityFee = liquidityFee;
    }
    
    function setMarketingFeePercent(uint256 marketingFee) external onlyOwner() {
        _marketingFee = marketingFee;
    }
   
    function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() {
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(
            10**2
        );
    }
    
     function _setMaxWalletSizePercent (uint256 maxWalletSize) external onlyOwner() {
          _maxWalletSize = _tTotal.mul(maxWalletSize).div(
            10**2
        );
            
    }

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }
    
     //to recieve ETH from uniswapV2Router when swapping
    receive() external payable {}

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

    function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256) {
        uint256 tFee = calculateTaxFee(tAmount);
        uint256 tLiquidity = calculateLiquidityFee(tAmount);
        uint256 tMarketing = calculateMarketingFee(tAmount);
        uint256 tDonation = calculateDonationFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity);
                tTransferAmount = tTransferAmount.sub(tMarketing);
                tTransferAmount = tTransferAmount.sub(tDonation);

        return (tTransferAmount, tFee, tLiquidity, tMarketing, tDonation);
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing, uint256 tDonation, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        uint256 rMarketing = tMarketing.mul(currentRate);
        uint256 rDonation = tDonation.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity).sub(rMarketing).sub(rDonation);
        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 _takeMarketingFee(uint256 tMarketing) private {
        uint256 currentRate =  _getRate();
        uint256 rMarketing = tMarketing.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rMarketing);
        if(_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tMarketing);
    }

    function _takeDonationFee(uint256 tDonation) private {
        uint256 currentRate =  _getRate();
        uint256 rDonation = tDonation.mul(currentRate);
        _rOwned[_donationAddress] = _rOwned[_donationAddress].add(rDonation);
        if(_isExcluded[_donationAddress])
            _tOwned[_donationAddress] = _tOwned[_donationAddress].add(tDonation);
    }

    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 calculateMarketingFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_marketingFee).div(
            10**2
        );
    }

    function calculateDonationFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_donationFee).div(
            10**2
        );
    }

    function removeAllFee() private {
        if(_taxFee == 0 && _liquidityFee == 0) return;
        
        _previousTaxFee = _taxFee;
        _previousLiquidityFee = _liquidityFee;
        _previousMarketingFee = _marketingFee;
        _previousDonationFee = _donationFee;
        
        _taxFee = 0;
        _liquidityFee = 0;
        _marketingFee = 0;
        _donationFee = 0;
    }

    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;
        _marketingFee = _previousMarketingFee;
        _donationFee = _previousDonationFee;
    }

    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }

    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    function _transfer(
        address 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[from], "You are blacklisted");
        require(!_isBlackListedBot[msg.sender], "blacklisted");
        require(!_isBlackListedBot[tx.origin], "blacklisted");
        if(from != owner() && to != owner())
            require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
            require(amount <= _maxWalletSize, "Recipient exceeds max wallet size.");

        // 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 uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));
        
        if(contractTokenBalance >= _maxTxAmount)
        {
            contractTokenBalance = _maxTxAmount;
        }
        
        bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            contractTokenBalance = numTokensSellToAddToLiquidity;
            //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);
    }

    function swapAndLiquify(uint256 tokens) private lockTheSwap {
        // Split the contract balance into halves
        uint256 denominator= (_liquidityFee + _marketingFee) * 2;
        uint256 tokensToAddLiquidityWith = tokens * _liquidityFee / denominator;
        uint256 toSwap = tokens - tokensToAddLiquidityWith;

        uint256 initialBalance = address(this).balance;

        swapTokensForEth(toSwap);

        uint256 deltaBalance = address(this).balance - initialBalance;
        uint256 unitBalance= deltaBalance / (denominator - _liquidityFee);
        uint256 bnbToAddLiquidityWith = unitBalance * _liquidityFee;

        if(bnbToAddLiquidityWith > 0){
            // Add liquidity to pancake
            addLiquidity(tokensToAddLiquidityWith, bnbToAddLiquidityWith);
        }

        // Send ETH to marketing
        uint256 marketingAmt = unitBalance * 2 * _marketingFee;
        if(marketingAmt > 0){
            payable(_marketingAddress).transfer(marketingAmt);
        }
    }

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

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

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

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

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(this),
            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 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing, uint256 tDonation) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, tMarketing, tDonation, _getRate());
        
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeMarketingFee(tMarketing);
        _takeDonationFee(tDonation);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing, uint256 tDonation) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, tMarketing, tDonation, _getRate());

        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);           
        _takeLiquidity(tLiquidity);
        _takeMarketingFee(tMarketing);
        _takeDonationFee(tDonation);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing, uint256 tDonation) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, tMarketing, tDonation, _getRate());

        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);   
        _takeLiquidity(tLiquidity);
        _takeMarketingFee(tMarketing);
        _takeDonationFee(tDonation);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
}

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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"botAddedToBlacklist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"botRemovedFromBlacklist","type":"event"},{"inputs":[],"name":"_donationFee","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":"_marketingAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingFee","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":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWalletSize","type":"uint256"}],"name":"_setMaxWalletSizePercent","outputs":[],"stateMutability":"nonpayable","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":[],"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":[],"name":"donationAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[],"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":"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":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"marketingFee","type":"uint256"}],"name":"setMarketingFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","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":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

683635c9adc5dea00000600b556818ce40f6d0219fffff19600c55600e80546001600160a01b031990811673add25260c3f299e49891a5e096b7321f38b006d317909155600f805490911661dead179055610100604052601060c08190526f115d1a195c95195c9c995cdd1c9a585b60821b60e09081526200008391908162000423565b506040805180820190915260038082526209115560ea1b6020909201918252620000b09160119162000423565b506012805460ff191660091790556001601381905560145560046015819055601655605a601781905560185560006019819055601a55601b805461ff001916610100179055678ac7230489e80000601c55674563918244f40000601d55683635c9adc5dea00000601e553480156200012757600080fd5b5060006200013462000410565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600c54600360006200018f62000410565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200020657600080fd5b505afa1580156200021b573d6000803e3d6000fd5b505050506040513d60208110156200023257600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200028357600080fd5b505afa15801562000298573d6000803e3d6000fd5b505050506040513d6020811015620002af57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200030257600080fd5b505af115801562000317573d6000803e3d6000fd5b505050506040513d60208110156200032e57600080fd5b50516001600160601b0319606091821b811660a0529082901b166080526001600660006200035b62000414565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790553081526006909352818320805485166001908117909155600e54909116835291208054909216179055620003bc62000410565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600b546040518082815260200191505060405180910390a350620004bf565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200046657805160ff191683800117855562000496565b8280016001018555821562000496579182015b828111156200049657825182559160200191906001019062000479565b50620004a4929150620004a8565b5090565b5b80821115620004a45760008155600101620004a9565b60805160601c60a05160601c61337362000507600039806112855280612104525080610b47528061296b5280612a235280612a4a5280612b305280612b9752506133736000f3fe60806040526004361061028c5760003560e01c806370a082311161015a578063af2ce614116100c1578063dd4670641161007a578063dd46706414610939578063dd62ed3e14610963578063ea2f0b371461099e578063ec034bed146109d1578063f2fde38b146109e6578063faf38f6214610a1957610293565b8063af2ce6141461085c578063b030b34a14610886578063b6c52324146108b9578063c49b9a80146108ce578063caac7934146108fa578063d543dbeb1461090f57610293565b80638f9a55c0116101135780638f9a55c01461079657806395d89b41146107ab578063a457c2d7146107c0578063a5ece941146107f9578063a69df4b51461080e578063a9059cbb1461082357610293565b806370a08231146106c7578063715018a6146106fa5780637d1db4a51461070f57806388f82020146107245780638da5cb5b146107575780638ee88c531461076c57610293565b80633685d419116101fe578063457c194c116101b7578063457c194c146105f857806349bd5a5e146106225780634a74bb021461063757806352390c021461064c5780635342acb41461067f5780636bc87c3a146106b257610293565b80633685d419146104e8578063395093511461051b5780633b124fe7146105545780633bd5d17314610569578063437823ec146105935780634549b039146105c657610293565b806318160ddd1161025057806318160ddd146103f35780631d7ef8791461040857806322976e0d1461043b57806323b872dd146104505780632d83811914610493578063313ce567146104bd57610293565b8063061c82d01461029857806306fdde03146102c4578063095ea7b31461034e57806313114a9d1461039b5780631694505e146103c257610293565b3661029357005b600080fd5b3480156102a457600080fd5b506102c2600480360360208110156102bb57600080fd5b5035610a2e565b005b3480156102d057600080fd5b506102d9610a8b565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103135781810151838201526020016102fb565b50505050905090810190601f1680156103405780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561035a57600080fd5b506103876004803603604081101561037157600080fd5b506001600160a01b038135169060200135610b21565b604080519115158252519081900360200190f35b3480156103a757600080fd5b506103b0610b3f565b60408051918252519081900360200190f35b3480156103ce57600080fd5b506103d7610b45565b604080516001600160a01b039092168252519081900360200190f35b3480156103ff57600080fd5b506103b0610b69565b34801561041457600080fd5b506102c26004803603602081101561042b57600080fd5b50356001600160a01b0316610b6f565b34801561044757600080fd5b506103b0610cf7565b34801561045c57600080fd5b506103876004803603606081101561047357600080fd5b506001600160a01b03813581169160208101359091169060400135610cfd565b34801561049f57600080fd5b506103b0600480360360208110156104b657600080fd5b5035610d84565b3480156104c957600080fd5b506104d2610de6565b6040805160ff9092168252519081900360200190f35b3480156104f457600080fd5b506102c26004803603602081101561050b57600080fd5b50356001600160a01b0316610def565b34801561052757600080fd5b506103876004803603604081101561053e57600080fd5b506001600160a01b038135169060200135610fb0565b34801561056057600080fd5b506103b0610ffe565b34801561057557600080fd5b506102c26004803603602081101561058c57600080fd5b5035611004565b34801561059f57600080fd5b506102c2600480360360208110156105b657600080fd5b50356001600160a01b0316611102565b3480156105d257600080fd5b506103b0600480360360408110156105e957600080fd5b5080359060200135151561117e565b34801561060457600080fd5b506102c26004803603602081101561061b57600080fd5b5035611226565b34801561062e57600080fd5b506103d7611283565b34801561064357600080fd5b506103876112a7565b34801561065857600080fd5b506102c26004803603602081101561066f57600080fd5b50356001600160a01b03166112b5565b34801561068b57600080fd5b50610387600480360360208110156106a257600080fd5b50356001600160a01b031661143b565b3480156106be57600080fd5b506103b0611459565b3480156106d357600080fd5b506103b0600480360360208110156106ea57600080fd5b50356001600160a01b031661145f565b34801561070657600080fd5b506102c26114c1565b34801561071b57600080fd5b506103b0611551565b34801561073057600080fd5b506103876004803603602081101561074757600080fd5b50356001600160a01b0316611557565b34801561076357600080fd5b506103d7611575565b34801561077857600080fd5b506102c26004803603602081101561078f57600080fd5b5035611584565b3480156107a257600080fd5b506103b06115e1565b3480156107b757600080fd5b506102d96115e7565b3480156107cc57600080fd5b50610387600480360360408110156107e357600080fd5b506001600160a01b038135169060200135611648565b34801561080557600080fd5b506103d76116b0565b34801561081a57600080fd5b506102c26116bf565b34801561082f57600080fd5b506103876004803603604081101561084657600080fd5b506001600160a01b0381351690602001356117ad565b34801561086857600080fd5b506102c26004803603602081101561087f57600080fd5b50356117c1565b34801561089257600080fd5b506102c2600480360360208110156108a957600080fd5b50356001600160a01b031661183f565b3480156108c557600080fd5b506103b06119cc565b3480156108da57600080fd5b506102c2600480360360208110156108f157600080fd5b503515156119d2565b34801561090657600080fd5b506103d7611a79565b34801561091b57600080fd5b506102c26004803603602081101561093257600080fd5b5035611a88565b34801561094557600080fd5b506102c26004803603602081101561095c57600080fd5b5035611b00565b34801561096f57600080fd5b506103b06004803603604081101561098657600080fd5b506001600160a01b0381358116916020013516611b9e565b3480156109aa57600080fd5b506102c2600480360360208110156109c157600080fd5b50356001600160a01b0316611bc9565b3480156109dd57600080fd5b506103d7611c42565b3480156109f257600080fd5b506102c260048036036020811015610a0957600080fd5b50356001600160a01b0316611c51565b348015610a2557600080fd5b506103b0611d37565b610a36611d3d565b6000546001600160a01b03908116911614610a86576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b601355565b60108054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b175780601f10610aec57610100808354040283529160200191610b17565b820191906000526020600020905b815481529060010190602001808311610afa57829003601f168201915b5050505050905090565b6000610b35610b2e611d3d565b8484611d41565b5060015b92915050565b600d5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5490565b610b77611d3d565b6000546001600160a01b03908116911614610bc7576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610c235760405162461bcd60e51b81526004018080602001828103825260228152602001806131ce6022913960400191505060405180910390fd5b6001600160a01b03811660009081526009602052604090205460ff1615610c91576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b60175481565b6000610d0a848484611e2d565b610d7a84610d16611d3d565b610d75856040518060600160405280602881526020016131f0602891396001600160a01b038a16600090815260056020526040812090610d54611d3d565b6001600160a01b0316815260208101919091526040016000205491906121be565b611d41565b5060019392505050565b6000600c54821115610dc75760405162461bcd60e51b815260040180806020018281038252602a8152602001806130f1602a913960400191505060405180910390fd5b6000610dd1612255565b9050610ddd8382612278565b9150505b919050565b60125460ff1690565b610df7611d3d565b6000546001600160a01b03908116911614610e47576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610eb4576040805162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c75646564000000000000000000604482015290519081900360640190fd5b60005b600854811015610fac57816001600160a01b031660088281548110610ed857fe5b6000918252602090912001546001600160a01b03161415610fa457600880546000198101908110610f0557fe5b600091825260209091200154600880546001600160a01b039092169183908110610f2b57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610f7d57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610fac565b600101610eb7565b5050565b6000610b35610fbd611d3d565b84610d758560056000610fce611d3d565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906122c1565b60135481565b600061100e611d3d565b6001600160a01b03811660009081526007602052604090205490915060ff16156110695760405162461bcd60e51b815260040180806020018281038252602c8152602001806132ca602c913960400191505060405180910390fd5b6000806000806110788661231b565b94509450945094505060006110988786868686611093612255565b612397565b50506001600160a01b0387166000908152600360205260409020549091506110c0908261240b565b6001600160a01b038716600090815260036020526040902055600c546110e6908261240b565b600c55600d546110f690886122c1565b600d5550505050505050565b61110a611d3d565b6000546001600160a01b0390811691161461115a576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600b548311156111d7576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b6000806000806111e68761231b565b9450945094509450506000806112028987878787611093612255565b50915091508761121957509450610b399350505050565b9550610b39945050505050565b61122e611d3d565b6000546001600160a01b0390811691161461127e576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b601755565b7f000000000000000000000000000000000000000000000000000000000000000081565b601b54610100900460ff1681565b6112bd611d3d565b6000546001600160a01b0390811691161461130d576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff161561137b576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260036020526040902054156113d5576001600160a01b0381166000908152600360205260409020546113bb90610d84565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b60155481565b6001600160a01b03811660009081526007602052604081205460ff161561149f57506001600160a01b038116600090815260046020526040902054610de1565b6001600160a01b038216600090815260036020526040902054610b3990610d84565b6114c9611d3d565b6000546001600160a01b03908116911614611519576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020613238833981519152908390a3600080546001600160a01b0319169055565b601c5481565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b61158c611d3d565b6000546001600160a01b039081169116146115dc576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b601555565b601e5481565b60118054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b175780601f10610aec57610100808354040283529160200191610b17565b6000610b35611655611d3d565b84610d7585604051806060016040528060258152602001613319602591396005600061167f611d3d565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906121be565b600e546001600160a01b031690565b6001546001600160a01b031633146117085760405162461bcd60e51b81526004018080602001828103825260238152602001806132f66023913960400191505060405180910390fd5b600254421161175e576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b03938416939091169160008051602061323883398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610b356117ba611d3d565b8484611e2d565b6117c9611d3d565b6000546001600160a01b03908116911614611819576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b611839606461183383600b5461244d90919063ffffffff16565b90612278565b601e5550565b611847611d3d565b6000546001600160a01b03908116911614611897576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff16611904576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600a54811015610fac57816001600160a01b0316600a828154811061192857fe5b6000918252602090912001546001600160a01b031614156119c457600a8054600019810190811061195557fe5b600091825260209091200154600a80546001600160a01b03909216918390811061197b57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600a805480610f7d57fe5b600101611907565b60025490565b6119da611d3d565b6000546001600160a01b03908116911614611a2a576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b601b8054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b600e546001600160a01b031681565b611a90611d3d565b6000546001600160a01b03908116911614611ae0576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b611afa606461183383600b5461244d90919063ffffffff16565b601c5550565b611b08611d3d565b6000546001600160a01b03908116911614611b58576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020613238833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b611bd1611d3d565b6000546001600160a01b03908116911614611c21576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b600f546001600160a01b031690565b611c59611d3d565b6000546001600160a01b03908116911614611ca9576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b6001600160a01b038116611cee5760405162461bcd60e51b815260040180806020018281038252602681526020018061311b6026913960400191505060405180910390fd5b600080546040516001600160a01b038085169392169160008051602061323883398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60195481565b3390565b6001600160a01b038316611d865760405162461bcd60e51b81526004018080602001828103825260248152602001806132a66024913960400191505060405180910390fd5b6001600160a01b038216611dcb5760405162461bcd60e51b81526004018080602001828103825260228152602001806131416022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611e725760405162461bcd60e51b81526004018080602001828103825260258152602001806132816025913960400191505060405180910390fd5b6001600160a01b038216611eb75760405162461bcd60e51b81526004018080602001828103825260238152602001806130ce6023913960400191505060405180910390fd5b60008111611ef65760405162461bcd60e51b81526004018080602001828103825260298152602001806132586029913960400191505060405180910390fd5b6001600160a01b03831660009081526009602052604090205460ff1615611f5a576040805162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b604482015290519081900360640190fd5b3360009081526009602052604090205460ff1615611fad576040805162461bcd60e51b815260206004820152600b60248201526a189b1858dadb1a5cdd195960aa1b604482015290519081900360640190fd5b3260009081526009602052604090205460ff1615612000576040805162461bcd60e51b815260206004820152600b60248201526a189b1858dadb1a5cdd195960aa1b604482015290519081900360640190fd5b612008611575565b6001600160a01b0316836001600160a01b031614158015612042575061202c611575565b6001600160a01b0316826001600160a01b031614155b1561208857601c548111156120885760405162461bcd60e51b81526004018080602001828103825260288152602001806131856028913960400191505060405180910390fd5b601e548111156120c95760405162461bcd60e51b81526004018080602001828103825260228152602001806131636022913960400191505060405180910390fd5b60006120d43061145f565b9050601c5481106120e45750601c545b601d54811080159081906120fb5750601b5460ff16155b801561213957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b801561214c5750601b54610100900460ff165b1561215f57601d54915061215f826124a6565b6001600160a01b03851660009081526006602052604090205460019060ff16806121a157506001600160a01b03851660009081526006602052604090205460ff165b156121aa575060005b6121b68686868461256f565b505050505050565b6000818484111561224d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156122125781810151838201526020016121fa565b50505050905090810190601f16801561223f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006122626126e3565b90925090506122718282612278565b9250505090565b60006122ba83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612846565b9392505050565b6000828201838110156122ba576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008061232d876128ab565b9050600061233a886128c7565b90506000612347896128e3565b905060006123548a6128ff565b9050600061236c846123668d8861240b565b9061240b565b9050612378818461240b565b9050612384818361240b565b9b949a5092985090965094509092505050565b60008080806123a68a8661244d565b905060006123b48a8761244d565b905060006123c28a8861244d565b905060006123d08a8961244d565b905060006123de8a8a61244d565b905060006123f482612366858188818c8c61240b565b959f959e50939c50939a5050505050505050505050565b60006122ba83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506121be565b60008261245c57506000610b39565b8282028284828161246957fe5b04146122ba5760405162461bcd60e51b81526004018080602001828103825260218152602001806131ad6021913960400191505060405180910390fd5b601b8054600160ff199091161790556017546015549081016002029060009082908402816124d057fe5b049050808303476124e08261291b565b600081470390506000601554860382816124f657fe5b601554919004915081028015612510576125108682612b2a565b6017548202600202801561255a57600e546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612558573d6000803e3d6000fd5b505b5050601b805460ff1916905550505050505050565b8061257c5761257c612c0c565b6001600160a01b03841660009081526007602052604090205460ff1680156125bd57506001600160a01b03831660009081526007602052604090205460ff16155b156125d2576125cd848484612c53565b6126d0565b6001600160a01b03841660009081526007602052604090205460ff1615801561261357506001600160a01b03831660009081526007602052604090205460ff165b15612623576125cd848484612da2565b6001600160a01b03841660009081526007602052604090205460ff1615801561266557506001600160a01b03831660009081526007602052604090205460ff16155b15612675576125cd848484612e62565b6001600160a01b03841660009081526007602052604090205460ff1680156126b557506001600160a01b03831660009081526007602052604090205460ff165b156126c5576125cd848484612ebd565b6126d0848484612e62565b806126dd576126dd612f47565b50505050565b600c54600b546000918291825b6008548110156128145782600360006008848154811061270c57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612771575081600460006008848154811061274a57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561278857600c54600b5494509450505050612842565b6127c8600360006008848154811061279c57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061240b565b925061280a60046000600884815481106127de57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061240b565b91506001016126f0565b50600b54600c5461282491612278565b82101561283c57600c54600b54935093505050612842565b90925090505b9091565b600081836128955760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156122125781810151838201526020016121fa565b5060008385816128a157fe5b0495945050505050565b6000610b3960646118336013548561244d90919063ffffffff16565b6000610b3960646118336015548561244d90919063ffffffff16565b6000610b3960646118336017548561244d90919063ffffffff16565b6000610b3960646118336019548561244d90919063ffffffff16565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061294957fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156129c257600080fd5b505afa1580156129d6573d6000803e3d6000fd5b505050506040513d60208110156129ec57600080fd5b50518151829060019081106129fd57fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612a48307f000000000000000000000000000000000000000000000000000000000000000084611d41565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612aed578181015183820152602001612ad5565b505050509050019650505050505050600060405180830381600087803b158015612b1657600080fd5b505af11580156121b6573d6000803e3d6000fd5b612b55307f000000000000000000000000000000000000000000000000000000000000000084611d41565b6040805163f305d71960e01b8152306004820181905260248201859052600060448301819052606483015260848201524260a482015290516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169163f305d71991849160c48082019260609290919082900301818588803b158015612be157600080fd5b505af1158015612bf5573d6000803e3d6000fd5b50505050506040513d60608110156126dd57600080fd5b601354158015612c1c5750601554155b15612c2657612c51565b60138054601455601580546016556017805460185560198054601a5560009384905591839055829055555b565b6000806000806000612c648661231b565b945094509450945094506000806000612c838988888888611093612255565b6001600160a01b038e166000908152600460205260409020549295509093509150612cae908a61240b565b6001600160a01b038c16600090815260046020908152604080832093909355600390522054612cdd908461240b565b6001600160a01b03808d1660009081526003602052604080822093909355908c1681522054612d0c90836122c1565b6001600160a01b038b16600090815260036020526040902055612d2e86612f61565b612d3785612f61565b612d4084612fea565b612d4a81886130a9565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8a6040518082815260200191505060405180910390a35050505050505050505050565b6000806000806000612db38661231b565b945094509450945094506000806000612dd28988888888611093612255565b6001600160a01b038e166000908152600360205260409020549295509093509150612dfd908461240b565b6001600160a01b03808d16600090815260036020908152604080832094909455918d16815260049091522054612e3390896122c1565b6001600160a01b038b16600090815260046020908152604080832093909355600390522054612d0c90836122c1565b6000806000806000612e738661231b565b945094509450945094506000806000612e928988888888611093612255565b6001600160a01b038e166000908152600360205260409020549295509093509150612cdd908461240b565b6000806000806000612ece8661231b565b945094509450945094506000806000612eed8988888888611093612255565b6001600160a01b038e166000908152600460205260409020549295509093509150612f18908a61240b565b6001600160a01b038c16600090815260046020908152604080832093909355600390522054612dfd908461240b565b601454601355601654601555601854601755601a54601955565b6000612f6b612255565b90506000612f79838361244d565b30600090815260036020526040902054909150612f9690826122c1565b3060009081526003602090815260408083209390935560079052205460ff1615612fe55730600090815260046020526040902054612fd490846122c1565b306000908152600460205260409020555b505050565b6000612ff4612255565b90506000613002838361244d565b600f546001600160a01b031660009081526003602052604090205490915061302a90826122c1565b600f80546001600160a01b03908116600090815260036020908152604080832095909555925490911681526007909152205460ff1615612fe557600f546001600160a01b031660009081526004602052604090205461308990846122c1565b600f546001600160a01b0316600090815260046020526040902055505050565b600c546130b6908361240b565b600c55600d546130c690826122c1565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373526563697069656e742065786365656473206d61782077616c6c65742073697a652e5472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7757652063616e6e6f7420626c61636b6c69737420556e695377617020726f7574657245524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b0eba4cf2394b7d5049f4bcb9d2a5f93a1075160c53338c94d19285408f53b1164736f6c634300060c0033

Deployed Bytecode

0x60806040526004361061028c5760003560e01c806370a082311161015a578063af2ce614116100c1578063dd4670641161007a578063dd46706414610939578063dd62ed3e14610963578063ea2f0b371461099e578063ec034bed146109d1578063f2fde38b146109e6578063faf38f6214610a1957610293565b8063af2ce6141461085c578063b030b34a14610886578063b6c52324146108b9578063c49b9a80146108ce578063caac7934146108fa578063d543dbeb1461090f57610293565b80638f9a55c0116101135780638f9a55c01461079657806395d89b41146107ab578063a457c2d7146107c0578063a5ece941146107f9578063a69df4b51461080e578063a9059cbb1461082357610293565b806370a08231146106c7578063715018a6146106fa5780637d1db4a51461070f57806388f82020146107245780638da5cb5b146107575780638ee88c531461076c57610293565b80633685d419116101fe578063457c194c116101b7578063457c194c146105f857806349bd5a5e146106225780634a74bb021461063757806352390c021461064c5780635342acb41461067f5780636bc87c3a146106b257610293565b80633685d419146104e8578063395093511461051b5780633b124fe7146105545780633bd5d17314610569578063437823ec146105935780634549b039146105c657610293565b806318160ddd1161025057806318160ddd146103f35780631d7ef8791461040857806322976e0d1461043b57806323b872dd146104505780632d83811914610493578063313ce567146104bd57610293565b8063061c82d01461029857806306fdde03146102c4578063095ea7b31461034e57806313114a9d1461039b5780631694505e146103c257610293565b3661029357005b600080fd5b3480156102a457600080fd5b506102c2600480360360208110156102bb57600080fd5b5035610a2e565b005b3480156102d057600080fd5b506102d9610a8b565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103135781810151838201526020016102fb565b50505050905090810190601f1680156103405780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561035a57600080fd5b506103876004803603604081101561037157600080fd5b506001600160a01b038135169060200135610b21565b604080519115158252519081900360200190f35b3480156103a757600080fd5b506103b0610b3f565b60408051918252519081900360200190f35b3480156103ce57600080fd5b506103d7610b45565b604080516001600160a01b039092168252519081900360200190f35b3480156103ff57600080fd5b506103b0610b69565b34801561041457600080fd5b506102c26004803603602081101561042b57600080fd5b50356001600160a01b0316610b6f565b34801561044757600080fd5b506103b0610cf7565b34801561045c57600080fd5b506103876004803603606081101561047357600080fd5b506001600160a01b03813581169160208101359091169060400135610cfd565b34801561049f57600080fd5b506103b0600480360360208110156104b657600080fd5b5035610d84565b3480156104c957600080fd5b506104d2610de6565b6040805160ff9092168252519081900360200190f35b3480156104f457600080fd5b506102c26004803603602081101561050b57600080fd5b50356001600160a01b0316610def565b34801561052757600080fd5b506103876004803603604081101561053e57600080fd5b506001600160a01b038135169060200135610fb0565b34801561056057600080fd5b506103b0610ffe565b34801561057557600080fd5b506102c26004803603602081101561058c57600080fd5b5035611004565b34801561059f57600080fd5b506102c2600480360360208110156105b657600080fd5b50356001600160a01b0316611102565b3480156105d257600080fd5b506103b0600480360360408110156105e957600080fd5b5080359060200135151561117e565b34801561060457600080fd5b506102c26004803603602081101561061b57600080fd5b5035611226565b34801561062e57600080fd5b506103d7611283565b34801561064357600080fd5b506103876112a7565b34801561065857600080fd5b506102c26004803603602081101561066f57600080fd5b50356001600160a01b03166112b5565b34801561068b57600080fd5b50610387600480360360208110156106a257600080fd5b50356001600160a01b031661143b565b3480156106be57600080fd5b506103b0611459565b3480156106d357600080fd5b506103b0600480360360208110156106ea57600080fd5b50356001600160a01b031661145f565b34801561070657600080fd5b506102c26114c1565b34801561071b57600080fd5b506103b0611551565b34801561073057600080fd5b506103876004803603602081101561074757600080fd5b50356001600160a01b0316611557565b34801561076357600080fd5b506103d7611575565b34801561077857600080fd5b506102c26004803603602081101561078f57600080fd5b5035611584565b3480156107a257600080fd5b506103b06115e1565b3480156107b757600080fd5b506102d96115e7565b3480156107cc57600080fd5b50610387600480360360408110156107e357600080fd5b506001600160a01b038135169060200135611648565b34801561080557600080fd5b506103d76116b0565b34801561081a57600080fd5b506102c26116bf565b34801561082f57600080fd5b506103876004803603604081101561084657600080fd5b506001600160a01b0381351690602001356117ad565b34801561086857600080fd5b506102c26004803603602081101561087f57600080fd5b50356117c1565b34801561089257600080fd5b506102c2600480360360208110156108a957600080fd5b50356001600160a01b031661183f565b3480156108c557600080fd5b506103b06119cc565b3480156108da57600080fd5b506102c2600480360360208110156108f157600080fd5b503515156119d2565b34801561090657600080fd5b506103d7611a79565b34801561091b57600080fd5b506102c26004803603602081101561093257600080fd5b5035611a88565b34801561094557600080fd5b506102c26004803603602081101561095c57600080fd5b5035611b00565b34801561096f57600080fd5b506103b06004803603604081101561098657600080fd5b506001600160a01b0381358116916020013516611b9e565b3480156109aa57600080fd5b506102c2600480360360208110156109c157600080fd5b50356001600160a01b0316611bc9565b3480156109dd57600080fd5b506103d7611c42565b3480156109f257600080fd5b506102c260048036036020811015610a0957600080fd5b50356001600160a01b0316611c51565b348015610a2557600080fd5b506103b0611d37565b610a36611d3d565b6000546001600160a01b03908116911614610a86576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b601355565b60108054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b175780601f10610aec57610100808354040283529160200191610b17565b820191906000526020600020905b815481529060010190602001808311610afa57829003601f168201915b5050505050905090565b6000610b35610b2e611d3d565b8484611d41565b5060015b92915050565b600d5490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b600b5490565b610b77611d3d565b6000546001600160a01b03908116911614610bc7576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610c235760405162461bcd60e51b81526004018080602001828103825260228152602001806131ce6022913960400191505060405180910390fd5b6001600160a01b03811660009081526009602052604090205460ff1615610c91576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b60175481565b6000610d0a848484611e2d565b610d7a84610d16611d3d565b610d75856040518060600160405280602881526020016131f0602891396001600160a01b038a16600090815260056020526040812090610d54611d3d565b6001600160a01b0316815260208101919091526040016000205491906121be565b611d41565b5060019392505050565b6000600c54821115610dc75760405162461bcd60e51b815260040180806020018281038252602a8152602001806130f1602a913960400191505060405180910390fd5b6000610dd1612255565b9050610ddd8382612278565b9150505b919050565b60125460ff1690565b610df7611d3d565b6000546001600160a01b03908116911614610e47576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610eb4576040805162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c75646564000000000000000000604482015290519081900360640190fd5b60005b600854811015610fac57816001600160a01b031660088281548110610ed857fe5b6000918252602090912001546001600160a01b03161415610fa457600880546000198101908110610f0557fe5b600091825260209091200154600880546001600160a01b039092169183908110610f2b57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610f7d57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610fac565b600101610eb7565b5050565b6000610b35610fbd611d3d565b84610d758560056000610fce611d3d565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906122c1565b60135481565b600061100e611d3d565b6001600160a01b03811660009081526007602052604090205490915060ff16156110695760405162461bcd60e51b815260040180806020018281038252602c8152602001806132ca602c913960400191505060405180910390fd5b6000806000806110788661231b565b94509450945094505060006110988786868686611093612255565b612397565b50506001600160a01b0387166000908152600360205260409020549091506110c0908261240b565b6001600160a01b038716600090815260036020526040902055600c546110e6908261240b565b600c55600d546110f690886122c1565b600d5550505050505050565b61110a611d3d565b6000546001600160a01b0390811691161461115a576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600b548311156111d7576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b6000806000806111e68761231b565b9450945094509450506000806112028987878787611093612255565b50915091508761121957509450610b399350505050565b9550610b39945050505050565b61122e611d3d565b6000546001600160a01b0390811691161461127e576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b601755565b7f000000000000000000000000b2fd3bd1f15f342ac3da17b5adc862834506972b81565b601b54610100900460ff1681565b6112bd611d3d565b6000546001600160a01b0390811691161461130d576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff161561137b576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260036020526040902054156113d5576001600160a01b0381166000908152600360205260409020546113bb90610d84565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b60155481565b6001600160a01b03811660009081526007602052604081205460ff161561149f57506001600160a01b038116600090815260046020526040902054610de1565b6001600160a01b038216600090815260036020526040902054610b3990610d84565b6114c9611d3d565b6000546001600160a01b03908116911614611519576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020613238833981519152908390a3600080546001600160a01b0319169055565b601c5481565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b61158c611d3d565b6000546001600160a01b039081169116146115dc576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b601555565b601e5481565b60118054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b175780601f10610aec57610100808354040283529160200191610b17565b6000610b35611655611d3d565b84610d7585604051806060016040528060258152602001613319602591396005600061167f611d3d565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906121be565b600e546001600160a01b031690565b6001546001600160a01b031633146117085760405162461bcd60e51b81526004018080602001828103825260238152602001806132f66023913960400191505060405180910390fd5b600254421161175e576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b03938416939091169160008051602061323883398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610b356117ba611d3d565b8484611e2d565b6117c9611d3d565b6000546001600160a01b03908116911614611819576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b611839606461183383600b5461244d90919063ffffffff16565b90612278565b601e5550565b611847611d3d565b6000546001600160a01b03908116911614611897576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff16611904576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600a54811015610fac57816001600160a01b0316600a828154811061192857fe5b6000918252602090912001546001600160a01b031614156119c457600a8054600019810190811061195557fe5b600091825260209091200154600a80546001600160a01b03909216918390811061197b57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600a805480610f7d57fe5b600101611907565b60025490565b6119da611d3d565b6000546001600160a01b03908116911614611a2a576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b601b8054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b600e546001600160a01b031681565b611a90611d3d565b6000546001600160a01b03908116911614611ae0576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b611afa606461183383600b5461244d90919063ffffffff16565b601c5550565b611b08611d3d565b6000546001600160a01b03908116911614611b58576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020613238833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b611bd1611d3d565b6000546001600160a01b03908116911614611c21576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b600f546001600160a01b031690565b611c59611d3d565b6000546001600160a01b03908116911614611ca9576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b6001600160a01b038116611cee5760405162461bcd60e51b815260040180806020018281038252602681526020018061311b6026913960400191505060405180910390fd5b600080546040516001600160a01b038085169392169160008051602061323883398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60195481565b3390565b6001600160a01b038316611d865760405162461bcd60e51b81526004018080602001828103825260248152602001806132a66024913960400191505060405180910390fd5b6001600160a01b038216611dcb5760405162461bcd60e51b81526004018080602001828103825260228152602001806131416022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611e725760405162461bcd60e51b81526004018080602001828103825260258152602001806132816025913960400191505060405180910390fd5b6001600160a01b038216611eb75760405162461bcd60e51b81526004018080602001828103825260238152602001806130ce6023913960400191505060405180910390fd5b60008111611ef65760405162461bcd60e51b81526004018080602001828103825260298152602001806132586029913960400191505060405180910390fd5b6001600160a01b03831660009081526009602052604090205460ff1615611f5a576040805162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b604482015290519081900360640190fd5b3360009081526009602052604090205460ff1615611fad576040805162461bcd60e51b815260206004820152600b60248201526a189b1858dadb1a5cdd195960aa1b604482015290519081900360640190fd5b3260009081526009602052604090205460ff1615612000576040805162461bcd60e51b815260206004820152600b60248201526a189b1858dadb1a5cdd195960aa1b604482015290519081900360640190fd5b612008611575565b6001600160a01b0316836001600160a01b031614158015612042575061202c611575565b6001600160a01b0316826001600160a01b031614155b1561208857601c548111156120885760405162461bcd60e51b81526004018080602001828103825260288152602001806131856028913960400191505060405180910390fd5b601e548111156120c95760405162461bcd60e51b81526004018080602001828103825260228152602001806131636022913960400191505060405180910390fd5b60006120d43061145f565b9050601c5481106120e45750601c545b601d54811080159081906120fb5750601b5460ff16155b801561213957507f000000000000000000000000b2fd3bd1f15f342ac3da17b5adc862834506972b6001600160a01b0316856001600160a01b031614155b801561214c5750601b54610100900460ff165b1561215f57601d54915061215f826124a6565b6001600160a01b03851660009081526006602052604090205460019060ff16806121a157506001600160a01b03851660009081526006602052604090205460ff165b156121aa575060005b6121b68686868461256f565b505050505050565b6000818484111561224d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156122125781810151838201526020016121fa565b50505050905090810190601f16801561223f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006122626126e3565b90925090506122718282612278565b9250505090565b60006122ba83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612846565b9392505050565b6000828201838110156122ba576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008061232d876128ab565b9050600061233a886128c7565b90506000612347896128e3565b905060006123548a6128ff565b9050600061236c846123668d8861240b565b9061240b565b9050612378818461240b565b9050612384818361240b565b9b949a5092985090965094509092505050565b60008080806123a68a8661244d565b905060006123b48a8761244d565b905060006123c28a8861244d565b905060006123d08a8961244d565b905060006123de8a8a61244d565b905060006123f482612366858188818c8c61240b565b959f959e50939c50939a5050505050505050505050565b60006122ba83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506121be565b60008261245c57506000610b39565b8282028284828161246957fe5b04146122ba5760405162461bcd60e51b81526004018080602001828103825260218152602001806131ad6021913960400191505060405180910390fd5b601b8054600160ff199091161790556017546015549081016002029060009082908402816124d057fe5b049050808303476124e08261291b565b600081470390506000601554860382816124f657fe5b601554919004915081028015612510576125108682612b2a565b6017548202600202801561255a57600e546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612558573d6000803e3d6000fd5b505b5050601b805460ff1916905550505050505050565b8061257c5761257c612c0c565b6001600160a01b03841660009081526007602052604090205460ff1680156125bd57506001600160a01b03831660009081526007602052604090205460ff16155b156125d2576125cd848484612c53565b6126d0565b6001600160a01b03841660009081526007602052604090205460ff1615801561261357506001600160a01b03831660009081526007602052604090205460ff165b15612623576125cd848484612da2565b6001600160a01b03841660009081526007602052604090205460ff1615801561266557506001600160a01b03831660009081526007602052604090205460ff16155b15612675576125cd848484612e62565b6001600160a01b03841660009081526007602052604090205460ff1680156126b557506001600160a01b03831660009081526007602052604090205460ff165b156126c5576125cd848484612ebd565b6126d0848484612e62565b806126dd576126dd612f47565b50505050565b600c54600b546000918291825b6008548110156128145782600360006008848154811061270c57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612771575081600460006008848154811061274a57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561278857600c54600b5494509450505050612842565b6127c8600360006008848154811061279c57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061240b565b925061280a60046000600884815481106127de57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061240b565b91506001016126f0565b50600b54600c5461282491612278565b82101561283c57600c54600b54935093505050612842565b90925090505b9091565b600081836128955760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156122125781810151838201526020016121fa565b5060008385816128a157fe5b0495945050505050565b6000610b3960646118336013548561244d90919063ffffffff16565b6000610b3960646118336015548561244d90919063ffffffff16565b6000610b3960646118336017548561244d90919063ffffffff16565b6000610b3960646118336019548561244d90919063ffffffff16565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061294957fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156129c257600080fd5b505afa1580156129d6573d6000803e3d6000fd5b505050506040513d60208110156129ec57600080fd5b50518151829060019081106129fd57fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612a48307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611d41565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612aed578181015183820152602001612ad5565b505050509050019650505050505050600060405180830381600087803b158015612b1657600080fd5b505af11580156121b6573d6000803e3d6000fd5b612b55307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611d41565b6040805163f305d71960e01b8152306004820181905260248201859052600060448301819052606483015260848201524260a482015290516001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169163f305d71991849160c48082019260609290919082900301818588803b158015612be157600080fd5b505af1158015612bf5573d6000803e3d6000fd5b50505050506040513d60608110156126dd57600080fd5b601354158015612c1c5750601554155b15612c2657612c51565b60138054601455601580546016556017805460185560198054601a5560009384905591839055829055555b565b6000806000806000612c648661231b565b945094509450945094506000806000612c838988888888611093612255565b6001600160a01b038e166000908152600460205260409020549295509093509150612cae908a61240b565b6001600160a01b038c16600090815260046020908152604080832093909355600390522054612cdd908461240b565b6001600160a01b03808d1660009081526003602052604080822093909355908c1681522054612d0c90836122c1565b6001600160a01b038b16600090815260036020526040902055612d2e86612f61565b612d3785612f61565b612d4084612fea565b612d4a81886130a9565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8a6040518082815260200191505060405180910390a35050505050505050505050565b6000806000806000612db38661231b565b945094509450945094506000806000612dd28988888888611093612255565b6001600160a01b038e166000908152600360205260409020549295509093509150612dfd908461240b565b6001600160a01b03808d16600090815260036020908152604080832094909455918d16815260049091522054612e3390896122c1565b6001600160a01b038b16600090815260046020908152604080832093909355600390522054612d0c90836122c1565b6000806000806000612e738661231b565b945094509450945094506000806000612e928988888888611093612255565b6001600160a01b038e166000908152600360205260409020549295509093509150612cdd908461240b565b6000806000806000612ece8661231b565b945094509450945094506000806000612eed8988888888611093612255565b6001600160a01b038e166000908152600460205260409020549295509093509150612f18908a61240b565b6001600160a01b038c16600090815260046020908152604080832093909355600390522054612dfd908461240b565b601454601355601654601555601854601755601a54601955565b6000612f6b612255565b90506000612f79838361244d565b30600090815260036020526040902054909150612f9690826122c1565b3060009081526003602090815260408083209390935560079052205460ff1615612fe55730600090815260046020526040902054612fd490846122c1565b306000908152600460205260409020555b505050565b6000612ff4612255565b90506000613002838361244d565b600f546001600160a01b031660009081526003602052604090205490915061302a90826122c1565b600f80546001600160a01b03908116600090815260036020908152604080832095909555925490911681526007909152205460ff1615612fe557600f546001600160a01b031660009081526004602052604090205461308990846122c1565b600f546001600160a01b0316600090815260046020526040902055505050565b600c546130b6908361240b565b600c55600d546130c690826122c1565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373526563697069656e742065786365656473206d61782077616c6c65742073697a652e5472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7757652063616e6e6f7420626c61636b6c69737420556e695377617020726f7574657245524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b0eba4cf2394b7d5049f4bcb9d2a5f93a1075160c53338c94d19285408f53b1164736f6c634300060c0033

Deployed Bytecode Sourcemap

25613:23258:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35315:98;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35315:98:0;;:::i;:::-;;28713:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29625:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29625:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;30746:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;27059:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;27059:51:0;;;;;;;;;;;;;;28990:95;;;;;;;;;;;;;:::i;32446:368::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32446:368:0;-1:-1:-1;;;;;32446:368:0;;:::i;26859:33::-;;;;;;;;;;;;;:::i;29794:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29794:313:0;;;;;;;;;;;;;;;;;:::i;32181:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32181:253:0;;:::i;28899:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33722:475;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33722:475:0;-1:-1:-1;;;;;33722:475:0;;:::i;30115:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30115:218:0;;;;;;;;:::i;26671:26::-;;;;;;;;;;;;;:::i;31057:548::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31057:548:0;;:::i;35070:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35070:111:0;-1:-1:-1;;;;;35070:111:0;;:::i;31613:560::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31613:560:0;;;;;;;;;:::i;35559:122::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35559:122:0;;:::i;27117:38::-;;;;;;;;;;;;;:::i;27196:40::-;;;;;;;;;;;;;:::i;33381:333::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33381:333:0;-1:-1:-1;;;;;33381:333:0;;:::i;40921:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40921:123:0;-1:-1:-1;;;;;40921:123:0;;:::i;26758:32::-;;;;;;;;;;;;;:::i;29093:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29093:198:0;-1:-1:-1;;;;;29093:198:0;;:::i;16208:148::-;;;;;;;;;;;;;:::i;27249:51::-;;;;;;;;;;;;;:::i;30618:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30618:120:0;-1:-1:-1;;;;;30618:120:0;;:::i;15565:79::-;;;;;;;;;;;;;:::i;35425:122::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35425:122:0;;:::i;27382:55::-;;;;;;;;;;;;;:::i;28804:87::-;;;;;;;;;;;;;:::i;30341:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30341:269:0;;;;;;;;:::i;30948:101::-;;;;;;;;;;;;;:::i;17218:293::-;;;;;;;;;;;;;:::i;29299:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29299:167:0;;;;;;;;:::i;35867:192::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35867:192:0;;:::i;32822:544::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32822:544:0;-1:-1:-1;;;;;32822:544:0;;:::i;16763:89::-;;;;;;;;;;;;;:::i;36067:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36067:171:0;;;;:::i;26368:85::-;;;;;;;;;;;;;:::i;35692:162::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35692:162:0;;:::i;16928:214::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16928:214:0;;:::i;29474:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29474:143:0;;;;;;;;;;:::i;35193:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35193:110:0;-1:-1:-1;;;;;35193:110:0;;:::i;30841:99::-;;;;;;;;;;;;;:::i;16511:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16511:244:0;-1:-1:-1;;;;;16511:244:0;;:::i;26961:31::-;;;;;;;;;;;;;:::i;35315:98::-;15787:12;:10;:12::i;:::-;15777:6;;-1:-1:-1;;;;;15777:6:0;;;:22;;;15769:67;;;;;-1:-1:-1;;;15769:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15769:67:0;;;;;;;;;;;;;;;35389:7:::1;:16:::0;35315:98::o;28713:83::-;28783:5;28776:12;;;;;;;;-1:-1:-1;;28776:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28750:13;;28776:12;;28783:5;;28776:12;;28783:5;28776:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28713:83;:::o;29625:161::-;29700:4;29717:39;29726:12;:10;:12::i;:::-;29740:7;29749:6;29717:8;:39::i;:::-;-1:-1:-1;29774:4:0;29625:161;;;;;:::o;30746:87::-;30815:10;;30746:87;:::o;27059:51::-;;;:::o;28990:95::-;29070:7;;28990:95;:::o;32446:368::-;15787:12;:10;:12::i;:::-;15777:6;;-1:-1:-1;;;;;15777:6:0;;;:22;;;15769:67;;;;;-1:-1:-1;;;15769:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15769:67:0;;;;;;;;;;;;;;;32545:42:::1;-1:-1:-1::0;;;;;32534:53:0;::::1;;;32526:100;;;;-1:-1:-1::0;;;32526:100:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;32650:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;32649:27;32640:71;;;::::0;;-1:-1:-1;;;32640:71:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;32725:26:0::1;;::::0;;;:17:::1;:26;::::0;;;;:33;;-1:-1:-1;;32725:33:0::1;32754:4;32725:33:::0;;::::1;::::0;;;32772:16:::1;:30:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;32772:30:0::1;::::0;;::::1;::::0;;32446:368::o;26859:33::-;;;;:::o;29794:313::-;29892:4;29909:36;29919:6;29927:9;29938:6;29909:9;:36::i;:::-;29956:121;29965:6;29973:12;:10;:12::i;:::-;29987:89;30025:6;29987:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29987:19:0;;;;;;:11;:19;;;;;;30007:12;:10;:12::i;:::-;-1:-1:-1;;;;;29987:33:0;;;;;;;;;;;;-1:-1:-1;29987:33:0;;;:89;:37;:89::i;:::-;29956:8;:121::i;:::-;-1:-1:-1;30095:4:0;29794:313;;;;;:::o;32181:253::-;32247:7;32286;;32275;:18;;32267:73;;;;-1:-1:-1;;;32267:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32351:19;32374:10;:8;:10::i;:::-;32351:33;-1:-1:-1;32402:24:0;:7;32351:33;32402:11;:24::i;:::-;32395:31;;;32181:253;;;;:::o;28899:83::-;28965:9;;;;28899:83;:::o;33722:475::-;15787:12;:10;:12::i;:::-;15777:6;;-1:-1:-1;;;;;15777:6:0;;;:22;;;15769:67;;;;;-1:-1:-1;;;15769:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15769:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33804:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33796:56;;;::::0;;-1:-1:-1;;;33796:56:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;33868:9;33863:327;33887:9;:16:::0;33883:20;::::1;33863:327;;;33945:7;-1:-1:-1::0;;;;;33929:23:0::1;:9;33939:1;33929:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;33929:12:0::1;:23;33925:254;;;33988:9;33998:16:::0;;-1:-1:-1;;33998:20:0;;;33988:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;33973:9:::1;:12:::0;;-1:-1:-1;;;;;33988:31:0;;::::1;::::0;33983:1;;33973:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;33973:46:0::1;-1:-1:-1::0;;;;;33973:46:0;;::::1;;::::0;;34038:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;34077:11:::1;:20:::0;;;;:28;;-1:-1:-1;;34077:28:0::1;::::0;;34124:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;34124:15:0;;;;;-1:-1:-1;;;;;;34124:15:0::1;::::0;;;;;34158:5:::1;;33925:254;33905:3;;33863:327;;;;33722:475:::0;:::o;30115:218::-;30203:4;30220:83;30229:12;:10;:12::i;:::-;30243:7;30252:50;30291:10;30252:11;:25;30264:12;:10;:12::i;:::-;-1:-1:-1;;;;;30252:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30252:25:0;;;:34;;;;;;;;;;;:38;:50::i;26671:26::-;;;;:::o;31057:548::-;31109:14;31126:12;:10;:12::i;:::-;-1:-1:-1;;;;;31158:19:0;;;;;;:11;:19;;;;;;31109:29;;-1:-1:-1;31158:19:0;;31157:20;31149:77;;;;-1:-1:-1;;;31149:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31241:12;31255:18;31275;31295:17;31316:20;31328:7;31316:11;:20::i;:::-;31239:97;;;;;;;;;31348:15;31369:73;31381:7;31390:4;31396:10;31408;31420:9;31431:10;:8;:10::i;:::-;31369:11;:73::i;:::-;-1:-1:-1;;;;;;;31481:15:0;;;;;;:7;:15;;;;;;31347:95;;-1:-1:-1;31481:28:0;;31347:95;31481:19;:28::i;:::-;-1:-1:-1;;;;;31463:15:0;;;;;;:7;:15;;;;;:46;31530:7;;:20;;31542:7;31530:11;:20::i;:::-;31520:7;:30;31574:10;;:23;;31589:7;31574:14;:23::i;:::-;31561:10;:36;-1:-1:-1;;;;;;;31057:548:0:o;35070:111::-;15787:12;:10;:12::i;:::-;15777:6;;-1:-1:-1;;;;;15777:6:0;;;:22;;;15769:67;;;;;-1:-1:-1;;;15769:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15769:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;35139:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;35139:34:0::1;35169:4;35139:34;::::0;;35070:111::o;31613:560::-;31703:7;31742;;31731;:18;;31723:62;;;;;-1:-1:-1;;;31723:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31808:12;31822:18;31842;31862:17;31883:20;31895:7;31883:11;:20::i;:::-;31806:97;;;;;;;;;31915:15;31932:23;31960:73;31972:7;31981:4;31987:10;31999;32011:9;32022:10;:8;:10::i;31960:73::-;31914:119;;;;;32051:17;32046:120;;-1:-1:-1;32092:7:0;-1:-1:-1;32085:14:0;;-1:-1:-1;;;;32085:14:0;32046:120;32139:15;-1:-1:-1;32132:22:0;;-1:-1:-1;;;;;32132:22:0;35559:122;15787:12;:10;:12::i;:::-;15777:6;;-1:-1:-1;;;;;15777:6:0;;;:22;;;15769:67;;;;;-1:-1:-1;;;15769:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15769:67:0;;;;;;;;;;;;;;;35645:13:::1;:28:::0;35559:122::o;27117:38::-;;;:::o;27196:40::-;;;;;;;;;:::o;33381:333::-;15787:12;:10;:12::i;:::-;15777:6;;-1:-1:-1;;;;;15777:6:0;;;:22;;;15769:67;;;;;-1:-1:-1;;;15769:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15769:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33464:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33463:21;33455:61;;;::::0;;-1:-1:-1;;;33455:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;33530:16:0;::::1;33549:1;33530:16:::0;;;:7:::1;:16;::::0;;;;;:20;33527:108:::1;;-1:-1:-1::0;;;;;33606:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;33586:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;33567:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;33527:108:::1;-1:-1:-1::0;;;;;33645:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;33645:27:0::1;33668:4;33645:27:::0;;::::1;::::0;;;33683:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;33683:23:0::1;::::0;;::::1;::::0;;33381:333::o;40921:123::-;-1:-1:-1;;;;;41009:27:0;40985:4;41009:27;;;:18;:27;;;;;;;;;40921:123::o;26758:32::-;;;;:::o;29093:198::-;-1:-1:-1;;;;;29183:20:0;;29159:7;29183:20;;;:11;:20;;;;;;;;29179:49;;;-1:-1:-1;;;;;;29212:16:0;;;;;;:7;:16;;;;;;29205:23;;29179:49;-1:-1:-1;;;;;29266:16:0;;;;;;:7;:16;;;;;;29246:37;;:19;:37::i;16208:148::-;15787:12;:10;:12::i;:::-;15777:6;;-1:-1:-1;;;;;15777:6:0;;;:22;;;15769:67;;;;;-1:-1:-1;;;15769:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15769:67:0;;;;;;;;;;;;;;;16315:1:::1;16299:6:::0;;16278:40:::1;::::0;-1:-1:-1;;;;;16299:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;16278:40:0;16315:1;;16278:40:::1;16346:1;16329:19:::0;;-1:-1:-1;;;;;;16329:19:0::1;::::0;;16208:148::o;27249:51::-;;;;:::o;30618:120::-;-1:-1:-1;;;;;30710:20:0;30686:4;30710:20;;;:11;:20;;;;;;;;;30618:120::o;15565:79::-;15603:7;15630:6;-1:-1:-1;;;;;15630:6:0;15565:79;:::o;35425:122::-;15787:12;:10;:12::i;:::-;15777:6;;-1:-1:-1;;;;;15777:6:0;;;:22;;;15769:67;;;;;-1:-1:-1;;;15769:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15769:67:0;;;;;;;;;;;;;;;35511:13:::1;:28:::0;35425:122::o;27382:55::-;;;;:::o;28804:87::-;28876:7;28869:14;;;;;;;;-1:-1:-1;;28869:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28843:13;;28869:14;;28876:7;;28869:14;;28876:7;28869:14;;;;;;;;;;;;;;;;;;;;;;;;30341:269;30434:4;30451:129;30460:12;:10;:12::i;:::-;30474:7;30483:96;30522:15;30483:96;;;;;;;;;;;;;;;;;:11;:25;30495:12;:10;:12::i;:::-;-1:-1:-1;;;;;30483:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30483:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;30948:101::-;31024:17;;-1:-1:-1;;;;;31024:17:0;30948:101;:::o;17218:293::-;17270:14;;-1:-1:-1;;;;;17270:14:0;17288:10;17270:28;17262:76;;;;-1:-1:-1;;;17262:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17363:9;;17357:3;:15;17349:60;;;;;-1:-1:-1;;;17349:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17454:14;;;17446:6;;17425:44;;-1:-1:-1;;;;;17454:14:0;;;;17446:6;;;;-1:-1:-1;;;;;;;;;;;17425:44:0;;17489:14;;;17480:23;;-1:-1:-1;;;;;;17480:23:0;-1:-1:-1;;;;;17489:14:0;;;17480:23;;;;;;17218:293::o;29299:167::-;29377:4;29394:42;29404:12;:10;:12::i;:::-;29418:9;29429:6;29394:9;:42::i;35867:192::-;15787:12;:10;:12::i;:::-;15777:6;;-1:-1:-1;;;;;15777:6:0;;;:22;;;15769:67;;;;;-1:-1:-1;;;15769:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15769:67:0;;;;;;;;;;;;;;;35976:61:::1;36021:5;35976:26;35988:13;35976:7;;:11;;:26;;;;:::i;:::-;:30:::0;::::1;:61::i;:::-;35959:14;:78:::0;-1:-1:-1;35867:192:0:o;32822:544::-;15787:12;:10;:12::i;:::-;15777:6;;-1:-1:-1;;;;;15777:6:0;;;:22;;;15769:67;;;;;-1:-1:-1;;;15769:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15769:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32915:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;32906:66;;;::::0;;-1:-1:-1;;;32906:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;32991:9;32986:369;33010:16;:23:::0;33006:27;::::1;32986:369;;;33087:7;-1:-1:-1::0;;;;;33064:30:0::1;:16;33081:1;33064:19;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;33064:19:0::1;:30;33060:281;;;33142:16;33159:23:::0;;-1:-1:-1;;33159:27:0;;;33142:45;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;33120:16:::1;:19:::0;;-1:-1:-1;;;;;33142:45:0;;::::1;::::0;33137:1;;33120:19;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:67:::0;;-1:-1:-1;;;;;;33120:67:0::1;-1:-1:-1::0;;;;;33120:67:0;;::::1;;::::0;;33211:26;;::::1;::::0;;:17:::1;:26:::0;;;;;;:34;;-1:-1:-1;;33211:34:0::1;::::0;;33269:16:::1;:22:::0;;;::::1;;;33060:281;33035:3;;32986:369;;16763:89:::0;16835:9;;16763:89;:::o;36067:171::-;15787:12;:10;:12::i;:::-;15777:6;;-1:-1:-1;;;;;15777:6:0;;;:22;;;15769:67;;;;;-1:-1:-1;;;15769:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15769:67:0;;;;;;;;;;;;;;;36144:21:::1;:32:::0;;;::::1;;;::::0;::::1;-1:-1:-1::0;;36144:32:0;;::::1;::::0;;;::::1;::::0;;;36192:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;36067:171:::0;:::o;26368:85::-;;;-1:-1:-1;;;;;26368:85:0;;:::o;35692:162::-;15787:12;:10;:12::i;:::-;15777:6;;-1:-1:-1;;;;;15777:6:0;;;:22;;;15769:67;;;;;-1:-1:-1;;;15769:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15769:67:0;;;;;;;;;;;;;;;35786:60:::1;35830:5;35786:25;35798:12;35786:7;;:11;;:25;;;;:::i;:60::-;35771:12;:75:::0;-1:-1:-1;35692:162:0:o;16928:214::-;15787:12;:10;:12::i;:::-;15777:6;;-1:-1:-1;;;;;15777:6:0;;;:22;;;15769:67;;;;;-1:-1:-1;;;15769:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15769:67:0;;;;;;;;;;;;;;;17009:6:::1;::::0;;;16992:23;;-1:-1:-1;;;;;;16992:23:0;;::::1;-1:-1:-1::0;;;;;17009:6:0;::::1;16992:23;::::0;;;17026:19:::1;::::0;;17068:3:::1;:10:::0;::::1;17056:9;:22:::0;17094:40:::1;::::0;17009:6;;-1:-1:-1;;;;;;;;;;;17094:40:0;17009:6;;17094:40:::1;16928:214:::0;:::o;29474:143::-;-1:-1:-1;;;;;29582:18:0;;;29555:7;29582:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29474:143::o;35193:110::-;15787:12;:10;:12::i;:::-;15777:6;;-1:-1:-1;;;;;15777:6:0;;;:22;;;15769:67;;;;;-1:-1:-1;;;15769:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15769:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;35260:27:0::1;35290:5;35260:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;35260:35:0::1;::::0;;35193:110::o;30841:99::-;30916:16;;-1:-1:-1;;;;;30916:16:0;30841:99;:::o;16511:244::-;15787:12;:10;:12::i;:::-;15777:6;;-1:-1:-1;;;;;15777:6:0;;;:22;;;15769:67;;;;;-1:-1:-1;;;15769:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15769:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16600:22:0;::::1;16592:73;;;;-1:-1:-1::0;;;16592:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16702:6;::::0;;16681:38:::1;::::0;-1:-1:-1;;;;;16681:38:0;;::::1;::::0;16702:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;16681:38:0;::::1;16730:6;:17:::0;;-1:-1:-1;;;;;;16730:17:0::1;-1:-1:-1::0;;;;;16730:17:0;;;::::1;::::0;;;::::1;::::0;;16511:244::o;26961:31::-;;;;:::o;7973:106::-;8061:10;7973:106;:::o;41052:337::-;-1:-1:-1;;;;;41145:19:0;;41137:68;;;;-1:-1:-1;;;41137:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41224:21:0;;41216:68;;;;-1:-1:-1;;;41216:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41297:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;41349:32;;;;;;;;;;;;;;;;;41052:337;;;:::o;41397:2095::-;-1:-1:-1;;;;;41519:18:0;;41511:68;;;;-1:-1:-1;;;41511:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41598:16:0;;41590:64;;;;-1:-1:-1;;;41590:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41682:1;41673:6;:10;41665:64;;;;-1:-1:-1;;;41665:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41749:23:0;;;;;;:17;:23;;;;;;;;41748:24;41740:56;;;;;-1:-1:-1;;;41740:56:0;;;;;;;;;;;;-1:-1:-1;;;41740:56:0;;;;;;;;;;;;;;;41834:10;41816:29;;;;:17;:29;;;;;;;;41815:30;41807:54;;;;;-1:-1:-1;;;41807:54:0;;;;;;;;;;;;-1:-1:-1;;;41807:54:0;;;;;;;;;;;;;;;41899:9;41881:28;;;;:17;:28;;;;;;;;41880:29;41872:53;;;;;-1:-1:-1;;;41872:53:0;;;;;;;;;;;;-1:-1:-1;;;41872:53:0;;;;;;;;;;;;;;;41947:7;:5;:7::i;:::-;-1:-1:-1;;;;;41939:15:0;:4;-1:-1:-1;;;;;41939:15:0;;;:32;;;;;41964:7;:5;:7::i;:::-;-1:-1:-1;;;;;41958:13:0;:2;-1:-1:-1;;;;;41958:13:0;;;41939:32;41936:125;;;42004:12;;41994:6;:22;;41986:75;;;;-1:-1:-1;;;41986:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42094:14;;42084:6;:24;;42076:71;;;;-1:-1:-1;;;42076:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42442:28;42473:24;42491:4;42473:9;:24::i;:::-;42442:55;;42545:12;;42521:20;:36;42518:112;;-1:-1:-1;42606:12:0;;42518:112;42701:29;;42677:53;;;;;;;42759;;-1:-1:-1;42796:16:0;;;;42795:17;42759:53;:91;;;;;42837:13;-1:-1:-1;;;;;42829:21:0;:4;-1:-1:-1;;;;;42829:21:0;;;42759:91;:129;;;;-1:-1:-1;42867:21:0;;;;;;;42759:129;42741:318;;;42938:29;;42915:52;;43011:36;43026:20;43011:14;:36::i;:::-;-1:-1:-1;;;;;43267:24:0;;43140:12;43267:24;;;:18;:24;;;;;;43155:4;;43267:24;;;:50;;-1:-1:-1;;;;;;43295:22:0;;;;;;:18;:22;;;;;;;;43267:50;43264:96;;;-1:-1:-1;43343:5:0;43264:96;43446:38;43461:4;43466:2;43469:6;43476:7;43446:14;:38::i;:::-;41397:2095;;;;;;:::o;4383:192::-;4469:7;4505:12;4497:6;;;;4489:29;;;;-1:-1:-1;;;4489:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4541:5:0;;;4383:192::o;37761:163::-;37802:7;37823:15;37840;37859:19;:17;:19::i;:::-;37822:56;;-1:-1:-1;37822:56:0;-1:-1:-1;37896:20:0;37822:56;;37896:11;:20::i;:::-;37889:27;;;;37761:163;:::o;5781:132::-;5839:7;5866:39;5870:1;5873;5866:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5859:46;5781:132;-1:-1:-1;;;5781:132:0:o;3480:181::-;3538:7;3570:5;;;3594:6;;;;3586:46;;;;;-1:-1:-1;;;3586:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;36500:630;36560:7;36569;36578;36587;36596;36616:12;36631:24;36647:7;36631:15;:24::i;:::-;36616:39;;36666:18;36687:30;36709:7;36687:21;:30::i;:::-;36666:51;;36728:18;36749:30;36771:7;36749:21;:30::i;:::-;36728:51;;36790:17;36810:29;36831:7;36810:20;:29::i;:::-;36790:49;-1:-1:-1;36850:23:0;36876:33;36898:10;36876:17;:7;36888:4;36876:11;:17::i;:::-;:21;;:33::i;:::-;36850:59;-1:-1:-1;36946:31:0;36850:59;36966:10;36946:19;:31::i;:::-;36928:49;-1:-1:-1;37014:30:0;36928:49;37034:9;37014:19;:30::i;:::-;36996:48;37082:4;;-1:-1:-1;37088:10:0;;-1:-1:-1;37100:10:0;;-1:-1:-1;37088:10:0;-1:-1:-1;36500:630:0;;-1:-1:-1;;;36500:630:0:o;37138:615::-;37292:7;;;;37348:24;:7;37360:11;37348;:24::i;:::-;37330:42;-1:-1:-1;37383:12:0;37398:21;:4;37407:11;37398:8;:21::i;:::-;37383:36;-1:-1:-1;37430:18:0;37451:27;:10;37466:11;37451:14;:27::i;:::-;37430:48;-1:-1:-1;37489:18:0;37510:27;:10;37525:11;37510:14;:27::i;:::-;37489:48;-1:-1:-1;37548:17:0;37568:26;:9;37582:11;37568:13;:26::i;:::-;37548:46;-1:-1:-1;37605:23:0;37631:64;37548:46;37631:49;37669:10;37631:49;37653:10;37631:49;:7;37643:4;37631:11;:17::i;:64::-;37714:7;;;;-1:-1:-1;37740:4:0;;-1:-1:-1;37138:615:0;;-1:-1:-1;;;;;;;;;;;37138:615:0:o;3944:136::-;4002:7;4029:43;4033:1;4036;4029:43;;;;;;;;;;;;;;;;;:3;:43::i;4834:471::-;4892:7;5137:6;5133:47;;-1:-1:-1;5167:1:0;5160:8;;5133:47;5204:5;;;5208:1;5204;:5;:1;5228:5;;;;;:10;5220:56;;;;-1:-1:-1;;;5220:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43500:1022;27852:16;:23;;27871:4;-1:-1:-1;;27852:23:0;;;;;;43660:13:::1;::::0;43644::::1;::::0;:29;;::::1;43677:1;43643:35;::::0;-1:-1:-1;;43643:35:0;;43724:22;::::1;43643:35:::0;43724:36:::1;;;;;::::0;-1:-1:-1;43788:33:0;;::::1;43859:21;43893:24;43788:33:::0;43893:16:::1;:24::i;:::-;43930:20;43977:14;43953:21;:38;43930:61;;44002:19;44053:13;;44039:11;:27;44023:12;:44;;;;;44124:13;::::0;44023:44;;::::1;::::0;-1:-1:-1;44110:27:0;::::1;44153:25:::0;;44150:158:::1;;44235:61;44248:24;44274:21;44235:12;:61::i;:::-;44395:13;::::0;44377:31;;44391:1:::1;44377:31:::0;44422:16;;44419:96:::1;;44462:17;::::0;44454:49:::1;::::0;-1:-1:-1;;;;;44462:17:0;;::::1;::::0;44454:49;::::1;;;::::0;44490:12;;44462:17:::1;44454:49:::0;44462:17;44454:49;44490:12;44462:17;44454:49;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;44419:96;-1:-1:-1::0;;27898:16:0;:24;;-1:-1:-1;;27898:24:0;;;-1:-1:-1;;;;;;;43500:1022:0:o;45727:834::-;45838:7;45834:40;;45860:14;:12;:14::i;:::-;-1:-1:-1;;;;;45899:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;45923:22:0;;;;;;:11;:22;;;;;;;;45922:23;45899:46;45895:597;;;45962:48;45984:6;45992:9;46003:6;45962:21;:48::i;:::-;45895:597;;;-1:-1:-1;;;;;46033:19:0;;;;;;:11;:19;;;;;;;;46032:20;:46;;;;-1:-1:-1;;;;;;46056:22:0;;;;;;:11;:22;;;;;;;;46032:46;46028:464;;;46095:46;46115:6;46123:9;46134:6;46095:19;:46::i;46028:464::-;-1:-1:-1;;;;;46164:19:0;;;;;;:11;:19;;;;;;;;46163:20;:47;;;;-1:-1:-1;;;;;;46188:22:0;;;;;;:11;:22;;;;;;;;46187:23;46163:47;46159:333;;;46227:44;46245:6;46253:9;46264:6;46227:17;:44::i;46159:333::-;-1:-1:-1;;;;;46293:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;46316:22:0;;;;;;:11;:22;;;;;;;;46293:45;46289:203;;;46355:48;46377:6;46385:9;46396:6;46355:21;:48::i;46289:203::-;46436:44;46454:6;46462:9;46473:6;46436:17;:44::i;:::-;46516:7;46512:41;;46538:15;:13;:15::i;:::-;45727:834;;;;:::o;37932:561::-;38029:7;;38065;;37982;;;;;38089:289;38113:9;:16;38109:20;;38089:289;;;38179:7;38155;:21;38163:9;38173:1;38163:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38163:12:0;38155:21;;;;;;;;;;;;;:31;;:66;;;38214:7;38190;:21;38198:9;38208:1;38198:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38198:12:0;38190:21;;;;;;;;;;;;;:31;38155:66;38151:97;;;38231:7;;38240;;38223:25;;;;;;;;;38151:97;38273:34;38285:7;:21;38293:9;38303:1;38293:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38293:12:0;38285:21;;;;;;;;;;;;;38273:7;;:11;:34::i;:::-;38263:44;;38332:34;38344:7;:21;38352:9;38362:1;38352:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38352:12:0;38344:21;;;;;;;;;;;;;38332:7;;:11;:34::i;:::-;38322:44;-1:-1:-1;38131:3:0;;38089:289;;;-1:-1:-1;38414:7:0;;38402;;:20;;:11;:20::i;:::-;38392:7;:30;38388:61;;;38432:7;;38441;;38424:25;;;;;;;;38388:61;38468:7;;-1:-1:-1;38477:7:0;-1:-1:-1;37932:561:0;;;:::o;6409:278::-;6495:7;6530:12;6523:5;6515:28;;;;-1:-1:-1;;;6515:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6554:9;6570:1;6566;:5;;;;;;;6409:278;-1:-1:-1;;;;;6409:278:0:o;39605:154::-;39669:7;39696:55;39735:5;39696:20;39708:7;;39696;:11;;:20;;;;:::i;39767:166::-;39837:7;39864:61;39909:5;39864:26;39876:13;;39864:7;:11;;:26;;;;:::i;39941:166::-;40011:7;40038:61;40083:5;40038:26;40050:13;;40038:7;:11;;:26;;;;:::i;40115:164::-;40184:7;40211:60;40255:5;40211:25;40223:12;;40211:7;:11;;:25;;;;:::i;44530:589::-;44680:16;;;44694:1;44680:16;;;44656:21;44680:16;;;;;44656:21;44680:16;;;;;;;;;;-1:-1:-1;44680:16:0;44656:40;;44725:4;44707;44712:1;44707:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;44707:23:0;;;-1:-1:-1;;;;;44707:23:0;;;;;44751:15;-1:-1:-1;;;;;44751:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44751:22:0;44741:7;;:4;;44746:1;;44741:7;;;;;;;;;;;:32;-1:-1:-1;;;;;44741:32:0;;;-1:-1:-1;;;;;44741:32:0;;;;;44786:62;44803:4;44818:15;44836:11;44786:8;:62::i;:::-;44887:15;-1:-1:-1;;;;;44887:66:0;;44968:11;44994:1;45038:4;45065;45085:15;44887:224;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44887:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45127:519;45275:62;45292:4;45307:15;45325:11;45275:8;:62::i;:::-;45380:258;;;-1:-1:-1;;;45380:258:0;;45452:4;45380:258;;;;;;;;;;;;45498:1;45380:258;;;;;;;;;;;;;;45612:15;45380:258;;;;;;-1:-1:-1;;;;;45380:15:0;:31;;;;45419:9;;45380:258;;;;;;;;;;;;;;;45419:9;45380:31;:258;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40287:399;40333:7;;:12;:34;;;;-1:-1:-1;40349:13:0;;:18;40333:34;40330:46;;;40369:7;;40330:46;40414:7;;;40396:15;:25;40456:13;;;40432:21;:37;40504:13;;;40480:21;:37;40551:12;;;40528:20;:35;-1:-1:-1;40584:11:0;;;;40606:17;;;;40634;;;40662:16;40287:399;:::o;48095:773::-;48198:23;48223:12;48237:18;48257;48277:17;48298:20;48310:7;48298:11;:20::i;:::-;48197:121;;;;;;;;;;48330:15;48347:23;48372:12;48388:73;48400:7;48409:4;48415:10;48427;48439:9;48450:10;:8;:10::i;48388:73::-;-1:-1:-1;;;;;48492:15:0;;;;;;:7;:15;;;;;;48329:132;;-1:-1:-1;48329:132:0;;-1:-1:-1;48329:132:0;-1:-1:-1;48492:28:0;;48512:7;48492:19;:28::i;:::-;-1:-1:-1;;;;;48474:15:0;;;;;;:7;:15;;;;;;;;:46;;;;48549:7;:15;;;;:28;;48569:7;48549:19;:28::i;:::-;-1:-1:-1;;;;;48531:15:0;;;;;;;:7;:15;;;;;;:46;;;;48609:18;;;;;;;:39;;48632:15;48609:22;:39::i;:::-;-1:-1:-1;;;;;48588:18:0;;;;;;:7;:18;;;;;:60;48662:26;48677:10;48662:14;:26::i;:::-;48699:29;48717:10;48699:17;:29::i;:::-;48739:27;48756:9;48739:16;:27::i;:::-;48777:23;48789:4;48795;48777:11;:23::i;:::-;48833:9;-1:-1:-1;;;;;48816:44:0;48825:6;-1:-1:-1;;;;;48816:44:0;;48844:15;48816:44;;;;;;;;;;;;;;;;;;48095:773;;;;;;;;;;;:::o;47294:793::-;47395:23;47420:12;47434:18;47454;47474:17;47495:20;47507:7;47495:11;:20::i;:::-;47394:121;;;;;;;;;;47527:15;47544:23;47569:12;47585:73;47597:7;47606:4;47612:10;47624;47636:9;47647:10;:8;:10::i;47585:73::-;-1:-1:-1;;;;;47689:15:0;;;;;;:7;:15;;;;;;47526:132;;-1:-1:-1;47526:132:0;;-1:-1:-1;47526:132:0;-1:-1:-1;47689:28:0;;47526:132;47689:19;:28::i;:::-;-1:-1:-1;;;;;47671:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;47749:18;;;;;:7;:18;;;;;:39;;47772:15;47749:22;:39::i;:::-;-1:-1:-1;;;;;47728:18:0;;;;;;:7;:18;;;;;;;;:60;;;;47820:7;:18;;;;:39;;47843:15;47820:22;:39::i;46569:717::-;46668:23;46693:12;46707:18;46727;46747:17;46768:20;46780:7;46768:11;:20::i;:::-;46667:121;;;;;;;;;;46800:15;46817:23;46842:12;46858:73;46870:7;46879:4;46885:10;46897;46909:9;46920:10;:8;:10::i;46858:73::-;-1:-1:-1;;;;;46970:15:0;;;;;;:7;:15;;;;;;46799:132;;-1:-1:-1;46799:132:0;;-1:-1:-1;46799:132:0;-1:-1:-1;46970:28:0;;46799:132;46970:19;:28::i;34213:841::-;34316:23;34341:12;34355:18;34375;34395:17;34416:20;34428:7;34416:11;:20::i;:::-;34315:121;;;;;;;;;;34448:15;34465:23;34490:12;34506:73;34518:7;34527:4;34533:10;34545;34557:9;34568:10;:8;:10::i;34506:73::-;-1:-1:-1;;;;;34610:15:0;;;;;;:7;:15;;;;;;34447:132;;-1:-1:-1;34447:132:0;;-1:-1:-1;34447:132:0;-1:-1:-1;34610:28:0;;34630:7;34610:19;:28::i;:::-;-1:-1:-1;;;;;34592:15:0;;;;;;:7;:15;;;;;;;;:46;;;;34667:7;:15;;;;:28;;34687:7;34667:19;:28::i;40694:219::-;40748:15;;40738:7;:25;40790:21;;40774:13;:37;40838:21;;40822:13;:37;40885:20;;40870:12;:35;40694:219::o;38501:355::-;38564:19;38587:10;:8;:10::i;:::-;38564:33;-1:-1:-1;38608:18:0;38629:27;:10;38564:33;38629:14;:27::i;:::-;38708:4;38692:22;;;;:7;:22;;;;;;38608:48;;-1:-1:-1;38692:38:0;;38608:48;38692:26;:38::i;:::-;38683:4;38667:22;;;;:7;:22;;;;;;;;:63;;;;38744:11;:26;;;;;;38741:107;;;38826:4;38810:22;;;;:7;:22;;;;;;:38;;38837:10;38810:26;:38::i;:::-;38801:4;38785:22;;;;:7;:22;;;;;:63;38741:107;38501:355;;;:::o;39230:367::-;39294:19;39317:10;:8;:10::i;:::-;39294:33;-1:-1:-1;39338:17:0;39358:26;:9;39294:33;39358:13;:26::i;:::-;39431:16;;-1:-1:-1;;;;;39431:16:0;39423:25;;;;:7;:25;;;;;;39338:46;;-1:-1:-1;39423:40:0;;39338:46;39423:29;:40::i;:::-;39403:16;;;-1:-1:-1;;;;;39403:16:0;;;39395:25;;;;:7;:25;;;;;;;;:68;;;;39489:16;;;;;39477:29;;:11;:29;;;;;;;39474:115;;;39557:16;;-1:-1:-1;;;;;39557:16:0;39549:25;;;;:7;:25;;;;;;:40;;39579:9;39549:29;:40::i;:::-;39529:16;;-1:-1:-1;;;;;39529:16:0;39521:25;;;;:7;:25;;;;;:68;39230:367;;;:::o;36345:147::-;36423:7;;:17;;36435:4;36423:11;:17::i;:::-;36413:7;:27;36464:10;;:20;;36479:4;36464:14;:20::i;:::-;36451:10;:33;-1:-1:-1;;36345:147:0:o

Swarm Source

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