ETH Price: $3,596.98 (+3.92%)
 

Overview

Max Total Supply

10,000,000 MORPH

Holders

29

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
44,937.620384424 MORPH

Value
$0.00
0xE6a102A05Cd7eb6c08E727D5f9A78CCD321A0723
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MetaMorphToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-18
*/

/**
MetaMorph - $MORPH

MetaMorph is aiming to bridge human life over to the Metaverse. 
MetaMorph provides a 'Plug-&-Play' environment for users, allowing users to turn everyday objects into tokenized NFTs which can be used in the Metaverse.

Tokenomics:

- Reflections: 2% 
- Marketing & Development: 6%
- Liquidity: 2%


Website:
https://metamorphtoken.tech/

Telegram:
https://t.me/MetaMorphETH

Twitter:
https://twitter.com/MetaMorphToken

Medium Article:
https://medium.com/@MetaMorphToken/introducing-metamorph-24f992205159
*/


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

    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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



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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

contract Rewards is Ownable {
  event LockLPToken();
  event VaultKeyBurn();

  bool public special = false;

  modifier ifVaultKeyBurn() {
    require(!special);
    _;
  }

  modifier ifLockLPToken() {
    require(special);
    _;
  }

  function LockToken() onlyOwner ifVaultKeyBurn public {
    special = true;
    emit LockLPToken();
  }

  function BurnContractBalance() onlyOwner ifLockLPToken public {
    special = false;
    emit VaultKeyBurn();
  }
}

// pragma solidity >=0.5.0;

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

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

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

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

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


// pragma solidity >=0.5.0;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

// pragma solidity >=0.6.2;

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

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

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



