ETH Price: $2,406.10 (+3.51%)

Token

AVOCADO (AVOCADO)
 

Overview

Max Total Supply

1,000,000,000,000 AVOCADO

Holders

41

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
579,836,999,750.669000696 AVOCADO

Value
$0.00
0x0b1a2511be644335fb92369cea57c8defb75860c
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:
AVOCADO

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-06-01
*/

pragma solidity ^0.6.12;

// SPDX-License-Identifier: MIT

interface IERC20 {

    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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



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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// pragma solidity >=0.5.0;

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

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

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

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

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


// pragma solidity >=0.5.0;

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

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

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

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

    function permit(address owner, address spender, uint value, uint charityline, 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 charityline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint charityline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint charityline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint charityline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint charityline,
        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 charityline,
        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 charityline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint charityline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint charityline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint charityline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint charityline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint charityline)
        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 charityline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint charityline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

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


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

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

    mapping (address => bool) private _isExcludedFromFee;

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

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

    uint256 public _burnFee      = 0;
    uint256 private _previousBurnFee = _burnFee;

    uint256 public _charityFee   = 0;
    address public charityWallet = 0x6ffE70e278f903A3156fbC9675120c401eA5D9aF;
    uint256 private _previouscharityFee = _charityFee;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = false;

    uint256 public _maxTxAmount = 1000000000000 * 10**9;
    uint256 private numTokensSellToAddToLiquidity = 100000000 * 10**9;
    
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }
    
    constructor () public {
        _rOwned[_msgSender()] = _rTotal;
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);  // UNI v2
         // 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 transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

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

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

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

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

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

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

    function 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 != 0x05fF2B0DB69458A0750badebc4f9e13aDd608C7F, 'We can not exclude Pancake 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);
    }
    

    
     //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 {
        _taxFee       = 0;
        _liquidityFee = 0;
        _burnFee      = 0;
        _charityFee   = 0;
    }
    
    function restoreAllFee() private {
        _taxFee       = 2;
        _liquidityFee = 0;
        _charityFee   = 5;
        _burnFee      = 3;

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

        // 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));        
        bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            contractTokenBalance = numTokensSellToAddToLiquidity;
            //add liquidity
            swapAndLiquify(contractTokenBalance);
        }
        
        //transfer amount, it will take tax, burn, liquidity fee
        _tokenTransfer(from,to,amount);
    }

    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) private {
        if(_isExcludedFromFee[sender] || _isExcludedFromFee[recipient]){
            removeAllFee();
        }
        else{
            require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
        }
        
        //Calculate burn amount and charity amount
        uint256 burnAmt = amount.mul(_burnFee).div(100);
        uint256 charityAmt = amount.mul(_charityFee).div(100);

        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, (amount.sub(burnAmt).sub(charityAmt)));
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, (amount.sub(burnAmt).sub(charityAmt)));
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, (amount.sub(burnAmt).sub(charityAmt)));
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, (amount.sub(burnAmt).sub(charityAmt)));
        } else {
            _transferStandard(sender, recipient, (amount.sub(burnAmt).sub(charityAmt)));
        }
        
        //Temporarily remove fees to transfer to burn address and charity wallet
        _taxFee = 0;
        _liquidityFee = 0;

        //Send transfers to burn and charity wallet
        _transferStandard(sender, address(0), burnAmt);
        _transferStandard(sender, charityWallet, charityAmt);

        //Restore tax and liquidity fees
        _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;


        if(_isExcludedFromFee[sender] || _isExcludedFromFee[recipient])
            restoreAllFee();
    }

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

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

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

    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }
    
    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }
    
    //Call this function after finalizing the presale
    function enableAllFees() external onlyOwner() {
        _taxFee       = 2;
        _previousTaxFee = _taxFee;
        _liquidityFee = 0;
        _previousLiquidityFee = _liquidityFee;
        _charityFee   = 5;
        _previouscharityFee = _charityFee;
        _burnFee      = 3;
        _previousBurnFee = _taxFee;
        inSwapAndLiquify = true;
        emit SwapAndLiquifyEnabledUpdated(true);
    }

    function disableAllFees() external onlyOwner() {
        _taxFee       = 0;
        _previousTaxFee = _taxFee;
        _liquidityFee = 0;
        _previousLiquidityFee = _liquidityFee;
        _burnFee      = 0;
        _previousBurnFee = _taxFee;
        _charityFee   = 0;
        _previouscharityFee = _charityFee;
        inSwapAndLiquify = false;
        emit SwapAndLiquifyEnabledUpdated(false);
    }
    
    function setcharityWallet(address newWallet) external onlyOwner() {
        charityWallet = newWallet;
    }
   
    function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() {
        require(maxTxPercent > 10, "Cannot set transaction amount less than 10 percent!");
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(
            10**2
        );
    }

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_charityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"charityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableAllFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableAllFees","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":"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":"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":"address","name":"newWallet","type":"address"}],"name":"setcharityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052683635c9adc5dea00000600955600954600019816200001f57fe5b0660001903600a556040518060400160405280600781526020017f41564f4341444f00000000000000000000000000000000000000000000000000815250600c90805190602001906200007492919062000666565b506040518060400160405280600781526020017f41564f4341444f00000000000000000000000000000000000000000000000000815250600d9080519060200190620000c292919062000666565b506009600e60006101000a81548160ff021916908360ff1602179055506000600f55600f54601055600060115560115460125560006013556013546014556000601555736ffe70e278f903a3156fbc9675120c401ea5d9af601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506015546017556000601860016101000a81548160ff021916908315150217905550683635c9adc5dea0000060195567016345785d8a0000601a55348015620001a157600080fd5b506000620001b46200063560201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350600a5460036000620002696200063560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200030757600080fd5b505afa1580156200031c573d6000803e3d6000fd5b505050506040513d60208110156200033357600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620003a757600080fd5b505afa158015620003bc573d6000803e3d6000fd5b505050506040513d6020811015620003d357600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b1580156200044e57600080fd5b505af115801562000463573d6000803e3d6000fd5b505050506040513d60208110156200047a57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250506001600660006200050e6200063d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620005c76200063560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040518082815260200191505060405180910390a3506200070c565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006a957805160ff1916838001178555620006da565b82800160010185558215620006da579182015b82811115620006d9578251825591602001919060010190620006bc565b5b509050620006e99190620006ed565b5090565b5b8082111562000708576000816000905550600101620006ee565b5090565b60805160601c60a05160601c6153fe620007546000398061194252806132d6525080610ee052806142195280614305528061432c5280614437528061445e52506153fe6000f3fe60806040526004361061024a5760003560e01c80636bc87c3a11610139578063a69df4b5116100b6578063d543dbeb1161007a578063d543dbeb14610c60578063dd46706414610c9b578063dd62ed3e14610cd6578063ea2f0b3714610d5b578063f2fde38b14610dac578063ffc7863514610dfd57610251565b8063a69df4b514610b45578063a9059cbb14610b5c578063b6c5232414610bcd578063c0b0fda214610bf8578063c49b9a8014610c2357610251565b80637d1db4a5116100fd5780637d1db4a51461097157806388f820201461099c5780638da5cb5b14610a0357806395d89b4114610a44578063a457c2d714610ad457610251565b80636bc87c3a1461087257806370a082311461089d578063715018a614610902578063741af87f146109195780637b2087691461093057610251565b80633b124fe7116101c75780634549b0391161018b5780634549b039146106f157806349bd5a5e1461074c5780634a74bb021461078d57806352390c02146107ba5780635342acb41461080b57610251565b80633b124fe7146105be5780633bd5d173146105e957806340f8007a14610624578063428c80e41461064f578063437823ec146106a057610251565b806323b872dd1161020e57806323b872dd146103ee5780632d8381191461047f578063313ce567146104ce5780633685d419146104fc578063395093511461054d57610251565b806306fdde0314610256578063095ea7b3146102e657806313114a9d146103575780631694505e1461038257806318160ddd146103c357610251565b3661025157005b600080fd5b34801561026257600080fd5b5061026b610e14565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102ab578082015181840152602081019050610290565b50505050905090810190601f1680156102d85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102f257600080fd5b5061033f6004803603604081101561030957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610eb6565b60405180821515815260200191505060405180910390f35b34801561036357600080fd5b5061036c610ed4565b6040518082815260200191505060405180910390f35b34801561038e57600080fd5b50610397610ede565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103cf57600080fd5b506103d8610f02565b6040518082815260200191505060405180910390f35b3480156103fa57600080fd5b506104676004803603606081101561041157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f0c565b60405180821515815260200191505060405180910390f35b34801561048b57600080fd5b506104b8600480360360208110156104a257600080fd5b8101908080359060200190929190505050610fe5565b6040518082815260200191505060405180910390f35b3480156104da57600080fd5b506104e3611069565b604051808260ff16815260200191505060405180910390f35b34801561050857600080fd5b5061054b6004803603602081101561051f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611080565b005b34801561055957600080fd5b506105a66004803603604081101561057057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061140a565b60405180821515815260200191505060405180910390f35b3480156105ca57600080fd5b506105d36114bd565b6040518082815260200191505060405180910390f35b3480156105f557600080fd5b506106226004803603602081101561060c57600080fd5b81019080803590602001909291905050506114c3565b005b34801561063057600080fd5b50610639611654565b6040518082815260200191505060405180910390f35b34801561065b57600080fd5b5061069e6004803603602081101561067257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061165a565b005b3480156106ac57600080fd5b506106ef600480360360208110156106c357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611766565b005b3480156106fd57600080fd5b506107366004803603604081101561071457600080fd5b8101908080359060200190929190803515159060200190929190505050611889565b6040518082815260200191505060405180910390f35b34801561075857600080fd5b50610761611940565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561079957600080fd5b506107a2611964565b60405180821515815260200191505060405180910390f35b3480156107c657600080fd5b50610809600480360360208110156107dd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611977565b005b34801561081757600080fd5b5061085a6004803603602081101561082e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d2a565b60405180821515815260200191505060405180910390f35b34801561087e57600080fd5b50610887611d80565b6040518082815260200191505060405180910390f35b3480156108a957600080fd5b506108ec600480360360208110156108c057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d86565b6040518082815260200191505060405180910390f35b34801561090e57600080fd5b50610917611e71565b005b34801561092557600080fd5b5061092e611ff7565b005b34801561093c57600080fd5b5061094561215a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561097d57600080fd5b50610986612180565b6040518082815260200191505060405180910390f35b3480156109a857600080fd5b506109eb600480360360208110156109bf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612186565b60405180821515815260200191505060405180910390f35b348015610a0f57600080fd5b50610a186121dc565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a5057600080fd5b50610a59612205565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a99578082015181840152602081019050610a7e565b50505050905090810190601f168015610ac65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610ae057600080fd5b50610b2d60048036036040811015610af757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506122a7565b60405180821515815260200191505060405180910390f35b348015610b5157600080fd5b50610b5a612374565b005b348015610b6857600080fd5b50610bb560048036036040811015610b7f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612591565b60405180821515815260200191505060405180910390f35b348015610bd957600080fd5b50610be26125af565b6040518082815260200191505060405180910390f35b348015610c0457600080fd5b50610c0d6125b9565b6040518082815260200191505060405180910390f35b348015610c2f57600080fd5b50610c5e60048036036020811015610c4657600080fd5b810190808035151590602001909291905050506125bf565b005b348015610c6c57600080fd5b50610c9960048036036020811015610c8357600080fd5b81019080803590602001909291905050506126dd565b005b348015610ca757600080fd5b50610cd460048036036020811015610cbe57600080fd5b810190808035906020019092919050505061282f565b005b348015610ce257600080fd5b50610d4560048036036040811015610cf957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612a20565b6040518082815260200191505060405180910390f35b348015610d6757600080fd5b50610daa60048036036020811015610d7e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612aa7565b005b348015610db857600080fd5b50610dfb60048036036020811015610dcf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612bca565b005b348015610e0957600080fd5b50610e12612dd5565b005b6060600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610eac5780601f10610e8157610100808354040283529160200191610eac565b820191906000526020600020905b815481529060010190602001808311610e8f57829003601f168201915b5050505050905090565b6000610eca610ec3612f38565b8484612f40565b6001905092915050565b6000600b54905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600954905090565b6000610f19848484613137565b610fda84610f25612f38565b610fd58560405180606001604052806028815260200161529960289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f8b612f38565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133639092919063ffffffff16565b612f40565b600190509392505050565b6000600a54821115611042576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806151ab602a913960400191505060405180910390fd5b600061104c613423565b9050611061818461344e90919063ffffffff16565b915050919050565b6000600e60009054906101000a900460ff16905090565b611088612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611148576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611207576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b600880549050811015611406578173ffffffffffffffffffffffffffffffffffffffff166008828154811061123b57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156113f95760086001600880549050038154811061129757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600882815481106112cf57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060088054806113bf57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055611406565b808060010191505061120a565b5050565b60006114b3611417612f38565b846114ae8560056000611428612f38565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349890919063ffffffff16565b612f40565b6001905092915050565b600f5481565b60006114cd612f38565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611572576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615355602c913960400191505060405180910390fd5b600061157d83613520565b505050505090506115d681600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461357c90919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061162e81600a5461357c90919063ffffffff16565b600a8190555061164983600b5461349890919063ffffffff16565b600b81905550505050565b60155481565b611662612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611722576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61176e612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461182e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600954831115611903576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b8161192357600061191384613520565b505050505090508091505061193a565b600061192e84613520565b50505050915050809150505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601860019054906101000a900460ff1681565b61197f612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a3f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b7305ff2b0db69458a0750badebc4f9e13add608c7f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ad8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806153336022913960400191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611b98576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611c6c57611c28600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fe5565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60115481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611e2157600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611e6c565b611e69600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fe5565b90505b919050565b611e79612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f39576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611fff612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600f81905550600f5460108190555060006011819055506011546012819055506000601381905550600f5460148190555060006015819055506015546017819055506000601860006101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159600060405180821515815260200191505060405180910390a1565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600d8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561229d5780601f106122725761010080835404028352916020019161229d565b820191906000526020600020905b81548152906001019060200180831161228057829003601f168201915b5050505050905090565b600061236a6122b4612f38565b84612365856040518060600160405280602581526020016153a460259139600560006122de612f38565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133639092919063ffffffff16565b612f40565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461241a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806153816023913960400191505060405180910390fd5b6002544211612491576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006125a561259e612f38565b8484613137565b6001905092915050565b6000600254905090565b60135481565b6125c7612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612687576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601860016101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b6126e5612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146127a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600a81116127fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260338152602001806152456033913960400191505060405180910390fd5b6128266064612818836009546135c690919063ffffffff16565b61344e90919063ffffffff16565b60198190555050565b612837612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612aaf612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b6f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b612bd2612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c92576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d18576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806151d56026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612ddd612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e9d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6002600f81905550600f54601081905550600060118190555060115460128190555060056015819055506015546017819055506003601381905550600f546014819055506001601860006101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159600160405180821515815260200191505060405180910390a1565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612fc6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061530f6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561304c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806151fb6022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156131bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806152ea6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613243576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806151886023913960400191505060405180910390fd5b6000811161329c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806152c16029913960400191505060405180910390fd5b60006132a730611d86565b90506000601a5482101590508080156132cd5750601860009054906101000a900460ff16155b801561332557507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561333d5750601860019054906101000a900460ff165b1561335157601a5491506133508261364c565b5b61335c85858561372e565b5050505050565b6000838311158290613410576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156133d55780820151818401526020810190506133ba565b50505050905090810190601f1680156134025780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613430613d49565b91509150613447818361344e90919063ffffffff16565b9250505090565b600061349083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613fda565b905092915050565b600080828401905083811015613516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008060008060008060008060006135378a6140a0565b92509250925060008060006135558d8686613550613423565b6140fa565b9250925092508282828888889b509b509b509b509b509b5050505050505091939550919395565b60006135be83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613363565b905092915050565b6000808314156135d95760009050613646565b60008284029050828482816135ea57fe5b0414613641576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806152786021913960400191505060405180910390fd5b809150505b92915050565b6001601860006101000a81548160ff021916908315150217905550600061367d60028361344e90919063ffffffff16565b90506000613694828461357c90919063ffffffff16565b905060004790506136a483614183565b60006136b9824761357c90919063ffffffff16565b90506136c58382614431565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405180848152602001838152602001828152602001935050505060405180910390a1505050506000601860006101000a81548160ff02191690831515021790555050565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806137cf5750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156137e1576137dc614582565b61383d565b60195481111561383c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018061521d6028913960400191505060405180910390fd5b5b60006138676064613859601354856135c690919063ffffffff16565b61344e90919063ffffffff16565b905060006138936064613885601554866135c690919063ffffffff16565b61344e90919063ffffffff16565b9050600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156139385750600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156139715761396c858561396784613959878961357c90919063ffffffff16565b61357c90919063ffffffff16565b6145a4565b613c38565b600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613a145750600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613a4d57613a488585613a4384613a35878961357c90919063ffffffff16565b61357c90919063ffffffff16565b614804565b613c37565b600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613af15750600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613b2a57613b258585613b2084613b12878961357c90919063ffffffff16565b61357c90919063ffffffff16565b614a64565b613c36565b600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613bcc5750600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613c0557613c008585613bfb84613bed878961357c90919063ffffffff16565b61357c90919063ffffffff16565b614c2f565b613c35565b613c348585613c2f84613c21878961357c90919063ffffffff16565b61357c90919063ffffffff16565b614a64565b5b5b5b5b6000600f819055506000601181905550613c5485600084614a64565b613c8185601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683614a64565b601054600f81905550601254601181905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613d345750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613d4257613d41614f24565b5b5050505050565b6000806000600a5490506000600954905060005b600880549050811015613f9d57826003600060088481548110613d7c57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180613e635750816004600060088481548110613dfb57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15613e7a57600a5460095494509450505050613fd6565b613f036003600060088481548110613e8e57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461357c90919063ffffffff16565b9250613f8e6004600060088481548110613f1957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361357c90919063ffffffff16565b91508080600101915050613d5d565b50613fb5600954600a5461344e90919063ffffffff16565b821015613fcd57600a54600954935093505050613fd6565b81819350935050505b9091565b60008083118290614086576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561404b578082015181840152602081019050614030565b50505050905090810190601f1680156140785780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161409257fe5b049050809150509392505050565b6000806000806140af85614f46565b905060006140bc86614f77565b905060006140e5826140d7858a61357c90919063ffffffff16565b61357c90919063ffffffff16565b90508083839550955095505050509193909250565b60008060008061411385896135c690919063ffffffff16565b9050600061412a86896135c690919063ffffffff16565b9050600061414187896135c690919063ffffffff16565b9050600061416a8261415c858761357c90919063ffffffff16565b61357c90919063ffffffff16565b9050838184965096509650505050509450945094915050565b6060600267ffffffffffffffff8111801561419d57600080fd5b506040519080825280602002602001820160405280156141cc5781602001602082028036833780820191505090505b50905030816000815181106141dd57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561427d57600080fd5b505afa158015614291573d6000803e3d6000fd5b505050506040513d60208110156142a757600080fd5b8101908080519060200190929190505050816001815181106142c557fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061432a307f000000000000000000000000000000000000000000000000000000000000000084612f40565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156143ec5780820151818401526020810190506143d1565b505050509050019650505050505050600060405180830381600087803b15801561441557600080fd5b505af1158015614429573d6000803e3d6000fd5b505050505050565b61445c307f000000000000000000000000000000000000000000000000000000000000000084612f40565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806144a66121dc565b426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b15801561452b57600080fd5b505af115801561453f573d6000803e3d6000fd5b50505050506040513d606081101561455657600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b6000600f81905550600060118190555060006013819055506000601581905550565b6000806000806000806145b687613520565b95509550955095509550955061461487600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461357c90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506146a986600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461357c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061473e85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349890919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061478a81614fa8565b614794848361514d565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061481687613520565b95509550955095509550955061487486600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461357c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061490983600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349890919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061499e85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349890919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506149ea81614fa8565b6149f4848361514d565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614a7687613520565b955095509550955095509550614ad486600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461357c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614b6985600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349890919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614bb581614fa8565b614bbf848361514d565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614c4187613520565b955095509550955095509550614c9f87600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461357c90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d3486600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461357c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614dc983600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349890919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e5e85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349890919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614eaa81614fa8565b614eb4848361514d565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6002600f81905550600060118190555060056015819055506003601381905550565b6000614f706064614f62600f54856135c690919063ffffffff16565b61344e90919063ffffffff16565b9050919050565b6000614fa16064614f93601154856135c690919063ffffffff16565b61344e90919063ffffffff16565b9050919050565b6000614fb2613423565b90506000614fc982846135c690919063ffffffff16565b905061501d81600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349890919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156151485761510483600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349890919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61516282600a5461357c90919063ffffffff16565b600a8190555061517d81600b5461349890919063ffffffff16565b600b81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e43616e6e6f7420736574207472616e73616374696f6e20616d6f756e74206c657373207468616e2031302070657263656e7421536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c7564652050616e63616b6520726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220905c30b64b275da58668f53dbc6728bba016de52e409bd4a0025d022efadee9164736f6c634300060c0033

