ETH Price: $2,639.12 (+0.12%)
Gas: 2 Gwei

Token

TheBorg.eth.link (BORG)
 

Overview

Max Total Supply

700,000 BORG

Holders

280 (0.00%)

Total Transfers

-

Market

Price

$0.08 @ 0.000029 ETH (+0.02%)

Onchain Market Cap

$53,145.70

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The BORG Token (BORG) has assimilated multiple profit mechanisms to create one collective.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BORG

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-12-22
*/

/*
    *****************************************
    * BORG v1.3 - Resistance Is Futile ******
    *****************************************
    * https://TheBorg.eth.link **************
    * https://t.me/BORG_ResistanceIsFutile **
    *****************************************
*/

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

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

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

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

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

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

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

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


/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * // importANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}



/**
 * @dev 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) {
        // This method relies in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @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 Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */

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



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



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

abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor () internal {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}


contract BORG is IERC20, Ownable, ReentrancyGuard {

    using SafeMath for uint256;
    
    mapping (address => mapping (address => uint256)) private _allowances;
    bool transferPaused = true;
    string private _name = "TheBorg.eth.link";
    string private _symbol = "BORG";
    uint8 private _decimals = 18;
  
    IUniswapV2Router02 public constant uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    address public immutable uniswapV2Pair;
    address public _burnPool = 0x000000000000000000000000000000000000dEaD;
    address public presale; 
    mapping (address => uint256) private _aOwned;
    mapping (address => uint256) private _tOwned;

    mapping (address => bool) private _isExcluded;
    address[] private _excluded;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private constant _tTotal = 70 * 10**4 * 10**18;
    uint256 private _aTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;


    uint8 public feeDecimals;
    uint32 public feePercentage;
    uint256 public minTokensBeforeAddToLP;
    uint256 feeDivider = 9999999999999999999999999;

    uint256 internal _minimumSupply; 
    uint256 public _totalBurnedTokens;
    uint256 public _totalBurnedLpTokens;
    uint256 public _balanceOfLpTokens; 
    
    bool public inSwapAndAbsorb;
    bool public swapAndAbsorbEnabled;

    event FeeUpdated(uint8 feeDecimals, uint32 feePercentage);
    event MinTokensBeforeAddToLPUpdated(uint256 minTokensBeforeAddToLP);
    event SwapAndAbsorbEnabledUpdated(bool enabled);
    event SwapAndAbsorb(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    modifier lockTheAbsorption {
        inSwapAndAbsorb = true;
        _;
        inSwapAndAbsorb = false;
    }

    constructor(
        uint8 _feeDecimals,
        uint32 _feePercentage,
        uint256 _minTokensBeforeAddToLP,
        bool _swapAndAbsorbEnabled,
        address _presale)public {
        // Internal Assimilate creation, minting it directly to the deployer
        // deployer needs to then seed the pair with some liquidity
       _aOwned[_msgSender()] = _aTotal;
        presale = _presale;

        // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory())
            .createPair(address(this), uniswapV2Router.WETH());

        // set the rest of the contract variables

        updateFee(_feeDecimals, _feePercentage);
        updateMinTokensBeforeAddToLP(_minTokensBeforeAddToLP);
        updateSwapAndAbsorbEnabled(_swapAndAbsorbEnabled);
        emit Transfer(address(0), _msgSender(), _tTotal);
    }



    /**
     * @dev Returns the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return _tTotal;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view override returns (uint256) {
         if (_isExcluded[account]) return _tOwned[account];
        return tokenFromAllocation(_aOwned[account]);
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal {
        if (transferPaused){
           
          if (to == address(uniswapV2Pair) || to == address(uniswapV2Router) || to == address(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f)){
            revert(); // IUniswapV2Factory address
        }
     }
        // 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 & absorb if sender is the uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));
        uint256 tokensToLock = calcTokenFee(
            amount,
            feeDecimals,
            feePercentage
        );
        if (from == presale) tokensToLock = 0;
        bool overMinTokenBalance = contractTokenBalance >= minTokensBeforeAddToLP;
        bool interactWithUniswap = to == uniswapV2Pair; 
        if (
            overMinTokenBalance &&
            !inSwapAndAbsorb &&
            interactWithUniswap &&
            swapAndAbsorbEnabled &&
            from != presale
        ) {
            swapAndAbsorb(contractTokenBalance);
  }
    if (tokensToLock > 0){
        if (_isExcluded[from] && !_isExcluded[to]) {
             _transferFromExcluded(from, address(this), tokensToLock);
        } else if (!_isExcluded[from] && _isExcluded[to]) {
             _transferToExcluded(from, address(this), tokensToLock);
        } else if (!_isExcluded[from] && !_isExcluded[to]) {
            _transferStandard(from, address(this), tokensToLock);
        } else if (_isExcluded[from] && _isExcluded[to]) {
            _transferBothExcluded(from, address(this), tokensToLock);
        } else {
            _transferStandard(from, address(this), tokensToLock);
        }
    }


        // take the fee and send those tokens to this contract address
        // and then send the remainder of tokens to original recipient
        uint256 tokensToTransfer = amount.sub(tokensToLock);
        if (_isExcluded[from] && !_isExcluded[to]) {
            _transferFromExcluded(from, to, tokensToTransfer);
        } else if (!_isExcluded[from] && _isExcluded[to]) {
            _transferToExcluded(from, to, tokensToTransfer);
        } else if (!_isExcluded[from] && !_isExcluded[to]) {
            _transferStandard(from, to, tokensToTransfer);
        } else if (_isExcluded[from] && _isExcluded[to]) {
            _transferBothExcluded(from, to, tokensToTransfer);
        } else {
            _transferStandard(from, to, tokensToTransfer);
        }
        
    }
    
    function unPauseTransferForever() external nonReentrant {
        require (msg.sender == presale, "Only the presale contract can call this");
        transferPaused = false;
    }
 

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }



    function minimumSupply() external view returns (uint256){ 
        return _minimumSupply;
    }
    
    
    /*
        override the internal _transfer function so that we can
        take the fee, and conditionally do the swap + liquditiy
    */
    
    function swapAndAbsorb(uint256 contractTokenBalance) private lockTheAbsorption {
        // split the contract balance into halves
        uint256 half = contractTokenBalance.div(2);
        uint256 otherHalf = contractTokenBalance.sub(half);

        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the liquidity event include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;

        // swap tokens for ETH
        swapTokensForEth(half); // <- breaks the ETH -> ABS swap when swap+absorb is triggered

        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance.sub(initialBalance);

        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);
        

        emit SwapAndAbsorb(half, newBalance, otherHalf);
    }

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

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

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

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

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

    function updateFeesAndSwapsEnabled(uint8 absFeeDecimals, uint32 absFeePercentage, uint256 absFeeDivider, bool _enabled)
        public
        onlyOwner
        nonReentrant
    {
        require(absFeeDivider >= 5, "The fee cannot be more than 5%");
        require(absFeeDivider <= 1000, "The fee cannot be less than 0.1%"); 
        require(absFeePercentage <= 15, "The fee cannot be more than 15%");
        feeDivider = absFeeDivider;
        feeDecimals = absFeeDecimals;
        feePercentage = absFeePercentage;
        emit FeeUpdated(absFeeDecimals, absFeePercentage);
        
        if (swapAndAbsorbEnabled != _enabled){
        swapAndAbsorbEnabled = _enabled;
        emit SwapAndAbsorbEnabledUpdated(_enabled);
        }
       
    }

    /*
        calculates a percentage of tokens to hold as the fee
    */
    function calcTokenFee(
        uint256 _amount,
        uint8 _feeDecimals,
        uint32 _feePercentage
    ) public pure returns (uint256 locked) {
        locked = _amount.mul(_feePercentage).div(
            10**(uint256(_feeDecimals) + 2)
        );
    }

    receive() external payable {}

    ///
    /// Ownership adjustments
    ///

    function updateFee(uint8 _feeDecimals, uint32 _feePercentage)
        public
        onlyOwner
        nonReentrant
    {
        require(_feePercentage <= 15, "The fee can't be more than 15%");
        feeDecimals = _feeDecimals;
        feePercentage = _feePercentage;
        emit FeeUpdated(_feeDecimals, _feePercentage);
    }

    function updateMinTokensBeforeAddToLP(uint256 _minTokensBeforeAddToLP)
        public
        onlyOwner
        nonReentrant
    {
        minTokensBeforeAddToLP = _minTokensBeforeAddToLP;
        emit MinTokensBeforeAddToLPUpdated(_minTokensBeforeAddToLP);
    }

    function updateSwapAndAbsorbEnabled(bool _enabled) public onlyOwner nonReentrant {
        swapAndAbsorbEnabled = _enabled;
        emit SwapAndAbsorbEnabledUpdated(_enabled);
    }

    function burnLiq(address _token, address _to, uint256 _amount) public onlyOwner nonReentrant {
        require(_to != address(0),"ERC20 transfer to zero address");
        
        IUniswapV2ERC20 token = IUniswapV2ERC20(_token);
        _totalBurnedLpTokens = _totalBurnedLpTokens.sub(_amount);
        
        token.transfer(_burnPool, _amount);
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        (uint256 aAmount, uint256 aTransferAmount, uint256 aFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);
        _aOwned[sender] = _aOwned[sender].sub(aAmount);
        _aOwned[recipient] = _aOwned[recipient].add(aTransferAmount);       
        _allocationFee(aFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 aAmount, uint256 aTransferAmount, uint256 aFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);
        _aOwned[sender] = _aOwned[sender].sub(aAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _aOwned[recipient] = _aOwned[recipient].add(aTransferAmount);
        _allocationFee(aFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 aAmount, uint256 aTransferAmount, uint256 aFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _aOwned[sender] = _aOwned[sender].sub(aAmount);
        _aOwned[recipient] = _aOwned[recipient].add(aTransferAmount);   
        _allocationFee(aFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 aAmount, uint256 aTransferAmount, uint256 aFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _aOwned[sender] = _aOwned[sender].sub(aAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _aOwned[recipient] = _aOwned[recipient].add(aTransferAmount);        
        _allocationFee(aFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _allocationFee(uint256 aFee, uint256 tFee) private {
        _aTotal = _aTotal.sub(aFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee) = __getTValues(tAmount);
        uint256 currentRate =  _getRate();
        (uint256 aAmount, uint256 aTransferAmount, uint256 aFee) = _getAValues(tAmount, tFee, currentRate);
        return (aAmount, aTransferAmount, aFee, tTransferAmount, tFee);
    }
    
    function changeFeeDivider(uint256 n) external onlyOwner {
        require(n >= 5, "The fee can't be more than 20%");
        // require(n <= 1000, "The fee can't be less than 0.1%");
        feeDivider = n;
    }
    
    function __getTValues(uint256 tAmount) private view returns (uint256, uint256) {
        uint256 tFee = tAmount.div(feeDivider);
        uint256 tTransferAmount = tAmount.sub(tFee);
        return (tTransferAmount, tFee);
    }

    function _getAValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 aAmount = tAmount.mul(currentRate);
        uint256 aFee = tFee.mul(currentRate);
        uint256 aTransferAmount = aAmount.sub(aFee);
        return (aAmount, aTransferAmount, aFee);
    }

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

    function _getCurrentSupply() private view returns(uint256, uint256) {
        uint256 aSupply = _aTotal;
        uint256 tSupply = _tTotal;      
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_aOwned[_excluded[i]] > aSupply || _tOwned[_excluded[i]] > tSupply) return (_aTotal, _tTotal);
            aSupply = aSupply.sub(_aOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (aSupply < _aTotal.div(_tTotal)) return (_aTotal, _tTotal);
        return (aSupply, tSupply);
    }
    function allocate(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 aAmount,,,,) = _getValues(tAmount);
        _aOwned[sender] = _aOwned[sender].sub(aAmount);
        _aTotal = _aTotal.sub(aAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

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

    function tokenFromAllocation(uint256 aAmount) public view returns(uint256) {
        require(aAmount <= _aTotal, "Amount must be less than the total allocations");
        uint256 currentRate =  _getRate();
        return aAmount.div(currentRate);
    }

    function excludeAccount(address account) external onlyOwner nonReentrant {
        require(!_isExcluded[account], "Account is already excluded");
        if(_aOwned[account] > 0) {
            _tOwned[account] = tokenFromAllocation(_aOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

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

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint8","name":"_feeDecimals","type":"uint8"},{"internalType":"uint32","name":"_feePercentage","type":"uint32"},{"internalType":"uint256","name":"_minTokensBeforeAddToLP","type":"uint256"},{"internalType":"bool","name":"_swapAndAbsorbEnabled","type":"bool"},{"internalType":"address","name":"_presale","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"feeDecimals","type":"uint8"},{"indexed":false,"internalType":"uint32","name":"feePercentage","type":"uint32"}],"name":"FeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeAddToLP","type":"uint256"}],"name":"MinTokensBeforeAddToLPUpdated","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":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndAbsorb","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndAbsorbEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_balanceOfLpTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_burnPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalBurnedLpTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalBurnedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"allocate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"allocationFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burnLiq","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint8","name":"_feeDecimals","type":"uint8"},{"internalType":"uint32","name":"_feePercentage","type":"uint32"}],"name":"calcTokenFee","outputs":[{"internalType":"uint256","name":"locked","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"n","type":"uint256"}],"name":"changeFeeDivider","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeDecimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feePercentage","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"inSwapAndAbsorb","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minTokensBeforeAddToLP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minimumSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndAbsorbEnabled","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":"aAmount","type":"uint256"}],"name":"tokenFromAllocation","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":"unPauseTransferForever","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_feeDecimals","type":"uint8"},{"internalType":"uint32","name":"_feePercentage","type":"uint32"}],"name":"updateFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"absFeeDecimals","type":"uint8"},{"internalType":"uint32","name":"absFeePercentage","type":"uint32"},{"internalType":"uint256","name":"absFeeDivider","type":"uint256"},{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"updateFeesAndSwapsEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minTokensBeforeAddToLP","type":"uint256"}],"name":"updateMinTokensBeforeAddToLP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"updateSwapAndAbsorbEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526001600360006101000a81548160ff0219169083151502179055506040518060400160405280601081526020017f546865426f72672e6574682e6c696e6b00000000000000000000000000000000815250600490805190602001906200006c92919062000b9a565b506040518060400160405280600481526020017f424f52470000000000000000000000000000000000000000000000000000000081525060059080519060200190620000ba92919062000b9a565b506012600660006101000a81548160ff021916908360ff16021790555061dead600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555069943b1377290cbd800000600019816200013057fe5b0660001903600c556a0845951614014849ffffff6010553480156200015457600080fd5b5060405162005f9338038062005f93833981810160405260a08110156200017a57600080fd5b8101908080519060200190929190805190602001909291908051906020019092919080519060200190929190805190602001909291905050506000620001c5620005e760201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35060018081905550600c546008600062000281620005e760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200035b57600080fd5b505afa15801562000370573d6000803e3d6000fd5b505050506040513d60208110156200038757600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200040f57600080fd5b505afa15801562000424573d6000803e3d6000fd5b505050506040513d60208110156200043b57600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b158015620004b657600080fd5b505af1158015620004cb573d6000803e3d6000fd5b505050506040513d6020811015620004e257600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250506200053b8585620005ef60201b60201c565b6200054c836200084f60201b60201c565b6200055d82620009ea60201b60201c565b6200056d620005e760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef69943b1377290cbd8000006040518082815260200191505060405180910390a3505050505062000c40565b600033905090565b620005ff620005e760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620006c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600260015414156200073a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600f8163ffffffff161115620007c0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f546865206665652063616e2774206265206d6f7265207468616e20313525000081525060200191505060405180910390fd5b81600e60006101000a81548160ff021916908360ff16021790555080600e60016101000a81548163ffffffff021916908363ffffffff1602179055507f460fa919625630f734b5d86356a2511f134b6df313c793ca09e0399de8d933a08282604051808360ff1681526020018263ffffffff1681526020019250505060405180910390a1600180819055505050565b6200085f620005e760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000920576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600260015414156200099a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260018190555080600f819055507fa19cd73a84349518e5c3d968935fb1f202c6eb5b69967184ad5013bbf24af63b816040518082815260200191505060405180910390a16001808190555050565b620009fa620005e760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000abb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6002600154141562000b35576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260018190555080601560016101000a81548160ff0219169083151502179055507ff6048fff6212fd7a65ba15a0d33e029f1e2297a028e8951998aea1d8ead7b30a8160405180821515815260200191505060405180910390a16001808190555050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000bdd57805160ff191683800117855562000c0e565b8280016001018555821562000c0e579182015b8281111562000c0d57825182559160200191906001019062000bf0565b5b50905062000c1d919062000c21565b5090565b5b8082111562000c3c57600081600090555060010162000c22565b5090565b60805160601c61532b62000c68600039806113b952806133ee5280613580525061532b6000f3fe60806040526004361061023f5760003560e01c806390ca796b1161012e578063d5cbed9b116100ab578063f2fde38b1161006f578063f2fde38b14610cf1578063f51d4df514610d42578063f84354f114610d6d578063fdea8e0b14610dbe578063ff7c479014610dff57610246565b8063d5cbed9b14610b73578063dd62ed3e14610ba0578063e3c2fa1114610c25578063eaa93e7814610c52578063f2cc0c1814610ca057610246565b8063a457c2d7116100f2578063a457c2d7146109d7578063a9059cbb14610a48578063bdb2637014610ab9578063c44b75b014610af6578063cc0f178614610b4557610246565b806390ca796b1461088557806391fe5a64146108c057806395d89b41146108eb5780639fd3677f1461097b578063a001ecdd146109a657610246565b806349bd5a5e116101bc578063689dc62d11610180578063689dc62d1461072257806370a082311461079d578063715018a6146108025780637ede036d146108195780638da5cb5b1461084457610246565b806349bd5a5e1461059f5780634a45b7d9146105e057806354bf93591461063b5780635a15ba24146106a7578063647af8e61461070b57610246565b806328d2bc911161020357806328d2bc9114610449578063313ce5671461048a5780633793d4b5146104b857806339509351146104f35780634183d35e1461056457610246565b806306fdde031461024b578063095ea7b3146102db5780631694505e1461034c57806318160ddd1461038d57806323b872dd146103b857610246565b3661024657005b600080fd5b34801561025757600080fd5b50610260610e2a565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102a0578082015181840152602081019050610285565b50505050905090810190601f1680156102cd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102e757600080fd5b50610334600480360360408110156102fe57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ecc565b60405180821515815260200191505060405180910390f35b34801561035857600080fd5b50610361610eea565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561039957600080fd5b506103a2610f02565b6040518082815260200191505060405180910390f35b3480156103c457600080fd5b50610431600480360360608110156103db57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f14565b60405180821515815260200191505060405180910390f35b34801561045557600080fd5b5061045e610fed565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561049657600080fd5b5061049f611013565b604051808260ff16815260200191505060405180910390f35b3480156104c457600080fd5b506104f1600480360360208110156104db57600080fd5b810190808035906020019092919050505061102a565b005b3480156104ff57600080fd5b5061054c6004803603604081101561051657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611173565b60405180821515815260200191505060405180910390f35b34801561057057600080fd5b5061059d6004803603602081101561058757600080fd5b8101908080359060200190929190505050611226565b005b3480156105ab57600080fd5b506105b46113b7565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156105ec57600080fd5b506106256004803603604081101561060357600080fd5b81019080803590602001909291908035151590602001909291905050506113db565b6040518082815260200191505060405180910390f35b34801561064757600080fd5b506106916004803603606081101561065e57600080fd5b8101908080359060200190929190803560ff169060200190929190803563ffffffff169060200190929190505050611498565b6040518082815260200191505060405180910390f35b3480156106b357600080fd5b50610709600480360360808110156106ca57600080fd5b81019080803560ff169060200190929190803563ffffffff169060200190929190803590602001909291908035151590602001909291905050506114d7565b005b34801561071757600080fd5b50610720611892565b005b34801561072e57600080fd5b5061079b6004803603606081101561074557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506119dd565b005b3480156107a957600080fd5b506107ec600480360360208110156107c057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cc5565b6040518082815260200191505060405180910390f35b34801561080e57600080fd5b50610817611db0565b005b34801561082557600080fd5b5061082e611f36565b6040518082815260200191505060405180910390f35b34801561085057600080fd5b50610859611f40565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561089157600080fd5b506108be600480360360208110156108a857600080fd5b8101908080359060200190929190505050611f69565b005b3480156108cc57600080fd5b506108d56120f9565b6040518082815260200191505060405180910390f35b3480156108f757600080fd5b506109006120ff565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610940578082015181840152602081019050610925565b50505050905090810190601f16801561096d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561098757600080fd5b506109906121a1565b6040518082815260200191505060405180910390f35b3480156109b257600080fd5b506109bb6121a7565b604051808263ffffffff16815260200191505060405180910390f35b3480156109e357600080fd5b50610a30600480360360408110156109fa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506121bd565b60405180821515815260200191505060405180910390f35b348015610a5457600080fd5b50610aa160048036036040811015610a6b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061228a565b60405180821515815260200191505060405180910390f35b348015610ac557600080fd5b50610af460048036036020811015610adc57600080fd5b810190808035151590602001909291905050506122a8565b005b348015610b0257600080fd5b50610b2f60048036036020811015610b1957600080fd5b810190808035906020019092919050505061244e565b6040518082815260200191505060405180910390f35b348015610b5157600080fd5b50610b5a6124d2565b604051808260ff16815260200191505060405180910390f35b348015610b7f57600080fd5b50610b886124e5565b60405180821515815260200191505060405180910390f35b348015610bac57600080fd5b50610c0f60048036036040811015610bc357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506124f8565b6040518082815260200191505060405180910390f35b348015610c3157600080fd5b50610c3a61257f565b60405180821515815260200191505060405180910390f35b348015610c5e57600080fd5b50610c9e60048036036040811015610c7557600080fd5b81019080803560ff169060200190929190803563ffffffff169060200190929190505050612592565b005b348015610cac57600080fd5b50610cef60048036036020811015610cc357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127e7565b005b348015610cfd57600080fd5b50610d4060048036036020811015610d1457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612b89565b005b348015610d4e57600080fd5b50610d57612d94565b6040518082815260200191505060405180910390f35b348015610d7957600080fd5b50610dbc60048036036020811015610d9057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612d9a565b005b348015610dca57600080fd5b50610dd36131ac565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610e0b57600080fd5b50610e146131d2565b6040518082815260200191505060405180910390f35b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ec25780601f10610e9757610100808354040283529160200191610ec2565b820191906000526020600020905b815481529060010190602001808311610ea557829003601f168201915b5050505050905090565b6000610ee0610ed96131d8565b84846131e0565b6001905092915050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b600069943b1377290cbd800000905090565b6000610f218484846133d7565b610fe284610f2d6131d8565b610fdd8560405180606001604052806028815260200161523260289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f936131d8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c7c9092919063ffffffff16565b6131e0565b600190509392505050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900460ff16905090565b6110326131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6005811015611169576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f546865206665652063616e2774206265206d6f7265207468616e20323025000081525060200191505060405180910390fd5b8060108190555050565b600061121c6111806131d8565b8461121785600260006111916131d8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d3c90919063ffffffff16565b6131e0565b6001905092915050565b61122e6131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415611367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260018190555080600f819055507fa19cd73a84349518e5c3d968935fb1f202c6eb5b69967184ad5013bbf24af63b816040518082815260200191505060405180910390a16001808190555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600069943b1377290cbd80000083111561145d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b8161147c57600061146d84613dc4565b50505050905080915050611492565b600061148784613dc4565b505050915050809150505b92915050565b60006114ce60028460ff1601600a0a6114c08463ffffffff1687613e1c90919063ffffffff16565b613ea290919063ffffffff16565b90509392505050565b6114df6131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461159f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026001819055506005821015611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f546865206665652063616e6e6f74206265206d6f7265207468616e203525000081525060200191505060405180910390fd5b6103e882111561170f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f546865206665652063616e6e6f74206265206c657373207468616e20302e312581525060200191505060405180910390fd5b600f8363ffffffff16111561178c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f546865206665652063616e6e6f74206265206d6f7265207468616e203135250081525060200191505060405180910390fd5b8160108190555083600e60006101000a81548160ff021916908360ff16021790555082600e60016101000a81548163ffffffff021916908363ffffffff1602179055507f460fa919625630f734b5d86356a2511f134b6df313c793ca09e0399de8d933a08484604051808360ff1681526020018263ffffffff1681526020019250505060405180910390a1801515601560019054906101000a900460ff161515146118855780601560016101000a81548160ff0219169083151502179055507ff6048fff6212fd7a65ba15a0d33e029f1e2297a028e8951998aea1d8ead7b30a8160405180821515815260200191505060405180910390a15b6001808190555050505050565b6002600154141561190b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806152aa6027913960400191505060405180910390fd5b6000600360006101000a81548160ff02191690831515021790555060018081905550565b6119e56131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611aa5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415611b1e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bc9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4552433230207472616e7366657220746f207a65726f2061646472657373000081525060200191505060405180910390fd5b6000839050611be382601354613eec90919063ffffffff16565b6013819055508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015611c7c57600080fd5b505af1158015611c90573d6000803e3d6000fd5b505050506040513d6020811015611ca657600080fd5b8101908080519060200190929190505050505060018081905550505050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611d6057600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611dab565b611da8600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461244e565b90505b919050565b611db86131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e78576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000601154905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000611f736131d8565b9050600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061527e602c913960400191505060405180910390fd5b600061202383613dc4565b50505050905061207b81600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eec90919063ffffffff16565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506120d381600c54613eec90919063ffffffff16565b600c819055506120ee83600d54613d3c90919063ffffffff16565b600d81905550505050565b60125481565b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156121975780601f1061216c57610100808354040283529160200191612197565b820191906000526020600020905b81548152906001019060200180831161217a57829003601f168201915b5050505050905090565b600f5481565b600e60019054906101000a900463ffffffff1681565b60006122806121ca6131d8565b8461227b856040518060600160405280602581526020016152d160259139600260006121f46131d8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c7c9092919063ffffffff16565b6131e0565b6001905092915050565b600061229e6122976131d8565b84846133d7565b6001905092915050565b6122b06131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612370576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600260015414156123e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260018190555080601560016101000a81548160ff0219169083151502179055507ff6048fff6212fd7a65ba15a0d33e029f1e2297a028e8951998aea1d8ead7b30a8160405180821515815260200191505060405180910390a16001808190555050565b6000600c548211156124ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806151e3602e913960400191505060405180910390fd5b60006124b5613f36565b90506124ca8184613ea290919063ffffffff16565b915050919050565b600e60009054906101000a900460ff1681565b601560019054906101000a900460ff1681565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b601560009054906101000a900460ff1681565b61259a6131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461265a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600260015414156126d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600f8163ffffffff161115612758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f546865206665652063616e2774206265206d6f7265207468616e20313525000081525060200191505060405180910390fd5b81600e60006101000a81548160ff021916908360ff16021790555080600e60016101000a81548163ffffffff021916908363ffffffff1602179055507f460fa919625630f734b5d86356a2511f134b6df313c793ca09e0399de8d933a08282604051808360ff1681526020018263ffffffff1681526020019250505060405180910390a1600180819055505050565b6127ef6131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415612928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156129f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612ac457612a80600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461244e565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600b819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001808190555050565b612b916131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c51576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612cd7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061519b6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b612da26131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e62576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415612edb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612fa2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b600b805490508110156131a1578173ffffffffffffffffffffffffffffffffffffffff16600b8281548110612fd657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561319457600b6001600b80549050038154811061303257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b828154811061306a57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600b80548061315a57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556131a1565b8080600101915050612fa5565b506001808190555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061525a6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806151c16022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600360009054906101000a900460ff16156134da577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614806134855750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b806134cf5750735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156134d957600080fd5b5b60006134e530611cc5565b9050600061351583600e60009054906101000a900460ff16600e60019054906101000a900463ffffffff16611498565b9050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561357257600090505b6000600f54831015905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161490508180156135e95750601560009054906101000a900460ff16155b80156135f25750805b801561360a5750601560019054906101000a900460ff165b80156136645750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614155b156136735761367284613f61565b5b600083111561396c57600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561371f5750600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156137345761372f873085614043565b61396b565b600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156137d75750600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156137ec576137e7873085614296565b61396a565b600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156138905750600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156138a5576138a08730856144e9565b613969565b600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156139475750600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561395c576139578730856146a7565b613968565b6139678730856144e9565b5b5b5b5b5b60006139818487613eec90919063ffffffff16565b9050600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613a265750600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613a3b57613a36888883614043565b613c72565b600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613ade5750600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613af357613aee888883614296565b613c71565b600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613b975750600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613bac57613ba78888836144e9565b613c70565b600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613c4e5750600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613c6357613c5e8888836146a7565b613c6f565b613c6e8888836144e9565b5b5b5b5b5050505050505050565b6000838311158290613d29576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613cee578082015181840152602081019050613cd3565b50505050905090810190601f168015613d1b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015613dba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000613dd88861498f565b915091506000613de6613f36565b90506000806000613df88c86866149cf565b92509250925082828288889a509a509a509a509a5050505050505091939590929450565b600080831415613e2f5760009050613e9c565b6000828402905082848281613e4057fe5b0414613e97576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806152116021913960400191505060405180910390fd5b809150505b92915050565b6000613ee483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614a2d565b905092915050565b6000613f2e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613c7c565b905092915050565b6000806000613f43614af3565b91509150613f5a8183613ea290919063ffffffff16565b9250505090565b6001601560006101000a81548160ff0219169083151502179055506000613f92600283613ea290919063ffffffff16565b90506000613fa98284613eec90919063ffffffff16565b90506000479050613fb983614da4565b6000613fce8247613eec90919063ffffffff16565b9050613fda838261502e565b7f4ef2142970fd06465a66d49cd924fdd56a52bae776dc706128dfeb6a49ce97c784828560405180848152602001838152602001828152602001935050505060405180910390a1505050506000601560006101000a81548160ff02191690831515021790555050565b600080600080600061405486613dc4565b945094509450945094506140b086600960008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eec90919063ffffffff16565b600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061414585600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eec90919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506141da84600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d3c90919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506142278382615160565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060008060006142a786613dc4565b9450945094509450945061430385600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eec90919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061439882600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d3c90919063ffffffff16565b600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061442d84600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d3c90919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061447a8382615160565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060008060006144fa86613dc4565b9450945094509450945061455685600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eec90919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506145eb84600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d3c90919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506146388382615160565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060008060006146b886613dc4565b9450945094509450945061471486600960008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eec90919063ffffffff16565b600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506147a985600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eec90919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061483e82600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d3c90919063ffffffff16565b600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506148d384600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d3c90919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506149208382615160565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060006149a960105485613ea290919063ffffffff16565b905060006149c08286613eec90919063ffffffff16565b90508082935093505050915091565b6000806000806149e88588613e1c90919063ffffffff16565b905060006149ff8688613e1c90919063ffffffff16565b90506000614a168284613eec90919063ffffffff16565b905082818395509550955050505093509350939050565b60008083118290614ad9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614a9e578082015181840152602081019050614a83565b50505050905090810190601f168015614acb5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581614ae557fe5b049050809150509392505050565b6000806000600c549050600069943b1377290cbd800000905060005b600b80549050811015614d57578260086000600b8481548110614b2e57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180614c1557508160096000600b8481548110614bad57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15614c3457600c5469943b1377290cbd80000094509450505050614da0565b614cbd60086000600b8481548110614c4857fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613eec90919063ffffffff16565b9250614d4860096000600b8481548110614cd357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613eec90919063ffffffff16565b91508080600101915050614b0f565b50614d7769943b1377290cbd800000600c54613ea290919063ffffffff16565b821015614d9757600c5469943b1377290cbd800000935093505050614da0565b81819350935050505b9091565b6060600267ffffffffffffffff81118015614dbe57600080fd5b50604051908082528060200260200182016040528015614ded5781602001602082028036833780820191505090505b5090503081600081518110614dfe57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015614e9257600080fd5b505afa158015614ea6573d6000803e3d6000fd5b505050506040513d6020811015614ebc57600080fd5b810190808051906020019092919050505081600181518110614eda57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614f3330737a250d5630b4cf539739df2c5dacb4c659f2488d846131e0565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015614fe9578082015181840152602081019050614fce565b505050509050019650505050505050600060405180830381600087803b15801561501257600080fd5b505af1158015615026573d6000803e3d6000fd5b505050505050565b61504d30737a250d5630b4cf539739df2c5dacb4c659f2488d846131e0565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b15801561510957600080fd5b505af115801561511d573d6000803e3d6000fd5b50505050506040513d606081101561513457600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b61517582600c54613eec90919063ffffffff16565b600c8190555061519081600d54613d3c90919063ffffffff16565b600d81905550505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e2074686520746f74616c20616c6c6f636174696f6e73536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e4f6e6c79207468652070726573616c6520636f6e74726163742063616e2063616c6c207468697345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122024fcda84d8611b4affbbf4a54b8186faecfad801d87d5fb1967491f56f1b746b64736f6c634300060c00330000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000001e84800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e9828045632b32e2aac7f3a4c1511c0d8965576c

Deployed Bytecode

0x60806040526004361061023f5760003560e01c806390ca796b1161012e578063d5cbed9b116100ab578063f2fde38b1161006f578063f2fde38b14610cf1578063f51d4df514610d42578063f84354f114610d6d578063fdea8e0b14610dbe578063ff7c479014610dff57610246565b8063d5cbed9b14610b73578063dd62ed3e14610ba0578063e3c2fa1114610c25578063eaa93e7814610c52578063f2cc0c1814610ca057610246565b8063a457c2d7116100f2578063a457c2d7146109d7578063a9059cbb14610a48578063bdb2637014610ab9578063c44b75b014610af6578063cc0f178614610b4557610246565b806390ca796b1461088557806391fe5a64146108c057806395d89b41146108eb5780639fd3677f1461097b578063a001ecdd146109a657610246565b806349bd5a5e116101bc578063689dc62d11610180578063689dc62d1461072257806370a082311461079d578063715018a6146108025780637ede036d146108195780638da5cb5b1461084457610246565b806349bd5a5e1461059f5780634a45b7d9146105e057806354bf93591461063b5780635a15ba24146106a7578063647af8e61461070b57610246565b806328d2bc911161020357806328d2bc9114610449578063313ce5671461048a5780633793d4b5146104b857806339509351146104f35780634183d35e1461056457610246565b806306fdde031461024b578063095ea7b3146102db5780631694505e1461034c57806318160ddd1461038d57806323b872dd146103b857610246565b3661024657005b600080fd5b34801561025757600080fd5b50610260610e2a565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102a0578082015181840152602081019050610285565b50505050905090810190601f1680156102cd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102e757600080fd5b50610334600480360360408110156102fe57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ecc565b60405180821515815260200191505060405180910390f35b34801561035857600080fd5b50610361610eea565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561039957600080fd5b506103a2610f02565b6040518082815260200191505060405180910390f35b3480156103c457600080fd5b50610431600480360360608110156103db57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f14565b60405180821515815260200191505060405180910390f35b34801561045557600080fd5b5061045e610fed565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561049657600080fd5b5061049f611013565b604051808260ff16815260200191505060405180910390f35b3480156104c457600080fd5b506104f1600480360360208110156104db57600080fd5b810190808035906020019092919050505061102a565b005b3480156104ff57600080fd5b5061054c6004803603604081101561051657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611173565b60405180821515815260200191505060405180910390f35b34801561057057600080fd5b5061059d6004803603602081101561058757600080fd5b8101908080359060200190929190505050611226565b005b3480156105ab57600080fd5b506105b46113b7565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156105ec57600080fd5b506106256004803603604081101561060357600080fd5b81019080803590602001909291908035151590602001909291905050506113db565b6040518082815260200191505060405180910390f35b34801561064757600080fd5b506106916004803603606081101561065e57600080fd5b8101908080359060200190929190803560ff169060200190929190803563ffffffff169060200190929190505050611498565b6040518082815260200191505060405180910390f35b3480156106b357600080fd5b50610709600480360360808110156106ca57600080fd5b81019080803560ff169060200190929190803563ffffffff169060200190929190803590602001909291908035151590602001909291905050506114d7565b005b34801561071757600080fd5b50610720611892565b005b34801561072e57600080fd5b5061079b6004803603606081101561074557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506119dd565b005b3480156107a957600080fd5b506107ec600480360360208110156107c057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cc5565b6040518082815260200191505060405180910390f35b34801561080e57600080fd5b50610817611db0565b005b34801561082557600080fd5b5061082e611f36565b6040518082815260200191505060405180910390f35b34801561085057600080fd5b50610859611f40565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561089157600080fd5b506108be600480360360208110156108a857600080fd5b8101908080359060200190929190505050611f69565b005b3480156108cc57600080fd5b506108d56120f9565b6040518082815260200191505060405180910390f35b3480156108f757600080fd5b506109006120ff565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610940578082015181840152602081019050610925565b50505050905090810190601f16801561096d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561098757600080fd5b506109906121a1565b6040518082815260200191505060405180910390f35b3480156109b257600080fd5b506109bb6121a7565b604051808263ffffffff16815260200191505060405180910390f35b3480156109e357600080fd5b50610a30600480360360408110156109fa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506121bd565b60405180821515815260200191505060405180910390f35b348015610a5457600080fd5b50610aa160048036036040811015610a6b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061228a565b60405180821515815260200191505060405180910390f35b348015610ac557600080fd5b50610af460048036036020811015610adc57600080fd5b810190808035151590602001909291905050506122a8565b005b348015610b0257600080fd5b50610b2f60048036036020811015610b1957600080fd5b810190808035906020019092919050505061244e565b6040518082815260200191505060405180910390f35b348015610b5157600080fd5b50610b5a6124d2565b604051808260ff16815260200191505060405180910390f35b348015610b7f57600080fd5b50610b886124e5565b60405180821515815260200191505060405180910390f35b348015610bac57600080fd5b50610c0f60048036036040811015610bc357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506124f8565b6040518082815260200191505060405180910390f35b348015610c3157600080fd5b50610c3a61257f565b60405180821515815260200191505060405180910390f35b348015610c5e57600080fd5b50610c9e60048036036040811015610c7557600080fd5b81019080803560ff169060200190929190803563ffffffff169060200190929190505050612592565b005b348015610cac57600080fd5b50610cef60048036036020811015610cc357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127e7565b005b348015610cfd57600080fd5b50610d4060048036036020811015610d1457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612b89565b005b348015610d4e57600080fd5b50610d57612d94565b6040518082815260200191505060405180910390f35b348015610d7957600080fd5b50610dbc60048036036020811015610d9057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612d9a565b005b348015610dca57600080fd5b50610dd36131ac565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610e0b57600080fd5b50610e146131d2565b6040518082815260200191505060405180910390f35b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ec25780601f10610e9757610100808354040283529160200191610ec2565b820191906000526020600020905b815481529060010190602001808311610ea557829003601f168201915b5050505050905090565b6000610ee0610ed96131d8565b84846131e0565b6001905092915050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b600069943b1377290cbd800000905090565b6000610f218484846133d7565b610fe284610f2d6131d8565b610fdd8560405180606001604052806028815260200161523260289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f936131d8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c7c9092919063ffffffff16565b6131e0565b600190509392505050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900460ff16905090565b6110326131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6005811015611169576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f546865206665652063616e2774206265206d6f7265207468616e20323025000081525060200191505060405180910390fd5b8060108190555050565b600061121c6111806131d8565b8461121785600260006111916131d8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d3c90919063ffffffff16565b6131e0565b6001905092915050565b61122e6131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415611367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260018190555080600f819055507fa19cd73a84349518e5c3d968935fb1f202c6eb5b69967184ad5013bbf24af63b816040518082815260200191505060405180910390a16001808190555050565b7f00000000000000000000000031c75845da107f68dc745759be9c6ddead5ee2f081565b600069943b1377290cbd80000083111561145d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b8161147c57600061146d84613dc4565b50505050905080915050611492565b600061148784613dc4565b505050915050809150505b92915050565b60006114ce60028460ff1601600a0a6114c08463ffffffff1687613e1c90919063ffffffff16565b613ea290919063ffffffff16565b90509392505050565b6114df6131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461159f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026001819055506005821015611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f546865206665652063616e6e6f74206265206d6f7265207468616e203525000081525060200191505060405180910390fd5b6103e882111561170f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f546865206665652063616e6e6f74206265206c657373207468616e20302e312581525060200191505060405180910390fd5b600f8363ffffffff16111561178c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f546865206665652063616e6e6f74206265206d6f7265207468616e203135250081525060200191505060405180910390fd5b8160108190555083600e60006101000a81548160ff021916908360ff16021790555082600e60016101000a81548163ffffffff021916908363ffffffff1602179055507f460fa919625630f734b5d86356a2511f134b6df313c793ca09e0399de8d933a08484604051808360ff1681526020018263ffffffff1681526020019250505060405180910390a1801515601560019054906101000a900460ff161515146118855780601560016101000a81548160ff0219169083151502179055507ff6048fff6212fd7a65ba15a0d33e029f1e2297a028e8951998aea1d8ead7b30a8160405180821515815260200191505060405180910390a15b6001808190555050505050565b6002600154141561190b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806152aa6027913960400191505060405180910390fd5b6000600360006101000a81548160ff02191690831515021790555060018081905550565b6119e56131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611aa5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415611b1e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bc9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4552433230207472616e7366657220746f207a65726f2061646472657373000081525060200191505060405180910390fd5b6000839050611be382601354613eec90919063ffffffff16565b6013819055508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015611c7c57600080fd5b505af1158015611c90573d6000803e3d6000fd5b505050506040513d6020811015611ca657600080fd5b8101908080519060200190929190505050505060018081905550505050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611d6057600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611dab565b611da8600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461244e565b90505b919050565b611db86131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e78576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000601154905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000611f736131d8565b9050600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061527e602c913960400191505060405180910390fd5b600061202383613dc4565b50505050905061207b81600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eec90919063ffffffff16565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506120d381600c54613eec90919063ffffffff16565b600c819055506120ee83600d54613d3c90919063ffffffff16565b600d81905550505050565b60125481565b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156121975780601f1061216c57610100808354040283529160200191612197565b820191906000526020600020905b81548152906001019060200180831161217a57829003601f168201915b5050505050905090565b600f5481565b600e60019054906101000a900463ffffffff1681565b60006122806121ca6131d8565b8461227b856040518060600160405280602581526020016152d160259139600260006121f46131d8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c7c9092919063ffffffff16565b6131e0565b6001905092915050565b600061229e6122976131d8565b84846133d7565b6001905092915050565b6122b06131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612370576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600260015414156123e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260018190555080601560016101000a81548160ff0219169083151502179055507ff6048fff6212fd7a65ba15a0d33e029f1e2297a028e8951998aea1d8ead7b30a8160405180821515815260200191505060405180910390a16001808190555050565b6000600c548211156124ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806151e3602e913960400191505060405180910390fd5b60006124b5613f36565b90506124ca8184613ea290919063ffffffff16565b915050919050565b600e60009054906101000a900460ff1681565b601560019054906101000a900460ff1681565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b601560009054906101000a900460ff1681565b61259a6131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461265a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600260015414156126d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600f8163ffffffff161115612758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f546865206665652063616e2774206265206d6f7265207468616e20313525000081525060200191505060405180910390fd5b81600e60006101000a81548160ff021916908360ff16021790555080600e60016101000a81548163ffffffff021916908363ffffffff1602179055507f460fa919625630f734b5d86356a2511f134b6df313c793ca09e0399de8d933a08282604051808360ff1681526020018263ffffffff1681526020019250505060405180910390a1600180819055505050565b6127ef6131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415612928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156129f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612ac457612a80600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461244e565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600b819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001808190555050565b612b916131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c51576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612cd7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061519b6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b612da26131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e62576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415612edb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612fa2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b600b805490508110156131a1578173ffffffffffffffffffffffffffffffffffffffff16600b8281548110612fd657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561319457600b6001600b80549050038154811061303257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b828154811061306a57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600b80548061315a57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556131a1565b8080600101915050612fa5565b506001808190555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061525a6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806151c16022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600360009054906101000a900460ff16156134da577f00000000000000000000000031c75845da107f68dc745759be9c6ddead5ee2f073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614806134855750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b806134cf5750735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156134d957600080fd5b5b60006134e530611cc5565b9050600061351583600e60009054906101000a900460ff16600e60019054906101000a900463ffffffff16611498565b9050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561357257600090505b6000600f54831015905060007f00000000000000000000000031c75845da107f68dc745759be9c6ddead5ee2f073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161490508180156135e95750601560009054906101000a900460ff16155b80156135f25750805b801561360a5750601560019054906101000a900460ff165b80156136645750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614155b156136735761367284613f61565b5b600083111561396c57600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561371f5750600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156137345761372f873085614043565b61396b565b600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156137d75750600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156137ec576137e7873085614296565b61396a565b600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156138905750600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156138a5576138a08730856144e9565b613969565b600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156139475750600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561395c576139578730856146a7565b613968565b6139678730856144e9565b5b5b5b5b5b60006139818487613eec90919063ffffffff16565b9050600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613a265750600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613a3b57613a36888883614043565b613c72565b600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613ade5750600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613af357613aee888883614296565b613c71565b600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613b975750600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613bac57613ba78888836144e9565b613c70565b600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613c4e5750600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613c6357613c5e8888836146a7565b613c6f565b613c6e8888836144e9565b5b5b5b5b5050505050505050565b6000838311158290613d29576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613cee578082015181840152602081019050613cd3565b50505050905090810190601f168015613d1b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015613dba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000613dd88861498f565b915091506000613de6613f36565b90506000806000613df88c86866149cf565b92509250925082828288889a509a509a509a509a5050505050505091939590929450565b600080831415613e2f5760009050613e9c565b6000828402905082848281613e4057fe5b0414613e97576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806152116021913960400191505060405180910390fd5b809150505b92915050565b6000613ee483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614a2d565b905092915050565b6000613f2e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613c7c565b905092915050565b6000806000613f43614af3565b91509150613f5a8183613ea290919063ffffffff16565b9250505090565b6001601560006101000a81548160ff0219169083151502179055506000613f92600283613ea290919063ffffffff16565b90506000613fa98284613eec90919063ffffffff16565b90506000479050613fb983614da4565b6000613fce8247613eec90919063ffffffff16565b9050613fda838261502e565b7f4ef2142970fd06465a66d49cd924fdd56a52bae776dc706128dfeb6a49ce97c784828560405180848152602001838152602001828152602001935050505060405180910390a1505050506000601560006101000a81548160ff02191690831515021790555050565b600080600080600061405486613dc4565b945094509450945094506140b086600960008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eec90919063ffffffff16565b600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061414585600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eec90919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506141da84600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d3c90919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506142278382615160565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060008060006142a786613dc4565b9450945094509450945061430385600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eec90919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061439882600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d3c90919063ffffffff16565b600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061442d84600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d3c90919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061447a8382615160565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060008060006144fa86613dc4565b9450945094509450945061455685600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eec90919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506145eb84600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d3c90919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506146388382615160565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060008060006146b886613dc4565b9450945094509450945061471486600960008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eec90919063ffffffff16565b600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506147a985600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eec90919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061483e82600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d3c90919063ffffffff16565b600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506148d384600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d3c90919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506149208382615160565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060006149a960105485613ea290919063ffffffff16565b905060006149c08286613eec90919063ffffffff16565b90508082935093505050915091565b6000806000806149e88588613e1c90919063ffffffff16565b905060006149ff8688613e1c90919063ffffffff16565b90506000614a168284613eec90919063ffffffff16565b905082818395509550955050505093509350939050565b60008083118290614ad9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614a9e578082015181840152602081019050614a83565b50505050905090810190601f168015614acb5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581614ae557fe5b049050809150509392505050565b6000806000600c549050600069943b1377290cbd800000905060005b600b80549050811015614d57578260086000600b8481548110614b2e57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180614c1557508160096000600b8481548110614bad57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15614c3457600c5469943b1377290cbd80000094509450505050614da0565b614cbd60086000600b8481548110614c4857fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613eec90919063ffffffff16565b9250614d4860096000600b8481548110614cd357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613eec90919063ffffffff16565b91508080600101915050614b0f565b50614d7769943b1377290cbd800000600c54613ea290919063ffffffff16565b821015614d9757600c5469943b1377290cbd800000935093505050614da0565b81819350935050505b9091565b6060600267ffffffffffffffff81118015614dbe57600080fd5b50604051908082528060200260200182016040528015614ded5781602001602082028036833780820191505090505b5090503081600081518110614dfe57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015614e9257600080fd5b505afa158015614ea6573d6000803e3d6000fd5b505050506040513d6020811015614ebc57600080fd5b810190808051906020019092919050505081600181518110614eda57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614f3330737a250d5630b4cf539739df2c5dacb4c659f2488d846131e0565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015614fe9578082015181840152602081019050614fce565b505050509050019650505050505050600060405180830381600087803b15801561501257600080fd5b505af1158015615026573d6000803e3d6000fd5b505050505050565b61504d30737a250d5630b4cf539739df2c5dacb4c659f2488d846131e0565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b15801561510957600080fd5b505af115801561511d573d6000803e3d6000fd5b50505050506040513d606081101561513457600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b61517582600c54613eec90919063ffffffff16565b600c8190555061519081600d54613d3c90919063ffffffff16565b600d81905550505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e2074686520746f74616c20616c6c6f636174696f6e73536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e4f6e6c79207468652070726573616c6520636f6e74726163742063616e2063616c6c207468697345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122024fcda84d8611b4affbbf4a54b8186faecfad801d87d5fb1967491f56f1b746b64736f6c634300060c0033

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

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000001e84800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e9828045632b32e2aac7f3a4c1511c0d8965576c

-----Decoded View---------------
Arg [0] : _feeDecimals (uint8): 0
Arg [1] : _feePercentage (uint32): 1
Arg [2] : _minTokensBeforeAddToLP (uint256): 2000000
Arg [3] : _swapAndAbsorbEnabled (bool): False
Arg [4] : _presale (address): 0xE9828045632b32E2aaC7f3a4C1511C0d8965576C

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [2] : 00000000000000000000000000000000000000000000000000000000001e8480
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 000000000000000000000000e9828045632b32e2aac7f3a4c1511c0d8965576c


Deployed Bytecode Sourcemap

26664:23181:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29486:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31667:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26996:115;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30561:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32310:321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27163:69;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30413:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;46361:216;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33040:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;42832:270;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27118:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;48293:434;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42119:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41264:769;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36783:182;;;;;;;;;;;;;:::i;:::-;;43302:361;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30719:199;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2388:148;;;;;;;;;;;;;:::i;:::-;;38881:97;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1746:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;47908:377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27870:33;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29688:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27732:37;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27698:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33761:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31131:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;43110:184;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;48735:257;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27667:24;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28033:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31369:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27999:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;42484:340;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;49000:343;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;2691:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27910:35;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;49351:489;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27239:22;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27952:33;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29486:83;29523:13;29556:5;29549:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29486:83;:::o;31667:169::-;31750:4;31767:39;31776:12;:10;:12::i;:::-;31790:7;31799:6;31767:8;:39::i;:::-;31824:4;31817:11;;31667:169;;;;:::o;26996:115::-;27068:42;26996:115;:::o;30561:95::-;30614:7;27548:19;30634:14;;30561:95;:::o;32310:321::-;32416:4;32433:36;32443:6;32451:9;32462:6;32433:9;:36::i;:::-;32480:121;32489:6;32497:12;:10;:12::i;:::-;32511:89;32549:6;32511:89;;;;;;;;;;;;;;;;;:11;:19;32523:6;32511:19;;;;;;;;;;;;;;;:33;32531:12;:10;:12::i;:::-;32511:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;32480:8;:121::i;:::-;32619:4;32612:11;;32310:321;;;;;:::o;27163:69::-;;;;;;;;;;;;;:::o;30413:83::-;30454:5;30479:9;;;;;;;;;;;30472:16;;30413:83;:::o;46361:216::-;1968:12;:10;:12::i;:::-;1958:22;;:6;;;;;;;;;;:22;;;1950:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46441:1:::1;46436;:6;;46428:49;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;46568:1;46555:10;:14;;;;46361:216:::0;:::o;33040:218::-;33128:4;33145:83;33154:12;:10;:12::i;:::-;33168:7;33177:50;33216:10;33177:11;:25;33189:12;:10;:12::i;:::-;33177:25;;;;;;;;;;;;;;;:34;33203:7;33177:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;33145:8;:83::i;:::-;33246:4;33239:11;;33040:218;;;;:::o;42832:270::-;1968:12;:10;:12::i;:::-;1958:22;;:6;;;;;;;;;;:22;;;1950:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25707:1:::1;26313:7;;:19;;26305:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;25707:1;26446:7;:18;;;;43001:23:::2;42976:22;:48;;;;43040:54;43070:23;43040:54;;;;;;;;;;;;;;;;;;25663:1:::1;26625:7:::0;:22:::1;;;;42832:270:::0;:::o;27118:38::-;;;:::o;48293:434::-;48383:7;27548:19;48411:7;:18;;48403:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48481:17;48476:244;;48516:15;48539:19;48550:7;48539:10;:19::i;:::-;48515:43;;;;;;48580:7;48573:14;;;;;48476:244;48622:23;48652:19;48663:7;48652:10;:19::i;:::-;48620:51;;;;;;48693:15;48686:22;;;48293:434;;;;;:::o;42119:269::-;42256:14;42292:88;42367:1;42351:12;42343:21;;:25;42338:2;:31;42292:27;42304:14;42292:27;;:7;:11;;:27;;;;:::i;:::-;:31;;:88;;;;:::i;:::-;42283:97;;42119:269;;;;;:::o;41264:769::-;1968:12;:10;:12::i;:::-;1958:22;;:6;;;;;;;;;;:22;;;1950:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25707:1:::1;26313:7;;:19;;26305:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;25707:1;26446:7;:18;;;;41482:1:::2;41465:13;:18;;41457:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;41554:4;41537:13;:21;;41529:66;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;41635:2;41615:16;:22;;;;41607:66;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;41697:13;41684:10;:26;;;;41735:14;41721:11;;:28;;;;;;;;;;;;;;;;;;41776:16;41760:13;;:32;;;;;;;;;;;;;;;;;;41808:44;41819:14;41835:16;41808:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;41901:8;41877:32;;:20;;;;;;;;;;;:32;;;41873:144;;41944:8;41921:20;;:31;;;;;;;;;;;;;;;;;;41968:37;41996:8;41968:37;;;;;;;;;;;;;;;;;;;;41873:144;25663:1:::1;26625:7:::0;:22:::1;;;;41264:769:::0;;;;:::o;36783:182::-;25707:1;26313:7;;:19;;26305:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25707:1;26446:7;:18;;;;36873:7:::1;;;;;;;;;;;36859:21;;:10;:21;;;36850:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36952:5;36935:14;;:22;;;;;;;;;;;;;;;;;;25663:1:::0;26625:7;:22;;;;36783:182::o;43302:361::-;1968:12;:10;:12::i;:::-;1958:22;;:6;;;;;;;;;;:22;;;1950:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25707:1:::1;26313:7;;:19;;26305:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;25707:1;26446:7;:18;;;;43429:1:::2;43414:17;;:3;:17;;;;43406:59;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;43486:21;43526:6;43486:47;;43567:33;43592:7;43567:20;;:24;;:33;;;;:::i;:::-;43544:20;:56;;;;43621:5;:14;;;43636:9;;;;;;;;;;;43647:7;43621:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;26477:1;25663::::1;26625:7:::0;:22:::1;;;;43302:361:::0;;;:::o;30719:199::-;30785:7;30810:11;:20;30822:7;30810:20;;;;;;;;;;;;;;;;;;;;;;;;;30806:49;;;30839:7;:16;30847:7;30839:16;;;;;;;;;;;;;;;;30832:23;;;;30806:49;30873:37;30893:7;:16;30901:7;30893:16;;;;;;;;;;;;;;;;30873:19;:37::i;:::-;30866:44;;30719:199;;;;:::o;2388:148::-;1968:12;:10;:12::i;:::-;1958:22;;:6;;;;;;;;;;:22;;;1950:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2495:1:::1;2458:40;;2479:6;::::0;::::1;;;;;;;;2458:40;;;;;;;;;;;;2526:1;2509:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;2388:148::o:0;38881:97::-;38929:7;38956:14;;38949:21;;38881:97;:::o;1746:79::-;1784:7;1811:6;;;;;;;;;;;1804:13;;1746:79;:::o;47908:377::-;47961:14;47978:12;:10;:12::i;:::-;47961:29;;48010:11;:19;48022:6;48010:19;;;;;;;;;;;;;;;;;;;;;;;;;48009:20;48001:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48090:15;48113:19;48124:7;48113:10;:19::i;:::-;48089:43;;;;;;48161:28;48181:7;48161;:15;48169:6;48161:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;48143:7;:15;48151:6;48143:15;;;;;;;;;;;;;;;:46;;;;48210:20;48222:7;48210;;:11;;:20;;;;:::i;:::-;48200:7;:30;;;;48254:23;48269:7;48254:10;;:14;;:23;;;;:::i;:::-;48241:10;:36;;;;47908:377;;;:::o;27870:33::-;;;;:::o;29688:87::-;29727:13;29760:7;29753:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29688:87;:::o;27732:37::-;;;;:::o;27698:27::-;;;;;;;;;;;;;:::o;33761:269::-;33854:4;33871:129;33880:12;:10;:12::i;:::-;33894:7;33903:96;33942:15;33903:96;;;;;;;;;;;;;;;;;:11;:25;33915:12;:10;:12::i;:::-;33903:25;;;;;;;;;;;;;;;:34;33929:7;33903:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;33871:8;:129::i;:::-;34018:4;34011:11;;33761:269;;;;:::o;31131:175::-;31217:4;31234:42;31244:12;:10;:12::i;:::-;31258:9;31269:6;31234:9;:42::i;:::-;31294:4;31287:11;;31131:175;;;;:::o;43110:184::-;1968:12;:10;:12::i;:::-;1958:22;;:6;;;;;;;;;;:22;;;1950:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25707:1:::1;26313:7;;:19;;26305:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;25707:1;26446:7;:18;;;;43225:8:::2;43202:20;;:31;;;;;;;;;;;;;;;;;;43249:37;43277:8;43249:37;;;;;;;;;;;;;;;;;;;;25663:1:::1;26625:7:::0;:22:::1;;;;43110:184:::0;:::o;48735:257::-;48801:7;48840;;48829;:18;;48821:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48909:19;48932:10;:8;:10::i;:::-;48909:33;;48960:24;48972:11;48960:7;:11;;:24;;;;:::i;:::-;48953:31;;;48735:257;;;:::o;27667:24::-;;;;;;;;;;;;;:::o;28033:32::-;;;;;;;;;;;;;:::o;31369:151::-;31458:7;31485:11;:18;31497:5;31485:18;;;;;;;;;;;;;;;:27;31504:7;31485:27;;;;;;;;;;;;;;;;31478:34;;31369:151;;;;:::o;27999:27::-;;;;;;;;;;;;;:::o;42484:340::-;1968:12;:10;:12::i;:::-;1958:22;;:6;;;;;;;;;;:22;;;1950:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25707:1:::1;26313:7;;:19;;26305:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;25707:1;26446:7;:18;;;;42645:2:::2;42627:14;:20;;;;42619:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;42707:12;42693:11;;:26;;;;;;;;;;;;;;;;;;42746:14;42730:13;;:30;;;;;;;;;;;;;;;;;;42776:40;42787:12;42801:14;42776:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;25663:1:::1;26625:7:::0;:22:::1;;;;42484:340:::0;;:::o;49000:343::-;1968:12;:10;:12::i;:::-;1958:22;;:6;;;;;;;;;;:22;;;1950:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25707:1:::1;26313:7;;:19;;26305:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;25707:1;26446:7;:18;;;;49093:11:::2;:20;49105:7;49093:20;;;;;;;;;;;;;;;;;;;;;;;;;49092:21;49084:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;49178:1;49159:7;:16;49167:7;49159:16;;;;;;;;;;;;;;;;:20;49156:108;;;49215:37;49235:7;:16;49243:7;49235:16;;;;;;;;;;;;;;;;49215:19;:37::i;:::-;49196:7;:16;49204:7;49196:16;;;;;;;;;;;;;;;:56;;;;49156:108;49297:4;49274:11;:20;49286:7;49274:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;49312:9;49327:7;49312:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25663:1:::1;26625:7:::0;:22:::1;;;;49000:343:::0;:::o;2691:244::-;1968:12;:10;:12::i;:::-;1958:22;;:6;;;;;;;;;;:22;;;1950:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2800:1:::1;2780:22;;:8;:22;;;;2772:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2890:8;2861:38;;2882:6;::::0;::::1;;;;;;;;2861:38;;;;;;;;;;;;2919:8;2910:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;2691:244:::0;:::o;27910:35::-;;;;:::o;49351:489::-;1968:12;:10;:12::i;:::-;1958:22;;:6;;;;;;;;;;:22;;;1950:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25707:1:::1;26313:7;;:19;;26305:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;25707:1;26446:7;:18;;;;49443:11:::2;:20;49455:7;49443:20;;;;;;;;;;;;;;;;;;;;;;;;;49435:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;49511:9;49506:327;49530:9;:16;;;;49526:1;:20;49506:327;;;49588:7;49572:23;;:9;49582:1;49572:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;49568:254;;;49631:9;49660:1;49641:9;:16;;;;:20;49631:31;;;;;;;;;;;;;;;;;;;;;;;;;49616:9;49626:1;49616:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;49700:1;49681:7;:16;49689:7;49681:16;;;;;;;;;;;;;;;:20;;;;49743:5;49720:11;:20;49732:7;49720:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;49767:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49801:5;;49568:254;49548:3;;;;;;;49506:327;;;;25663:1:::1;26625:7:::0;:22:::1;;;;49351:489:::0;:::o;27239:22::-;;;;;;;;;;;;;:::o;27952:33::-;;;;:::o;384:106::-;437:15;472:10;465:17;;384:106;:::o;37406:346::-;37525:1;37508:19;;:5;:19;;;;37500:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37606:1;37587:21;;:7;:21;;;;37579:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37690:6;37660:11;:18;37672:5;37660:18;;;;;;;;;;;;;;;:27;37679:7;37660:27;;;;;;;;;;;;;;;:36;;;;37728:7;37712:32;;37721:5;37712:32;;;37737:6;37712:32;;;;;;;;;;;;;;;;;;37406:346;;;:::o;34034:2737::-;34153:14;;;;;;;;;;;34149:245;;;34212:13;34198:28;;:2;:28;;;:62;;;;27068:42;34230:30;;:2;:30;;;34198:62;:123;;;;34278:42;34264:57;;:2;:57;;;34198:123;34194:192;;;34337:8;;;34194:192;34149:245;34689:28;34720:24;34738:4;34720:9;:24::i;:::-;34689:55;;34755:20;34778:98;34805:6;34826:11;;;;;;;;;;;34852:13;;;;;;;;;;;34778:12;:98::i;:::-;34755:121;;34899:7;;;;;;;;;;;34891:15;;:4;:15;;;34887:37;;;34923:1;34908:16;;34887:37;34935:24;34986:22;;34962:20;:46;;34935:73;;35019:24;35052:13;35046:19;;:2;:19;;;35019:46;;35095:19;:52;;;;;35132:15;;;;;;;;;;;35131:16;35095:52;:88;;;;;35164:19;35095:88;:125;;;;;35200:20;;;;;;;;;;;35095:125;:157;;;;;35245:7;;;;;;;;;;;35237:15;;:4;:15;;;;35095:157;35077:243;;;35279:35;35293:20;35279:13;:35::i;:::-;35077:243;35345:1;35330:12;:16;35326:642;;;35362:11;:17;35374:4;35362:17;;;;;;;;;;;;;;;;;;;;;;;;;:37;;;;;35384:11;:15;35396:2;35384:15;;;;;;;;;;;;;;;;;;;;;;;;;35383:16;35362:37;35358:603;;;35417:56;35439:4;35453;35460:12;35417:21;:56::i;:::-;35358:603;;;35496:11;:17;35508:4;35496:17;;;;;;;;;;;;;;;;;;;;;;;;;35495:18;:37;;;;;35517:11;:15;35529:2;35517:15;;;;;;;;;;;;;;;;;;;;;;;;;35495:37;35491:470;;;35550:54;35570:4;35584;35591:12;35550:19;:54::i;:::-;35491:470;;;35627:11;:17;35639:4;35627:17;;;;;;;;;;;;;;;;;;;;;;;;;35626:18;:38;;;;;35649:11;:15;35661:2;35649:15;;;;;;;;;;;;;;;;;;;;;;;;;35648:16;35626:38;35622:339;;;35681:52;35699:4;35713;35720:12;35681:17;:52::i;:::-;35622:339;;;35755:11;:17;35767:4;35755:17;;;;;;;;;;;;;;;;;;;;;;;;;:36;;;;;35776:11;:15;35788:2;35776:15;;;;;;;;;;;;;;;;;;;;;;;;;35755:36;35751:210;;;35808:56;35830:4;35844;35851:12;35808:21;:56::i;:::-;35751:210;;;35897:52;35915:4;35929;35936:12;35897:17;:52::i;:::-;35751:210;35622:339;35491:470;35358:603;35326:642;36126:24;36153;36164:12;36153:6;:10;;:24;;;;:::i;:::-;36126:51;;36192:11;:17;36204:4;36192:17;;;;;;;;;;;;;;;;;;;;;;;;;:37;;;;;36214:11;:15;36226:2;36214:15;;;;;;;;;;;;;;;;;;;;;;;;;36213:16;36192:37;36188:566;;;36246:49;36268:4;36274:2;36278:16;36246:21;:49::i;:::-;36188:566;;;36318:11;:17;36330:4;36318:17;;;;;;;;;;;;;;;;;;;;;;;;;36317:18;:37;;;;;36339:11;:15;36351:2;36339:15;;;;;;;;;;;;;;;;;;;;;;;;;36317:37;36313:441;;;36371:47;36391:4;36397:2;36401:16;36371:19;:47::i;:::-;36313:441;;;36441:11;:17;36453:4;36441:17;;;;;;;;;;;;;;;;;;;;;;;;;36440:18;:38;;;;;36463:11;:15;36475:2;36463:15;;;;;;;;;;;;;;;;;;;;;;;;;36462:16;36440:38;36436:318;;;36495:45;36513:4;36519:2;36523:16;36495:17;:45::i;:::-;36436:318;;;36562:11;:17;36574:4;36562:17;;;;;;;;;;;;;;;;;;;;;;;;;:36;;;;;36583:11;:15;36595:2;36583:15;;;;;;;;;;;;;;;;;;;;;;;;;36562:36;36558:196;;;36615:49;36637:4;36643:2;36647:16;36615:21;:49::i;:::-;36558:196;;;36697:45;36715:4;36721:2;36725:16;36697:17;:45::i;:::-;36558:196;36436:318;36313:441;36188:566;34034:2737;;;;;;;;:::o;4687:192::-;4773:7;4806:1;4801;:6;;4809:12;4793:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4833:9;4849:1;4845;:5;4833:17;;4870:1;4863:8;;;4687:192;;;;;:::o;3784:181::-;3842:7;3862:9;3878:1;3874;:5;3862:17;;3903:1;3898;:6;;3890:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3956:1;3949:8;;;3784:181;;;;:::o;45937:412::-;45996:7;46005;46014;46023;46032;46053:23;46078:12;46094:21;46107:7;46094:12;:21::i;:::-;46052:63;;;;46126:19;46149:10;:8;:10::i;:::-;46126:33;;46171:15;46188:23;46213:12;46229:39;46241:7;46250:4;46256:11;46229;:39::i;:::-;46170:98;;;;;;46287:7;46296:15;46313:4;46319:15;46336:4;46279:62;;;;;;;;;;;;;;;;45937:412;;;;;;;:::o;5138:471::-;5196:7;5446:1;5441;:6;5437:47;;;5471:1;5464:8;;;;5437:47;5496:9;5512:1;5508;:5;5496:17;;5541:1;5536;5532;:5;;;;;;:10;5524:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5600:1;5593:8;;;5138:471;;;;;:::o;6085:132::-;6143:7;6170:39;6174:1;6177;6170:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6163:46;;6085:132;;;;:::o;4248:136::-;4306:7;4333:43;4337:1;4340;4333:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4326:50;;4248:136;;;;:::o;47170:163::-;47211:7;47232:15;47249;47268:19;:17;:19::i;:::-;47231:56;;;;47305:20;47317:7;47305;:11;;:20;;;;:::i;:::-;47298:27;;;;47170:163;:::o;39148:984::-;28457:4;28439:15;;:22;;;;;;;;;;;;;;;;;;39289:12:::1;39304:27;39329:1;39304:20;:24;;:27;;;;:::i;:::-;39289:42;;39342:17;39362:30;39387:4;39362:20;:24;;:30;;;;:::i;:::-;39342:50;;39670:22;39695:21;39670:46;;39761:22;39778:4;39761:16;:22::i;:::-;39907:18;39928:41;39954:14;39928:21;:25;;:41;;;;:::i;:::-;39907:62;;40019:35;40032:9;40043:10;40019:12;:35::i;:::-;40082:42;40096:4;40102:10;40114:9;40082:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28472:1;;;;28502:5:::0;28484:15;;:23;;;;;;;;;;;;;;;;;;39148:984;:::o;44663:512::-;44766:15;44783:23;44808:12;44822:23;44847:12;44863:19;44874:7;44863:10;:19::i;:::-;44765:117;;;;;;;;;;44911:28;44931:7;44911;:15;44919:6;44911:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;44893:7;:15;44901:6;44893:15;;;;;;;;;;;;;;;:46;;;;44968:28;44988:7;44968;:15;44976:6;44968:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;44950:7;:15;44958:6;44950:15;;;;;;;;;;;;;;;:46;;;;45028:39;45051:15;45028:7;:18;45036:9;45028:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;45007:7;:18;45015:9;45007:18;;;;;;;;;;;;;;;:60;;;;45081:26;45096:4;45102;45081:14;:26::i;:::-;45140:9;45123:44;;45132:6;45123:44;;;45151:15;45123:44;;;;;;;;;;;;;;;;;;44663:512;;;;;;;;:::o;44134:521::-;44235:15;44252:23;44277:12;44291:23;44316:12;44332:19;44343:7;44332:10;:19::i;:::-;44234:117;;;;;;;;;;44380:28;44400:7;44380;:15;44388:6;44380:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;44362:7;:15;44370:6;44362:15;;;;;;;;;;;;;;;:46;;;;44440:39;44463:15;44440:7;:18;44448:9;44440:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;44419:7;:18;44427:9;44419:18;;;;;;;;;;;;;;;:60;;;;44511:39;44534:15;44511:7;:18;44519:9;44511:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;44490:7;:18;44498:9;44490:18;;;;;;;;;;;;;;;:60;;;;44561:26;44576:4;44582;44561:14;:26::i;:::-;44620:9;44603:44;;44612:6;44603:44;;;44631:15;44603:44;;;;;;;;;;;;;;;;;;44134:521;;;;;;;;:::o;43671:455::-;43770:15;43787:23;43812:12;43826:23;43851:12;43867:19;43878:7;43867:10;:19::i;:::-;43769:117;;;;;;;;;;43915:28;43935:7;43915;:15;43923:6;43915:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;43897:7;:15;43905:6;43897:15;;;;;;;;;;;;;;;:46;;;;43975:39;43998:15;43975:7;:18;43983:9;43975:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;43954:7;:18;43962:9;43954:18;;;;;;;;;;;;;;;:60;;;;44032:26;44047:4;44053;44032:14;:26::i;:::-;44091:9;44074:44;;44083:6;44074:44;;;44102:15;44074:44;;;;;;;;;;;;;;;;;;43671:455;;;;;;;;:::o;45183:588::-;45286:15;45303:23;45328:12;45342:23;45367:12;45383:19;45394:7;45383:10;:19::i;:::-;45285:117;;;;;;;;;;45431:28;45451:7;45431;:15;45439:6;45431:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;45413:7;:15;45421:6;45413:15;;;;;;;;;;;;;;;:46;;;;45488:28;45508:7;45488;:15;45496:6;45488:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;45470:7;:15;45478:6;45470:15;;;;;;;;;;;;;;;:46;;;;45548:39;45571:15;45548:7;:18;45556:9;45548:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;45527:7;:18;45535:9;45527:18;;;;;;;;;;;;;;;:60;;;;45619:39;45642:15;45619:7;:18;45627:9;45619:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;45598:7;:18;45606:9;45598:18;;;;;;;;;;;;;;;:60;;;;45677:26;45692:4;45698;45677:14;:26::i;:::-;45736:9;45719:44;;45728:6;45719:44;;;45747:15;45719:44;;;;;;;;;;;;;;;;;;45183:588;;;;;;;;:::o;46589:231::-;46650:7;46659;46679:12;46694:23;46706:10;;46694:7;:11;;:23;;;;:::i;:::-;46679:38;;46728:23;46754:17;46766:4;46754:7;:11;;:17;;;;:::i;:::-;46728:43;;46790:15;46807:4;46782:30;;;;;;46589:231;;;:::o;46828:334::-;46923:7;46932;46941;46961:15;46979:24;46991:11;46979:7;:11;;:24;;;;:::i;:::-;46961:42;;47014:12;47029:21;47038:11;47029:4;:8;;:21;;;;:::i;:::-;47014:36;;47061:23;47087:17;47099:4;47087:7;:11;;:17;;;;:::i;:::-;47061:43;;47123:7;47132:15;47149:4;47115:39;;;;;;;;;46828:334;;;;;;;:::o;6713:278::-;6799:7;6831:1;6827;:5;6834:12;6819:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6858:9;6874:1;6870;:5;;;;;;6858:17;;6982:1;6975:8;;;6713:278;;;;;:::o;47341:561::-;47391:7;47400;47420:15;47438:7;;47420:25;;47456:15;27548:19;47456:25;;47503:9;47498:289;47522:9;:16;;;;47518:1;:20;47498:289;;;47588:7;47564;:21;47572:9;47582:1;47572:12;;;;;;;;;;;;;;;;;;;;;;;;;47564:21;;;;;;;;;;;;;;;;:31;:66;;;;47623:7;47599;:21;47607:9;47617:1;47607:12;;;;;;;;;;;;;;;;;;;;;;;;;47599:21;;;;;;;;;;;;;;;;:31;47564:66;47560:97;;;47640:7;;27548:19;47632:25;;;;;;;;;47560:97;47682:34;47694:7;:21;47702:9;47712:1;47702:12;;;;;;;;;;;;;;;;;;;;;;;;;47694:21;;;;;;;;;;;;;;;;47682:7;:11;;:34;;;;:::i;:::-;47672:44;;47741:34;47753:7;:21;47761:9;47771:1;47761:12;;;;;;;;;;;;;;;;;;;;;;;;;47753:21;;;;;;;;;;;;;;;;47741:7;:11;;:34;;;;:::i;:::-;47731:44;;47540:3;;;;;;;47498:289;;;;47811:20;27548:19;47811:7;;:11;;:20;;;;:::i;:::-;47801:7;:30;47797:61;;;47841:7;;27548:19;47833:25;;;;;;;;47797:61;47877:7;47886;47869:25;;;;;;47341:561;;;:::o;40140:589::-;40266:21;40304:1;40290:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40266:40;;40335:4;40317;40322:1;40317:7;;;;;;;;;;;;;:23;;;;;;;;;;;27068:42;40361:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40351:4;40356:1;40351:7;;;;;;;;;;;;;:32;;;;;;;;;;;40396:62;40413:4;27068:42;40446:11;40396:8;:62::i;:::-;27068:42;40497:66;;;40578:11;40604:1;40648:4;40675;40695:15;40497:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40140:589;;:::o;40737:519::-;40885:62;40902:4;27068:42;40935:11;40885:8;:62::i;:::-;27068:42;40990:31;;;41029:9;41062:4;41082:11;41108:1;41151;41202:4;41222:15;40990:258;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40737:519;;:::o;45779:150::-;45860:17;45872:4;45860:7;;:11;;:17;;;;:::i;:::-;45850:7;:27;;;;45901:20;45916:4;45901:10;;:14;;:20;;;;:::i;:::-;45888:10;:33;;;;45779:150;;:::o

Swarm Source

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