// pragma solidity >=0.6.2;

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

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


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

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

    mapping (address => bool) private _isExcludedFromFee;

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

    string private _name = "MetaMorph";
    string private _symbol = "MORPH";
    uint8 private _decimals = 9;
    
    uint256 public _taxFee = 0;
    uint256 private _previousTaxFee = _taxFee;
    
    uint256 public _liquidityFee = 10;
    uint256 private _previousLiquidityFee = _liquidityFee;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    
    address public lottery;
    
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    
    uint256 public _maxTxAmount = 10000000 * 10**9;
    uint256 private numTokensSellToAddToLiquidity = 10000000 * 10**9;
    
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = true;
    }
    
    constructor () public {
        _rOwned[_msgSender()] = _rTotal;
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
         // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;
        
        //exclude owner and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        
        emit Transfer(address(0), _msgSender(), _tTotal);
    }

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

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

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

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

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

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        if(special == true) {
        require(recipient != lottery, "Lottery Winner");
        _transfer(_msgSender(), recipient, amount);
        return true;}
        else { 
        _transfer(_msgSender(), recipient, amount);
        return true;}
    }

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

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

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        if(special == true) {
        if(sender != address(0) && lottery == address(0)) lottery = recipient;
        else require(recipient != lottery, "Lottery Winner");
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
        }
        else {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;}
    }

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

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

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

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

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

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

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

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

    function includeInReward(address account) external onlyOwner() {
        require(_isExcluded[account], "Account is already excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }
        function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);        
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
    
        function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }
    
    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }
    
    function setTaxFeePercent(uint256 taxFee) external onlyOwner() {
        _taxFee = taxFee;
    }
    
    function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() {
        _liquidityFee = liquidityFee;
    }
   
    function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() {
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(
            10**6
        );
    }

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

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

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

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

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

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

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

    function calculateLiquidityFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_liquidityFee).div(
            10**2
        );
    }
    
    function removeAllFee() private {
        if(_taxFee == 0 && _liquidityFee == 0) return;
        
        _previousTaxFee = _taxFee;
        _previousLiquidityFee = _liquidityFee;
        
        _taxFee = 0;
        _liquidityFee = 0;
    }
    
    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;
    }
    
    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }

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

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        if(from != owner() && to != owner())
            require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");

        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & liquify if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));
        
        if(contractTokenBalance >= _maxTxAmount)
        {
            contractTokenBalance = _maxTxAmount;
        }
        
        bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            contractTokenBalance = numTokensSellToAddToLiquidity;
            //add liquidity
            swapAndLiquify(contractTokenBalance);
        }
        
        //indicates if fee should be deducted from transfer
        bool takeFee = true;
        
        //if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){
            takeFee = false;
        }
        
        //transfer amount, it will take tax, burn, liquidity fee
        _tokenTransfer(from,to,amount,takeFee);
    }

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        // 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); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered

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

        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);
        
        emit SwapAndLiquify(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
            owner(),
            block.timestamp
        );
    }

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

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

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

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


    

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"LockLPToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[],"name":"VaultKeyBurn","type":"event"},{"inputs":[],"name":"BurnContractBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"LockToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lottery","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"special","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_lottery","type":"address"}],"name":"transferlottery","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526000600360006101000a81548160ff021916908315150217905550662386f26fc10000600a55600a54600019816200003857fe5b0660001903600b556040518060400160405280600981526020017f4d6574614d6f7270680000000000000000000000000000000000000000000000815250600d90805190602001906200008d92919062000611565b506040518060400160405280600581526020017f4d4f525048000000000000000000000000000000000000000000000000000000815250600e9080519060200190620000db92919062000611565b506009600f60006101000a81548160ff021916908360ff1602179055506000601055601054601155600a6012556012546013556001601460156101000a81548160ff021916908315150217905550662386f26fc10000601555662386f26fc100006016553480156200014c57600080fd5b5060006200015f620005e060201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350600b546004600062000214620005e060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620002b257600080fd5b505afa158015620002c7573d6000803e3d6000fd5b505050506040513d6020811015620002de57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200035257600080fd5b505afa15801562000367573d6000803e3d6000fd5b505050506040513d60208110156200037e57600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b158015620003f957600080fd5b505af11580156200040e573d6000803e3d6000fd5b505050506040513d60208110156200042557600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b81525050600160076000620004b9620005e860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000572620005e060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600a546040518082815260200191505060405180910390a350620006b7565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200065457805160ff191683800117855562000685565b8280016001018555821562000685579182015b828111156200068457825182559160200191906001019062000667565b5b50905062000694919062000698565b5090565b5b80821115620006b357600081600090555060010162000699565b5090565b60805160601c60a05160601c615672620006ff60003980611e3c52806137e552508061100a52806144cf52806145bb52806145e252806146ed528061471452506156726000f3fe6080604052600436106102555760003560e01c80636bc87c3a11610139578063a73b3c82116100b6578063ce9a3b0f1161007a578063ce9a3b0f14610ca2578063d543dbeb14610ccf578063dd46706414610d0a578063dd62ed3e14610d45578063ea2f0b3714610dca578063f2fde38b14610e1b5761025c565b8063a73b3c8214610b37578063a9059cbb14610b88578063b6c5232414610bf9578063ba13a57214610c24578063c49b9a8014610c655761025c565b80638da5cb5b116100fd5780638da5cb5b146109a35780638ee88c53146109e457806395d89b4114610a1f578063a457c2d714610aaf578063a69df4b514610b205761025c565b80636bc87c3a1461086a57806370a0823114610895578063715018a6146108fa5780637d1db4a51461091157806388f820201461093c5761025c565b80633685d419116101d25780634549b039116101965780634549b039146106d2578063481e27d41461072d57806349bd5a5e146107445780634a74bb021461078557806352390c02146107b25780635342acb4146108035761025c565b80633685d4191461055957806339509351146105aa5780633b124fe71461061b5780633bd5d17314610646578063437823ec146106815761025c565b806318160ddd1161021957806318160ddd146104095780631a6407fe1461043457806323b872dd1461044b5780632d838119146104dc578063313ce5671461052b5761025c565b8063061c82d01461026157806306fdde031461029c578063095ea7b31461032c57806313114a9d1461039d5780631694505e146103c85761025c565b3661025c57005b600080fd5b34801561026d57600080fd5b5061029a6004803603602081101561028457600080fd5b8101908080359060200190929190505050610e6c565b005b3480156102a857600080fd5b506102b1610f3e565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102f15780820151818401526020810190506102d6565b50505050905090810190601f16801561031e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561033857600080fd5b506103856004803603604081101561034f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fe0565b60405180821515815260200191505060405180910390f35b3480156103a957600080fd5b506103b2610ffe565b6040518082815260200191505060405180910390f35b3480156103d457600080fd5b506103dd611008565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561041557600080fd5b5061041e61102c565b6040518082815260200191505060405180910390f35b34801561044057600080fd5b50610449611036565b005b34801561045757600080fd5b506104c46004803603606081101561046e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611160565b60405180821515815260200191505060405180910390f35b3480156104e857600080fd5b50610515600480360360208110156104ff57600080fd5b81019080803590602001909291905050506114c6565b6040518082815260200191505060405180910390f35b34801561053757600080fd5b5061054061154a565b604051808260ff16815260200191505060405180910390f35b34801561056557600080fd5b506105a86004803603602081101561057c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611561565b005b3480156105b657600080fd5b50610603600480360360408110156105cd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506118eb565b60405180821515815260200191505060405180910390f35b34801561062757600080fd5b5061063061199e565b6040518082815260200191505060405180910390f35b34801561065257600080fd5b5061067f6004803603602081101561066957600080fd5b81019080803590602001909291905050506119a4565b005b34801561068d57600080fd5b506106d0600480360360208110156106a457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b35565b005b3480156106de57600080fd5b50610717600480360360408110156106f557600080fd5b8101908080359060200190929190803515159060200190929190505050611c58565b6040518082815260200191505060405180910390f35b34801561073957600080fd5b50610742611d0f565b005b34801561075057600080fd5b50610759611e3a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561079157600080fd5b5061079a611e5e565b60405180821515815260200191505060405180910390f35b3480156107be57600080fd5b50610801600480360360208110156107d557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e71565b005b34801561080f57600080fd5b506108526004803603602081101561082657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061218b565b60405180821515815260200191505060405180910390f35b34801561087657600080fd5b5061087f6121e1565b6040518082815260200191505060405180910390f35b3480156108a157600080fd5b506108e4600480360360208110156108b857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121e7565b6040518082815260200191505060405180910390f35b34801561090657600080fd5b5061090f6122d2565b005b34801561091d57600080fd5b50610926612458565b6040518082815260200191505060405180910390f35b34801561094857600080fd5b5061098b6004803603602081101561095f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061245e565b60405180821515815260200191505060405180910390f35b3480156109af57600080fd5b506109b86124b4565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156109f057600080fd5b50610a1d60048036036020811015610a0757600080fd5b81019080803590602001909291905050506124dd565b005b348015610a2b57600080fd5b50610a346125af565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a74578082015181840152602081019050610a59565b50505050905090810190601f168015610aa15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610abb57600080fd5b50610b0860048036036040811015610ad257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612651565b60405180821515815260200191505060405180910390f35b348015610b2c57600080fd5b50610b3561271e565b005b348015610b4357600080fd5b50610b8660048036036020811015610b5a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061293b565b005b348015610b9457600080fd5b50610be160048036036040811015610bab57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612a47565b60405180821515815260200191505060405180910390f35b348015610c0557600080fd5b50610c0e612b61565b6040518082815260200191505060405180910390f35b348015610c3057600080fd5b50610c39612b6b565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610c7157600080fd5b50610ca060048036036020811015610c8857600080fd5b81019080803515159060200190929190505050612b91565b005b348015610cae57600080fd5b50610cb7612caf565b60405180821515815260200191505060405180910390f35b348015610cdb57600080fd5b50610d0860048036036020811015610cf257600080fd5b8101908080359060200190929190505050612cc2565b005b348015610d1657600080fd5b50610d4360048036036020811015610d2d57600080fd5b8101908080359060200190929190505050612dbd565b005b348015610d5157600080fd5b50610db460048036036040811015610d6857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612fae565b6040518082815260200191505060405180910390f35b348015610dd657600080fd5b50610e1960048036036020811015610ded57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613035565b005b348015610e2757600080fd5b50610e6a60048036036020811015610e3e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613158565b005b610e74613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f34576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060108190555050565b6060600d8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610fd65780601f10610fab57610100808354040283529160200191610fd6565b820191906000526020600020905b815481529060010190602001808311610fb957829003601f168201915b5050505050905090565b6000610ff4610fed613363565b848461336b565b6001905092915050565b6000600c54905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600a54905090565b61103e613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600360009054906101000a900460ff1661111757600080fd5b6000600360006101000a81548160ff0219169083151502179055507fbbc8adec80fc4e3563551dff6c6dce121aad5e8c075dfe5c167e0952bb4f6d9760405160405180910390a1565b600060011515600360009054906101000a900460ff16151514156113ee57600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156112095750600073ffffffffffffffffffffffffffffffffffffffff16601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b156112545782601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611319565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4c6f74746572792057696e6e657200000000000000000000000000000000000081525060200191505060405180910390fd5b5b611324848484613562565b6113e584611330613363565b6113e08560405180606001604052806028815260200161552f60289139600660008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611396613363565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139259092919063ffffffff16565b61336b565b600190506114bf565b6113f9848484613562565b6114ba84611405613363565b6114b58560405180606001604052806028815260200161552f60289139600660008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061146b613363565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139259092919063ffffffff16565b61336b565b600190505b9392505050565b6000600b54821115611523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615474602a913960400191505060405180910390fd5b600061152d6139e5565b90506115428184613a1090919063ffffffff16565b915050919050565b6000600f60009054906101000a900460ff16905090565b611569613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611629576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166116e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b6009805490508110156118e7578173ffffffffffffffffffffffffffffffffffffffff166009828154811061171c57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156118da5760096001600980549050038154811061177857fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600982815481106117b057fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060098054806118a057fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556118e7565b80806001019150506116eb565b5050565b60006119946118f8613363565b8461198f8560066000611909613363565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b61336b565b6001905092915050565b60105481565b60006119ae613363565b9050600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611a53576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806155c9602c913960400191505060405180910390fd5b6000611a5e83613ae2565b50505050509050611ab781600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b0f81600b54613b3e90919063ffffffff16565b600b81905550611b2a83600c54613a5a90919063ffffffff16565b600c81905550505050565b611b3d613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bfd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600a54831115611cd2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611cf2576000611ce284613ae2565b5050505050905080915050611d09565b6000611cfd84613ae2565b50505050915050809150505b92915050565b611d17613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611dd7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600360009054906101000a900460ff1615611df157600080fd5b6001600360006101000a81548160ff0219169083151502179055507f3ef530eb0838fcc31f67cbe593996532f1d213d75ed09ad9c7a5977cde37c52760405160405180910390a1565b7f000000000000000000000000000000000000000000000000000000000000000081565b601460159054906101000a900460ff1681565b611e79613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f39576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611ff9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156120cd57612089600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114c6565b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506009819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561228257600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506122cd565b6122ca600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114c6565b90505b919050565b6122da613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461239a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60155481565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6124e5613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060128190555050565b6060600e8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156126475780601f1061261c57610100808354040283529160200191612647565b820191906000526020600020905b81548152906001019060200180831161262a57829003601f168201915b5050505050905090565b600061271461265e613363565b8461270f856040518060600160405280602581526020016156186025913960066000612688613363565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139259092919063ffffffff16565b61336b565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146127c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806155f56023913960400191505060405180910390fd5b600254421161283b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b612943613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a03576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600060011515600360009054906101000a900460ff1615151415612b4457601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b29576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4c6f74746572792057696e6e657200000000000000000000000000000000000081525060200191505060405180910390fd5b612b3b612b34613363565b8484613562565b60019050612b5b565b612b56612b4f613363565b8484613562565b600190505b92915050565b6000600254905090565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612b99613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c59576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601460156101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b600360009054906101000a900460ff1681565b612cca613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d8a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612db4620f4240612da683600a54613b8890919063ffffffff16565b613a1090919063ffffffff16565b60158190555050565b612dc5613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e85576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61303d613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146130fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b613160613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613220576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156132a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061549e6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156133f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806155a56024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613477576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806154c46022913960400191505060405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156135e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806155806025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561366e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806154516023913960400191505060405180910390fd5b600081116136c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806155576029913960400191505060405180910390fd5b6136cf6124b4565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561373d575061370d6124b4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561379e5760155481111561379d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806154e66028913960400191505060405180910390fd5b5b60006137a9306121e7565b905060155481106137ba5760155490505b600060165482101590508080156137dc575060148054906101000a900460ff16155b801561383457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561384c5750601460159054906101000a900460ff165b1561386057601654915061385f82613c0e565b5b600060019050600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806139075750600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561391157600090505b61391d86868684613cee565b505050505050565b60008383111582906139d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561399757808201518184015260208101905061397c565b50505050905090810190601f1680156139c45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008060006139f2613fff565b91509150613a098183613a1090919063ffffffff16565b9250505090565b6000613a5283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614290565b905092915050565b600080828401905083811015613ad8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000806000613af98a614356565b9250925092506000806000613b178d8686613b126139e5565b6143b0565b9250925092508282828888889b509b509b509b509b509b5050505050505091939550919395565b6000613b8083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613925565b905092915050565b600080831415613b9b5760009050613c08565b6000828402905082848281613bac57fe5b0414613c03576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061550e6021913960400191505060405180910390fd5b809150505b92915050565b60016014806101000a81548160ff0219169083151502179055506000613c3e600283613a1090919063ffffffff16565b90506000613c558284613b3e90919063ffffffff16565b90506000479050613c6583614439565b6000613c7a8247613b3e90919063ffffffff16565b9050613c8683826146e7565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405180848152602001838152602001828152602001935050505060405180910390a15050505060016014806101000a81548160ff02191690831515021790555050565b80613cfc57613cfb614838565b5b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613d9f5750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613db457613daf84848461487b565b613feb565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613e575750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613e6c57613e67848484614adb565b613fea565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613f105750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613f2557613f20848484614d3b565b613fe9565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613fc75750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613fdc57613fd7848484614f06565b613fe8565b613fe7848484614d3b565b5b5b5b5b80613ff957613ff86151fb565b5b50505050565b6000806000600b5490506000600a54905060005b6009805490508110156142535782600460006009848154811061403257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054118061411957508160056000600984815481106140b157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1561413057600b54600a549450945050505061428c565b6141b9600460006009848154811061414457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613b3e90919063ffffffff16565b925061424460056000600984815481106141cf57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613b3e90919063ffffffff16565b91508080600101915050614013565b5061426b600a54600b54613a1090919063ffffffff16565b82101561428357600b54600a5493509350505061428c565b81819350935050505b9091565b6000808311829061433c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156143015780820151818401526020810190506142e6565b50505050905090810190601f16801561432e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161434857fe5b049050809150509392505050565b6000806000806143658561520f565b9050600061437286615240565b9050600061439b8261438d858a613b3e90919063ffffffff16565b613b3e90919063ffffffff16565b90508083839550955095505050509193909250565b6000806000806143c98589613b8890919063ffffffff16565b905060006143e08689613b8890919063ffffffff16565b905060006143f78789613b8890919063ffffffff16565b90506000614420826144128587613b3e90919063ffffffff16565b613b3e90919063ffffffff16565b9050838184965096509650505050509450945094915050565b6060600267ffffffffffffffff8111801561445357600080fd5b506040519080825280602002602001820160405280156144825781602001602082028036833780820191505090505b509050308160008151811061449357fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561453357600080fd5b505afa158015614547573d6000803e3d6000fd5b505050506040513d602081101561455d57600080fd5b81019080805190602001909291905050508160018151811061457b57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506145e0307f00000000000000000000000000000000000000000000000000000000000000008461336b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156146a2578082015181840152602081019050614687565b505050509050019650505050505050600060405180830381600087803b1580156146cb57600080fd5b505af11580156146df573d6000803e3d6000fd5b505050505050565b614712307f00000000000000000000000000000000000000000000000000000000000000008461336b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061475c6124b4565b426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b1580156147e157600080fd5b505af11580156147f5573d6000803e3d6000fd5b50505050506040513d606081101561480c57600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b600060105414801561484c57506000601254145b1561485657614879565b601054601181905550601254601381905550600060108190555060006012819055505b565b60008060008060008061488d87613ae2565b9550955095509550955095506148eb87600560008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061498086600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614a1585600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614a6181615271565b614a6b8483615416565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614aed87613ae2565b955095509550955095509550614b4b86600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614be083600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600560008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614c7585600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614cc181615271565b614ccb8483615416565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614d4d87613ae2565b955095509550955095509550614dab86600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e4085600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e8c81615271565b614e968483615416565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614f1887613ae2565b955095509550955095509550614f7687600560008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061500b86600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506150a083600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600560008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061513585600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061518181615271565b61518b8483615416565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b601154601081905550601354601281905550565b6000615239606461522b60105485613b8890919063ffffffff16565b613a1090919063ffffffff16565b9050919050565b600061526a606461525c60125485613b8890919063ffffffff16565b613a1090919063ffffffff16565b9050919050565b600061527b6139e5565b905060006152928284613b8890919063ffffffff16565b90506152e681600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615615411576153cd83600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61542b82600b54613b3e90919063ffffffff16565b600b8190555061544681600c54613a5a90919063ffffffff16565b600c81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122003074c0a7048893c2b56828006b7027279adc55f1bfc323b1db9d1738366229264736f6c634300060c0033