Deployed Bytecode

0x60806040526004361061024a5760003560e01c80636bc87c3a11610139578063a69df4b5116100b6578063d543dbeb1161007a578063d543dbeb14610c60578063dd46706414610c9b578063dd62ed3e14610cd6578063ea2f0b3714610d5b578063f2fde38b14610dac578063ffc7863514610dfd57610251565b8063a69df4b514610b45578063a9059cbb14610b5c578063b6c5232414610bcd578063c0b0fda214610bf8578063c49b9a8014610c2357610251565b80637d1db4a5116100fd5780637d1db4a51461097157806388f820201461099c5780638da5cb5b14610a0357806395d89b4114610a44578063a457c2d714610ad457610251565b80636bc87c3a1461087257806370a082311461089d578063715018a614610902578063741af87f146109195780637b2087691461093057610251565b80633b124fe7116101c75780634549b0391161018b5780634549b039146106f157806349bd5a5e1461074c5780634a74bb021461078d57806352390c02146107ba5780635342acb41461080b57610251565b80633b124fe7146105be5780633bd5d173146105e957806340f8007a14610624578063428c80e41461064f578063437823ec146106a057610251565b806323b872dd1161020e57806323b872dd146103ee5780632d8381191461047f578063313ce567146104ce5780633685d419146104fc578063395093511461054d57610251565b806306fdde0314610256578063095ea7b3146102e657806313114a9d146103575780631694505e1461038257806318160ddd146103c357610251565b3661025157005b600080fd5b34801561026257600080fd5b5061026b610e14565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102ab578082015181840152602081019050610290565b50505050905090810190601f1680156102d85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102f257600080fd5b5061033f6004803603604081101561030957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610eb6565b60405180821515815260200191505060405180910390f35b34801561036357600080fd5b5061036c610ed4565b6040518082815260200191505060405180910390f35b34801561038e57600080fd5b50610397610ede565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103cf57600080fd5b506103d8610f02565b6040518082815260200191505060405180910390f35b3480156103fa57600080fd5b506104676004803603606081101561041157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f0c565b60405180821515815260200191505060405180910390f35b34801561048b57600080fd5b506104b8600480360360208110156104a257600080fd5b8101908080359060200190929190505050610fe5565b6040518082815260200191505060405180910390f35b3480156104da57600080fd5b506104e3611069565b604051808260ff16815260200191505060405180910390f35b34801561050857600080fd5b5061054b6004803603602081101561051f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611080565b005b34801561055957600080fd5b506105a66004803603604081101561057057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061140a565b60405180821515815260200191505060405180910390f35b3480156105ca57600080fd5b506105d36114bd565b6040518082815260200191505060405180910390f35b3480156105f557600080fd5b506106226004803603602081101561060c57600080fd5b81019080803590602001909291905050506114c3565b005b34801561063057600080fd5b50610639611654565b6040518082815260200191505060405180910390f35b34801561065b57600080fd5b5061069e6004803603602081101561067257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061165a565b005b3480156106ac57600080fd5b506106ef600480360360208110156106c357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611766565b005b3480156106fd57600080fd5b506107366004803603604081101561071457600080fd5b8101908080359060200190929190803515159060200190929190505050611889565b6040518082815260200191505060405180910390f35b34801561075857600080fd5b50610761611940565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561079957600080fd5b506107a2611964565b60405180821515815260200191505060405180910390f35b3480156107c657600080fd5b50610809600480360360208110156107dd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611977565b005b34801561081757600080fd5b5061085a6004803603602081101561082e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d2a565b60405180821515815260200191505060405180910390f35b34801561087e57600080fd5b50610887611d80565b6040518082815260200191505060405180910390f35b3480156108a957600080fd5b506108ec600480360360208110156108c057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d86565b6040518082815260200191505060405180910390f35b34801561090e57600080fd5b50610917611e71565b005b34801561092557600080fd5b5061092e611ff7565b005b34801561093c57600080fd5b5061094561215a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561097d57600080fd5b50610986612180565b6040518082815260200191505060405180910390f35b3480156109a857600080fd5b506109eb600480360360208110156109bf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612186565b60405180821515815260200191505060405180910390f35b348015610a0f57600080fd5b50610a186121dc565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a5057600080fd5b50610a59612205565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a99578082015181840152602081019050610a7e565b50505050905090810190601f168015610ac65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610ae057600080fd5b50610b2d60048036036040811015610af757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506122a7565b60405180821515815260200191505060405180910390f35b348015610b5157600080fd5b50610b5a612374565b005b348015610b6857600080fd5b50610bb560048036036040811015610b7f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612591565b60405180821515815260200191505060405180910390f35b348015610bd957600080fd5b50610be26125af565b6040518082815260200191505060405180910390f35b348015610c0457600080fd5b50610c0d6125b9565b6040518082815260200191505060405180910390f35b348015610c2f57600080fd5b50610c5e60048036036020811015610c4657600080fd5b810190808035151590602001909291905050506125bf565b005b348015610c6c57600080fd5b50610c9960048036036020811015610c8357600080fd5b81019080803590602001909291905050506126dd565b005b348015610ca757600080fd5b50610cd460048036036020811015610cbe57600080fd5b810190808035906020019092919050505061282f565b005b348015610ce257600080fd5b50610d4560048036036040811015610cf957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612a20565b6040518082815260200191505060405180910390f35b348015610d6757600080fd5b50610daa60048036036020811015610d7e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612aa7565b005b348015610db857600080fd5b50610dfb60048036036020811015610dcf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612bca565b005b348015610e0957600080fd5b50610e12612dd5565b005b6060600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610eac5780601f10610e8157610100808354040283529160200191610eac565b820191906000526020600020905b815481529060010190602001808311610e8f57829003601f168201915b5050505050905090565b6000610eca610ec3612f38565b8484612f40565b6001905092915050565b6000600b54905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600954905090565b6000610f19848484613137565b610fda84610f25612f38565b610fd58560405180606001604052806028815260200161529960289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f8b612f38565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133639092919063ffffffff16565b612f40565b600190509392505050565b6000600a54821115611042576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806151ab602a913960400191505060405180910390fd5b600061104c613423565b9050611061818461344e90919063ffffffff16565b915050919050565b6000600e60009054906101000a900460ff16905090565b611088612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611148576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611207576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b600880549050811015611406578173ffffffffffffffffffffffffffffffffffffffff166008828154811061123b57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156113f95760086001600880549050038154811061129757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600882815481106112cf57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060088054806113bf57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055611406565b808060010191505061120a565b5050565b60006114b3611417612f38565b846114ae8560056000611428612f38565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349890919063ffffffff16565b612f40565b6001905092915050565b600f5481565b60006114cd612f38565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611572576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615355602c913960400191505060405180910390fd5b600061157d83613520565b505050505090506115d681600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461357c90919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061162e81600a5461357c90919063ffffffff16565b600a8190555061164983600b5461349890919063ffffffff16565b600b81905550505050565b60155481565b611662612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611722576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61176e612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461182e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600954831115611903576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b8161192357600061191384613520565b505050505090508091505061193a565b600061192e84613520565b50505050915050809150505b92915050565b7f0000000000000000000000004349fcb18281b10d27212d163a5f34e3829feb2481565b601860019054906101000a900460ff1681565b61197f612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a3f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b7305ff2b0db69458a0750badebc4f9e13add608c7f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ad8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806153336022913960400191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611b98576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611c6c57611c28600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fe5565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60115481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611e2157600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611e6c565b611e69600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fe5565b90505b919050565b611e79612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f39576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611fff612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600f81905550600f5460108190555060006011819055506011546012819055506000601381905550600f5460148190555060006015819055506015546017819055506000601860006101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159600060405180821515815260200191505060405180910390a1565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600d8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561229d5780601f106122725761010080835404028352916020019161229d565b820191906000526020600020905b81548152906001019060200180831161228057829003601f168201915b5050505050905090565b600061236a6122b4612f38565b84612365856040518060600160405280602581526020016153a460259139600560006122de612f38565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133639092919063ffffffff16565b612f40565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461241a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806153816023913960400191505060405180910390fd5b6002544211612491576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006125a561259e612f38565b8484613137565b6001905092915050565b6000600254905090565b60135481565b6125c7612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612687576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601860016101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b6126e5612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146127a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600a81116127fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260338152602001806152456033913960400191505060405180910390fd5b6128266064612818836009546135c690919063ffffffff16565b61344e90919063ffffffff16565b60198190555050565b612837612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612aaf612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b6f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b612bd2612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c92576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d18576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806151d56026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612ddd612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e9d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6002600f81905550600f54601081905550600060118190555060115460128190555060056015819055506015546017819055506003601381905550600f546014819055506001601860006101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159600160405180821515815260200191505060405180910390a1565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612fc6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061530f6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561304c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806151fb6022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156131bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806152ea6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613243576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806151886023913960400191505060405180910390fd5b6000811161329c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806152c16029913960400191505060405180910390fd5b60006132a730611d86565b90506000601a5482101590508080156132cd5750601860009054906101000a900460ff16155b801561332557507f0000000000000000000000004349fcb18281b10d27212d163a5f34e3829feb2473ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561333d5750601860019054906101000a900460ff165b1561335157601a5491506133508261364c565b5b61335c85858561372e565b5050505050565b6000838311158290613410576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156133d55780820151818401526020810190506133ba565b50505050905090810190601f1680156134025780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613430613d49565b91509150613447818361344e90919063ffffffff16565b9250505090565b600061349083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613fda565b905092915050565b600080828401905083811015613516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008060008060008060008060006135378a6140a0565b92509250925060008060006135558d8686613550613423565b6140fa565b9250925092508282828888889b509b509b509b509b509b5050505050505091939550919395565b60006135be83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613363565b905092915050565b6000808314156135d95760009050613646565b60008284029050828482816135ea57fe5b0414613641576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806152786021913960400191505060405180910390fd5b809150505b92915050565b6001601860006101000a81548160ff021916908315150217905550600061367d60028361344e90919063ffffffff16565b90506000613694828461357c90919063ffffffff16565b905060004790506136a483614183565b60006136b9824761357c90919063ffffffff16565b90506136c58382614431565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405180848152602001838152602001828152602001935050505060405180910390a1505050506000601860006101000a81548160ff02191690831515021790555050565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806137cf5750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156137e1576137dc614582565b61383d565b60195481111561383c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018061521d6028913960400191505060405180910390fd5b5b60006138676064613859601354856135c690919063ffffffff16565b61344e90919063ffffffff16565b905060006138936064613885601554866135c690919063ffffffff16565b61344e90919063ffffffff16565b9050600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156139385750600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156139715761396c858561396784613959878961357c90919063ffffffff16565b61357c90919063ffffffff16565b6145a4565b613c38565b600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613a145750600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613a4d57613a488585613a4384613a35878961357c90919063ffffffff16565b61357c90919063ffffffff16565b614804565b613c37565b600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613af15750600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613b2a57613b258585613b2084613b12878961357c90919063ffffffff16565b61357c90919063ffffffff16565b614a64565b613c36565b600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613bcc5750600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613c0557613c008585613bfb84613bed878961357c90919063ffffffff16565b61357c90919063ffffffff16565b614c2f565b613c35565b613c348585613c2f84613c21878961357c90919063ffffffff16565b61357c90919063ffffffff16565b614a64565b5b5b5b5b6000600f819055506000601181905550613c5485600084614a64565b613c8185601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683614a64565b601054600f81905550601254601181905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613d345750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613d4257613d41614f24565b5b5050505050565b6000806000600a5490506000600954905060005b600880549050811015613f9d57826003600060088481548110613d7c57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180613e635750816004600060088481548110613dfb57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15613e7a57600a5460095494509450505050613fd6565b613f036003600060088481548110613e8e57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461357c90919063ffffffff16565b9250613f8e6004600060088481548110613f1957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361357c90919063ffffffff16565b91508080600101915050613d5d565b50613fb5600954600a5461344e90919063ffffffff16565b821015613fcd57600a54600954935093505050613fd6565b81819350935050505b9091565b60008083118290614086576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561404b578082015181840152602081019050614030565b50505050905090810190601f1680156140785780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161409257fe5b049050809150509392505050565b6000806000806140af85614f46565b905060006140bc86614f77565b905060006140e5826140d7858a61357c90919063ffffffff16565b61357c90919063ffffffff16565b90508083839550955095505050509193909250565b60008060008061411385896135c690919063ffffffff16565b9050600061412a86896135c690919063ffffffff16565b9050600061414187896135c690919063ffffffff16565b9050600061416a8261415c858761357c90919063ffffffff16565b61357c90919063ffffffff16565b9050838184965096509650505050509450945094915050565b6060600267ffffffffffffffff8111801561419d57600080fd5b506040519080825280602002602001820160405280156141cc5781602001602082028036833780820191505090505b50905030816000815181106141dd57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561427d57600080fd5b505afa158015614291573d6000803e3d6000fd5b505050506040513d60208110156142a757600080fd5b8101908080519060200190929190505050816001815181106142c557fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061432a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612f40565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156143ec5780820151818401526020810190506143d1565b505050509050019650505050505050600060405180830381600087803b15801561441557600080fd5b505af1158015614429573d6000803e3d6000fd5b505050505050565b61445c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612f40565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806144a66121dc565b426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b15801561452b57600080fd5b505af115801561453f573d6000803e3d6000fd5b50505050506040513d606081101561455657600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b6000600f81905550600060118190555060006013819055506000601581905550565b6000806000806000806145b687613520565b95509550955095509550955061461487600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461357c90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506146a986600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461357c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061473e85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349890919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061478a81614fa8565b614794848361514d565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061481687613520565b95509550955095509550955061487486600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461357c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061490983600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349890919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061499e85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349890919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506149ea81614fa8565b6149f4848361514d565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614a7687613520565b955095509550955095509550614ad486600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461357c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614b6985600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349890919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614bb581614fa8565b614bbf848361514d565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614c4187613520565b955095509550955095509550614c9f87600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461357c90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d3486600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461357c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614dc983600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349890919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e5e85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349890919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614eaa81614fa8565b614eb4848361514d565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6002600f81905550600060118190555060056015819055506003601381905550565b6000614f706064614f62600f54856135c690919063ffffffff16565b61344e90919063ffffffff16565b9050919050565b6000614fa16064614f93601154856135c690919063ffffffff16565b61344e90919063ffffffff16565b9050919050565b6000614fb2613423565b90506000614fc982846135c690919063ffffffff16565b905061501d81600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349890919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156151485761510483600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349890919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61516282600a5461357c90919063ffffffff16565b600a8190555061517d81600b5461349890919063ffffffff16565b600b81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e43616e6e6f7420736574207472616e73616374696f6e20616d6f756e74206c657373207468616e2031302070657263656e7421536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c7564652050616e63616b6520726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220905c30b64b275da58668f53dbc6728bba016de52e409bd4a0025d022efadee9164736f6c634300060c0033

