ETH Price: $3,123.29 (-9.12%)
Gas: 10 Gwei

Token

Green Eyed Monsters (GEM)
 

Overview

Max Total Supply

1,000,000,000,000 GEM

Holders

444

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
0x0789.eth
Balance
273,467,050.68164849 GEM

Value
$0.00
0x8d160063e641252f4b424a9af89e88b24e04e444
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:
GreenEyedMonsters

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-12-20
*/

/**
 *Green Eyed Monster

*/

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 GreenEyedMonsters 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 = 0xdb70e82E403c261D1B59369c41cDE493123bd0A0;
    address private _devAddress = 0x585Ef5bABb73B2ce4Bd3436E32A4Fd1b4bfA1348;

    string private _name = "Green Eyed Monsters";
    string private _symbol = "GEM";
    uint8 private _decimals = 9;
    
    uint256 public _taxFee = 99;
    uint256 private _previousTaxFee = _taxFee;
    
    uint256 public _liquidityFee = 4;
    uint256 private _previousLiquidityFee = _liquidityFee;

    uint256 public _marketingFee = 3;
    uint256 private _previousMarketingFee = _marketingFee;

    uint256 public _devFee = 2;
    uint256 private _previousDevFee = _devFee;

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

    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 tDev) = _getTValues(tAmount);
        (uint256 rAmount,,) = _getRValues(tAmount, tFee, tLiquidity, tMarketing, tDev, _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 tDev) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount,) = _getRValues(tAmount, tFee, tLiquidity, tMarketing, tDev, _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 tDev) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, tMarketing, tDev, _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);
        _takeDevFee(tDev);
        _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 tDev = calculateDevFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity);
                tTransferAmount = tTransferAmount.sub(tMarketing);
                tTransferAmount = tTransferAmount.sub(tDev);

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

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing, uint256 tDev, 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 rDev = tDev.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity).sub(rMarketing).sub(rDev);
        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 _takeDevFee(uint256 tDev) private {
        uint256 currentRate =  _getRate();
        uint256 rDev = tDev.mul(currentRate);
        _rOwned[_devAddress] = _rOwned[_devAddress].add(rDev);
        if(_isExcluded[_devAddress])
            _tOwned[_devAddress] = _tOwned[_devAddress].add(tDev);
    }

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

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

    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;
        _marketingFee = _previousMarketingFee;
        _devFee = _previousDevFee;
    }

    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 tDev) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, tMarketing, tDev, _getRate());
        
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeMarketingFee(tMarketing);
        _takeDevFee(tDev);
        _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 tDev) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, tMarketing, tDev, _getRate());

        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);           
        _takeLiquidity(tLiquidity);
        _takeMarketingFee(tMarketing);
        _takeDevFee(tDev);
        _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 tDev) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, tMarketing, tDev, _getRate());

        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);   
        _takeLiquidity(tLiquidity);
        _takeMarketingFee(tMarketing);
        _takeDevFee(tDev);
        _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":"_devFee","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":"devAddress","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"}]