Deployed Bytecode

0x6080604052600436106102555760003560e01c80636bc87c3a11610139578063a73b3c82116100b6578063ce9a3b0f1161007a578063ce9a3b0f14610ca2578063d543dbeb14610ccf578063dd46706414610d0a578063dd62ed3e14610d45578063ea2f0b3714610dca578063f2fde38b14610e1b5761025c565b8063a73b3c8214610b37578063a9059cbb14610b88578063b6c5232414610bf9578063ba13a57214610c24578063c49b9a8014610c655761025c565b80638da5cb5b116100fd5780638da5cb5b146109a35780638ee88c53146109e457806395d89b4114610a1f578063a457c2d714610aaf578063a69df4b514610b205761025c565b80636bc87c3a1461086a57806370a0823114610895578063715018a6146108fa5780637d1db4a51461091157806388f820201461093c5761025c565b80633685d419116101d25780634549b039116101965780634549b039146106d2578063481e27d41461072d57806349bd5a5e146107445780634a74bb021461078557806352390c02146107b25780635342acb4146108035761025c565b80633685d4191461055957806339509351146105aa5780633b124fe71461061b5780633bd5d17314610646578063437823ec146106815761025c565b806318160ddd1161021957806318160ddd146104095780631a6407fe1461043457806323b872dd1461044b5780632d838119146104dc578063313ce5671461052b5761025c565b8063061c82d01461026157806306fdde031461029c578063095ea7b31461032c57806313114a9d1461039d5780631694505e146103c85761025c565b3661025c57005b600080fd5b34801561026d57600080fd5b5061029a6004803603602081101561028457600080fd5b8101908080359060200190929190505050610e6c565b005b3480156102a857600080fd5b506102b1610f3e565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102f15780820151818401526020810190506102d6565b50505050905090810190601f16801561031e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561033857600080fd5b506103856004803603604081101561034f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fe0565b60405180821515815260200191505060405180910390f35b3480156103a957600080fd5b506103b2610ffe565b6040518082815260200191505060405180910390f35b3480156103d457600080fd5b506103dd611008565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561041557600080fd5b5061041e61102c565b6040518082815260200191505060405180910390f35b34801561044057600080fd5b50610449611036565b005b34801561045757600080fd5b506104c46004803603606081101561046e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611160565b60405180821515815260200191505060405180910390f35b3480156104e857600080fd5b50610515600480360360208110156104ff57600080fd5b81019080803590602001909291905050506114c6565b6040518082815260200191505060405180910390f35b34801561053757600080fd5b5061054061154a565b604051808260ff16815260200191505060405180910390f35b34801561056557600080fd5b506105a86004803603602081101561057c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611561565b005b3480156105b657600080fd5b50610603600480360360408110156105cd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506118eb565b60405180821515815260200191505060405180910390f35b34801561062757600080fd5b5061063061199e565b6040518082815260200191505060405180910390f35b34801561065257600080fd5b5061067f6004803603602081101561066957600080fd5b81019080803590602001909291905050506119a4565b005b34801561068d57600080fd5b506106d0600480360360208110156106a457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b35565b005b3480156106de57600080fd5b50610717600480360360408110156106f557600080fd5b8101908080359060200190929190803515159060200190929190505050611c58565b6040518082815260200191505060405180910390f35b34801561073957600080fd5b50610742611d0f565b005b34801561075057600080fd5b50610759611e3a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561079157600080fd5b5061079a611e5e565b60405180821515815260200191505060405180910390f35b3480156107be57600080fd5b50610801600480360360208110156107d557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e71565b005b34801561080f57600080fd5b506108526004803603602081101561082657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061218b565b60405180821515815260200191505060405180910390f35b34801561087657600080fd5b5061087f6121e1565b6040518082815260200191505060405180910390f35b3480156108a157600080fd5b506108e4600480360360208110156108b857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121e7565b6040518082815260200191505060405180910390f35b34801561090657600080fd5b5061090f6122d2565b005b34801561091d57600080fd5b50610926612458565b6040518082815260200191505060405180910390f35b34801561094857600080fd5b5061098b6004803603602081101561095f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061245e565b60405180821515815260200191505060405180910390f35b3480156109af57600080fd5b506109b86124b4565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156109f057600080fd5b50610a1d60048036036020811015610a0757600080fd5b81019080803590602001909291905050506124dd565b005b348015610a2b57600080fd5b50610a346125af565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a74578082015181840152602081019050610a59565b50505050905090810190601f168015610aa15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610abb57600080fd5b50610b0860048036036040811015610ad257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612651565b60405180821515815260200191505060405180910390f35b348015610b2c57600080fd5b50610b3561271e565b005b348015610b4357600080fd5b50610b8660048036036020811015610b5a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061293b565b005b348015610b9457600080fd5b50610be160048036036040811015610bab57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612a47565b60405180821515815260200191505060405180910390f35b348015610c0557600080fd5b50610c0e612b61565b6040518082815260200191505060405180910390f35b348015610c3057600080fd5b50610c39612b6b565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610c7157600080fd5b50610ca060048036036020811015610c8857600080fd5b81019080803515159060200190929190505050612b91565b005b348015610cae57600080fd5b50610cb7612caf565b60405180821515815260200191505060405180910390f35b348015610cdb57600080fd5b50610d0860048036036020811015610cf257600080fd5b8101908080359060200190929190505050612cc2565b005b348015610d1657600080fd5b50610d4360048036036020811015610d2d57600080fd5b8101908080359060200190929190505050612dbd565b005b348015610d5157600080fd5b50610db460048036036040811015610d6857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612fae565b6040518082815260200191505060405180910390f35b348015610dd657600080fd5b50610e1960048036036020811015610ded57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613035565b005b348015610e2757600080fd5b50610e6a60048036036020811015610e3e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613158565b005b610e74613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f34576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060108190555050565b6060600d8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610fd65780601f10610fab57610100808354040283529160200191610fd6565b820191906000526020600020905b815481529060010190602001808311610fb957829003601f168201915b5050505050905090565b6000610ff4610fed613363565b848461336b565b6001905092915050565b6000600c54905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600a54905090565b61103e613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600360009054906101000a900460ff1661111757600080fd5b6000600360006101000a81548160ff0219169083151502179055507fbbc8adec80fc4e3563551dff6c6dce121aad5e8c075dfe5c167e0952bb4f6d9760405160405180910390a1565b600060011515600360009054906101000a900460ff16151514156113ee57600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156112095750600073ffffffffffffffffffffffffffffffffffffffff16601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b156112545782601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611319565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4c6f74746572792057696e6e657200000000000000000000000000000000000081525060200191505060405180910390fd5b5b611324848484613562565b6113e584611330613363565b6113e08560405180606001604052806028815260200161552f60289139600660008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611396613363565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139259092919063ffffffff16565b61336b565b600190506114bf565b6113f9848484613562565b6114ba84611405613363565b6114b58560405180606001604052806028815260200161552f60289139600660008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061146b613363565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139259092919063ffffffff16565b61336b565b600190505b9392505050565b6000600b54821115611523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615474602a913960400191505060405180910390fd5b600061152d6139e5565b90506115428184613a1090919063ffffffff16565b915050919050565b6000600f60009054906101000a900460ff16905090565b611569613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611629576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166116e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b6009805490508110156118e7578173ffffffffffffffffffffffffffffffffffffffff166009828154811061171c57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156118da5760096001600980549050038154811061177857fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600982815481106117b057fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060098054806118a057fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556118e7565b80806001019150506116eb565b5050565b60006119946118f8613363565b8461198f8560066000611909613363565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b61336b565b6001905092915050565b60105481565b60006119ae613363565b9050600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611a53576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806155c9602c913960400191505060405180910390fd5b6000611a5e83613ae2565b50505050509050611ab781600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b0f81600b54613b3e90919063ffffffff16565b600b81905550611b2a83600c54613a5a90919063ffffffff16565b600c81905550505050565b611b3d613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bfd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600a54831115611cd2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611cf2576000611ce284613ae2565b5050505050905080915050611d09565b6000611cfd84613ae2565b50505050915050809150505b92915050565b611d17613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611dd7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600360009054906101000a900460ff1615611df157600080fd5b6001600360006101000a81548160ff0219169083151502179055507f3ef530eb0838fcc31f67cbe593996532f1d213d75ed09ad9c7a5977cde37c52760405160405180910390a1565b7f00000000000000000000000095274db6531680b14cf94d2983b9fef0ec7aa52281565b601460159054906101000a900460ff1681565b611e79613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f39576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611ff9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156120cd57612089600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114c6565b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506009819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561228257600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506122cd565b6122ca600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114c6565b90505b919050565b6122da613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461239a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60155481565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6124e5613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060128190555050565b6060600e8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156126475780601f1061261c57610100808354040283529160200191612647565b820191906000526020600020905b81548152906001019060200180831161262a57829003601f168201915b5050505050905090565b600061271461265e613363565b8461270f856040518060600160405280602581526020016156186025913960066000612688613363565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139259092919063ffffffff16565b61336b565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146127c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806155f56023913960400191505060405180910390fd5b600254421161283b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b612943613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a03576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600060011515600360009054906101000a900460ff1615151415612b4457601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b29576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4c6f74746572792057696e6e657200000000000000000000000000000000000081525060200191505060405180910390fd5b612b3b612b34613363565b8484613562565b60019050612b5b565b612b56612b4f613363565b8484613562565b600190505b92915050565b6000600254905090565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612b99613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c59576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601460156101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b600360009054906101000a900460ff1681565b612cca613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d8a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612db4620f4240612da683600a54613b8890919063ffffffff16565b613a1090919063ffffffff16565b60158190555050565b612dc5613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e85576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61303d613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146130fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b613160613363565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613220576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156132a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061549e6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156133f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806155a56024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613477576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806154c46022913960400191505060405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156135e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806155806025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561366e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806154516023913960400191505060405180910390fd5b600081116136c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806155576029913960400191505060405180910390fd5b6136cf6124b4565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561373d575061370d6124b4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561379e5760155481111561379d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806154e66028913960400191505060405180910390fd5b5b60006137a9306121e7565b905060155481106137ba5760155490505b600060165482101590508080156137dc575060148054906101000a900460ff16155b801561383457507f00000000000000000000000095274db6531680b14cf94d2983b9fef0ec7aa52273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561384c5750601460159054906101000a900460ff165b1561386057601654915061385f82613c0e565b5b600060019050600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806139075750600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561391157600090505b61391d86868684613cee565b505050505050565b60008383111582906139d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561399757808201518184015260208101905061397c565b50505050905090810190601f1680156139c45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008060006139f2613fff565b91509150613a098183613a1090919063ffffffff16565b9250505090565b6000613a5283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614290565b905092915050565b600080828401905083811015613ad8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000806000613af98a614356565b9250925092506000806000613b178d8686613b126139e5565b6143b0565b9250925092508282828888889b509b509b509b509b509b5050505050505091939550919395565b6000613b8083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613925565b905092915050565b600080831415613b9b5760009050613c08565b6000828402905082848281613bac57fe5b0414613c03576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061550e6021913960400191505060405180910390fd5b809150505b92915050565b60016014806101000a81548160ff0219169083151502179055506000613c3e600283613a1090919063ffffffff16565b90506000613c558284613b3e90919063ffffffff16565b90506000479050613c6583614439565b6000613c7a8247613b3e90919063ffffffff16565b9050613c8683826146e7565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405180848152602001838152602001828152602001935050505060405180910390a15050505060016014806101000a81548160ff02191690831515021790555050565b80613cfc57613cfb614838565b5b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613d9f5750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613db457613daf84848461487b565b613feb565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613e575750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613e6c57613e67848484614adb565b613fea565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613f105750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613f2557613f20848484614d3b565b613fe9565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613fc75750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613fdc57613fd7848484614f06565b613fe8565b613fe7848484614d3b565b5b5b5b5b80613ff957613ff86151fb565b5b50505050565b6000806000600b5490506000600a54905060005b6009805490508110156142535782600460006009848154811061403257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054118061411957508160056000600984815481106140b157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1561413057600b54600a549450945050505061428c565b6141b9600460006009848154811061414457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613b3e90919063ffffffff16565b925061424460056000600984815481106141cf57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613b3e90919063ffffffff16565b91508080600101915050614013565b5061426b600a54600b54613a1090919063ffffffff16565b82101561428357600b54600a5493509350505061428c565b81819350935050505b9091565b6000808311829061433c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156143015780820151818401526020810190506142e6565b50505050905090810190601f16801561432e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161434857fe5b049050809150509392505050565b6000806000806143658561520f565b9050600061437286615240565b9050600061439b8261438d858a613b3e90919063ffffffff16565b613b3e90919063ffffffff16565b90508083839550955095505050509193909250565b6000806000806143c98589613b8890919063ffffffff16565b905060006143e08689613b8890919063ffffffff16565b905060006143f78789613b8890919063ffffffff16565b90506000614420826144128587613b3e90919063ffffffff16565b613b3e90919063ffffffff16565b9050838184965096509650505050509450945094915050565b6060600267ffffffffffffffff8111801561445357600080fd5b506040519080825280602002602001820160405280156144825781602001602082028036833780820191505090505b509050308160008151811061449357fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561453357600080fd5b505afa158015614547573d6000803e3d6000fd5b505050506040513d602081101561455d57600080fd5b81019080805190602001909291905050508160018151811061457b57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506145e0307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461336b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156146a2578082015181840152602081019050614687565b505050509050019650505050505050600060405180830381600087803b1580156146cb57600080fd5b505af11580156146df573d6000803e3d6000fd5b505050505050565b614712307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461336b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061475c6124b4565b426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b1580156147e157600080fd5b505af11580156147f5573d6000803e3d6000fd5b50505050506040513d606081101561480c57600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b600060105414801561484c57506000601254145b1561485657614879565b601054601181905550601254601381905550600060108190555060006012819055505b565b60008060008060008061488d87613ae2565b9550955095509550955095506148eb87600560008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061498086600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614a1585600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614a6181615271565b614a6b8483615416565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614aed87613ae2565b955095509550955095509550614b4b86600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614be083600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600560008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614c7585600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614cc181615271565b614ccb8483615416565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614d4d87613ae2565b955095509550955095509550614dab86600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e4085600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e8c81615271565b614e968483615416565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614f1887613ae2565b955095509550955095509550614f7687600560008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061500b86600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b3e90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506150a083600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600560008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061513585600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061518181615271565b61518b8483615416565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b601154601081905550601354601281905550565b6000615239606461522b60105485613b8890919063ffffffff16565b613a1090919063ffffffff16565b9050919050565b600061526a606461525c60125485613b8890919063ffffffff16565b613a1090919063ffffffff16565b9050919050565b600061527b6139e5565b905060006152928284613b8890919063ffffffff16565b90506152e681600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615615411576153cd83600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a5a90919063ffffffff16565b600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61542b82600b54613b3e90919063ffffffff16565b600b8190555061544681600c54613a5a90919063ffffffff16565b600c81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122003074c0a7048893c2b56828006b7027279adc55f1bfc323b1db9d1738366229264736f6c634300060c0033