Deployed Bytecode Sourcemap

25664:19841:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28328:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29240:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30361:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26893:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28605:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29409:313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31285:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28514:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31998:479;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29730:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26431:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30456:377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;26716:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44942:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;43789:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30841:436;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26951:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27030:41;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31546:444;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36380:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26524:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28708:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16205:148;;;;;;;;;;;;;:::i;:::-;;44512:418;;;;;;;;;;;;;:::i;:::-;;26755:73;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27080:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30233:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;15562:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28419:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29956:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17215:293;;;;;;;;;;;;;:::i;:::-;;28914:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;16760:89;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26625:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45325:171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;45063:254;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16925:214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29089:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43912:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16508:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;44089:415;;;;;;;;;;;;;:::i;:::-;;28328:83;28365:13;28398:5;28391:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28328:83;:::o;29240:161::-;29315:4;29332:39;29341:12;:10;:12::i;:::-;29355:7;29364:6;29332:8;:39::i;:::-;29389:4;29382:11;;29240:161;;;;:::o;30361:87::-;30403:7;30430:10;;30423:17;;30361:87;:::o;26893:51::-;;;:::o;28605:95::-;28658:7;28685;;28678:14;;28605:95;:::o;29409:313::-;29507:4;29524:36;29534:6;29542:9;29553:6;29524:9;:36::i;:::-;29571:121;29580:6;29588:12;:10;:12::i;:::-;29602:89;29640:6;29602:89;;;;;;;;;;;;;;;;;:11;:19;29614:6;29602:19;;;;;;;;;;;;;;;:33;29622:12;:10;:12::i;:::-;29602:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;29571:8;:121::i;:::-;29710:4;29703:11;;29409:313;;;;;:::o;31285:253::-;31351:7;31390;;31379;:18;;31371:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31455:19;31478:10;:8;:10::i;:::-;31455:33;;31506:24;31518:11;31506:7;:11;;:24;;;;:::i;:::-;31499:31;;;31285:253;;;:::o;28514:83::-;28555:5;28580:9;;;;;;;;;;;28573:16;;28514:83;:::o;31998:479::-;15784:12;:10;:12::i;:::-;15774:22;;:6;;;;;;;;;;:22;;;15766:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32080:11:::1;:20;32092:7;32080:20;;;;;;;;;;;;;;;;;;;;;;;;;32072:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;32148:9;32143:327;32167:9;:16;;;;32163:1;:20;32143:327;;;32225:7;32209:23;;:9;32219:1;32209:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;32205:254;;;32268:9;32297:1;32278:9;:16;;;;:20;32268:31;;;;;;;;;;;;;;;;;;;;;;;;;32253:9;32263:1;32253:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;32337:1;32318:7;:16;32326:7;32318:16;;;;;;;;;;;;;;;:20;;;;32380:5;32357:11;:20;32369:7;32357:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;32404:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32438:5;;32205:254;32185:3;;;;;;;32143:327;;;;31998:479:::0;:::o;29730:218::-;29818:4;29835:83;29844:12;:10;:12::i;:::-;29858:7;29867:50;29906:10;29867:11;:25;29879:12;:10;:12::i;:::-;29867:25;;;;;;;;;;;;;;;:34;29893:7;29867:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;29835:8;:83::i;:::-;29936:4;29929:11;;29730:218;;;;:::o;26431:32::-;;;;:::o;30456:377::-;30508:14;30525:12;:10;:12::i;:::-;30508:29;;30557:11;:19;30569:6;30557:19;;;;;;;;;;;;;;;;;;;;;;;;;30556:20;30548:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30637:15;30661:19;30672:7;30661:10;:19::i;:::-;30636:44;;;;;;;30709:28;30729:7;30709;:15;30717:6;30709:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;30691:7;:15;30699:6;30691:15;;;;;;;;;;;;;;;:46;;;;30758:20;30770:7;30758;;:11;;:20;;;;:::i;:::-;30748:7;:30;;;;30802:23;30817:7;30802:10;;:14;;:23;;;;:::i;:::-;30789:10;:36;;;;30456:377;;;:::o;26716:32::-;;;;:::o;44942:110::-;15784:12;:10;:12::i;:::-;15774:22;;:6;;;;;;;;;;:22;;;15766:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45035:9:::1;45019:13;;:25;;;;;;;;;;;;;;;;;;44942:110:::0;:::o;43789:111::-;15784:12;:10;:12::i;:::-;15774:22;;:6;;;;;;;;;;:22;;;15766:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43888:4:::1;43858:18;:27;43877:7;43858:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;43789:111:::0;:::o;30841:436::-;30931:7;30970;;30959;:18;;30951:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31029:17;31024:246;;31064:15;31088:19;31099:7;31088:10;:19::i;:::-;31063:44;;;;;;;31129:7;31122:14;;;;;31024:246;31171:23;31202:19;31213:7;31202:10;:19::i;:::-;31169:52;;;;;;;31243:15;31236:22;;;30841:436;;;;;:::o;26951:38::-;;;:::o;27030:41::-;;;;;;;;;;;;;:::o;31546:444::-;15784:12;:10;:12::i;:::-;15774:22;;:6;;;;;;;;;;:22;;;15766:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31639:42:::1;31628:53;;:7;:53;;;;31620:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31740:11;:20;31752:7;31740:20;;;;;;;;;;;;;;;;;;;;;;;;;31739:21;31731:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;31825:1;31806:7;:16;31814:7;31806:16;;;;;;;;;;;;;;;;:20;31803:108;;;31862:37;31882:7;:16;31890:7;31882:16;;;;;;;;;;;;;;;;31862:19;:37::i;:::-;31843:7;:16;31851:7;31843:16;;;;;;;;;;;;;;;:56;;;;31803:108;31944:4;31921:11;:20;31933:7;31921:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;31959:9;31974:7;31959:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31546:444:::0;:::o;36380:123::-;36444:4;36468:18;:27;36487:7;36468:27;;;;;;;;;;;;;;;;;;;;;;;;;36461:34;;36380:123;;;:::o;26524:32::-;;;;:::o;28708:198::-;28774:7;28798:11;:20;28810:7;28798:20;;;;;;;;;;;;;;;;;;;;;;;;;28794:49;;;28827:7;:16;28835:7;28827:16;;;;;;;;;;;;;;;;28820:23;;;;28794:49;28861:37;28881:7;:16;28889:7;28881:16;;;;;;;;;;;;;;;;28861:19;:37::i;:::-;28854:44;;28708:198;;;;:::o;16205:148::-;15784:12;:10;:12::i;:::-;15774:22;;:6;;;;;;;;;;:22;;;15766:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16312:1:::1;16275:40;;16296:6;::::0;::::1;;;;;;;;16275:40;;;;;;;;;;;;16343:1;16326:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;16205:148::o:0;44512:418::-;15784:12;:10;:12::i;:::-;15774:22;;:6;;;;;;;;;;:22;;;15766:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44586:1:::1;44570:7;:17;;;;44616:7;;44598:15;:25;;;;44650:1;44634:13;:17;;;;44686:13;;44662:21;:37;;;;44726:1;44710:8;:17;;;;44757:7;;44738:16;:26;;;;44791:1;44775:11;:17;;;;44825:11;;44803:19;:33;;;;44866:5;44847:16;;:24;;;;;;;;;;;;;;;;;;44887:35;44916:5;44887:35;;;;;;;;;;;;;;;;;;;;44512:418::o:0;26755:73::-;;;;;;;;;;;;;:::o;27080:51::-;;;;:::o;30233:120::-;30301:4;30325:11;:20;30337:7;30325:20;;;;;;;;;;;;;;;;;;;;;;;;;30318:27;;30233:120;;;:::o;15562:79::-;15600:7;15627:6;;;;;;;;;;;15620:13;;15562:79;:::o;28419:87::-;28458:13;28491:7;28484:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28419:87;:::o;29956:269::-;30049:4;30066:129;30075:12;:10;:12::i;:::-;30089:7;30098:96;30137:15;30098:96;;;;;;;;;;;;;;;;;:11;:25;30110:12;:10;:12::i;:::-;30098:25;;;;;;;;;;;;;;;:34;30124:7;30098:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;30066:8;:129::i;:::-;30213:4;30206:11;;29956:269;;;;:::o;17215:293::-;17285:10;17267:28;;:14;;;;;;;;;;;:28;;;17259:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17360:9;;17354:3;:15;17346:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17451:14;;;;;;;;;;;17422:44;;17443:6;;;;;;;;;;17422:44;;;;;;;;;;;;17486:14;;;;;;;;;;;17477:6;;:23;;;;;;;;;;;;;;;;;;17215:293::o;28914:167::-;28992:4;29009:42;29019:12;:10;:12::i;:::-;29033:9;29044:6;29009:9;:42::i;:::-;29069:4;29062:11;;28914:167;;;;:::o;16760:89::-;16805:7;16832:9;;16825:16;;16760:89;:::o;26625:32::-;;;;:::o;45325:171::-;15784:12;:10;:12::i;:::-;15774:22;;:6;;;;;;;;;;:22;;;15766:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45426:8:::1;45402:21;;:32;;;;;;;;;;;;;;;;;;45450:38;45479:8;45450:38;;;;;;;;;;;;;;;;;;;;45325:171:::0;:::o;45063:254::-;15784:12;:10;:12::i;:::-;15774:22;;:6;;;;;;;;;;:22;;;15766:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45165:2:::1;45150:12;:17;45142:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45249:60;45293:5;45249:25;45261:12;45249:7;;:11;;:25;;;;:::i;:::-;:29;;:60;;;;:::i;:::-;45234:12;:75;;;;45063:254:::0;:::o;16925:214::-;15784:12;:10;:12::i;:::-;15774:22;;:6;;;;;;;;;;:22;;;15766:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17006:6:::1;::::0;::::1;;;;;;;;16989:14;;:23;;;;;;;;;;;;;;;;;;17040:1;17023:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;17071:4;17065:3;:10;17053:9;:22;;;;17128:1;17091:40;;17112:6;::::0;::::1;;;;;;;;17091:40;;;;;;;;;;;;16925:214:::0;:::o;29089:143::-;29170:7;29197:11;:18;29209:5;29197:18;;;;;;;;;;;;;;;:27;29216:7;29197:27;;;;;;;;;;;;;;;;29190:34;;29089:143;;;;:::o;43912:110::-;15784:12;:10;:12::i;:::-;15774:22;;:6;;;;;;;;;;:22;;;15766:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44009:5:::1;43979:18;:27;43998:7;43979:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;43912:110:::0;:::o;16508:244::-;15784:12;:10;:12::i;:::-;15774:22;;:6;;;;;;;;;;:22;;;15766:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16617:1:::1;16597:22;;:8;:22;;;;16589:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16707:8;16678:38;;16699:6;::::0;::::1;;;;;;;;16678:38;;;;;;;;;;;;16736:8;16727:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;16508:244:::0;:::o;44089:415::-;15784:12;:10;:12::i;:::-;15774:22;;:6;;;;;;;;;;:22;;;15766:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44162:1:::1;44146:7;:17;;;;44192:7;;44174:15;:25;;;;44226:1;44210:13;:17;;;;44262:13;;44238:21;:37;;;;44302:1;44286:11;:17;;;;44336:11;;44314:19;:33;;;;44374:1;44358:8;:17;;;;44405:7;;44386:16;:26;;;;44442:4;44423:16;;:23;;;;;;;;;;;;;;;;;;44462:34;44491:4;44462:34;;;;;;;;;;;;;;;;;;;;44089:415::o:0;7970:106::-;8023:15;8058:10;8051:17;;7970:106;:::o;36511:337::-;36621:1;36604:19;;:5;:19;;;;36596:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36702:1;36683:21;;:7;:21;;;;36675:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36786:6;36756:11;:18;36768:5;36756:18;;;;;;;;;;;;;;;:27;36775:7;36756:27;;;;;;;;;;;;;;;:36;;;;36824:7;36808:32;;36817:5;36808:32;;;36833:6;36808:32;;;;;;;;;;;;;;;;;;36511:337;;;:::o;36856:1234::-;36994:1;36978:18;;:4;:18;;;;36970:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37071:1;37057:16;;:2;:16;;;;37049:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37141:1;37132:6;:10;37124:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37483:28;37514:24;37532:4;37514:9;:24::i;:::-;37483:55;;37557:24;37608:29;;37584:20;:53;;37557:80;;37666:19;:53;;;;;37703:16;;;;;;;;;;;37702:17;37666:53;:91;;;;;37744:13;37736:21;;:4;:21;;;;37666:91;:129;;;;;37774:21;;;;;;;;;;;37666:129;37648:318;;;37845:29;;37822:52;;37918:36;37933:20;37918:14;:36::i;:::-;37648:318;38052:30;38067:4;38072:2;38075:6;38052:14;:30::i;:::-;36856:1234;;;;;:::o;4380:192::-;4466:7;4499:1;4494;:6;;4502:12;4486:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4526:9;4542:1;4538;:5;4526:17;;4563:1;4556:8;;;4380:192;;;;;:::o;34598:163::-;34639:7;34660:15;34677;34696:19;:17;:19::i;:::-;34659:56;;;;34733:20;34745:7;34733;:11;;:20;;;;:::i;:::-;34726:27;;;;34598:163;:::o;5778:132::-;5836:7;5863:39;5867:1;5870;5863:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5856:46;;5778:132;;;;:::o;3477:181::-;3535:7;3555:9;3571:1;3567;:5;3555:17;;3596:1;3591;:6;;3583:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3649:1;3642:8;;;3477:181;;;;:::o;33396:419::-;33455:7;33464;33473;33482;33491;33500;33521:23;33546:12;33560:18;33582:20;33594:7;33582:11;:20::i;:::-;33520:82;;;;;;33614:15;33631:23;33656:12;33672:50;33684:7;33693:4;33699:10;33711;:8;:10::i;:::-;33672:11;:50::i;:::-;33613:109;;;;;;33741:7;33750:15;33767:4;33773:15;33790:4;33796:10;33733:74;;;;;;;;;;;;;;;;;;33396:419;;;;;;;:::o;3941:136::-;3999:7;4026:43;4030:1;4033;4026:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4019:50;;3941:136;;;;:::o;4831:471::-;4889:7;5139:1;5134;:6;5130:47;;;5164:1;5157:8;;;;5130:47;5189:9;5205:1;5201;:5;5189:17;;5234:1;5229;5225;:5;;;;;;:10;5217:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5293:1;5286:8;;;4831:471;;;;;:::o;38098:985::-;27529:4;27510:16;;:23;;;;;;;;;;;;;;;;;;38234:12:::1;38249:27;38274:1;38249:20;:24;;:27;;;;:::i;:::-;38234:42;;38287:17;38307:30;38332:4;38307:20;:24;;:30;;;;:::i;:::-;38287:50;;38615:22;38640:21;38615:46;;38706:22;38723:4;38706:16;:22::i;:::-;38859:18;38880:41;38906:14;38880:21;:25;;:41;;;;:::i;:::-;38859:62;;38971:35;38984:9;38995:10;38971:12;:35::i;:::-;39032:43;39047:4;39053:10;39065:9;39032:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27544:1;;;;27575:5:::0;27556:16;;:24;;;;;;;;;;;;;;;;;;38098:985;:::o;40282:1821::-;40379:18;:26;40398:6;40379:26;;;;;;;;;;;;;;;;;;;;;;;;;:59;;;;40409:18;:29;40428:9;40409:29;;;;;;;;;;;;;;;;;;;;;;;;;40379:59;40376:220;;;40454:14;:12;:14::i;:::-;40376:220;;;40527:12;;40517:6;:22;;40509:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40376:220;40668:15;40686:29;40711:3;40686:20;40697:8;;40686:6;:10;;:20;;;;:::i;:::-;:24;;:29;;;;:::i;:::-;40668:47;;40726:18;40747:32;40775:3;40747:23;40758:11;;40747:6;:10;;:23;;;;:::i;:::-;:27;;:32;;;;:::i;:::-;40726:53;;40796:11;:19;40808:6;40796:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;40820:11;:22;40832:9;40820:22;;;;;;;;;;;;;;;;;;;;;;;;;40819:23;40796:46;40792:752;;;40859:79;40881:6;40889:9;40901:35;40925:10;40901:19;40912:7;40901:6;:10;;:19;;;;:::i;:::-;:23;;:35;;;;:::i;:::-;40859:21;:79::i;:::-;40792:752;;;40961:11;:19;40973:6;40961:19;;;;;;;;;;;;;;;;;;;;;;;;;40960:20;:46;;;;;40984:11;:22;40996:9;40984:22;;;;;;;;;;;;;;;;;;;;;;;;;40960:46;40956:588;;;41023:77;41043:6;41051:9;41063:35;41087:10;41063:19;41074:7;41063:6;:10;;:19;;;;:::i;:::-;:23;;:35;;;;:::i;:::-;41023:19;:77::i;:::-;40956:588;;;41123:11;:19;41135:6;41123:19;;;;;;;;;;;;;;;;;;;;;;;;;41122:20;:47;;;;;41147:11;:22;41159:9;41147:22;;;;;;;;;;;;;;;;;;;;;;;;;41146:23;41122:47;41118:426;;;41186:75;41204:6;41212:9;41224:35;41248:10;41224:19;41235:7;41224:6;:10;;:19;;;;:::i;:::-;:23;;:35;;;;:::i;:::-;41186:17;:75::i;:::-;41118:426;;;41283:11;:19;41295:6;41283:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;41306:11;:22;41318:9;41306:22;;;;;;;;;;;;;;;;;;;;;;;;;41283:45;41279:265;;;41345:79;41367:6;41375:9;41387:35;41411:10;41387:19;41398:7;41387:6;:10;;:19;;;;:::i;:::-;:23;;:35;;;;:::i;:::-;41345:21;:79::i;:::-;41279:265;;;41457:75;41475:6;41483:9;41495:35;41519:10;41495:19;41506:7;41495:6;:10;;:19;;;;:::i;:::-;:23;;:35;;;;:::i;:::-;41457:17;:75::i;:::-;41279:265;41118:426;40956:588;40792:752;41656:1;41646:7;:11;;;;41684:1;41668:13;:17;;;;41751:46;41769:6;41785:1;41789:7;41751:17;:46::i;:::-;41808:52;41826:6;41834:13;;;;;;;;;;;41849:10;41808:17;:52::i;:::-;41925:15;;41915:7;:25;;;;41967:21;;41951:13;:37;;;;42006:18;:26;42025:6;42006:26;;;;;;;;;;;;;;;;;;;;;;;;;:59;;;;42036:18;:29;42055:9;42036:29;;;;;;;;;;;;;;;;;;;;;;;;;42006:59;42003:92;;;42080:15;:13;:15::i;:::-;42003:92;40282:1821;;;;;:::o;34769:561::-;34819:7;34828;34848:15;34866:7;;34848:25;;34884:15;34902:7;;34884:25;;34931:9;34926:289;34950:9;:16;;;;34946:1;:20;34926:289;;;35016:7;34992;:21;35000:9;35010:1;35000:12;;;;;;;;;;;;;;;;;;;;;;;;;34992:21;;;;;;;;;;;;;;;;:31;:66;;;;35051:7;35027;:21;35035:9;35045:1;35035:12;;;;;;;;;;;;;;;;;;;;;;;;;35027:21;;;;;;;;;;;;;;;;:31;34992:66;34988:97;;;35068:7;;35077;;35060:25;;;;;;;;;34988:97;35110:34;35122:7;:21;35130:9;35140:1;35130:12;;;;;;;;;;;;;;;;;;;;;;;;;35122:21;;;;;;;;;;;;;;;;35110:7;:11;;:34;;;;:::i;:::-;35100:44;;35169:34;35181:7;:21;35189:9;35199:1;35189:12;;;;;;;;;;;;;;;;;;;;;;;;;35181:21;;;;;;;;;;;;;;;;35169:7;:11;;:34;;;;:::i;:::-;35159:44;;34968:3;;;;;;;34926:289;;;;35239:20;35251:7;;35239;;:11;;:20;;;;:::i;:::-;35229:7;:30;35225:61;;;35269:7;;35278;;35261:25;;;;;;;;35225:61;35305:7;35314;35297:25;;;;;;34769:561;;;:::o;6406:278::-;6492:7;6524:1;6520;:5;6527:12;6512:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6551:9;6567:1;6563;:5;;;;;;6551:17;;6675:1;6668:8;;;6406:278;;;;;:::o;33823:330::-;33883:7;33892;33901;33921:12;33936:24;33952:7;33936:15;:24::i;:::-;33921:39;;33971:18;33992:30;34014:7;33992:21;:30::i;:::-;33971:51;;34033:23;34059:33;34081:10;34059:17;34071:4;34059:7;:11;;:17;;;;:::i;:::-;:21;;:33;;;;:::i;:::-;34033:59;;34111:15;34128:4;34134:10;34103:42;;;;;;;;;33823:330;;;;;:::o;34161:429::-;34276:7;34285;34294;34314:15;34332:24;34344:11;34332:7;:11;;:24;;;;:::i;:::-;34314:42;;34367:12;34382:21;34391:11;34382:4;:8;;:21;;;;:::i;:::-;34367:36;;34414:18;34435:27;34450:11;34435:10;:14;;:27;;;;:::i;:::-;34414:48;;34473:23;34499:33;34521:10;34499:17;34511:4;34499:7;:11;;:17;;;;:::i;:::-;:21;;:33;;;;:::i;:::-;34473:59;;34551:7;34560:15;34577:4;34543:39;;;;;;;;;;34161:429;;;;;;;;:::o;39091:589::-;39217:21;39255:1;39241:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39217:40;;39286:4;39268;39273:1;39268:7;;;;;;;;;;;;;:23;;;;;;;;;;;39312:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39302:4;39307:1;39302:7;;;;;;;;;;;;;:32;;;;;;;;;;;39347:62;39364:4;39379:15;39397:11;39347:8;:62::i;:::-;39448:15;:66;;;39529:11;39555:1;39599:4;39626;39646:15;39448:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39091:589;;:::o;39688:513::-;39836:62;39853:4;39868:15;39886:11;39836:8;:62::i;:::-;39941:15;:31;;;39980:9;40013:4;40033:11;40059:1;40102;40145:7;:5;:7::i;:::-;40167:15;39941:252;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39688:513;;:::o;36049:152::-;36108:1;36092:7;:17;;;;36136:1;36120:13;:17;;;;36164:1;36148:8;:17;;;;36192:1;36176:11;:17;;;;36049:152::o;43215:566::-;43318:15;43335:23;43360:12;43374:23;43399:12;43413:18;43435:19;43446:7;43435:10;:19::i;:::-;43317:137;;;;;;;;;;;;43483:28;43503:7;43483;:15;43491:6;43483:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;43465:7;:15;43473:6;43465:15;;;;;;;;;;;;;;;:46;;;;43540:28;43560:7;43540;:15;43548:6;43540:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;43522:7;:15;43530:6;43522:15;;;;;;;;;;;;;;;:46;;;;43600:39;43623:15;43600:7;:18;43608:9;43600:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;43579:7;:18;43587:9;43579:18;;;;;;;;;;;;;;;:60;;;;43653:26;43668:10;43653:14;:26::i;:::-;43690:23;43702:4;43708;43690:11;:23::i;:::-;43746:9;43729:44;;43738:6;43729:44;;;43757:15;43729:44;;;;;;;;;;;;;;;;;;43215:566;;;;;;;;;:::o;42621:586::-;42722:15;42739:23;42764:12;42778:23;42803:12;42817:18;42839:19;42850:7;42839:10;:19::i;:::-;42721:137;;;;;;;;;;;;42887:28;42907:7;42887;:15;42895:6;42887:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;42869:7;:15;42877:6;42869:15;;;;;;;;;;;;;;;:46;;;;42947:39;42970:15;42947:7;:18;42955:9;42947:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;42926:7;:18;42934:9;42926:18;;;;;;;;;;;;;;;:60;;;;43018:39;43041:15;43018:7;:18;43026:9;43018:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;42997:7;:18;43005:9;42997:18;;;;;;;;;;;;;;;:60;;;;43079:26;43094:10;43079:14;:26::i;:::-;43116:23;43128:4;43134;43116:11;:23::i;:::-;43172:9;43155:44;;43164:6;43155:44;;;43183:15;43155:44;;;;;;;;;;;;;;;;;;42621:586;;;;;;;;;:::o;42111:502::-;42210:15;42227:23;42252:12;42266:23;42291:12;42305:18;42327:19;42338:7;42327:10;:19::i;:::-;42209:137;;;;;;;;;;;;42375:28;42395:7;42375;:15;42383:6;42375:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;42357:7;:15;42365:6;42357:15;;;;;;;;;;;;;;;:46;;;;42435:39;42458:15;42435:7;:18;42443:9;42435:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;42414:7;:18;42422:9;42414:18;;;;;;;;;;;;;;;:60;;;;42485:26;42500:10;42485:14;:26::i;:::-;42522:23;42534:4;42540;42522:11;:23::i;:::-;42578:9;42561:44;;42570:6;42561:44;;;42589:15;42561:44;;;;;;;;;;;;;;;;;;42111:502;;;;;;;;;:::o;32485:642::-;32588:15;32605:23;32630:12;32644:23;32669:12;32683:18;32705:19;32716:7;32705:10;:19::i;:::-;32587:137;;;;;;;;;;;;32753:28;32773:7;32753;:15;32761:6;32753:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;32735:7;:15;32743:6;32735:15;;;;;;;;;;;;;;;:46;;;;32810:28;32830:7;32810;:15;32818:6;32810:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;32792:7;:15;32800:6;32792:15;;;;;;;;;;;;;;;:46;;;;32870:39;32893:15;32870:7;:18;32878:9;32870:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;32849:7;:18;32857:9;32849:18;;;;;;;;;;;;;;;:60;;;;32941:39;32964:15;32941:7;:18;32949:9;32941:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;32920:7;:18;32928:9;32920:18;;;;;;;;;;;;;;;:60;;;;32999:26;33014:10;32999:14;:26::i;:::-;33036:23;33048:4;33054;33036:11;:23::i;:::-;33092:9;33075:44;;33084:6;33075:44;;;33103:15;33075:44;;;;;;;;;;;;;;;;;;32485:642;;;;;;;;;:::o;36213:155::-;36273:1;36257:7;:17;;;;36301:1;36285:13;:17;;;;36329:1;36313:11;:17;;;;36357:1;36341:8;:17;;;;36213:155::o;35709:154::-;35773:7;35800:55;35839:5;35800:20;35812:7;;35800;:11;;:20;;;;:::i;:::-;:24;;:55;;;;:::i;:::-;35793:62;;35709:154;;;:::o;35871:166::-;35941:7;35968:61;36013:5;35968:26;35980:13;;35968:7;:11;;:26;;;;:::i;:::-;:30;;:61;;;;:::i;:::-;35961:68;;35871:166;;;:::o;35342:355::-;35405:19;35428:10;:8;:10::i;:::-;35405:33;;35449:18;35470:27;35485:11;35470:10;:14;;:27;;;;:::i;:::-;35449:48;;35533:38;35560:10;35533:7;:22;35549:4;35533:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;35508:7;:22;35524:4;35508:22;;;;;;;;;;;;;;;:63;;;;35585:11;:26;35605:4;35585:26;;;;;;;;;;;;;;;;;;;;;;;;;35582:107;;;35651:38;35678:10;35651:7;:22;35667:4;35651:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;35626:7;:22;35642:4;35626:22;;;;;;;;;;;;;;;:63;;;;35582:107;35342:355;;;:::o;33241:147::-;33319:17;33331:4;33319:7;;:11;;:17;;;;:::i;:::-;33309:7;:27;;;;33360:20;33375:4;33360:10;;:14;;:20;;;;:::i;:::-;33347:10;:33;;;;33241:147;;:::o

Swarm Source

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