683635c9adc5dea00000600b556818ce40f6d0219fffff19600c55600e80546001600160a01b031990811673db70e82e403c261d1b59369c41cde493123bd0a017909155600f805490911673585ef5babb73b2ce4bd3436e32a4fd1b4bfa1348179055610100604052601360c08190527f477265656e2045796564204d6f6e73746572730000000000000000000000000060e0908152620000a4916010919062000444565b506040805180820190915260038082526247454d60e81b6020909201918252620000d19160119162000444565b506012805460ff1916600917905560636013819055601455600460158190556016556003601781905560185560026019819055601a55601b805461ff001916610100179055678ac7230489e80000601c55674563918244f40000601d55683635c9adc5dea00000601e553480156200014857600080fd5b5060006200015562000431565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600c5460036000620001b062000431565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200022757600080fd5b505afa1580156200023c573d6000803e3d6000fd5b505050506040513d60208110156200025357600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b158015620002a457600080fd5b505afa158015620002b9573d6000803e3d6000fd5b505050506040513d6020811015620002d057600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200032357600080fd5b505af115801562000338573d6000803e3d6000fd5b505050506040513d60208110156200034f57600080fd5b50516001600160601b0319606091821b811660a0529082901b166080526001600660006200037c62000435565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790553081526006909352818320805485166001908117909155600e54909116835291208054909216179055620003dd62000431565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600b546040518082815260200191505060405180910390a350620004e0565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200048757805160ff1916838001178555620004b7565b82800160010185558215620004b7579182015b82811115620004b75782518255916020019190600101906200049a565b50620004c5929150620004c9565b5090565b5b80821115620004c55760008155600101620004ca565b60805160601c60a05160601c61337362000528600039806112945280612104525080610b47528061296b5280612a235280612a4a5280612b305280612b9752506133736000f3fe60806040526004361061028c5760003560e01c80636bc87c3a1161015a578063a9059cbb116100c1578063caac79341161007a578063caac793414610924578063d543dbeb14610939578063dd46706414610963578063dd62ed3e1461098d578063ea2f0b37146109c8578063f2fde38b146109fb57610293565b8063a9059cbb14610838578063aa45026b14610871578063af2ce61414610886578063b030b34a146108b0578063b6c52324146108e3578063c49b9a80146108f857610293565b80638ee88c53116101135780638ee88c53146107815780638f9a55c0146107ab57806395d89b41146107c0578063a457c2d7146107d5578063a5ece9411461080e578063a69df4b51461082357610293565b80636bc87c3a146106c757806370a08231146106dc578063715018a61461070f5780637d1db4a51461072457806388f82020146107395780638da5cb5b1461076c57610293565b80633685d419116101fe5780634549b039116101b75780634549b039146105db578063457c194c1461060d57806349bd5a5e146106375780634a74bb021461064c57806352390c02146106615780635342acb41461069457610293565b80633685d419146104e8578063395093511461051b5780633ad10ef6146105545780633b124fe7146105695780633bd5d1731461057e578063437823ec146105a857610293565b806318160ddd1161025057806318160ddd146103f35780631d7ef8791461040857806322976e0d1461043b57806323b872dd146104505780632d83811914610493578063313ce567146104bd57610293565b8063061c82d01461029857806306fdde03146102c4578063095ea7b31461034e57806313114a9d1461039b5780631694505e146103c257610293565b3661029357005b600080fd5b3480156102a457600080fd5b506102c2600480360360208110156102bb57600080fd5b5035610a2e565b005b3480156102d057600080fd5b506102d9610a8b565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103135781810151838201526020016102fb565b50505050905090810190601f1680156103405780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561035a57600080fd5b506103876004803603604081101561037157600080fd5b506001600160a01b038135169060200135610b21565b604080519115158252519081900360200190f35b3480156103a757600080fd5b506103b0610b3f565b60408051918252519081900360200190f35b3480156103ce57600080fd5b506103d7610b45565b604080516001600160a01b039092168252519081900360200190f35b3480156103ff57600080fd5b506103b0610b69565b34801561041457600080fd5b506102c26004803603602081101561042b57600080fd5b50356001600160a01b0316610b6f565b34801561044757600080fd5b506103b0610cf7565b34801561045c57600080fd5b506103876004803603606081101561047357600080fd5b506001600160a01b03813581169160208101359091169060400135610cfd565b34801561049f57600080fd5b506103b0600480360360208110156104b657600080fd5b5035610d84565b3480156104c957600080fd5b506104d2610de6565b6040805160ff9092168252519081900360200190f35b3480156104f457600080fd5b506102c26004803603602081101561050b57600080fd5b50356001600160a01b0316610def565b34801561052757600080fd5b506103876004803603604081101561053e57600080fd5b506001600160a01b038135169060200135610fb0565b34801561056057600080fd5b506103d7610ffe565b34801561057557600080fd5b506103b061100d565b34801561058a57600080fd5b506102c2600480360360208110156105a157600080fd5b5035611013565b3480156105b457600080fd5b506102c2600480360360208110156105cb57600080fd5b50356001600160a01b0316611111565b3480156105e757600080fd5b506103b0600480360360408110156105fe57600080fd5b5080359060200135151561118d565b34801561061957600080fd5b506102c26004803603602081101561063057600080fd5b5035611235565b34801561064357600080fd5b506103d7611292565b34801561065857600080fd5b506103876112b6565b34801561066d57600080fd5b506102c26004803603602081101561068457600080fd5b50356001600160a01b03166112c4565b3480156106a057600080fd5b50610387600480360360208110156106b757600080fd5b50356001600160a01b031661144a565b3480156106d357600080fd5b506103b0611468565b3480156106e857600080fd5b506103b0600480360360208110156106ff57600080fd5b50356001600160a01b031661146e565b34801561071b57600080fd5b506102c26114d0565b34801561073057600080fd5b506103b0611560565b34801561074557600080fd5b506103876004803603602081101561075c57600080fd5b50356001600160a01b0316611566565b34801561077857600080fd5b506103d7611584565b34801561078d57600080fd5b506102c2600480360360208110156107a457600080fd5b5035611593565b3480156107b757600080fd5b506103b06115f0565b3480156107cc57600080fd5b506102d96115f6565b3480156107e157600080fd5b50610387600480360360408110156107f857600080fd5b506001600160a01b038135169060200135611657565b34801561081a57600080fd5b506103d76116bf565b34801561082f57600080fd5b506102c26116ce565b34801561084457600080fd5b506103876004803603604081101561085b57600080fd5b506001600160a01b0381351690602001356117bc565b34801561087d57600080fd5b506103b06117d0565b34801561089257600080fd5b506102c2600480360360208110156108a957600080fd5b50356117d6565b3480156108bc57600080fd5b506102c2600480360360208110156108d357600080fd5b50356001600160a01b0316611854565b3480156108ef57600080fd5b506103b06119e1565b34801561090457600080fd5b506102c26004803603602081101561091b57600080fd5b503515156119e7565b34801561093057600080fd5b506103d7611a8e565b34801561094557600080fd5b506102c26004803603602081101561095c57600080fd5b5035611a9d565b34801561096f57600080fd5b506102c26004803603602081101561098657600080fd5b5035611b15565b34801561099957600080fd5b506103b0600480360360408110156109b057600080fd5b506001600160a01b0381358116916020013516611bb3565b3480156109d457600080fd5b506102c2600480360360208110156109eb57600080fd5b50356001600160a01b0316611bde565b348015610a0757600080fd5b506102c260048036036020811015610a1e57600080fd5b50356001600160a01b0316611c57565b610a36611d3d565b6000546001600160a01b03908116911614610a86576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b601355565b60108054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b175780601f10610aec57610100808354040283529160200191610b17565b820191906000526020600020905b815481529060010190602001808311610afa57829003601f168201915b5050505050905090565b6000610b35610b2e611d3d565b8484611d41565b5060015b92915050565b600d5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5490565b610b77611d3d565b6000546001600160a01b03908116911614610bc7576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610c235760405162461bcd60e51b81526004018080602001828103825260228152602001806131ce6022913960400191505060405180910390fd5b6001600160a01b03811660009081526009602052604090205460ff1615610c91576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b60175481565b6000610d0a848484611e2d565b610d7a84610d16611d3d565b610d75856040518060600160405280602881526020016131f0602891396001600160a01b038a16600090815260056020526040812090610d54611d3d565b6001600160a01b0316815260208101919091526040016000205491906121be565b611d41565b5060019392505050565b6000600c54821115610dc75760405162461bcd60e51b815260040180806020018281038252602a8152602001806130f1602a913960400191505060405180910390fd5b6000610dd1612255565b9050610ddd8382612278565b9150505b919050565b60125460ff1690565b610df7611d3d565b6000546001600160a01b03908116911614610e47576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610eb4576040805162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c75646564000000000000000000604482015290519081900360640190fd5b60005b600854811015610fac57816001600160a01b031660088281548110610ed857fe5b6000918252602090912001546001600160a01b03161415610fa457600880546000198101908110610f0557fe5b600091825260209091200154600880546001600160a01b039092169183908110610f2b57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610f7d57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610fac565b600101610eb7565b5050565b6000610b35610fbd611d3d565b84610d758560056000610fce611d3d565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906122c1565b600f546001600160a01b031690565b60135481565b600061101d611d3d565b6001600160a01b03811660009081526007602052604090205490915060ff16156110785760405162461bcd60e51b815260040180806020018281038252602c8152602001806132ca602c913960400191505060405180910390fd5b6000806000806110878661231b565b94509450945094505060006110a787868686866110a2612255565b612397565b50506001600160a01b0387166000908152600360205260409020549091506110cf908261240b565b6001600160a01b038716600090815260036020526040902055600c546110f5908261240b565b600c55600d5461110590886122c1565b600d5550505050505050565b611119611d3d565b6000546001600160a01b03908116911614611169576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600b548311156111e6576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b6000806000806111f58761231b565b94509450945094505060008061121189878787876110a2612255565b50915091508761122857509450610b399350505050565b9550610b39945050505050565b61123d611d3d565b6000546001600160a01b0390811691161461128d576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b601755565b7f000000000000000000000000000000000000000000000000000000000000000081565b601b54610100900460ff1681565b6112cc611d3d565b6000546001600160a01b0390811691161461131c576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff161561138a576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260036020526040902054156113e4576001600160a01b0381166000908152600360205260409020546113ca90610d84565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b60155481565b6001600160a01b03811660009081526007602052604081205460ff16156114ae57506001600160a01b038116600090815260046020526040902054610de1565b6001600160a01b038216600090815260036020526040902054610b3990610d84565b6114d8611d3d565b6000546001600160a01b03908116911614611528576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020613238833981519152908390a3600080546001600160a01b0319169055565b601c5481565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b61159b611d3d565b6000546001600160a01b039081169116146115eb576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b601555565b601e5481565b60118054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b175780601f10610aec57610100808354040283529160200191610b17565b6000610b35611664611d3d565b84610d7585604051806060016040528060258152602001613319602591396005600061168e611d3d565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906121be565b600e546001600160a01b031690565b6001546001600160a01b031633146117175760405162461bcd60e51b81526004018080602001828103825260238152602001806132f66023913960400191505060405180910390fd5b600254421161176d576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b03938416939091169160008051602061323883398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610b356117c9611d3d565b8484611e2d565b60195481565b6117de611d3d565b6000546001600160a01b0390811691161461182e576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b61184e606461184883600b5461244d90919063ffffffff16565b90612278565b601e5550565b61185c611d3d565b6000546001600160a01b039081169116146118ac576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff16611919576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600a54811015610fac57816001600160a01b0316600a828154811061193d57fe5b6000918252602090912001546001600160a01b031614156119d957600a8054600019810190811061196a57fe5b600091825260209091200154600a80546001600160a01b03909216918390811061199057fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600a805480610f7d57fe5b60010161191c565b60025490565b6119ef611d3d565b6000546001600160a01b03908116911614611a3f576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b601b8054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b600e546001600160a01b031681565b611aa5611d3d565b6000546001600160a01b03908116911614611af5576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b611b0f606461184883600b5461244d90919063ffffffff16565b601c5550565b611b1d611d3d565b6000546001600160a01b03908116911614611b6d576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020613238833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b611be6611d3d565b6000546001600160a01b03908116911614611c36576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b611c5f611d3d565b6000546001600160a01b03908116911614611caf576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b6001600160a01b038116611cf45760405162461bcd60e51b815260040180806020018281038252602681526020018061311b6026913960400191505060405180910390fd5b600080546040516001600160a01b038085169392169160008051602061323883398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b038316611d865760405162461bcd60e51b81526004018080602001828103825260248152602001806132a66024913960400191505060405180910390fd5b6001600160a01b038216611dcb5760405162461bcd60e51b81526004018080602001828103825260228152602001806131416022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611e725760405162461bcd60e51b81526004018080602001828103825260258152602001806132816025913960400191505060405180910390fd5b6001600160a01b038216611eb75760405162461bcd60e51b81526004018080602001828103825260238152602001806130ce6023913960400191505060405180910390fd5b60008111611ef65760405162461bcd60e51b81526004018080602001828103825260298152602001806132586029913960400191505060405180910390fd5b6001600160a01b03831660009081526009602052604090205460ff1615611f5a576040805162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b604482015290519081900360640190fd5b3360009081526009602052604090205460ff1615611fad576040805162461bcd60e51b815260206004820152600b60248201526a189b1858dadb1a5cdd195960aa1b604482015290519081900360640190fd5b3260009081526009602052604090205460ff1615612000576040805162461bcd60e51b815260206004820152600b60248201526a189b1858dadb1a5cdd195960aa1b604482015290519081900360640190fd5b612008611584565b6001600160a01b0316836001600160a01b031614158015612042575061202c611584565b6001600160a01b0316826001600160a01b031614155b1561208857601c548111156120885760405162461bcd60e51b81526004018080602001828103825260288152602001806131856028913960400191505060405180910390fd5b601e548111156120c95760405162461bcd60e51b81526004018080602001828103825260228152602001806131636022913960400191505060405180910390fd5b60006120d43061146e565b9050601c5481106120e45750601c545b601d54811080159081906120fb5750601b5460ff16155b801561213957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b801561214c5750601b54610100900460ff165b1561215f57601d54915061215f826124a6565b6001600160a01b03851660009081526006602052604090205460019060ff16806121a157506001600160a01b03851660009081526006602052604090205460ff165b156121aa575060005b6121b68686868461256f565b505050505050565b6000818484111561224d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156122125781810151838201526020016121fa565b50505050905090810190601f16801561223f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006122626126e3565b90925090506122718282612278565b9250505090565b60006122ba83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612846565b9392505050565b6000828201838110156122ba576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008061232d876128ab565b9050600061233a886128c7565b90506000612347896128e3565b905060006123548a6128ff565b9050600061236c846123668d8861240b565b9061240b565b9050612378818461240b565b9050612384818361240b565b9b949a5092985090965094509092505050565b60008080806123a68a8661244d565b905060006123b48a8761244d565b905060006123c28a8861244d565b905060006123d08a8961244d565b905060006123de8a8a61244d565b905060006123f482612366858188818c8c61240b565b959f959e50939c50939a5050505050505050505050565b60006122ba83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506121be565b60008261245c57506000610b39565b8282028284828161246957fe5b04146122ba5760405162461bcd60e51b81526004018080602001828103825260218152602001806131ad6021913960400191505060405180910390fd5b601b8054600160ff199091161790556017546015549081016002029060009082908402816124d057fe5b049050808303476124e08261291b565b600081470390506000601554860382816124f657fe5b601554919004915081028015612510576125108682612b2a565b6017548202600202801561255a57600e546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612558573d6000803e3d6000fd5b505b5050601b805460ff1916905550505050505050565b8061257c5761257c612c0c565b6001600160a01b03841660009081526007602052604090205460ff1680156125bd57506001600160a01b03831660009081526007602052604090205460ff16155b156125d2576125cd848484612c53565b6126d0565b6001600160a01b03841660009081526007602052604090205460ff1615801561261357506001600160a01b03831660009081526007602052604090205460ff165b15612623576125cd848484612da2565b6001600160a01b03841660009081526007602052604090205460ff1615801561266557506001600160a01b03831660009081526007602052604090205460ff16155b15612675576125cd848484612e62565b6001600160a01b03841660009081526007602052604090205460ff1680156126b557506001600160a01b03831660009081526007602052604090205460ff165b156126c5576125cd848484612ebd565b6126d0848484612e62565b806126dd576126dd612f47565b50505050565b600c54600b546000918291825b6008548110156128145782600360006008848154811061270c57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612771575081600460006008848154811061274a57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561278857600c54600b5494509450505050612842565b6127c8600360006008848154811061279c57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061240b565b925061280a60046000600884815481106127de57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061240b565b91506001016126f0565b50600b54600c5461282491612278565b82101561283c57600c54600b54935093505050612842565b90925090505b9091565b600081836128955760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156122125781810151838201526020016121fa565b5060008385816128a157fe5b0495945050505050565b6000610b3960646118486013548561244d90919063ffffffff16565b6000610b3960646118486015548561244d90919063ffffffff16565b6000610b3960646118486017548561244d90919063ffffffff16565b6000610b3960646118486019548561244d90919063ffffffff16565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061294957fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156129c257600080fd5b505afa1580156129d6573d6000803e3d6000fd5b505050506040513d60208110156129ec57600080fd5b50518151829060019081106129fd57fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612a48307f000000000000000000000000000000000000000000000000000000000000000084611d41565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612aed578181015183820152602001612ad5565b505050509050019650505050505050600060405180830381600087803b158015612b1657600080fd5b505af11580156121b6573d6000803e3d6000fd5b612b55307f000000000000000000000000000000000000000000000000000000000000000084611d41565b6040805163f305d71960e01b8152306004820181905260248201859052600060448301819052606483015260848201524260a482015290516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169163f305d71991849160c48082019260609290919082900301818588803b158015612be157600080fd5b505af1158015612bf5573d6000803e3d6000fd5b50505050506040513d60608110156126dd57600080fd5b601354158015612c1c5750601554155b15612c2657612c51565b60138054601455601580546016556017805460185560198054601a5560009384905591839055829055555b565b6000806000806000612c648661231b565b945094509450945094506000806000612c8389888888886110a2612255565b6001600160a01b038e166000908152600460205260409020549295509093509150612cae908a61240b565b6001600160a01b038c16600090815260046020908152604080832093909355600390522054612cdd908461240b565b6001600160a01b03808d1660009081526003602052604080822093909355908c1681522054612d0c90836122c1565b6001600160a01b038b16600090815260036020526040902055612d2e86612f61565b612d3785612f61565b612d4084612fea565b612d4a81886130a9565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8a6040518082815260200191505060405180910390a35050505050505050505050565b6000806000806000612db38661231b565b945094509450945094506000806000612dd289888888886110a2612255565b6001600160a01b038e166000908152600360205260409020549295509093509150612dfd908461240b565b6001600160a01b03808d16600090815260036020908152604080832094909455918d16815260049091522054612e3390896122c1565b6001600160a01b038b16600090815260046020908152604080832093909355600390522054612d0c90836122c1565b6000806000806000612e738661231b565b945094509450945094506000806000612e9289888888886110a2612255565b6001600160a01b038e166000908152600360205260409020549295509093509150612cdd908461240b565b6000806000806000612ece8661231b565b945094509450945094506000806000612eed89888888886110a2612255565b6001600160a01b038e166000908152600460205260409020549295509093509150612f18908a61240b565b6001600160a01b038c16600090815260046020908152604080832093909355600390522054612dfd908461240b565b601454601355601654601555601854601755601a54601955565b6000612f6b612255565b90506000612f79838361244d565b30600090815260036020526040902054909150612f9690826122c1565b3060009081526003602090815260408083209390935560079052205460ff1615612fe55730600090815260046020526040902054612fd490846122c1565b306000908152600460205260409020555b505050565b6000612ff4612255565b90506000613002838361244d565b600f546001600160a01b031660009081526003602052604090205490915061302a90826122c1565b600f80546001600160a01b03908116600090815260036020908152604080832095909555925490911681526007909152205460ff1615612fe557600f546001600160a01b031660009081526004602052604090205461308990846122c1565b600f546001600160a01b0316600090815260046020526040902055505050565b600c546130b6908361240b565b600c55600d546130c690826122c1565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373526563697069656e742065786365656473206d61782077616c6c65742073697a652e5472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7757652063616e6e6f7420626c61636b6c69737420556e695377617020726f7574657245524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207bfe7dac9c1c0908250c4da7220372271c871a4a3d97d47d57048e823181112d64736f6c634300060c0033