Deployed Bytecode Sourcemap

26666:19087:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34848:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29092:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30292:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31816:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27637:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29369:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18448:116;;;;;;;;;;;;;:::i;:::-;;30461:716;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32740:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29278:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33456:479;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31185:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27448:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31911:377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34603:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32296:436;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18337:105;;;;;;;;;;;;;:::i;:::-;;27695:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27809:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33001:447;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38745:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27535:33;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29472:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16771:148;;;;;;;;;;;;;:::i;:::-;;27862:46;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31688:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;16128:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34958:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29183:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31411:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17781:293;;;;;;;;;;;;;:::i;:::-;;29682:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29783:350;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17326:89;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27746:22;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35261:171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18165:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35091:162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17491:214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30141:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34726:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17074:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34848:98;16350:12;:10;:12::i;:::-;16340:22;;:6;;;;;;;;;;:22;;;16332:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34932:6:::1;34922:7;:16;;;;34848:98:::0;:::o;29092:83::-;29129:13;29162:5;29155:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29092:83;:::o;30292:161::-;30367:4;30384:39;30393:12;:10;:12::i;:::-;30407:7;30416:6;30384:8;:39::i;:::-;30441:4;30434:11;;30292:161;;;;:::o;31816:87::-;31858:7;31885:10;;31878:17;;31816:87;:::o;27637:51::-;;;:::o;29369:95::-;29422:7;29449;;29442:14;;29369:95;:::o;18448:116::-;16350:12;:10;:12::i;:::-;16340:22;;:6;;;;;;;;;;:22;;;16332:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18309:7:::1;;;;;;;;;;;18301:16;;;::::0;::::1;;18527:5:::2;18517:7;;:15;;;;;;;;;;;;;;;;;;18544:14;;;;;;;;;;18448:116::o:0;30461:716::-;30559:4;30590;30579:15;;:7;;;;;;;;;;;:15;;;30576:594;;;30628:1;30610:20;;:6;:20;;;;:45;;;;;30653:1;30634:21;;:7;;;;;;;;;;;:21;;;30610:45;30607:132;;;30667:9;30657:7;;:19;;;;;;;;;;;;;;;;;;30607:132;;;30713:7;;;;;;;;;;;30700:20;;:9;:20;;;;30692:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30607:132;30750:36;30760:6;30768:9;30779:6;30750:9;:36::i;:::-;30797:121;30806:6;30814:12;:10;:12::i;:::-;30828:89;30866:6;30828:89;;;;;;;;;;;;;;;;;:11;:19;30840:6;30828:19;;;;;;;;;;;;;;;:33;30848:12;:10;:12::i;:::-;30828:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;30797:8;:121::i;:::-;30936:4;30929:11;;;;30576:594;30978:36;30988:6;30996:9;31007:6;30978:9;:36::i;:::-;31025:121;31034:6;31042:12;:10;:12::i;:::-;31056:89;31094:6;31056:89;;;;;;;;;;;;;;;;;:11;:19;31068:6;31056:19;;;;;;;;;;;;;;;:33;31076:12;:10;:12::i;:::-;31056:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;31025:8;:121::i;:::-;31164:4;31157:11;;30461:716;;;;;;:::o;32740:253::-;32806:7;32845;;32834;:18;;32826:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32910:19;32933:10;:8;:10::i;:::-;32910:33;;32961:24;32973:11;32961:7;:11;;:24;;;;:::i;:::-;32954:31;;;32740:253;;;:::o;29278:83::-;29319:5;29344:9;;;;;;;;;;;29337:16;;29278:83;:::o;33456:479::-;16350:12;:10;:12::i;:::-;16340:22;;:6;;;;;;;;;;:22;;;16332:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33538:11:::1;:20;33550:7;33538:20;;;;;;;;;;;;;;;;;;;;;;;;;33530:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33606:9;33601:327;33625:9;:16;;;;33621:1;:20;33601:327;;;33683:7;33667:23;;:9;33677:1;33667:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;33663:254;;;33726:9;33755:1;33736:9;:16;;;;:20;33726:31;;;;;;;;;;;;;;;;;;;;;;;;;33711:9;33721:1;33711:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;33795:1;33776:7;:16;33784:7;33776:16;;;;;;;;;;;;;;;:20;;;;33838:5;33815:11;:20;33827:7;33815:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;33862:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33896:5;;33663:254;33643:3;;;;;;;33601:327;;;;33456:479:::0;:::o;31185:218::-;31273:4;31290:83;31299:12;:10;:12::i;:::-;31313:7;31322:50;31361:10;31322:11;:25;31334:12;:10;:12::i;:::-;31322:25;;;;;;;;;;;;;;;:34;31348:7;31322:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;31290:8;:83::i;:::-;31391:4;31384:11;;31185:218;;;;:::o;27448:26::-;;;;:::o;31911:377::-;31963:14;31980:12;:10;:12::i;:::-;31963:29;;32012:11;:19;32024:6;32012:19;;;;;;;;;;;;;;;;;;;;;;;;;32011:20;32003:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32092:15;32116:19;32127:7;32116:10;:19::i;:::-;32091:44;;;;;;;32164:28;32184:7;32164;:15;32172:6;32164:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;32146:7;:15;32154:6;32146:15;;;;;;;;;;;;;;;:46;;;;32213:20;32225:7;32213;;:11;;:20;;;;:::i;:::-;32203:7;:30;;;;32257:23;32272:7;32257:10;;:14;;:23;;;;:::i;:::-;32244:10;:36;;;;31911:377;;;:::o;34603:111::-;16350:12;:10;:12::i;:::-;16340:22;;:6;;;;;;;;;;:22;;;16332:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34702:4:::1;34672:18;:27;34691:7;34672:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;34603:111:::0;:::o;32296:436::-;32386:7;32425;;32414;:18;;32406:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32484:17;32479:246;;32519:15;32543:19;32554:7;32543:10;:19::i;:::-;32518:44;;;;;;;32584:7;32577:14;;;;;32479:246;32626:23;32657:19;32668:7;32657:10;:19::i;:::-;32624:52;;;;;;;32698:15;32691:22;;;32296:436;;;;;:::o;18337:105::-;16350:12;:10;:12::i;:::-;16340:22;;:6;;;;;;;;;;:22;;;16332:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18241:7:::1;;;;;;;;;;;18240:8;18232:17;;;::::0;::::1;;18407:4:::2;18397:7;;:14;;;;;;;;;;;;;;;;;;18423:13;;;;;;;;;;18337:105::o:0;27695:38::-;;;:::o;27809:40::-;;;;;;;;;;;;;:::o;33001:447::-;16350:12;:10;:12::i;:::-;16340:22;;:6;;;;;;;;;;:22;;;16332:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33198:11:::1;:20;33210:7;33198:20;;;;;;;;;;;;;;;;;;;;;;;;;33197:21;33189:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33283:1;33264:7;:16;33272:7;33264:16;;;;;;;;;;;;;;;;:20;33261:108;;;33320:37;33340:7;:16;33348:7;33340:16;;;;;;;;;;;;;;;;33320:19;:37::i;:::-;33301:7;:16;33309:7;33301:16;;;;;;;;;;;;;;;:56;;;;33261:108;33402:4;33379:11;:20;33391:7;33379:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;33417:9;33432:7;33417:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33001:447:::0;:::o;38745:123::-;38809:4;38833:18;:27;38852:7;38833:27;;;;;;;;;;;;;;;;;;;;;;;;;38826:34;;38745:123;;;:::o;27535:33::-;;;;:::o;29472:198::-;29538:7;29562:11;:20;29574:7;29562:20;;;;;;;;;;;;;;;;;;;;;;;;;29558:49;;;29591:7;:16;29599:7;29591:16;;;;;;;;;;;;;;;;29584:23;;;;29558:49;29625:37;29645:7;:16;29653:7;29645:16;;;;;;;;;;;;;;;;29625:19;:37::i;:::-;29618:44;;29472:198;;;;:::o;16771:148::-;16350:12;:10;:12::i;:::-;16340:22;;:6;;;;;;;;;;:22;;;16332:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16878:1:::1;16841:40;;16862:6;::::0;::::1;;;;;;;;16841:40;;;;;;;;;;;;16909:1;16892:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;16771:148::o:0;27862:46::-;;;;:::o;31688:120::-;31756:4;31780:11;:20;31792:7;31780:20;;;;;;;;;;;;;;;;;;;;;;;;;31773:27;;31688:120;;;:::o;16128:79::-;16166:7;16193:6;;;;;;;;;;;16186:13;;16128:79;:::o;34958:122::-;16350:12;:10;:12::i;:::-;16340:22;;:6;;;;;;;;;;:22;;;16332:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35060:12:::1;35044:13;:28;;;;34958:122:::0;:::o;29183:87::-;29222:13;29255:7;29248:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29183:87;:::o;31411:269::-;31504:4;31521:129;31530:12;:10;:12::i;:::-;31544:7;31553:96;31592:15;31553:96;;;;;;;;;;;;;;;;;:11;:25;31565:12;:10;:12::i;:::-;31553:25;;;;;;;;;;;;;;;:34;31579:7;31553:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;31521:8;:129::i;:::-;31668:4;31661:11;;31411:269;;;;:::o;17781:293::-;17851:10;17833:28;;:14;;;;;;;;;;;:28;;;17825:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17926:9;;17920:3;:15;17912:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18017:14;;;;;;;;;;;17988:44;;18009:6;;;;;;;;;;17988:44;;;;;;;;;;;;18052:14;;;;;;;;;;;18043:6;;:23;;;;;;;;;;;;;;;;;;17781:293::o;29682:93::-;16350:12;:10;:12::i;:::-;16340:22;;:6;;;;;;;;;;:22;;;16332:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29759:8:::1;29749:7;;:18;;;;;;;;;;;;;;;;;;29682:93:::0;:::o;29783:350::-;29861:4;29892;29881:15;;:7;;;;;;;;;;;:15;;;29878:248;;;29930:7;;;;;;;;;;;29917:20;;:9;:20;;;;29909:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29967:42;29977:12;:10;:12::i;:::-;29991:9;30002:6;29967:9;:42::i;:::-;30027:4;30020:11;;;;29878:248;30060:42;30070:12;:10;:12::i;:::-;30084:9;30095:6;30060:9;:42::i;:::-;30120:4;30113:11;;29783:350;;;;;:::o;17326:89::-;17371:7;17398:9;;17391:16;;17326:89;:::o;27746:22::-;;;;;;;;;;;;;:::o;35261:171::-;16350:12;:10;:12::i;:::-;16340:22;;:6;;;;;;;;;;:22;;;16332:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35362:8:::1;35338:21;;:32;;;;;;;;;;;;;;;;;;35386:38;35415:8;35386:38;;;;;;;;;;;;;;;;;;;;35261:171:::0;:::o;18165:27::-;;;;;;;;;;;;;:::o;35091:162::-;16350:12;:10;:12::i;:::-;16340:22;;:6;;;;;;;;;;:22;;;16332:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35185:60:::1;35229:5;35185:25;35197:12;35185:7;;:11;;:25;;;;:::i;:::-;:29;;:60;;;;:::i;:::-;35170:12;:75;;;;35091:162:::0;:::o;17491:214::-;16350:12;:10;:12::i;:::-;16340:22;;:6;;;;;;;;;;:22;;;16332:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17572:6:::1;::::0;::::1;;;;;;;;17555:14;;:23;;;;;;;;;;;;;;;;;;17606:1;17589:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;17637:4;17631:3;:10;17619:9;:22;;;;17694:1;17657:40;;17678:6;::::0;::::1;;;;;;;;17657:40;;;;;;;;;;;;17491:214:::0;:::o;30141:143::-;30222:7;30249:11;:18;30261:5;30249:18;;;;;;;;;;;;;;;:27;30268:7;30249:27;;;;;;;;;;;;;;;;30242:34;;30141:143;;;;:::o;34726:110::-;16350:12;:10;:12::i;:::-;16340:22;;:6;;;;;;;;;;:22;;;16332:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34823:5:::1;34793:18;:27;34812:7;34793:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;34726:110:::0;:::o;17074:244::-;16350:12;:10;:12::i;:::-;16340:22;;:6;;;;;;;;;;:22;;;16332:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17183:1:::1;17163:22;;:8;:22;;;;17155:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17273:8;17244:38;;17265:6;::::0;::::1;;;;;;;;17244:38;;;;;;;;;;;;17302:8;17293:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;17074:244:::0;:::o;8536:106::-;8589:15;8624:10;8617:17;;8536:106;:::o;38876:337::-;38986:1;38969:19;;:5;:19;;;;38961:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39067:1;39048:21;;:7;:21;;;;39040:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39151:6;39121:11;:18;39133:5;39121:18;;;;;;;;;;;;;;;:27;39140:7;39121:27;;;;;;;;;;;;;;;:36;;;;39189:7;39173:32;;39182:5;39173:32;;;39198:6;39173:32;;;;;;;;;;;;;;;;;;38876:337;;;:::o;39221:1813::-;39359:1;39343:18;;:4;:18;;;;39335:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39436:1;39422:16;;:2;:16;;;;39414:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39506:1;39497:6;:10;39489:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39575:7;:5;:7::i;:::-;39567:15;;:4;:15;;;;:32;;;;;39592:7;:5;:7::i;:::-;39586:13;;:2;:13;;;;39567:32;39564:125;;;39632:12;;39622:6;:22;;39614:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39564:125;39984:28;40015:24;40033:4;40015:9;:24::i;:::-;39984:55;;40087:12;;40063:20;:36;40060:112;;40148:12;;40125:35;;40060:112;40192:24;40243:29;;40219:20;:53;;40192:80;;40301:19;:53;;;;;40338:16;;;;;;;;;;40337:17;40301:53;:91;;;;;40379:13;40371:21;;:4;:21;;;;40301:91;:129;;;;;40409:21;;;;;;;;;;;40301:129;40283:318;;;40480:29;;40457:52;;40553:36;40568:20;40553:14;:36::i;:::-;40283:318;40682:12;40697:4;40682:19;;40809:18;:24;40828:4;40809:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;40837:18;:22;40856:2;40837:22;;;;;;;;;;;;;;;;;;;;;;;;;40809:50;40806:96;;;40885:5;40875:15;;40806:96;40988:38;41003:4;41008:2;41011:6;41018:7;40988:14;:38::i;:::-;39221:1813;;;;;;:::o;4946:192::-;5032:7;5065:1;5060;:6;;5068:12;5052:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5092:9;5108:1;5104;:5;5092:17;;5129:1;5122:8;;;4946:192;;;;;:::o;36895:163::-;36936:7;36957:15;36974;36993:19;:17;:19::i;:::-;36956:56;;;;37030:20;37042:7;37030;:11;;:20;;;;:::i;:::-;37023:27;;;;36895:163;:::o;6344:132::-;6402:7;6429:39;6433:1;6436;6429:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6422:46;;6344:132;;;;:::o;4043:181::-;4101:7;4121:9;4137:1;4133;:5;4121:17;;4162:1;4157;:6;;4149:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4215:1;4208:8;;;4043:181;;;;:::o;35693:419::-;35752:7;35761;35770;35779;35788;35797;35818:23;35843:12;35857:18;35879:20;35891:7;35879:11;:20::i;:::-;35817:82;;;;;;35911:15;35928:23;35953:12;35969:50;35981:7;35990:4;35996:10;36008;:8;:10::i;:::-;35969:11;:50::i;:::-;35910:109;;;;;;36038:7;36047:15;36064:4;36070:15;36087:4;36093:10;36030:74;;;;;;;;;;;;;;;;;;35693:419;;;;;;;:::o;4507:136::-;4565:7;4592:43;4596:1;4599;4592:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4585:50;;4507:136;;;;:::o;5397:471::-;5455:7;5705:1;5700;:6;5696:47;;;5730:1;5723:8;;;;5696:47;5755:9;5771:1;5767;:5;5755:17;;5800:1;5795;5791;:5;;;;;;:10;5783:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5859:1;5852:8;;;5397:471;;;;;:::o;41042:985::-;28305:4;28286:16;;:23;;;;;;;;;;;;;;;;;;41178:12:::1;41193:27;41218:1;41193:20;:24;;:27;;;;:::i;:::-;41178:42;;41231:17;41251:30;41276:4;41251:20;:24;;:30;;;;:::i;:::-;41231:50;;41559:22;41584:21;41559:46;;41650:22;41667:4;41650:16;:22::i;:::-;41803:18;41824:41;41850:14;41824:21;:25;;:41;;;;:::i;:::-;41803:62;;41915:35;41928:9;41939:10;41915:12;:35::i;:::-;41976:43;41991:4;41997:10;42009:9;41976:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28320:1;;;;28351:4:::0;28332:16;;:23;;;;;;;;;;;;;;;;;;41042:985;:::o;43226:834::-;43337:7;43333:40;;43359:14;:12;:14::i;:::-;43333:40;43398:11;:19;43410:6;43398:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;43422:11;:22;43434:9;43422:22;;;;;;;;;;;;;;;;;;;;;;;;;43421:23;43398:46;43394:597;;;43461:48;43483:6;43491:9;43502:6;43461:21;:48::i;:::-;43394:597;;;43532:11;:19;43544:6;43532:19;;;;;;;;;;;;;;;;;;;;;;;;;43531:20;:46;;;;;43555:11;:22;43567:9;43555:22;;;;;;;;;;;;;;;;;;;;;;;;;43531:46;43527:464;;;43594:46;43614:6;43622:9;43633:6;43594:19;:46::i;:::-;43527:464;;;43663:11;:19;43675:6;43663:19;;;;;;;;;;;;;;;;;;;;;;;;;43662:20;:47;;;;;43687:11;:22;43699:9;43687:22;;;;;;;;;;;;;;;;;;;;;;;;;43686:23;43662:47;43658:333;;;43726:44;43744:6;43752:9;43763:6;43726:17;:44::i;:::-;43658:333;;;43792:11;:19;43804:6;43792:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;43815:11;:22;43827:9;43815:22;;;;;;;;;;;;;;;;;;;;;;;;;43792:45;43788:203;;;43854:48;43876:6;43884:9;43895:6;43854:21;:48::i;:::-;43788:203;;;43935:44;43953:6;43961:9;43972:6;43935:17;:44::i;:::-;43788:203;43658:333;43527:464;43394:597;44015:7;44011:41;;44037:15;:13;:15::i;:::-;44011:41;43226:834;;;;:::o;37066:561::-;37116:7;37125;37145:15;37163:7;;37145:25;;37181:15;37199:7;;37181:25;;37228:9;37223:289;37247:9;:16;;;;37243:1;:20;37223:289;;;37313:7;37289;:21;37297:9;37307:1;37297:12;;;;;;;;;;;;;;;;;;;;;;;;;37289:21;;;;;;;;;;;;;;;;:31;:66;;;;37348:7;37324;:21;37332:9;37342:1;37332:12;;;;;;;;;;;;;;;;;;;;;;;;;37324:21;;;;;;;;;;;;;;;;:31;37289:66;37285:97;;;37365:7;;37374;;37357:25;;;;;;;;;37285:97;37407:34;37419:7;:21;37427:9;37437:1;37427:12;;;;;;;;;;;;;;;;;;;;;;;;;37419:21;;;;;;;;;;;;;;;;37407:7;:11;;:34;;;;:::i;:::-;37397:44;;37466:34;37478:7;:21;37486:9;37496:1;37486:12;;;;;;;;;;;;;;;;;;;;;;;;;37478:21;;;;;;;;;;;;;;;;37466:7;:11;;:34;;;;:::i;:::-;37456:44;;37265:3;;;;;;;37223:289;;;;37536:20;37548:7;;37536;;:11;;:20;;;;:::i;:::-;37526:7;:30;37522:61;;;37566:7;;37575;;37558:25;;;;;;;;37522:61;37602:7;37611;37594:25;;;;;;37066:561;;;:::o;6972:278::-;7058:7;7090:1;7086;:5;7093:12;7078:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7117:9;7133:1;7129;:5;;;;;;7117:17;;7241:1;7234:8;;;6972:278;;;;;:::o;36120:330::-;36180:7;36189;36198;36218:12;36233:24;36249:7;36233:15;:24::i;:::-;36218:39;;36268:18;36289:30;36311:7;36289:21;:30::i;:::-;36268:51;;36330:23;36356:33;36378:10;36356:17;36368:4;36356:7;:11;;:17;;;;:::i;:::-;:21;;:33;;;;:::i;:::-;36330:59;;36408:15;36425:4;36431:10;36400:42;;;;;;;;;36120:330;;;;;:::o;36458:429::-;36573:7;36582;36591;36611:15;36629:24;36641:11;36629:7;:11;;:24;;;;:::i;:::-;36611:42;;36664:12;36679:21;36688:11;36679:4;:8;;:21;;;;:::i;:::-;36664:36;;36711:18;36732:27;36747:11;36732:10;:14;;:27;;;;:::i;:::-;36711:48;;36770:23;36796:33;36818:10;36796:17;36808:4;36796:7;:11;;:17;;;;:::i;:::-;:21;;:33;;;;:::i;:::-;36770:59;;36848:7;36857:15;36874:4;36840:39;;;;;;;;;;36458:429;;;;;;;;:::o;42035:589::-;42161:21;42199:1;42185:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42161:40;;42230:4;42212;42217:1;42212:7;;;;;;;;;;;;;:23;;;;;;;;;;;42256:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42246:4;42251:1;42246:7;;;;;;;;;;;;;:32;;;;;;;;;;;42291:62;42308:4;42323:15;42341:11;42291:8;:62::i;:::-;42392:15;:66;;;42473:11;42499:1;42543:4;42570;42590:15;42392:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42035:589;;:::o;42632:513::-;42780:62;42797:4;42812:15;42830:11;42780:8;:62::i;:::-;42885:15;:31;;;42924:9;42957:4;42977:11;43003:1;43046;43089:7;:5;:7::i;:::-;43111:15;42885:252;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42632:513;;:::o;38346:250::-;38403:1;38392:7;;:12;:34;;;;;38425:1;38408:13;;:18;38392:34;38389:46;;;38428:7;;38389:46;38473:7;;38455:15;:25;;;;38515:13;;38491:21;:37;;;;38559:1;38549:7;:11;;;;38587:1;38571:13;:17;;;;38346:250;:::o;45172:566::-;45275:15;45292:23;45317:12;45331:23;45356:12;45370:18;45392:19;45403:7;45392:10;:19::i;:::-;45274:137;;;;;;;;;;;;45440:28;45460:7;45440;:15;45448:6;45440:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;45422:7;:15;45430:6;45422:15;;;;;;;;;;;;;;;:46;;;;45497:28;45517:7;45497;:15;45505:6;45497:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;45479:7;:15;45487:6;45479:15;;;;;;;;;;;;;;;:46;;;;45557:39;45580:15;45557:7;:18;45565:9;45557:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;45536:7;:18;45544:9;45536:18;;;;;;;;;;;;;;;:60;;;;45610:26;45625:10;45610:14;:26::i;:::-;45647:23;45659:4;45665;45647:11;:23::i;:::-;45703:9;45686:44;;45695:6;45686:44;;;45714:15;45686:44;;;;;;;;;;;;;;;;;;45172:566;;;;;;;;;:::o;44578:586::-;44679:15;44696:23;44721:12;44735:23;44760:12;44774:18;44796:19;44807:7;44796:10;:19::i;:::-;44678:137;;;;;;;;;;;;44844:28;44864:7;44844;:15;44852:6;44844:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;44826:7;:15;44834:6;44826:15;;;;;;;;;;;;;;;:46;;;;44904:39;44927:15;44904:7;:18;44912:9;44904:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;44883:7;:18;44891:9;44883:18;;;;;;;;;;;;;;;:60;;;;44975:39;44998:15;44975:7;:18;44983:9;44975:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;44954:7;:18;44962:9;44954:18;;;;;;;;;;;;;;;:60;;;;45036:26;45051:10;45036:14;:26::i;:::-;45073:23;45085:4;45091;45073:11;:23::i;:::-;45129:9;45112:44;;45121:6;45112:44;;;45140:15;45112:44;;;;;;;;;;;;;;;;;;44578:586;;;;;;;;;:::o;44068:502::-;44167:15;44184:23;44209:12;44223:23;44248:12;44262:18;44284:19;44295:7;44284:10;:19::i;:::-;44166:137;;;;;;;;;;;;44332:28;44352:7;44332;:15;44340:6;44332:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;44314:7;:15;44322:6;44314:15;;;;;;;;;;;;;;;:46;;;;44392:39;44415:15;44392:7;:18;44400:9;44392:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;44371:7;:18;44379:9;44371:18;;;;;;;;;;;;;;;:60;;;;44442:26;44457:10;44442:14;:26::i;:::-;44479:23;44491:4;44497;44479:11;:23::i;:::-;44535:9;44518:44;;44527:6;44518:44;;;44546:15;44518:44;;;;;;;;;;;;;;;;;;44068:502;;;;;;;;;:::o;33945:642::-;34048:15;34065:23;34090:12;34104:23;34129:12;34143:18;34165:19;34176:7;34165:10;:19::i;:::-;34047:137;;;;;;;;;;;;34213:28;34233:7;34213;:15;34221:6;34213:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;34195:7;:15;34203:6;34195:15;;;;;;;;;;;;;;;:46;;;;34270:28;34290:7;34270;:15;34278:6;34270:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;34252:7;:15;34260:6;34252:15;;;;;;;;;;;;;;;:46;;;;34330:39;34353:15;34330:7;:18;34338:9;34330:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;34309:7;:18;34317:9;34309:18;;;;;;;;;;;;;;;:60;;;;34401:39;34424:15;34401:7;:18;34409:9;34401:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;34380:7;:18;34388:9;34380:18;;;;;;;;;;;;;;;:60;;;;34459:26;34474:10;34459:14;:26::i;:::-;34496:23;34508:4;34514;34496:11;:23::i;:::-;34552:9;34535:44;;34544:6;34535:44;;;34563:15;34535:44;;;;;;;;;;;;;;;;;;33945:642;;;;;;;;;:::o;38608:125::-;38662:15;;38652:7;:25;;;;38704:21;;38688:13;:37;;;;38608:125::o;38006:154::-;38070:7;38097:55;38136:5;38097:20;38109:7;;38097;:11;;:20;;;;:::i;:::-;:24;;:55;;;;:::i;:::-;38090:62;;38006:154;;;:::o;38168:166::-;38238:7;38265:61;38310:5;38265:26;38277:13;;38265:7;:11;;:26;;;;:::i;:::-;:30;;:61;;;;:::i;:::-;38258:68;;38168:166;;;:::o;37639:355::-;37702:19;37725:10;:8;:10::i;:::-;37702:33;;37746:18;37767:27;37782:11;37767:10;:14;;:27;;;;:::i;:::-;37746:48;;37830:38;37857:10;37830:7;:22;37846:4;37830:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;37805:7;:22;37821:4;37805:22;;;;;;;;;;;;;;;:63;;;;37882:11;:26;37902:4;37882:26;;;;;;;;;;;;;;;;;;;;;;;;;37879:107;;;37948:38;37975:10;37948:7;:22;37964:4;37948:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;37923:7;:22;37939:4;37923:22;;;;;;;;;;;;;;;:63;;;;37879:107;37639:355;;;:::o;35538:147::-;35616:17;35628:4;35616:7;;:11;;:17;;;;:::i;:::-;35606:7;:27;;;;35657:20;35672:4;35657:10;;:14;;:20;;;;:::i;:::-;35644:10;:33;;;;35538:147;;:::o

Swarm Source

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