Deployed Bytecode

0x60806040526004361061028c5760003560e01c80636bc87c3a1161015a578063a9059cbb116100c1578063caac79341161007a578063caac793414610924578063d543dbeb14610939578063dd46706414610963578063dd62ed3e1461098d578063ea2f0b37146109c8578063f2fde38b146109fb57610293565b8063a9059cbb14610838578063aa45026b14610871578063af2ce61414610886578063b030b34a146108b0578063b6c52324146108e3578063c49b9a80146108f857610293565b80638ee88c53116101135780638ee88c53146107815780638f9a55c0146107ab57806395d89b41146107c0578063a457c2d7146107d5578063a5ece9411461080e578063a69df4b51461082357610293565b80636bc87c3a146106c757806370a08231146106dc578063715018a61461070f5780637d1db4a51461072457806388f82020146107395780638da5cb5b1461076c57610293565b80633685d419116101fe5780634549b039116101b75780634549b039146105db578063457c194c1461060d57806349bd5a5e146106375780634a74bb021461064c57806352390c02146106615780635342acb41461069457610293565b80633685d419146104e8578063395093511461051b5780633ad10ef6146105545780633b124fe7146105695780633bd5d1731461057e578063437823ec146105a857610293565b806318160ddd1161025057806318160ddd146103f35780631d7ef8791461040857806322976e0d1461043b57806323b872dd146104505780632d83811914610493578063313ce567146104bd57610293565b8063061c82d01461029857806306fdde03146102c4578063095ea7b31461034e57806313114a9d1461039b5780631694505e146103c257610293565b3661029357005b600080fd5b3480156102a457600080fd5b506102c2600480360360208110156102bb57600080fd5b5035610a2e565b005b3480156102d057600080fd5b506102d9610a8b565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103135781810151838201526020016102fb565b50505050905090810190601f1680156103405780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561035a57600080fd5b506103876004803603604081101561037157600080fd5b506001600160a01b038135169060200135610b21565b604080519115158252519081900360200190f35b3480156103a757600080fd5b506103b0610b3f565b60408051918252519081900360200190f35b3480156103ce57600080fd5b506103d7610b45565b604080516001600160a01b039092168252519081900360200190f35b3480156103ff57600080fd5b506103b0610b69565b34801561041457600080fd5b506102c26004803603602081101561042b57600080fd5b50356001600160a01b0316610b6f565b34801561044757600080fd5b506103b0610cf7565b34801561045c57600080fd5b506103876004803603606081101561047357600080fd5b506001600160a01b03813581169160208101359091169060400135610cfd565b34801561049f57600080fd5b506103b0600480360360208110156104b657600080fd5b5035610d84565b3480156104c957600080fd5b506104d2610de6565b6040805160ff9092168252519081900360200190f35b3480156104f457600080fd5b506102c26004803603602081101561050b57600080fd5b50356001600160a01b0316610def565b34801561052757600080fd5b506103876004803603604081101561053e57600080fd5b506001600160a01b038135169060200135610fb0565b34801561056057600080fd5b506103d7610ffe565b34801561057557600080fd5b506103b061100d565b34801561058a57600080fd5b506102c2600480360360208110156105a157600080fd5b5035611013565b3480156105b457600080fd5b506102c2600480360360208110156105cb57600080fd5b50356001600160a01b0316611111565b3480156105e757600080fd5b506103b0600480360360408110156105fe57600080fd5b5080359060200135151561118d565b34801561061957600080fd5b506102c26004803603602081101561063057600080fd5b5035611235565b34801561064357600080fd5b506103d7611292565b34801561065857600080fd5b506103876112b6565b34801561066d57600080fd5b506102c26004803603602081101561068457600080fd5b50356001600160a01b03166112c4565b3480156106a057600080fd5b50610387600480360360208110156106b757600080fd5b50356001600160a01b031661144a565b3480156106d357600080fd5b506103b0611468565b3480156106e857600080fd5b506103b0600480360360208110156106ff57600080fd5b50356001600160a01b031661146e565b34801561071b57600080fd5b506102c26114d0565b34801561073057600080fd5b506103b0611560565b34801561074557600080fd5b506103876004803603602081101561075c57600080fd5b50356001600160a01b0316611566565b34801561077857600080fd5b506103d7611584565b34801561078d57600080fd5b506102c2600480360360208110156107a457600080fd5b5035611593565b3480156107b757600080fd5b506103b06115f0565b3480156107cc57600080fd5b506102d96115f6565b3480156107e157600080fd5b50610387600480360360408110156107f857600080fd5b506001600160a01b038135169060200135611657565b34801561081a57600080fd5b506103d76116bf565b34801561082f57600080fd5b506102c26116ce565b34801561084457600080fd5b506103876004803603604081101561085b57600080fd5b506001600160a01b0381351690602001356117bc565b34801561087d57600080fd5b506103b06117d0565b34801561089257600080fd5b506102c2600480360360208110156108a957600080fd5b50356117d6565b3480156108bc57600080fd5b506102c2600480360360208110156108d357600080fd5b50356001600160a01b0316611854565b3480156108ef57600080fd5b506103b06119e1565b34801561090457600080fd5b506102c26004803603602081101561091b57600080fd5b503515156119e7565b34801561093057600080fd5b506103d7611a8e565b34801561094557600080fd5b506102c26004803603602081101561095c57600080fd5b5035611a9d565b34801561096f57600080fd5b506102c26004803603602081101561098657600080fd5b5035611b15565b34801561099957600080fd5b506103b0600480360360408110156109b057600080fd5b506001600160a01b0381358116916020013516611bb3565b3480156109d457600080fd5b506102c2600480360360208110156109eb57600080fd5b50356001600160a01b0316611bde565b348015610a0757600080fd5b506102c260048036036020811015610a1e57600080fd5b50356001600160a01b0316611c57565b610a36611d3d565b6000546001600160a01b03908116911614610a86576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b601355565b60108054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b175780601f10610aec57610100808354040283529160200191610b17565b820191906000526020600020905b815481529060010190602001808311610afa57829003601f168201915b5050505050905090565b6000610b35610b2e611d3d565b8484611d41565b5060015b92915050565b600d5490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b600b5490565b610b77611d3d565b6000546001600160a01b03908116911614610bc7576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610c235760405162461bcd60e51b81526004018080602001828103825260228152602001806131ce6022913960400191505060405180910390fd5b6001600160a01b03811660009081526009602052604090205460ff1615610c91576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b60175481565b6000610d0a848484611e2d565b610d7a84610d16611d3d565b610d75856040518060600160405280602881526020016131f0602891396001600160a01b038a16600090815260056020526040812090610d54611d3d565b6001600160a01b0316815260208101919091526040016000205491906121be565b611d41565b5060019392505050565b6000600c54821115610dc75760405162461bcd60e51b815260040180806020018281038252602a8152602001806130f1602a913960400191505060405180910390fd5b6000610dd1612255565b9050610ddd8382612278565b9150505b919050565b60125460ff1690565b610df7611d3d565b6000546001600160a01b03908116911614610e47576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610eb4576040805162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c75646564000000000000000000604482015290519081900360640190fd5b60005b600854811015610fac57816001600160a01b031660088281548110610ed857fe5b6000918252602090912001546001600160a01b03161415610fa457600880546000198101908110610f0557fe5b600091825260209091200154600880546001600160a01b039092169183908110610f2b57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610f7d57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610fac565b600101610eb7565b5050565b6000610b35610fbd611d3d565b84610d758560056000610fce611d3d565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906122c1565b600f546001600160a01b031690565b60135481565b600061101d611d3d565b6001600160a01b03811660009081526007602052604090205490915060ff16156110785760405162461bcd60e51b815260040180806020018281038252602c8152602001806132ca602c913960400191505060405180910390fd5b6000806000806110878661231b565b94509450945094505060006110a787868686866110a2612255565b612397565b50506001600160a01b0387166000908152600360205260409020549091506110cf908261240b565b6001600160a01b038716600090815260036020526040902055600c546110f5908261240b565b600c55600d5461110590886122c1565b600d5550505050505050565b611119611d3d565b6000546001600160a01b03908116911614611169576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600b548311156111e6576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b6000806000806111f58761231b565b94509450945094505060008061121189878787876110a2612255565b50915091508761122857509450610b399350505050565b9550610b39945050505050565b61123d611d3d565b6000546001600160a01b0390811691161461128d576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b601755565b7f000000000000000000000000fc8e2cd08f9ab47fd210d8e04db223fb87f3d5aa81565b601b54610100900460ff1681565b6112cc611d3d565b6000546001600160a01b0390811691161461131c576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff161561138a576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260036020526040902054156113e4576001600160a01b0381166000908152600360205260409020546113ca90610d84565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b60155481565b6001600160a01b03811660009081526007602052604081205460ff16156114ae57506001600160a01b038116600090815260046020526040902054610de1565b6001600160a01b038216600090815260036020526040902054610b3990610d84565b6114d8611d3d565b6000546001600160a01b03908116911614611528576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020613238833981519152908390a3600080546001600160a01b0319169055565b601c5481565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b61159b611d3d565b6000546001600160a01b039081169116146115eb576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b601555565b601e5481565b60118054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b175780601f10610aec57610100808354040283529160200191610b17565b6000610b35611664611d3d565b84610d7585604051806060016040528060258152602001613319602591396005600061168e611d3d565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906121be565b600e546001600160a01b031690565b6001546001600160a01b031633146117175760405162461bcd60e51b81526004018080602001828103825260238152602001806132f66023913960400191505060405180910390fd5b600254421161176d576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b03938416939091169160008051602061323883398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610b356117c9611d3d565b8484611e2d565b60195481565b6117de611d3d565b6000546001600160a01b0390811691161461182e576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b61184e606461184883600b5461244d90919063ffffffff16565b90612278565b601e5550565b61185c611d3d565b6000546001600160a01b039081169116146118ac576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff16611919576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600a54811015610fac57816001600160a01b0316600a828154811061193d57fe5b6000918252602090912001546001600160a01b031614156119d957600a8054600019810190811061196a57fe5b600091825260209091200154600a80546001600160a01b03909216918390811061199057fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600a805480610f7d57fe5b60010161191c565b60025490565b6119ef611d3d565b6000546001600160a01b03908116911614611a3f576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b601b8054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b600e546001600160a01b031681565b611aa5611d3d565b6000546001600160a01b03908116911614611af5576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b611b0f606461184883600b5461244d90919063ffffffff16565b601c5550565b611b1d611d3d565b6000546001600160a01b03908116911614611b6d576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020613238833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b611be6611d3d565b6000546001600160a01b03908116911614611c36576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b611c5f611d3d565b6000546001600160a01b03908116911614611caf576040805162461bcd60e51b81526020600482018190526024820152600080516020613218833981519152604482015290519081900360640190fd5b6001600160a01b038116611cf45760405162461bcd60e51b815260040180806020018281038252602681526020018061311b6026913960400191505060405180910390fd5b600080546040516001600160a01b038085169392169160008051602061323883398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b038316611d865760405162461bcd60e51b81526004018080602001828103825260248152602001806132a66024913960400191505060405180910390fd5b6001600160a01b038216611dcb5760405162461bcd60e51b81526004018080602001828103825260228152602001806131416022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611e725760405162461bcd60e51b81526004018080602001828103825260258152602001806132816025913960400191505060405180910390fd5b6001600160a01b038216611eb75760405162461bcd60e51b81526004018080602001828103825260238152602001806130ce6023913960400191505060405180910390fd5b60008111611ef65760405162461bcd60e51b81526004018080602001828103825260298152602001806132586029913960400191505060405180910390fd5b6001600160a01b03831660009081526009602052604090205460ff1615611f5a576040805162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b604482015290519081900360640190fd5b3360009081526009602052604090205460ff1615611fad576040805162461bcd60e51b815260206004820152600b60248201526a189b1858dadb1a5cdd195960aa1b604482015290519081900360640190fd5b3260009081526009602052604090205460ff1615612000576040805162461bcd60e51b815260206004820152600b60248201526a189b1858dadb1a5cdd195960aa1b604482015290519081900360640190fd5b612008611584565b6001600160a01b0316836001600160a01b031614158015612042575061202c611584565b6001600160a01b0316826001600160a01b031614155b1561208857601c548111156120885760405162461bcd60e51b81526004018080602001828103825260288152602001806131856028913960400191505060405180910390fd5b601e548111156120c95760405162461bcd60e51b81526004018080602001828103825260228152602001806131636022913960400191505060405180910390fd5b60006120d43061146e565b9050601c5481106120e45750601c545b601d54811080159081906120fb5750601b5460ff16155b801561213957507f000000000000000000000000fc8e2cd08f9ab47fd210d8e04db223fb87f3d5aa6001600160a01b0316856001600160a01b031614155b801561214c5750601b54610100900460ff165b1561215f57601d54915061215f826124a6565b6001600160a01b03851660009081526006602052604090205460019060ff16806121a157506001600160a01b03851660009081526006602052604090205460ff165b156121aa575060005b6121b68686868461256f565b505050505050565b6000818484111561224d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156122125781810151838201526020016121fa565b50505050905090810190601f16801561223f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006122626126e3565b90925090506122718282612278565b9250505090565b60006122ba83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612846565b9392505050565b6000828201838110156122ba576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008061232d876128ab565b9050600061233a886128c7565b90506000612347896128e3565b905060006123548a6128ff565b9050600061236c846123668d8861240b565b9061240b565b9050612378818461240b565b9050612384818361240b565b9b949a5092985090965094509092505050565b60008080806123a68a8661244d565b905060006123b48a8761244d565b905060006123c28a8861244d565b905060006123d08a8961244d565b905060006123de8a8a61244d565b905060006123f482612366858188818c8c61240b565b959f959e50939c50939a5050505050505050505050565b60006122ba83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506121be565b60008261245c57506000610b39565b8282028284828161246957fe5b04146122ba5760405162461bcd60e51b81526004018080602001828103825260218152602001806131ad6021913960400191505060405180910390fd5b601b8054600160ff199091161790556017546015549081016002029060009082908402816124d057fe5b049050808303476124e08261291b565b600081470390506000601554860382816124f657fe5b601554919004915081028015612510576125108682612b2a565b6017548202600202801561255a57600e546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612558573d6000803e3d6000fd5b505b5050601b805460ff1916905550505050505050565b8061257c5761257c612c0c565b6001600160a01b03841660009081526007602052604090205460ff1680156125bd57506001600160a01b03831660009081526007602052604090205460ff16155b156125d2576125cd848484612c53565b6126d0565b6001600160a01b03841660009081526007602052604090205460ff1615801561261357506001600160a01b03831660009081526007602052604090205460ff165b15612623576125cd848484612da2565b6001600160a01b03841660009081526007602052604090205460ff1615801561266557506001600160a01b03831660009081526007602052604090205460ff16155b15612675576125cd848484612e62565b6001600160a01b03841660009081526007602052604090205460ff1680156126b557506001600160a01b03831660009081526007602052604090205460ff165b156126c5576125cd848484612ebd565b6126d0848484612e62565b806126dd576126dd612f47565b50505050565b600c54600b546000918291825b6008548110156128145782600360006008848154811061270c57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612771575081600460006008848154811061274a57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561278857600c54600b5494509450505050612842565b6127c8600360006008848154811061279c57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061240b565b925061280a60046000600884815481106127de57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061240b565b91506001016126f0565b50600b54600c5461282491612278565b82101561283c57600c54600b54935093505050612842565b90925090505b9091565b600081836128955760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156122125781810151838201526020016121fa565b5060008385816128a157fe5b0495945050505050565b6000610b3960646118486013548561244d90919063ffffffff16565b6000610b3960646118486015548561244d90919063ffffffff16565b6000610b3960646118486017548561244d90919063ffffffff16565b6000610b3960646118486019548561244d90919063ffffffff16565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061294957fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156129c257600080fd5b505afa1580156129d6573d6000803e3d6000fd5b505050506040513d60208110156129ec57600080fd5b50518151829060019081106129fd57fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612a48307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611d41565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612aed578181015183820152602001612ad5565b505050509050019650505050505050600060405180830381600087803b158015612b1657600080fd5b505af11580156121b6573d6000803e3d6000fd5b612b55307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611d41565b6040805163f305d71960e01b8152306004820181905260248201859052600060448301819052606483015260848201524260a482015290516001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169163f305d71991849160c48082019260609290919082900301818588803b158015612be157600080fd5b505af1158015612bf5573d6000803e3d6000fd5b50505050506040513d60608110156126dd57600080fd5b601354158015612c1c5750601554155b15612c2657612c51565b60138054601455601580546016556017805460185560198054601a5560009384905591839055829055555b565b6000806000806000612c648661231b565b945094509450945094506000806000612c8389888888886110a2612255565b6001600160a01b038e166000908152600460205260409020549295509093509150612cae908a61240b565b6001600160a01b038c16600090815260046020908152604080832093909355600390522054612cdd908461240b565b6001600160a01b03808d1660009081526003602052604080822093909355908c1681522054612d0c90836122c1565b6001600160a01b038b16600090815260036020526040902055612d2e86612f61565b612d3785612f61565b612d4084612fea565b612d4a81886130a9565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8a6040518082815260200191505060405180910390a35050505050505050505050565b6000806000806000612db38661231b565b945094509450945094506000806000612dd289888888886110a2612255565b6001600160a01b038e166000908152600360205260409020549295509093509150612dfd908461240b565b6001600160a01b03808d16600090815260036020908152604080832094909455918d16815260049091522054612e3390896122c1565b6001600160a01b038b16600090815260046020908152604080832093909355600390522054612d0c90836122c1565b6000806000806000612e738661231b565b945094509450945094506000806000612e9289888888886110a2612255565b6001600160a01b038e166000908152600360205260409020549295509093509150612cdd908461240b565b6000806000806000612ece8661231b565b945094509450945094506000806000612eed89888888886110a2612255565b6001600160a01b038e166000908152600460205260409020549295509093509150612f18908a61240b565b6001600160a01b038c16600090815260046020908152604080832093909355600390522054612dfd908461240b565b601454601355601654601555601854601755601a54601955565b6000612f6b612255565b90506000612f79838361244d565b30600090815260036020526040902054909150612f9690826122c1565b3060009081526003602090815260408083209390935560079052205460ff1615612fe55730600090815260046020526040902054612fd490846122c1565b306000908152600460205260409020555b505050565b6000612ff4612255565b90506000613002838361244d565b600f546001600160a01b031660009081526003602052604090205490915061302a90826122c1565b600f80546001600160a01b03908116600090815260036020908152604080832095909555925490911681526007909152205460ff1615612fe557600f546001600160a01b031660009081526004602052604090205461308990846122c1565b600f546001600160a01b0316600090815260046020526040902055505050565b600c546130b6908361240b565b600c55600d546130c690826122c1565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373526563697069656e742065786365656473206d61782077616c6c65742073697a652e5472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7757652063616e6e6f7420626c61636b6c69737420556e695377617020726f7574657245524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207bfe7dac9c1c0908250c4da7220372271c871a4a3d97d47d57048e823181112d64736f6c634300060c0033

Deployed Bytecode Sourcemap

25648:23002:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35284:98;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35284:98:0;;:::i;:::-;;28732:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29644:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29644:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;30765:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;27078:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;27078:51:0;;;;;;;;;;;;;;29009:95;;;;;;;;;;;;;:::i;32435:368::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32435:368:0;-1:-1:-1;;;;;32435:368:0;;:::i;26894:32::-;;;;;;;;;;;;;:::i;29813:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29813:313:0;;;;;;;;;;;;;;;;;:::i;32170:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32170:253:0;;:::i;28918:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33711:475;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33711:475:0;-1:-1:-1;;;;;33711:475:0;;:::i;30134:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30134:218:0;;;;;;;;:::i;30860:89::-;;;;;;;;;;;;;:::i;26705:27::-;;;;;;;;;;;;;:::i;31066:538::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31066:538:0;;:::i;35039:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35039:111:0;-1:-1:-1;;;;;35039:111:0;;:::i;31612:550::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31612:550:0;;;;;;;;;:::i;35528:122::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35528:122:0;;:::i;27136:38::-;;;;;;;;;;;;;:::i;27215:40::-;;;;;;;;;;;;;:::i;33370:333::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33370:333:0;-1:-1:-1;;;;;33370:333:0;;:::i;40760:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40760:123:0;-1:-1:-1;;;;;40760:123:0;;:::i;26793:32::-;;;;;;;;;;;;;:::i;29112:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29112:198:0;-1:-1:-1;;;;;29112:198:0;;:::i;16243:148::-;;;;;;;;;;;;;:::i;27268:51::-;;;;;;;;;;;;;:::i;30637:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30637:120:0;-1:-1:-1;;;;;30637:120:0;;:::i;15600:79::-;;;;;;;;;;;;;:::i;35394:122::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35394:122:0;;:::i;27401:55::-;;;;;;;;;;;;;:::i;28823:87::-;;;;;;;;;;;;;:::i;30360:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30360:269:0;;;;;;;;:::i;30957:101::-;;;;;;;;;;;;;:::i;17253:293::-;;;;;;;;;;;;;:::i;29318:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29318:167:0;;;;;;;;:::i;26995:26::-;;;;;;;;;;;;;:::i;35836:192::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35836:192:0;;:::i;32811:544::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32811:544:0;-1:-1:-1;;;;;32811:544:0;;:::i;16798:89::-;;;;;;;;;;;;;:::i;36036:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36036:171:0;;;;:::i;26404:85::-;;;;;;;;;;;;;:::i;35661:162::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35661:162:0;;:::i;16963:214::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16963:214:0;;:::i;29493:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29493:143:0;;;;;;;;;;:::i;35162:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35162:110:0;-1:-1:-1;;;;;35162:110:0;;:::i;16546:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16546:244:0;-1:-1:-1;;;;;16546:244:0;;:::i;35284:98::-;15822:12;:10;:12::i;:::-;15812:6;;-1:-1:-1;;;;;15812:6:0;;;:22;;;15804:67;;;;;-1:-1:-1;;;15804:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15804:67:0;;;;;;;;;;;;;;;35358:7:::1;:16:::0;35284:98::o;28732:83::-;28802:5;28795:12;;;;;;;;-1:-1:-1;;28795:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28769:13;;28795:12;;28802:5;;28795:12;;28802:5;28795:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28732:83;:::o;29644:161::-;29719:4;29736:39;29745:12;:10;:12::i;:::-;29759:7;29768:6;29736:8;:39::i;:::-;-1:-1:-1;29793:4:0;29644:161;;;;;:::o;30765:87::-;30834:10;;30765:87;:::o;27078:51::-;;;:::o;29009:95::-;29089:7;;29009:95;:::o;32435:368::-;15822:12;:10;:12::i;:::-;15812:6;;-1:-1:-1;;;;;15812:6:0;;;:22;;;15804:67;;;;;-1:-1:-1;;;15804:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15804:67:0;;;;;;;;;;;;;;;32534:42:::1;-1:-1:-1::0;;;;;32523:53:0;::::1;;;32515:100;;;;-1:-1:-1::0;;;32515:100:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;32639:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;32638:27;32629:71;;;::::0;;-1:-1:-1;;;32629:71:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;32714:26:0::1;;::::0;;;:17:::1;:26;::::0;;;;:33;;-1:-1:-1;;32714:33:0::1;32743:4;32714:33:::0;;::::1;::::0;;;32761:16:::1;:30:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;32761:30:0::1;::::0;;::::1;::::0;;32435:368::o;26894:32::-;;;;:::o;29813:313::-;29911:4;29928:36;29938:6;29946:9;29957:6;29928:9;:36::i;:::-;29975:121;29984:6;29992:12;:10;:12::i;:::-;30006:89;30044:6;30006:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30006:19:0;;;;;;:11;:19;;;;;;30026:12;:10;:12::i;:::-;-1:-1:-1;;;;;30006:33:0;;;;;;;;;;;;-1:-1:-1;30006:33:0;;;:89;:37;:89::i;:::-;29975:8;:121::i;:::-;-1:-1:-1;30114:4:0;29813:313;;;;;:::o;32170:253::-;32236:7;32275;;32264;:18;;32256:73;;;;-1:-1:-1;;;32256:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32340:19;32363:10;:8;:10::i;:::-;32340:33;-1:-1:-1;32391:24:0;:7;32340:33;32391:11;:24::i;:::-;32384:31;;;32170:253;;;;:::o;28918:83::-;28984:9;;;;28918:83;:::o;33711:475::-;15822:12;:10;:12::i;:::-;15812:6;;-1:-1:-1;;;;;15812:6:0;;;:22;;;15804:67;;;;;-1:-1:-1;;;15804:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15804:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33793:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33785:56;;;::::0;;-1:-1:-1;;;33785:56:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;33857:9;33852:327;33876:9;:16:::0;33872:20;::::1;33852:327;;;33934:7;-1:-1:-1::0;;;;;33918:23:0::1;:9;33928:1;33918:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;33918:12:0::1;:23;33914:254;;;33977:9;33987:16:::0;;-1:-1:-1;;33987:20:0;;;33977:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;33962:9:::1;:12:::0;;-1:-1:-1;;;;;33977:31:0;;::::1;::::0;33972:1;;33962:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;33962:46:0::1;-1:-1:-1::0;;;;;33962:46:0;;::::1;;::::0;;34027:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;34066:11:::1;:20:::0;;;;:28;;-1:-1:-1;;34066:28:0::1;::::0;;34113:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;34113:15:0;;;;;-1:-1:-1;;;;;;34113:15:0::1;::::0;;;;;34147:5:::1;;33914:254;33894:3;;33852:327;;;;33711:475:::0;:::o;30134:218::-;30222:4;30239:83;30248:12;:10;:12::i;:::-;30262:7;30271:50;30310:10;30271:11;:25;30283:12;:10;:12::i;:::-;-1:-1:-1;;;;;30271:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30271:25:0;;;:34;;;;;;;;;;;:38;:50::i;30860:89::-;30930:11;;-1:-1:-1;;;;;30930:11:0;30860:89;:::o;26705:27::-;;;;:::o;31066:538::-;31118:14;31135:12;:10;:12::i;:::-;-1:-1:-1;;;;;31167:19:0;;;;;;:11;:19;;;;;;31118:29;;-1:-1:-1;31167:19:0;;31166:20;31158:77;;;;-1:-1:-1;;;31158:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31250:12;31264:18;31284;31304:12;31320:20;31332:7;31320:11;:20::i;:::-;31248:92;;;;;;;;;31352:15;31373:68;31385:7;31394:4;31400:10;31412;31424:4;31430:10;:8;:10::i;:::-;31373:11;:68::i;:::-;-1:-1:-1;;;;;;;31480:15:0;;;;;;:7;:15;;;;;;31351:90;;-1:-1:-1;31480:28:0;;31351:90;31480:19;:28::i;:::-;-1:-1:-1;;;;;31462:15:0;;;;;;:7;:15;;;;;:46;31529:7;;:20;;31541:7;31529:11;:20::i;:::-;31519:7;:30;31573:10;;:23;;31588:7;31573:14;:23::i;:::-;31560:10;:36;-1:-1:-1;;;;;;;31066:538:0:o;35039:111::-;15822:12;:10;:12::i;:::-;15812:6;;-1:-1:-1;;;;;15812:6:0;;;:22;;;15804:67;;;;;-1:-1:-1;;;15804:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15804:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;35108:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;35108:34:0::1;35138:4;35108:34;::::0;;35039:111::o;31612:550::-;31702:7;31741;;31730;:18;;31722:62;;;;;-1:-1:-1;;;31722:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31807:12;31821:18;31841;31861:12;31877:20;31889:7;31877:11;:20::i;:::-;31805:92;;;;;;;;;31909:15;31926:23;31954:68;31966:7;31975:4;31981:10;31993;32005:4;32011:10;:8;:10::i;31954:68::-;31908:114;;;;;32040:17;32035:120;;-1:-1:-1;32081:7:0;-1:-1:-1;32074:14:0;;-1:-1:-1;;;;32074:14:0;32035:120;32128:15;-1:-1:-1;32121:22:0;;-1:-1:-1;;;;;32121:22:0;35528:122;15822:12;:10;:12::i;:::-;15812:6;;-1:-1:-1;;;;;15812:6:0;;;:22;;;15804:67;;;;;-1:-1:-1;;;15804:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15804:67:0;;;;;;;;;;;;;;;35614:13:::1;:28:::0;35528:122::o;27136:38::-;;;:::o;27215:40::-;;;;;;;;;:::o;33370:333::-;15822:12;:10;:12::i;:::-;15812:6;;-1:-1:-1;;;;;15812:6:0;;;:22;;;15804:67;;;;;-1:-1:-1;;;15804:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15804:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33453:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33452:21;33444:61;;;::::0;;-1:-1:-1;;;33444:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;33519:16:0;::::1;33538:1;33519:16:::0;;;:7:::1;:16;::::0;;;;;:20;33516:108:::1;;-1:-1:-1::0;;;;;33595:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;33575:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;33556:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;33516:108:::1;-1:-1:-1::0;;;;;33634:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;33634:27:0::1;33657:4;33634:27:::0;;::::1;::::0;;;33672:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;33672:23:0::1;::::0;;::::1;::::0;;33370:333::o;40760:123::-;-1:-1:-1;;;;;40848:27:0;40824:4;40848:27;;;:18;:27;;;;;;;;;40760:123::o;26793:32::-;;;;:::o;29112:198::-;-1:-1:-1;;;;;29202:20:0;;29178:7;29202:20;;;:11;:20;;;;;;;;29198:49;;;-1:-1:-1;;;;;;29231:16:0;;;;;;:7;:16;;;;;;29224:23;;29198:49;-1:-1:-1;;;;;29285:16:0;;;;;;:7;:16;;;;;;29265:37;;:19;:37::i;16243:148::-;15822:12;:10;:12::i;:::-;15812:6;;-1:-1:-1;;;;;15812:6:0;;;:22;;;15804:67;;;;;-1:-1:-1;;;15804:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15804:67:0;;;;;;;;;;;;;;;16350:1:::1;16334:6:::0;;16313:40:::1;::::0;-1:-1:-1;;;;;16334:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;16313:40:0;16350:1;;16313:40:::1;16381:1;16364:19:::0;;-1:-1:-1;;;;;;16364:19:0::1;::::0;;16243:148::o;27268:51::-;;;;:::o;30637:120::-;-1:-1:-1;;;;;30729:20:0;30705:4;30729:20;;;:11;:20;;;;;;;;;30637:120::o;15600:79::-;15638:7;15665:6;-1:-1:-1;;;;;15665:6:0;15600:79;:::o;35394:122::-;15822:12;:10;:12::i;:::-;15812:6;;-1:-1:-1;;;;;15812:6:0;;;:22;;;15804:67;;;;;-1:-1:-1;;;15804:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15804:67:0;;;;;;;;;;;;;;;35480:13:::1;:28:::0;35394:122::o;27401:55::-;;;;:::o;28823:87::-;28895:7;28888:14;;;;;;;;-1:-1:-1;;28888:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28862:13;;28888:14;;28895:7;;28888:14;;28895:7;28888:14;;;;;;;;;;;;;;;;;;;;;;;;30360:269;30453:4;30470:129;30479:12;:10;:12::i;:::-;30493:7;30502:96;30541:15;30502:96;;;;;;;;;;;;;;;;;:11;:25;30514:12;:10;:12::i;:::-;-1:-1:-1;;;;;30502:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30502:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;30957:101::-;31033:17;;-1:-1:-1;;;;;31033:17:0;30957:101;:::o;17253:293::-;17305:14;;-1:-1:-1;;;;;17305:14:0;17323:10;17305:28;17297:76;;;;-1:-1:-1;;;17297:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17398:9;;17392:3;:15;17384:60;;;;;-1:-1:-1;;;17384:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17489:14;;;17481:6;;17460:44;;-1:-1:-1;;;;;17489:14:0;;;;17481:6;;;;-1:-1:-1;;;;;;;;;;;17460:44:0;;17524:14;;;17515:23;;-1:-1:-1;;;;;;17515:23:0;-1:-1:-1;;;;;17524:14:0;;;17515:23;;;;;;17253:293::o;29318:167::-;29396:4;29413:42;29423:12;:10;:12::i;:::-;29437:9;29448:6;29413:9;:42::i;26995:26::-;;;;:::o;35836:192::-;15822:12;:10;:12::i;:::-;15812:6;;-1:-1:-1;;;;;15812:6:0;;;:22;;;15804:67;;;;;-1:-1:-1;;;15804:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15804:67:0;;;;;;;;;;;;;;;35945:61:::1;35990:5;35945:26;35957:13;35945:7;;:11;;:26;;;;:::i;:::-;:30:::0;::::1;:61::i;:::-;35928:14;:78:::0;-1:-1:-1;35836:192:0:o;32811:544::-;15822:12;:10;:12::i;:::-;15812:6;;-1:-1:-1;;;;;15812:6:0;;;:22;;;15804:67;;;;;-1:-1:-1;;;15804:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15804:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32904:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;32895:66;;;::::0;;-1:-1:-1;;;32895:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;32980:9;32975:369;32999:16;:23:::0;32995:27;::::1;32975:369;;;33076:7;-1:-1:-1::0;;;;;33053:30:0::1;:16;33070:1;33053:19;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;33053:19:0::1;:30;33049:281;;;33131:16;33148:23:::0;;-1:-1:-1;;33148:27:0;;;33131:45;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;33109:16:::1;:19:::0;;-1:-1:-1;;;;;33131:45:0;;::::1;::::0;33126:1;;33109:19;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:67:::0;;-1:-1:-1;;;;;;33109:67:0::1;-1:-1:-1::0;;;;;33109:67:0;;::::1;;::::0;;33200:26;;::::1;::::0;;:17:::1;:26:::0;;;;;;:34;;-1:-1:-1;;33200:34:0::1;::::0;;33258:16:::1;:22:::0;;;::::1;;;33049:281;33024:3;;32975:369;;16798:89:::0;16870:9;;16798:89;:::o;36036:171::-;15822:12;:10;:12::i;:::-;15812:6;;-1:-1:-1;;;;;15812:6:0;;;:22;;;15804:67;;;;;-1:-1:-1;;;15804:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15804:67:0;;;;;;;;;;;;;;;36113:21:::1;:32:::0;;;::::1;;;::::0;::::1;-1:-1:-1::0;;36113:32:0;;::::1;::::0;;;::::1;::::0;;;36161:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;36036:171:::0;:::o;26404:85::-;;;-1:-1:-1;;;;;26404:85:0;;:::o;35661:162::-;15822:12;:10;:12::i;:::-;15812:6;;-1:-1:-1;;;;;15812:6:0;;;:22;;;15804:67;;;;;-1:-1:-1;;;15804:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15804:67:0;;;;;;;;;;;;;;;35755:60:::1;35799:5;35755:25;35767:12;35755:7;;:11;;:25;;;;:::i;:60::-;35740:12;:75:::0;-1:-1:-1;35661:162:0:o;16963:214::-;15822:12;:10;:12::i;:::-;15812:6;;-1:-1:-1;;;;;15812:6:0;;;:22;;;15804:67;;;;;-1:-1:-1;;;15804:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15804:67:0;;;;;;;;;;;;;;;17044:6:::1;::::0;;;17027:23;;-1:-1:-1;;;;;;17027:23:0;;::::1;-1:-1:-1::0;;;;;17044:6:0;::::1;17027:23;::::0;;;17061:19:::1;::::0;;17103:3:::1;:10:::0;::::1;17091:9;:22:::0;17129:40:::1;::::0;17044:6;;-1:-1:-1;;;;;;;;;;;17129:40:0;17044:6;;17129:40:::1;16963:214:::0;:::o;29493:143::-;-1:-1:-1;;;;;29601:18:0;;;29574:7;29601:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29493:143::o;35162:110::-;15822:12;:10;:12::i;:::-;15812:6;;-1:-1:-1;;;;;15812:6:0;;;:22;;;15804:67;;;;;-1:-1:-1;;;15804:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15804:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;35229:27:0::1;35259:5;35229:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;35229:35:0::1;::::0;;35162:110::o;16546:244::-;15822:12;:10;:12::i;:::-;15812:6;;-1:-1:-1;;;;;15812:6:0;;;:22;;;15804:67;;;;;-1:-1:-1;;;15804:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15804:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16635:22:0;::::1;16627:73;;;;-1:-1:-1::0;;;16627:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16737:6;::::0;;16716:38:::1;::::0;-1:-1:-1;;;;;16716:38:0;;::::1;::::0;16737:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;16716:38:0;::::1;16765:6;:17:::0;;-1:-1:-1;;;;;;16765:17:0::1;-1:-1:-1::0;;;;;16765:17:0;;;::::1;::::0;;;::::1;::::0;;16546:244::o;8008:106::-;8096:10;8008:106;:::o;40891:337::-;-1:-1:-1;;;;;40984:19:0;;40976:68;;;;-1:-1:-1;;;40976:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41063:21:0;;41055:68;;;;-1:-1:-1;;;41055:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41136:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;41188:32;;;;;;;;;;;;;;;;;40891:337;;;:::o;41236:2095::-;-1:-1:-1;;;;;41358:18:0;;41350:68;;;;-1:-1:-1;;;41350:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41437:16:0;;41429:64;;;;-1:-1:-1;;;41429:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41521:1;41512:6;:10;41504:64;;;;-1:-1:-1;;;41504:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41588:23:0;;;;;;:17;:23;;;;;;;;41587:24;41579:56;;;;;-1:-1:-1;;;41579:56:0;;;;;;;;;;;;-1:-1:-1;;;41579:56:0;;;;;;;;;;;;;;;41673:10;41655:29;;;;:17;:29;;;;;;;;41654:30;41646:54;;;;;-1:-1:-1;;;41646:54:0;;;;;;;;;;;;-1:-1:-1;;;41646:54:0;;;;;;;;;;;;;;;41738:9;41720:28;;;;:17;:28;;;;;;;;41719:29;41711:53;;;;;-1:-1:-1;;;41711:53:0;;;;;;;;;;;;-1:-1:-1;;;41711:53:0;;;;;;;;;;;;;;;41786:7;:5;:7::i;:::-;-1:-1:-1;;;;;41778:15:0;:4;-1:-1:-1;;;;;41778:15:0;;;:32;;;;;41803:7;:5;:7::i;:::-;-1:-1:-1;;;;;41797:13:0;:2;-1:-1:-1;;;;;41797:13:0;;;41778:32;41775:125;;;41843:12;;41833:6;:22;;41825:75;;;;-1:-1:-1;;;41825:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41933:14;;41923:6;:24;;41915:71;;;;-1:-1:-1;;;41915:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42281:28;42312:24;42330:4;42312:9;:24::i;:::-;42281:55;;42384:12;;42360:20;:36;42357:112;;-1:-1:-1;42445:12:0;;42357:112;42540:29;;42516:53;;;;;;;42598;;-1:-1:-1;42635:16:0;;;;42634:17;42598:53;:91;;;;;42676:13;-1:-1:-1;;;;;42668:21:0;:4;-1:-1:-1;;;;;42668:21:0;;;42598:91;:129;;;;-1:-1:-1;42706:21:0;;;;;;;42598:129;42580:318;;;42777:29;;42754:52;;42850:36;42865:20;42850:14;:36::i;:::-;-1:-1:-1;;;;;43106:24:0;;42979:12;43106:24;;;:18;:24;;;;;;42994:4;;43106:24;;;:50;;-1:-1:-1;;;;;;43134:22:0;;;;;;:18;:22;;;;;;;;43106:50;43103:96;;;-1:-1:-1;43182:5:0;43103:96;43285:38;43300:4;43305:2;43308:6;43315:7;43285:14;:38::i;:::-;41236:2095;;;;;;:::o;4418:192::-;4504:7;4540:12;4532:6;;;;4524:29;;;;-1:-1:-1;;;4524:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4576:5:0;;;4418:192::o;37690:163::-;37731:7;37752:15;37769;37788:19;:17;:19::i;:::-;37751:56;;-1:-1:-1;37751:56:0;-1:-1:-1;37825:20:0;37751:56;;37825:11;:20::i;:::-;37818:27;;;;37690:163;:::o;5816:132::-;5874:7;5901:39;5905:1;5908;5901:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5894:46;5816:132;-1:-1:-1;;;5816:132:0:o;3515:181::-;3573:7;3605:5;;;3629:6;;;;3621:46;;;;;-1:-1:-1;;;3621:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;36469:610;36529:7;36538;36547;36556;36565;36585:12;36600:24;36616:7;36600:15;:24::i;:::-;36585:39;;36635:18;36656:30;36678:7;36656:21;:30::i;:::-;36635:51;;36697:18;36718:30;36740:7;36718:21;:30::i;:::-;36697:51;;36759:12;36774:24;36790:7;36774:15;:24::i;:::-;36759:39;-1:-1:-1;36809:23:0;36835:33;36857:10;36835:17;:7;36847:4;36835:11;:17::i;:::-;:21;;:33::i;:::-;36809:59;-1:-1:-1;36905:31:0;36809:59;36925:10;36905:19;:31::i;:::-;36887:49;-1:-1:-1;36973:25:0;36887:49;36993:4;36973:19;:25::i;:::-;36955:43;37036:4;;-1:-1:-1;37042:10:0;;-1:-1:-1;37054:10:0;;-1:-1:-1;37042:10:0;-1:-1:-1;36469:610:0;;-1:-1:-1;;;36469:610:0:o;37087:595::-;37236:7;;;;37292:24;:7;37304:11;37292;:24::i;:::-;37274:42;-1:-1:-1;37327:12:0;37342:21;:4;37351:11;37342:8;:21::i;:::-;37327:36;-1:-1:-1;37374:18:0;37395:27;:10;37410:11;37395:14;:27::i;:::-;37374:48;-1:-1:-1;37433:18:0;37454:27;:10;37469:11;37454:14;:27::i;:::-;37433:48;-1:-1:-1;37492:12:0;37507:21;:4;37516:11;37507:8;:21::i;:::-;37492:36;-1:-1:-1;37539:23:0;37565:59;37492:36;37565:49;37603:10;37565:49;37587:10;37565:49;:7;37577:4;37565:11;:17::i;:59::-;37643:7;;;;-1:-1:-1;37669:4:0;;-1:-1:-1;37087:595:0;;-1:-1:-1;;;;;;;;;;;37087:595:0:o;3979:136::-;4037:7;4064:43;4068:1;4071;4064:43;;;;;;;;;;;;;;;;;:3;:43::i;4869:471::-;4927:7;5172:6;5168:47;;-1:-1:-1;5202:1:0;5195:8;;5168:47;5239:5;;;5243:1;5239;:5;:1;5263:5;;;;;:10;5255:56;;;;-1:-1:-1;;;5255:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43339:1022;27871:16;:23;;27890:4;-1:-1:-1;;27871:23:0;;;;;;43499:13:::1;::::0;43483::::1;::::0;:29;;::::1;43516:1;43482:35;::::0;-1:-1:-1;;43482:35:0;;43563:22;::::1;43482:35:::0;43563:36:::1;;;;;::::0;-1:-1:-1;43627:33:0;;::::1;43698:21;43732:24;43627:33:::0;43732:16:::1;:24::i;:::-;43769:20;43816:14;43792:21;:38;43769:61;;43841:19;43892:13;;43878:11;:27;43862:12;:44;;;;;43963:13;::::0;43862:44;;::::1;::::0;-1:-1:-1;43949:27:0;::::1;43992:25:::0;;43989:158:::1;;44074:61;44087:24;44113:21;44074:12;:61::i;:::-;44234:13;::::0;44216:31;;44230:1:::1;44216:31:::0;44261:16;;44258:96:::1;;44301:17;::::0;44293:49:::1;::::0;-1:-1:-1;;;;;44301:17:0;;::::1;::::0;44293:49;::::1;;;::::0;44329:12;;44301:17:::1;44293:49:::0;44301:17;44293:49;44329:12;44301:17;44293:49;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;44258:96;-1:-1:-1::0;;27917:16:0;:24;;-1:-1:-1;;27917:24:0;;;-1:-1:-1;;;;;;;43339:1022:0:o;45566:834::-;45677:7;45673:40;;45699:14;:12;:14::i;:::-;-1:-1:-1;;;;;45738:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;45762:22:0;;;;;;:11;:22;;;;;;;;45761:23;45738:46;45734:597;;;45801:48;45823:6;45831:9;45842:6;45801:21;:48::i;:::-;45734:597;;;-1:-1:-1;;;;;45872:19:0;;;;;;:11;:19;;;;;;;;45871:20;:46;;;;-1:-1:-1;;;;;;45895:22:0;;;;;;:11;:22;;;;;;;;45871:46;45867:464;;;45934:46;45954:6;45962:9;45973:6;45934:19;:46::i;45867:464::-;-1:-1:-1;;;;;46003:19:0;;;;;;:11;:19;;;;;;;;46002:20;:47;;;;-1:-1:-1;;;;;;46027:22:0;;;;;;:11;:22;;;;;;;;46026:23;46002:47;45998:333;;;46066:44;46084:6;46092:9;46103:6;46066:17;:44::i;45998:333::-;-1:-1:-1;;;;;46132:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;46155:22:0;;;;;;:11;:22;;;;;;;;46132:45;46128:203;;;46194:48;46216:6;46224:9;46235:6;46194:21;:48::i;46128:203::-;46275:44;46293:6;46301:9;46312:6;46275:17;:44::i;:::-;46355:7;46351:41;;46377:15;:13;:15::i;:::-;45566:834;;;;:::o;37861:561::-;37958:7;;37994;;37911;;;;;38018:289;38042:9;:16;38038:20;;38018:289;;;38108:7;38084;:21;38092:9;38102:1;38092:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38092:12:0;38084:21;;;;;;;;;;;;;:31;;:66;;;38143:7;38119;:21;38127:9;38137:1;38127:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38127:12:0;38119:21;;;;;;;;;;;;;:31;38084:66;38080:97;;;38160:7;;38169;;38152:25;;;;;;;;;38080:97;38202:34;38214:7;:21;38222:9;38232:1;38222:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38222:12:0;38214:21;;;;;;;;;;;;;38202:7;;:11;:34::i;:::-;38192:44;;38261:34;38273:7;:21;38281:9;38291:1;38281:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38281:12:0;38273:21;;;;;;;;;;;;;38261:7;;:11;:34::i;:::-;38251:44;-1:-1:-1;38060:3:0;;38018:289;;;-1:-1:-1;38343:7:0;;38331;;:20;;:11;:20::i;:::-;38321:7;:30;38317:61;;;38361:7;;38370;;38353:25;;;;;;;;38317:61;38397:7;;-1:-1:-1;38406:7:0;-1:-1:-1;37861:561:0;;;:::o;6444:278::-;6530:7;6565:12;6558:5;6550:28;;;;-1:-1:-1;;;6550:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6589:9;6605:1;6601;:5;;;;;;;6444:278;-1:-1:-1;;;;;6444:278:0:o;39479:154::-;39543:7;39570:55;39609:5;39570:20;39582:7;;39570;:11;;:20;;;;:::i;39641:166::-;39711:7;39738:61;39783:5;39738:26;39750:13;;39738:7;:11;;:26;;;;:::i;39815:166::-;39885:7;39912:61;39957:5;39912:26;39924:13;;39912:7;:11;;:26;;;;:::i;39989:154::-;40053:7;40080:55;40119:5;40080:20;40092:7;;40080;:11;;:20;;;;:::i;44369:589::-;44519:16;;;44533:1;44519:16;;;44495:21;44519:16;;;;;44495:21;44519:16;;;;;;;;;;-1:-1:-1;44519:16:0;44495:40;;44564:4;44546;44551:1;44546:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;44546:23:0;;;-1:-1:-1;;;;;44546:23:0;;;;;44590:15;-1:-1:-1;;;;;44590:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44590:22:0;44580:7;;:4;;44585:1;;44580:7;;;;;;;;;;;:32;-1:-1:-1;;;;;44580:32:0;;;-1:-1:-1;;;;;44580:32:0;;;;;44625:62;44642:4;44657:15;44675:11;44625:8;:62::i;:::-;44726:15;-1:-1:-1;;;;;44726:66:0;;44807:11;44833:1;44877:4;44904;44924:15;44726:224;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44726:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44966:519;45114:62;45131:4;45146:15;45164:11;45114:8;:62::i;:::-;45219:258;;;-1:-1:-1;;;45219:258:0;;45291:4;45219:258;;;;;;;;;;;;45337:1;45219:258;;;;;;;;;;;;;;45451:15;45219:258;;;;;;-1:-1:-1;;;;;45219:15:0;:31;;;;45258:9;;45219:258;;;;;;;;;;;;;;;45258:9;45219:31;:258;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40151:384;40197:7;;:12;:34;;;;-1:-1:-1;40213:13:0;;:18;40197:34;40194:46;;;40233:7;;40194:46;40278:7;;;40260:15;:25;40320:13;;;40296:21;:37;40368:13;;;40344:21;:37;40410:7;;;40392:15;:25;-1:-1:-1;40438:11:0;;;;40460:17;;;;40488;;;40516:11;40151:384;:::o;47894:753::-;47997:23;48022:12;48036:18;48056;48076:12;48092:20;48104:7;48092:11;:20::i;:::-;47996:116;;;;;;;;;;48124:15;48141:23;48166:12;48182:68;48194:7;48203:4;48209:10;48221;48233:4;48239:10;:8;:10::i;48182:68::-;-1:-1:-1;;;;;48281:15:0;;;;;;:7;:15;;;;;;48123:127;;-1:-1:-1;48123:127:0;;-1:-1:-1;48123:127:0;-1:-1:-1;48281:28:0;;48301:7;48281:19;:28::i;:::-;-1:-1:-1;;;;;48263:15:0;;;;;;:7;:15;;;;;;;;:46;;;;48338:7;:15;;;;:28;;48358:7;48338:19;:28::i;:::-;-1:-1:-1;;;;;48320:15:0;;;;;;;:7;:15;;;;;;:46;;;;48398:18;;;;;;;:39;;48421:15;48398:22;:39::i;:::-;-1:-1:-1;;;;;48377:18:0;;;;;;:7;:18;;;;;:60;48451:26;48466:10;48451:14;:26::i;:::-;48488:29;48506:10;48488:17;:29::i;:::-;48528:17;48540:4;48528:11;:17::i;:::-;48556:23;48568:4;48574;48556:11;:23::i;:::-;48612:9;-1:-1:-1;;;;;48595:44:0;48604:6;-1:-1:-1;;;;;48595:44:0;;48623:15;48595:44;;;;;;;;;;;;;;;;;;47894:753;;;;;;;;;;;:::o;47113:773::-;47214:23;47239:12;47253:18;47273;47293:12;47309:20;47321:7;47309:11;:20::i;:::-;47213:116;;;;;;;;;;47341:15;47358:23;47383:12;47399:68;47411:7;47420:4;47426:10;47438;47450:4;47456:10;:8;:10::i;47399:68::-;-1:-1:-1;;;;;47498:15:0;;;;;;:7;:15;;;;;;47340:127;;-1:-1:-1;47340:127:0;;-1:-1:-1;47340:127:0;-1:-1:-1;47498:28:0;;47340:127;47498:19;:28::i;:::-;-1:-1:-1;;;;;47480:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;47558:18;;;;;:7;:18;;;;;:39;;47581:15;47558:22;:39::i;:::-;-1:-1:-1;;;;;47537:18:0;;;;;;:7;:18;;;;;;;;:60;;;;47629:7;:18;;;;:39;;47652:15;47629:22;:39::i;46408:697::-;46507:23;46532:12;46546:18;46566;46586:12;46602:20;46614:7;46602:11;:20::i;:::-;46506:116;;;;;;;;;;46634:15;46651:23;46676:12;46692:68;46704:7;46713:4;46719:10;46731;46743:4;46749:10;:8;:10::i;46692:68::-;-1:-1:-1;;;;;46799:15:0;;;;;;:7;:15;;;;;;46633:127;;-1:-1:-1;46633:127:0;;-1:-1:-1;46633:127:0;-1:-1:-1;46799:28:0;;46633:127;46799:19;:28::i;34202:821::-;34305:23;34330:12;34344:18;34364;34384:12;34400:20;34412:7;34400:11;:20::i;:::-;34304:116;;;;;;;;;;34432:15;34449:23;34474:12;34490:68;34502:7;34511:4;34517:10;34529;34541:4;34547:10;:8;:10::i;34490:68::-;-1:-1:-1;;;;;34589:15:0;;;;;;:7;:15;;;;;;34431:127;;-1:-1:-1;34431:127:0;;-1:-1:-1;34431:127:0;-1:-1:-1;34589:28:0;;34609:7;34589:19;:28::i;:::-;-1:-1:-1;;;;;34571:15:0;;;;;;:7;:15;;;;;;;;:46;;;;34646:7;:15;;;;:28;;34666:7;34646:19;:28::i;40543:209::-;40597:15;;40587:7;:25;40639:21;;40623:13;:37;40687:21;;40671:13;:37;40729:15;;40719:7;:25;40543:209::o;38430:355::-;38493:19;38516:10;:8;:10::i;:::-;38493:33;-1:-1:-1;38537:18:0;38558:27;:10;38493:33;38558:14;:27::i;:::-;38637:4;38621:22;;;;:7;:22;;;;;;38537:48;;-1:-1:-1;38621:38:0;;38537:48;38621:26;:38::i;:::-;38612:4;38596:22;;;;:7;:22;;;;;;;;:63;;;;38673:11;:26;;;;;;38670:107;;;38755:4;38739:22;;;;:7;:22;;;;;;:38;;38766:10;38739:26;:38::i;:::-;38730:4;38714:22;;;;:7;:22;;;;;:63;38670:107;38430:355;;;:::o;39159:312::-;39213:19;39236:10;:8;:10::i;:::-;39213:33;-1:-1:-1;39257:12:0;39272:21;:4;39213:33;39272:8;:21::i;:::-;39335:11;;-1:-1:-1;;;;;39335:11:0;39327:20;;;;:7;:20;;;;;;39257:36;;-1:-1:-1;39327:30:0;;39257:36;39327:24;:30::i;:::-;39312:11;;;-1:-1:-1;;;;;39312:11:0;;;39304:20;;;;:7;:20;;;;;;;;:53;;;;39383:11;;;;;39371:24;;:11;:24;;;;;;;39368:95;;;39441:11;;-1:-1:-1;;;;;39441:11:0;39433:20;;;;:7;:20;;;;;;:30;;39458:4;39433:24;:30::i;:::-;39418:11;;-1:-1:-1;;;;;39418:11:0;39410:20;;;;:7;:20;;;;;:53;39159:312;;;:::o;36314:147::-;36392:7;;:17;;36404:4;36392:11;:17::i;:::-;36382:7;:27;36433:10;;:20;;36448:4;36433:14;:20::i;:::-;36420:10;:33;-1:-1:-1;;36314:147:0:o

Swarm Source

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