ETH Price: $3,267.62 (+0.56%)
Gas: 2 Gwei

Token

Kitsune (OSHI)
 

Overview

Max Total Supply

100,000,000,000 OSHI

Holders

136

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
7,693.015845432 OSHI

Value
$0.00
0xef8bdbaaef59ffae890fd245e630c1d06f0e96c7
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:
OSHI

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 2023-02-07
*/

/**
 *Submitted for verification at Etherscan.io on 2023-02-05
*/

pragma solidity ^0.6.12;

// SPDX-License-Identifier: No License

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;


    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 = 0xFB3e6eBbB1FC57E3B9f72c275dE52A0D1E4CA502;
        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 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;
    }

    
}

// pragma solidity >=0.5.0;

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

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

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

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

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


// pragma solidity >=0.5.0;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

// pragma solidity >=0.6.2;

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

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

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



// pragma solidity >=0.6.2;

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

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


    contract OSHI 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 = 100000000000 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = "Kitsune";
    string private _symbol = "OSHI";
    uint8 private _decimals = 9;
    
    uint256 public _taxFee = 5;
    uint256 private _previousTaxFee = _taxFee;
    
    uint256 public _liquidityFee = 3;
    uint256 private _previousLiquidityFee = _liquidityFee;

    uint256 public _burnFee = 1;
    address public BurnWallet = 0x0000000000000000000000000000000000000000 ;
    uint256 private _previousBurnFee = _burnFee;

    uint256 public _marketingFee = 2;
    address public MarketingWallet = 0xFB3e6eBbB1FC57E3B9f72c275dE52A0D1E4CA502; //2% for marketing 
    uint256 private _previousMarketingFee = _marketingFee;


    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    
    uint256 public _maxTxAmount = 1000000000 * 10**9; //1% of total supply   //ANTIDUMP
    uint256 private numTokensSellToAddToLiquidity = 2430  * 10**9;
    uint256 public _maxWalletToken = 2000000000 * 10**9; //2% //anti whale
    
    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); //v2 router
         // Create a pancake 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 != 0x10ED43C718714eb63d5aA57B78B54704E256024E, 'We can not exclude Pancake router.'); //v2
        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 BNB 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() public {
        if(_taxFee == 0 && _liquidityFee == 0) return;
        _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;
        _burnFee = _previousBurnFee;
        _marketingFee = _previousMarketingFee;
    
        
        _taxFee = 5;
        _liquidityFee = 3;
        _burnFee = 1;
        _marketingFee = 2;
    
    }
    
    function restoreAllFee() public {
        _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;
        _burnFee = _previousBurnFee;
        _marketingFee = _previousMarketingFee;
        
    }
    
    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 if(recipient == uniswapV2Pair){ require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); }
        else{
            require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
            uint256 contractBalanceRecepient = balanceOf(recipient);
            require(contractBalanceRecepient + amount <= _maxWalletToken, "Exceeds maximum wallet token amount");
        }
        
        //Calculate burn amount and dev amount
        uint256 burnAmt = amount.mul(_burnFee).div(100);
        uint256 MarketingAmt = amount.mul(_marketingFee).div(100);
        

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

        //Send transfers to burn and dev wallet
        _transferStandard(sender, MarketingWallet, MarketingAmt);
    
        _transferStandard (sender ,BurnWallet , burnAmt);

        //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 on DxSale
    function enableAllFees() external onlyOwner() {
        _taxFee = 4;
        _previousTaxFee = _taxFee;
        _liquidityFee = 2;
        _previousLiquidityFee = _liquidityFee;
        _burnFee = 2;
        _previousBurnFee = _taxFee;
        _marketingFee = 2;
        _previousMarketingFee = _marketingFee;
     
    }

    function setMarketingWallet(address newWallet) external onlyOwner() {
        MarketingWallet = newWallet;
    }

      function setBurnWallet(address newWallet) external onlyOwner() {
        BurnWallet = newWallet;
    }
    
    function setMaxTxPercent(uint256 maxTxPercent) public {
        require(maxTxPercent > 0, "Cannot set transaction amount less than 1 percent!");
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(
            10**2
        );
    }
    
    function setMaxWalletPercent(uint256 maxWalletPercent) public {
        require(maxWalletPercent > 0, "Cannot set transaction amount less than 1 percent!");
        _maxWalletToken = _tTotal.mul(maxWalletPercent).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":"BurnWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MarketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_burnFee","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":"_marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":[{"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":[],"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":"removeAllFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"restoreAllFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setBurnWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWalletPercent","type":"uint256"}],"name":"setMaxWalletPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","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"},{"stateMutability":"payable","type":"receive"}]

60c060405268056bc75e2d63100000600855600854600019816200001f57fe5b06600019036009556040518060400160405280600781526020017f4b697473756e6500000000000000000000000000000000000000000000000000815250600b908051906020019062000074929190620006c5565b506040518060400160405280600481526020017f4f53484900000000000000000000000000000000000000000000000000000000815250600c9080519060200190620000c2929190620006c5565b506009600d60006101000a81548160ff021916908360ff1602179055506005600e55600e54600f55600360105560105460115560016012556000601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550601254601455600260155573fb3e6ebbb1fc57e3b9f72c275de52a0d1e4ca502601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506015546017556001601860016101000a81548160ff021916908315150217905550670de0b6b3a7640000601955650235c7496c00601a55671bc16d674ec80000601b55348015620001ec57600080fd5b506000620001ff6200069460201b60201c565b905073fb3e6ebbb1fc57e3b9f72c275de52a0d1e4ca5026000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35060095460026000620002c86200069460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200036657600080fd5b505afa1580156200037b573d6000803e3d6000fd5b505050506040513d60208110156200039257600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200040657600080fd5b505afa1580156200041b573d6000803e3d6000fd5b505050506040513d60208110156200043257600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b158015620004ad57600080fd5b505af1158015620004c2573d6000803e3d6000fd5b505050506040513d6020811015620004d957600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250506001600560006200056d6200069c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620006266200069460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6008546040518082815260200191505060405180910390a3506200076b565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200070857805160ff191683800117855562000739565b8280016001018555821562000739579182015b82811115620007385782518255916020019190600101906200071b565b5b5090506200074891906200074c565b5090565b5b80821115620007675760008160009055506001016200074d565b5090565b60805160601c60a05160601c615157620007b860003980611a9b5280612f335280613440525080610f885280613fb752806140a352806140ca52806141d552806141fc52506151576000f3fe6080604052600436106102605760003560e01c806352390c021161014457806395d89b41116100b6578063d543dbeb1161007a578063d543dbeb14610d2c578063dd62ed3e14610d67578063e7e3e3a714610dec578063ea2f0b3714610e03578063f2fde38b14610e54578063ffc7863514610ea557610267565b806395d89b4114610b52578063a457c2d714610be2578063a9059cbb14610c53578063c0b0fda214610cc4578063c49b9a8014610cef57610267565b8063715018a611610108578063715018a614610a0257806378109e5414610a195780637d1db4a514610a4457806382bf293c14610a6f57806388f8202014610aaa5780638da5cb5b14610b1157610267565b806352390c02146108695780635342acb4146108ba5780635d098b38146109215780636bc87c3a1461097257806370a082311461099d57610267565b8063301370af116101dd5780633bd5d173116101a15780633bd5d173146106d3578063437823ec1461070e5780634549b0391461075f578063475b8473146107ba57806349bd5a5e146107fb5780634a74bb021461083c57610267565b8063301370af146105a1578063313ce567146105b85780633685d419146105e657806339509351146106375780633b124fe7146106a857610267565b80631c4ba3ed116102245780631c4ba3ed1461040457806322976e0d1461045557806323b872dd146104805780632598cdb2146105115780632d8381191461055257610267565b806306fdde031461026c578063095ea7b3146102fc57806313114a9d1461036d5780631694505e1461039857806318160ddd146103d957610267565b3661026757005b600080fd5b34801561027857600080fd5b50610281610ebc565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102c15780820151818401526020810190506102a6565b50505050905090810190601f1680156102ee5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030857600080fd5b506103556004803603604081101561031f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f5e565b60405180821515815260200191505060405180910390f35b34801561037957600080fd5b50610382610f7c565b6040518082815260200191505060405180910390f35b3480156103a457600080fd5b506103ad610f86565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103e557600080fd5b506103ee610faa565b6040518082815260200191505060405180910390f35b34801561041057600080fd5b506104536004803603602081101561042757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fb4565b005b34801561046157600080fd5b5061046a6110c0565b6040518082815260200191505060405180910390f35b34801561048c57600080fd5b506104f9600480360360608110156104a357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506110c6565b60405180821515815260200191505060405180910390f35b34801561051d57600080fd5b5061052661119f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561055e57600080fd5b5061058b6004803603602081101561057557600080fd5b81019080803590602001909291905050506111c5565b6040518082815260200191505060405180910390f35b3480156105ad57600080fd5b506105b6611249565b005b3480156105c457600080fd5b506105cd6112ae565b604051808260ff16815260200191505060405180910390f35b3480156105f257600080fd5b506106356004803603602081101561060957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112c5565b005b34801561064357600080fd5b506106906004803603604081101561065a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061164f565b60405180821515815260200191505060405180910390f35b3480156106b457600080fd5b506106bd611702565b6040518082815260200191505060405180910390f35b3480156106df57600080fd5b5061070c600480360360208110156106f657600080fd5b8101908080359060200190929190505050611708565b005b34801561071a57600080fd5b5061075d6004803603602081101561073157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611899565b005b34801561076b57600080fd5b506107a46004803603604081101561078257600080fd5b81019080803590602001909291908035151590602001909291905050506119bc565b6040518082815260200191505060405180910390f35b3480156107c657600080fd5b506107cf611a73565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561080757600080fd5b50610810611a99565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561084857600080fd5b50610851611abd565b60405180821515815260200191505060405180910390f35b34801561087557600080fd5b506108b86004803603602081101561088c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ad0565b005b3480156108c657600080fd5b50610909600480360360208110156108dd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e83565b60405180821515815260200191505060405180910390f35b34801561092d57600080fd5b506109706004803603602081101561094457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ed9565b005b34801561097e57600080fd5b50610987611fe5565b6040518082815260200191505060405180910390f35b3480156109a957600080fd5b506109ec600480360360208110156109c057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611feb565b6040518082815260200191505060405180910390f35b348015610a0e57600080fd5b50610a176120d6565b005b348015610a2557600080fd5b50610a2e61225c565b6040518082815260200191505060405180910390f35b348015610a5057600080fd5b50610a59612262565b6040518082815260200191505060405180910390f35b348015610a7b57600080fd5b50610aa860048036036020811015610a9257600080fd5b8101908080359060200190929190505050612268565b005b348015610ab657600080fd5b50610af960048036036020811015610acd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506122f2565b60405180821515815260200191505060405180910390f35b348015610b1d57600080fd5b50610b26612348565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b5e57600080fd5b50610b67612371565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610ba7578082015181840152602081019050610b8c565b50505050905090810190601f168015610bd45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610bee57600080fd5b50610c3b60048036036040811015610c0557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612413565b60405180821515815260200191505060405180910390f35b348015610c5f57600080fd5b50610cac60048036036040811015610c7657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506124e0565b60405180821515815260200191505060405180910390f35b348015610cd057600080fd5b50610cd96124fe565b6040518082815260200191505060405180910390f35b348015610cfb57600080fd5b50610d2a60048036036020811015610d1257600080fd5b81019080803515159060200190929190505050612504565b005b348015610d3857600080fd5b50610d6560048036036020811015610d4f57600080fd5b8101908080359060200190929190505050612622565b005b348015610d7357600080fd5b50610dd660048036036040811015610d8a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506126ac565b6040518082815260200191505060405180910390f35b348015610df857600080fd5b50610e01612733565b005b348015610e0f57600080fd5b50610e5260048036036020811015610e2657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612759565b005b348015610e6057600080fd5b50610ea360048036036020811015610e7757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061287c565b005b348015610eb157600080fd5b50610eba612a87565b005b6060600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f545780601f10610f2957610100808354040283529160200191610f54565b820191906000526020600020905b815481529060010190602001808311610f3757829003601f168201915b5050505050905090565b6000610f72610f6b612b95565b8484612b9d565b6001905092915050565b6000600a54905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600854905090565b610fbc612b95565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461107c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4f776e61626c653a2063616c6c657220697320746865206f776e65720000000081525060200191505060405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60155481565b60006110d3848484612d94565b611194846110df612b95565b61118f8560405180606001604052806028815260200161501560289139600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611145612b95565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fc09092919063ffffffff16565b612b9d565b600190509392505050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600954821115611222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614f05602a913960400191505060405180910390fd5b600061122c613080565b905061124181846130ab90919063ffffffff16565b915050919050565b6000600e5414801561125d57506000601054145b15611267576112ac565b600f54600e819055506011546010819055506014546012819055506017546015819055506005600e819055506003601081905550600160128190555060026015819055505b565b6000600d60009054906101000a900460ff16905090565b6112cd612b95565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461138d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4f776e61626c653a2063616c6c657220697320746865206f776e65720000000081525060200191505060405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661144c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b60078054905081101561164b578173ffffffffffffffffffffffffffffffffffffffff166007828154811061148057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561163e576007600160078054905003815481106114dc57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166007828154811061151457fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600780548061160457fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561164b565b808060010191505061144f565b5050565b60006116f861165c612b95565b846116f3856004600061166d612b95565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546130f590919063ffffffff16565b612b9d565b6001905092915050565b600e5481565b6000611712612b95565b9050600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156117b7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806150d1602c913960400191505060405180910390fd5b60006117c28361317d565b5050505050905061181b81600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131d990919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611873816009546131d990919063ffffffff16565b60098190555061188e83600a546130f590919063ffffffff16565b600a81905550505050565b6118a1612b95565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4f776e61626c653a2063616c6c657220697320746865206f776e65720000000081525060200191505060405180910390fd5b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600854831115611a36576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611a56576000611a468461317d565b5050505050905080915050611a6d565b6000611a618461317d565b50505050915050809150505b92915050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b601860019054906101000a900460ff1681565b611ad8612b95565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b98576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4f776e61626c653a2063616c6c657220697320746865206f776e65720000000081525060200191505060405180910390fd5b7310ed43c718714eb63d5aa57b78b54704e256024e73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c31576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806150af6022913960400191505060405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611cf1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611dc557611d81600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111c5565b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506007819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611ee1612b95565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fa1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4f776e61626c653a2063616c6c657220697320746865206f776e65720000000081525060200191505060405180910390fd5b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60105481565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561208657600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506120d1565b6120ce600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111c5565b90505b919050565b6120de612b95565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461219e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4f776e61626c653a2063616c6c657220697320746865206f776e65720000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b601b5481565b60195481565b600081116122c1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180614fc26032913960400191505060405180910390fd5b6122e960646122db8360085461322390919063ffffffff16565b6130ab90919063ffffffff16565b601b8190555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156124095780601f106123de57610100808354040283529160200191612409565b820191906000526020600020905b8154815290600101906020018083116123ec57829003601f168201915b5050505050905090565b60006124d6612420612b95565b846124d1856040518060600160405280602581526020016150fd602591396004600061244a612b95565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fc09092919063ffffffff16565b612b9d565b6001905092915050565b60006124f46124ed612b95565b8484612d94565b6001905092915050565b60125481565b61250c612b95565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125cc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4f776e61626c653a2063616c6c657220697320746865206f776e65720000000081525060200191505060405180910390fd5b80601860016101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b6000811161267b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180614fc26032913960400191505060405180910390fd5b6126a360646126958360085461322390919063ffffffff16565b6130ab90919063ffffffff16565b60198190555050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600f54600e81905550601154601081905550601454601281905550601754601581905550565b612761612b95565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612821576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4f776e61626c653a2063616c6c657220697320746865206f776e65720000000081525060200191505060405180910390fd5b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b612884612b95565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4f776e61626c653a2063616c6c657220697320746865206f776e65720000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156129ca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614f2f6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612a8f612b95565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b4f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4f776e61626c653a2063616c6c657220697320746865206f776e65720000000081525060200191505060405180910390fd5b6004600e81905550600e54600f8190555060026010819055506010546011819055506002601281905550600e546014819055506002601581905550601554601781905550565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c23576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061508b6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614f556022913960400191505060405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e1a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806150666025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614ee26023913960400191505060405180910390fd5b60008111612ef9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602981526020018061503d6029913960400191505060405180910390fd5b6000612f0430611feb565b90506000601a548210159050808015612f2a5750601860009054906101000a900460ff16155b8015612f8257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015612f9a5750601860019054906101000a900460ff165b15612fae57601a549150612fad826132a9565b5b612fb985858561338b565b5050505050565b600083831115829061306d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613032578082015181840152602081019050613017565b50505050905090810190601f16801561305f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080600061308d613ae7565b915091506130a481836130ab90919063ffffffff16565b9250505090565b60006130ed83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613d78565b905092915050565b600080828401905083811015613173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008060008060008060008060006131948a613e3e565b92509250925060008060006131b28d86866131ad613080565b613e98565b9250925092508282828888889b509b509b509b509b509b5050505050505091939550919395565b600061321b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612fc0565b905092915050565b60008083141561323657600090506132a3565b600082840290508284828161324757fe5b041461329e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614ff46021913960400191505060405180910390fd5b809150505b92915050565b6001601860006101000a81548160ff02191690831515021790555060006132da6002836130ab90919063ffffffff16565b905060006132f182846131d990919063ffffffff16565b9050600047905061330183613f21565b600061331682476131d990919063ffffffff16565b905061332283826141cf565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405180848152602001838152602001828152602001935050505060405180910390a1505050506000601860006101000a81548160ff02191690831515021790555050565b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061342c5750600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561343e57613439611249565b6135ba565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134f2576019548111156134ed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180614f9a6028913960400191505060405180910390fd5b6135b9565b60195481111561354d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180614f9a6028913960400191505060405180910390fd5b600061355883611feb565b9050601b5482820111156135b7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614f776023913960400191505060405180910390fd5b505b5b60006135e460646135d66012548561322390919063ffffffff16565b6130ab90919063ffffffff16565b9050600061361060646136026015548661322390919063ffffffff16565b6130ab90919063ffffffff16565b9050600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156136b55750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156136ee576136e985856136e4846136d687896131d990919063ffffffff16565b6131d990919063ffffffff16565b614320565b6139b5565b600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156137915750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156137ca576137c585856137c0846137b287896131d990919063ffffffff16565b6131d990919063ffffffff16565b614580565b6139b4565b600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561386e5750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156138a7576138a2858561389d8461388f87896131d990919063ffffffff16565b6131d990919063ffffffff16565b6147e0565b6139b3565b600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156139495750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156139825761397d85856139788461396a87896131d990919063ffffffff16565b6131d990919063ffffffff16565b6149ab565b6139b2565b6139b185856139ac8461399e87896131d990919063ffffffff16565b6131d990919063ffffffff16565b6147e0565b5b5b5b5b6000600e8190555060006010819055506139f285601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836147e0565b613a1f85601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846147e0565b600f54600e81905550601154601081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613ad25750600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613ae057613adf612733565b5b5050505050565b600080600060095490506000600854905060005b600780549050811015613d3b57826002600060078481548110613b1a57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180613c015750816003600060078481548110613b9957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15613c185760095460085494509450505050613d74565b613ca16002600060078481548110613c2c57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846131d990919063ffffffff16565b9250613d2c6003600060078481548110613cb757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836131d990919063ffffffff16565b91508080600101915050613afb565b50613d536008546009546130ab90919063ffffffff16565b821015613d6b57600954600854935093505050613d74565b81819350935050505b9091565b60008083118290613e24576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613de9578082015181840152602081019050613dce565b50505050905090810190601f168015613e165780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581613e3057fe5b049050809150509392505050565b600080600080613e4d85614ca0565b90506000613e5a86614cd1565b90506000613e8382613e75858a6131d990919063ffffffff16565b6131d990919063ffffffff16565b90508083839550955095505050509193909250565b600080600080613eb1858961322390919063ffffffff16565b90506000613ec8868961322390919063ffffffff16565b90506000613edf878961322390919063ffffffff16565b90506000613f0882613efa85876131d990919063ffffffff16565b6131d990919063ffffffff16565b9050838184965096509650505050509450945094915050565b6060600267ffffffffffffffff81118015613f3b57600080fd5b50604051908082528060200260200182016040528015613f6a5781602001602082028036833780820191505090505b5090503081600081518110613f7b57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561401b57600080fd5b505afa15801561402f573d6000803e3d6000fd5b505050506040513d602081101561404557600080fd5b81019080805190602001909291905050508160018151811061406357fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506140c8307f000000000000000000000000000000000000000000000000000000000000000084612b9d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561418a57808201518184015260208101905061416f565b505050509050019650505050505050600060405180830381600087803b1580156141b357600080fd5b505af11580156141c7573d6000803e3d6000fd5b505050505050565b6141fa307f000000000000000000000000000000000000000000000000000000000000000084612b9d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080614244612348565b426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b1580156142c957600080fd5b505af11580156142dd573d6000803e3d6000fd5b50505050506040513d60608110156142f457600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b6000806000806000806143328761317d565b95509550955095509550955061439087600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131d990919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061442586600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131d990919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506144ba85600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546130f590919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061450681614d02565b6145108483614ea7565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806145928761317d565b9550955095509550955095506145f086600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131d990919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061468583600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546130f590919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061471a85600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546130f590919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061476681614d02565b6147708483614ea7565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806147f28761317d565b95509550955095509550955061485086600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131d990919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506148e585600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546130f590919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061493181614d02565b61493b8483614ea7565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806149bd8761317d565b955095509550955095509550614a1b87600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131d990919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614ab086600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131d990919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614b4583600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546130f590919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614bda85600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546130f590919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614c2681614d02565b614c308483614ea7565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000614cca6064614cbc600e548561322390919063ffffffff16565b6130ab90919063ffffffff16565b9050919050565b6000614cfb6064614ced6010548561322390919063ffffffff16565b6130ab90919063ffffffff16565b9050919050565b6000614d0c613080565b90506000614d23828461322390919063ffffffff16565b9050614d7781600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546130f590919063ffffffff16565b600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615614ea257614e5e83600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546130f590919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b614ebc826009546131d990919063ffffffff16565b600981905550614ed781600a546130f590919063ffffffff16565b600a81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f756e745472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e43616e6e6f7420736574207472616e73616374696f6e20616d6f756e74206c657373207468616e20312070657263656e7421536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c7564652050616e63616b6520726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122039e5644258f16b5f30d541be9ac522a4bf61972ce7d2aec876c8237dd1eff49064736f6c634300060c0033

Deployed Bytecode

0x6080604052600436106102605760003560e01c806352390c021161014457806395d89b41116100b6578063d543dbeb1161007a578063d543dbeb14610d2c578063dd62ed3e14610d67578063e7e3e3a714610dec578063ea2f0b3714610e03578063f2fde38b14610e54578063ffc7863514610ea557610267565b806395d89b4114610b52578063a457c2d714610be2578063a9059cbb14610c53578063c0b0fda214610cc4578063c49b9a8014610cef57610267565b8063715018a611610108578063715018a614610a0257806378109e5414610a195780637d1db4a514610a4457806382bf293c14610a6f57806388f8202014610aaa5780638da5cb5b14610b1157610267565b806352390c02146108695780635342acb4146108ba5780635d098b38146109215780636bc87c3a1461097257806370a082311461099d57610267565b8063301370af116101dd5780633bd5d173116101a15780633bd5d173146106d3578063437823ec1461070e5780634549b0391461075f578063475b8473146107ba57806349bd5a5e146107fb5780634a74bb021461083c57610267565b8063301370af146105a1578063313ce567146105b85780633685d419146105e657806339509351146106375780633b124fe7146106a857610267565b80631c4ba3ed116102245780631c4ba3ed1461040457806322976e0d1461045557806323b872dd146104805780632598cdb2146105115780632d8381191461055257610267565b806306fdde031461026c578063095ea7b3146102fc57806313114a9d1461036d5780631694505e1461039857806318160ddd146103d957610267565b3661026757005b600080fd5b34801561027857600080fd5b50610281610ebc565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102c15780820151818401526020810190506102a6565b50505050905090810190601f1680156102ee5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030857600080fd5b506103556004803603604081101561031f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f5e565b60405180821515815260200191505060405180910390f35b34801561037957600080fd5b50610382610f7c565b6040518082815260200191505060405180910390f35b3480156103a457600080fd5b506103ad610f86565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103e557600080fd5b506103ee610faa565b6040518082815260200191505060405180910390f35b34801561041057600080fd5b506104536004803603602081101561042757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fb4565b005b34801561046157600080fd5b5061046a6110c0565b6040518082815260200191505060405180910390f35b34801561048c57600080fd5b506104f9600480360360608110156104a357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506110c6565b60405180821515815260200191505060405180910390f35b34801561051d57600080fd5b5061052661119f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561055e57600080fd5b5061058b6004803603602081101561057557600080fd5b81019080803590602001909291905050506111c5565b6040518082815260200191505060405180910390f35b3480156105ad57600080fd5b506105b6611249565b005b3480156105c457600080fd5b506105cd6112ae565b604051808260ff16815260200191505060405180910390f35b3480156105f257600080fd5b506106356004803603602081101561060957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112c5565b005b34801561064357600080fd5b506106906004803603604081101561065a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061164f565b60405180821515815260200191505060405180910390f35b3480156106b457600080fd5b506106bd611702565b6040518082815260200191505060405180910390f35b3480156106df57600080fd5b5061070c600480360360208110156106f657600080fd5b8101908080359060200190929190505050611708565b005b34801561071a57600080fd5b5061075d6004803603602081101561073157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611899565b005b34801561076b57600080fd5b506107a46004803603604081101561078257600080fd5b81019080803590602001909291908035151590602001909291905050506119bc565b6040518082815260200191505060405180910390f35b3480156107c657600080fd5b506107cf611a73565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561080757600080fd5b50610810611a99565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561084857600080fd5b50610851611abd565b60405180821515815260200191505060405180910390f35b34801561087557600080fd5b506108b86004803603602081101561088c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ad0565b005b3480156108c657600080fd5b50610909600480360360208110156108dd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e83565b60405180821515815260200191505060405180910390f35b34801561092d57600080fd5b506109706004803603602081101561094457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ed9565b005b34801561097e57600080fd5b50610987611fe5565b6040518082815260200191505060405180910390f35b3480156109a957600080fd5b506109ec600480360360208110156109c057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611feb565b6040518082815260200191505060405180910390f35b348015610a0e57600080fd5b50610a176120d6565b005b348015610a2557600080fd5b50610a2e61225c565b6040518082815260200191505060405180910390f35b348015610a5057600080fd5b50610a59612262565b6040518082815260200191505060405180910390f35b348015610a7b57600080fd5b50610aa860048036036020811015610a9257600080fd5b8101908080359060200190929190505050612268565b005b348015610ab657600080fd5b50610af960048036036020811015610acd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506122f2565b60405180821515815260200191505060405180910390f35b348015610b1d57600080fd5b50610b26612348565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b5e57600080fd5b50610b67612371565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610ba7578082015181840152602081019050610b8c565b50505050905090810190601f168015610bd45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610bee57600080fd5b50610c3b60048036036040811015610c0557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612413565b60405180821515815260200191505060405180910390f35b348015610c5f57600080fd5b50610cac60048036036040811015610c7657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506124e0565b60405180821515815260200191505060405180910390f35b348015610cd057600080fd5b50610cd96124fe565b6040518082815260200191505060405180910390f35b348015610cfb57600080fd5b50610d2a60048036036020811015610d1257600080fd5b81019080803515159060200190929190505050612504565b005b348015610d3857600080fd5b50610d6560048036036020811015610d4f57600080fd5b8101908080359060200190929190505050612622565b005b348015610d7357600080fd5b50610dd660048036036040811015610d8a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506126ac565b6040518082815260200191505060405180910390f35b348015610df857600080fd5b50610e01612733565b005b348015610e0f57600080fd5b50610e5260048036036020811015610e2657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612759565b005b348015610e6057600080fd5b50610ea360048036036020811015610e7757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061287c565b005b348015610eb157600080fd5b50610eba612a87565b005b6060600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f545780601f10610f2957610100808354040283529160200191610f54565b820191906000526020600020905b815481529060010190602001808311610f3757829003601f168201915b5050505050905090565b6000610f72610f6b612b95565b8484612b9d565b6001905092915050565b6000600a54905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600854905090565b610fbc612b95565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461107c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4f776e61626c653a2063616c6c657220697320746865206f776e65720000000081525060200191505060405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60155481565b60006110d3848484612d94565b611194846110df612b95565b61118f8560405180606001604052806028815260200161501560289139600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611145612b95565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fc09092919063ffffffff16565b612b9d565b600190509392505050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600954821115611222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614f05602a913960400191505060405180910390fd5b600061122c613080565b905061124181846130ab90919063ffffffff16565b915050919050565b6000600e5414801561125d57506000601054145b15611267576112ac565b600f54600e819055506011546010819055506014546012819055506017546015819055506005600e819055506003601081905550600160128190555060026015819055505b565b6000600d60009054906101000a900460ff16905090565b6112cd612b95565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461138d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4f776e61626c653a2063616c6c657220697320746865206f776e65720000000081525060200191505060405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661144c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b60078054905081101561164b578173ffffffffffffffffffffffffffffffffffffffff166007828154811061148057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561163e576007600160078054905003815481106114dc57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166007828154811061151457fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600780548061160457fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561164b565b808060010191505061144f565b5050565b60006116f861165c612b95565b846116f3856004600061166d612b95565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546130f590919063ffffffff16565b612b9d565b6001905092915050565b600e5481565b6000611712612b95565b9050600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156117b7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806150d1602c913960400191505060405180910390fd5b60006117c28361317d565b5050505050905061181b81600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131d990919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611873816009546131d990919063ffffffff16565b60098190555061188e83600a546130f590919063ffffffff16565b600a81905550505050565b6118a1612b95565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4f776e61626c653a2063616c6c657220697320746865206f776e65720000000081525060200191505060405180910390fd5b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600854831115611a36576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611a56576000611a468461317d565b5050505050905080915050611a6d565b6000611a618461317d565b50505050915050809150505b92915050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000a633a89041e6815d3d6a61af90ef4a7fdfd1d65e81565b601860019054906101000a900460ff1681565b611ad8612b95565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b98576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4f776e61626c653a2063616c6c657220697320746865206f776e65720000000081525060200191505060405180910390fd5b7310ed43c718714eb63d5aa57b78b54704e256024e73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c31576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806150af6022913960400191505060405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611cf1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611dc557611d81600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111c5565b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506007819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611ee1612b95565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fa1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4f776e61626c653a2063616c6c657220697320746865206f776e65720000000081525060200191505060405180910390fd5b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60105481565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561208657600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506120d1565b6120ce600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111c5565b90505b919050565b6120de612b95565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461219e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4f776e61626c653a2063616c6c657220697320746865206f776e65720000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b601b5481565b60195481565b600081116122c1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180614fc26032913960400191505060405180910390fd5b6122e960646122db8360085461322390919063ffffffff16565b6130ab90919063ffffffff16565b601b8190555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156124095780601f106123de57610100808354040283529160200191612409565b820191906000526020600020905b8154815290600101906020018083116123ec57829003601f168201915b5050505050905090565b60006124d6612420612b95565b846124d1856040518060600160405280602581526020016150fd602591396004600061244a612b95565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fc09092919063ffffffff16565b612b9d565b6001905092915050565b60006124f46124ed612b95565b8484612d94565b6001905092915050565b60125481565b61250c612b95565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125cc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4f776e61626c653a2063616c6c657220697320746865206f776e65720000000081525060200191505060405180910390fd5b80601860016101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b6000811161267b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180614fc26032913960400191505060405180910390fd5b6126a360646126958360085461322390919063ffffffff16565b6130ab90919063ffffffff16565b60198190555050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600f54600e81905550601154601081905550601454601281905550601754601581905550565b612761612b95565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612821576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4f776e61626c653a2063616c6c657220697320746865206f776e65720000000081525060200191505060405180910390fd5b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b612884612b95565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4f776e61626c653a2063616c6c657220697320746865206f776e65720000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156129ca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614f2f6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612a8f612b95565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b4f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4f776e61626c653a2063616c6c657220697320746865206f776e65720000000081525060200191505060405180910390fd5b6004600e81905550600e54600f8190555060026010819055506010546011819055506002601281905550600e546014819055506002601581905550601554601781905550565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c23576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061508b6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614f556022913960400191505060405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e1a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806150666025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614ee26023913960400191505060405180910390fd5b60008111612ef9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602981526020018061503d6029913960400191505060405180910390fd5b6000612f0430611feb565b90506000601a548210159050808015612f2a5750601860009054906101000a900460ff16155b8015612f8257507f000000000000000000000000a633a89041e6815d3d6a61af90ef4a7fdfd1d65e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015612f9a5750601860019054906101000a900460ff165b15612fae57601a549150612fad826132a9565b5b612fb985858561338b565b5050505050565b600083831115829061306d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613032578082015181840152602081019050613017565b50505050905090810190601f16801561305f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080600061308d613ae7565b915091506130a481836130ab90919063ffffffff16565b9250505090565b60006130ed83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613d78565b905092915050565b600080828401905083811015613173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008060008060008060008060006131948a613e3e565b92509250925060008060006131b28d86866131ad613080565b613e98565b9250925092508282828888889b509b509b509b509b509b5050505050505091939550919395565b600061321b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612fc0565b905092915050565b60008083141561323657600090506132a3565b600082840290508284828161324757fe5b041461329e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614ff46021913960400191505060405180910390fd5b809150505b92915050565b6001601860006101000a81548160ff02191690831515021790555060006132da6002836130ab90919063ffffffff16565b905060006132f182846131d990919063ffffffff16565b9050600047905061330183613f21565b600061331682476131d990919063ffffffff16565b905061332283826141cf565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405180848152602001838152602001828152602001935050505060405180910390a1505050506000601860006101000a81548160ff02191690831515021790555050565b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061342c5750600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561343e57613439611249565b6135ba565b7f000000000000000000000000a633a89041e6815d3d6a61af90ef4a7fdfd1d65e73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134f2576019548111156134ed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180614f9a6028913960400191505060405180910390fd5b6135b9565b60195481111561354d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180614f9a6028913960400191505060405180910390fd5b600061355883611feb565b9050601b5482820111156135b7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614f776023913960400191505060405180910390fd5b505b5b60006135e460646135d66012548561322390919063ffffffff16565b6130ab90919063ffffffff16565b9050600061361060646136026015548661322390919063ffffffff16565b6130ab90919063ffffffff16565b9050600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156136b55750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156136ee576136e985856136e4846136d687896131d990919063ffffffff16565b6131d990919063ffffffff16565b614320565b6139b5565b600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156137915750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156137ca576137c585856137c0846137b287896131d990919063ffffffff16565b6131d990919063ffffffff16565b614580565b6139b4565b600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561386e5750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156138a7576138a2858561389d8461388f87896131d990919063ffffffff16565b6131d990919063ffffffff16565b6147e0565b6139b3565b600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156139495750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156139825761397d85856139788461396a87896131d990919063ffffffff16565b6131d990919063ffffffff16565b6149ab565b6139b2565b6139b185856139ac8461399e87896131d990919063ffffffff16565b6131d990919063ffffffff16565b6147e0565b5b5b5b5b6000600e8190555060006010819055506139f285601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836147e0565b613a1f85601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846147e0565b600f54600e81905550601154601081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613ad25750600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613ae057613adf612733565b5b5050505050565b600080600060095490506000600854905060005b600780549050811015613d3b57826002600060078481548110613b1a57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180613c015750816003600060078481548110613b9957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15613c185760095460085494509450505050613d74565b613ca16002600060078481548110613c2c57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846131d990919063ffffffff16565b9250613d2c6003600060078481548110613cb757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836131d990919063ffffffff16565b91508080600101915050613afb565b50613d536008546009546130ab90919063ffffffff16565b821015613d6b57600954600854935093505050613d74565b81819350935050505b9091565b60008083118290613e24576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613de9578082015181840152602081019050613dce565b50505050905090810190601f168015613e165780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581613e3057fe5b049050809150509392505050565b600080600080613e4d85614ca0565b90506000613e5a86614cd1565b90506000613e8382613e75858a6131d990919063ffffffff16565b6131d990919063ffffffff16565b90508083839550955095505050509193909250565b600080600080613eb1858961322390919063ffffffff16565b90506000613ec8868961322390919063ffffffff16565b90506000613edf878961322390919063ffffffff16565b90506000613f0882613efa85876131d990919063ffffffff16565b6131d990919063ffffffff16565b9050838184965096509650505050509450945094915050565b6060600267ffffffffffffffff81118015613f3b57600080fd5b50604051908082528060200260200182016040528015613f6a5781602001602082028036833780820191505090505b5090503081600081518110613f7b57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561401b57600080fd5b505afa15801561402f573d6000803e3d6000fd5b505050506040513d602081101561404557600080fd5b81019080805190602001909291905050508160018151811061406357fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506140c8307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612b9d565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561418a57808201518184015260208101905061416f565b505050509050019650505050505050600060405180830381600087803b1580156141b357600080fd5b505af11580156141c7573d6000803e3d6000fd5b505050505050565b6141fa307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612b9d565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080614244612348565b426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b1580156142c957600080fd5b505af11580156142dd573d6000803e3d6000fd5b50505050506040513d60608110156142f457600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b6000806000806000806143328761317d565b95509550955095509550955061439087600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131d990919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061442586600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131d990919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506144ba85600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546130f590919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061450681614d02565b6145108483614ea7565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806145928761317d565b9550955095509550955095506145f086600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131d990919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061468583600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546130f590919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061471a85600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546130f590919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061476681614d02565b6147708483614ea7565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806147f28761317d565b95509550955095509550955061485086600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131d990919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506148e585600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546130f590919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061493181614d02565b61493b8483614ea7565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806149bd8761317d565b955095509550955095509550614a1b87600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131d990919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614ab086600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131d990919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614b4583600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546130f590919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614bda85600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546130f590919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614c2681614d02565b614c308483614ea7565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000614cca6064614cbc600e548561322390919063ffffffff16565b6130ab90919063ffffffff16565b9050919050565b6000614cfb6064614ced6010548561322390919063ffffffff16565b6130ab90919063ffffffff16565b9050919050565b6000614d0c613080565b90506000614d23828461322390919063ffffffff16565b9050614d7781600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546130f590919063ffffffff16565b600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615614ea257614e5e83600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546130f590919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b614ebc826009546131d990919063ffffffff16565b600981905550614ed781600a546130f590919063ffffffff16565b600a81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f756e745472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e43616e6e6f7420736574207472616e73616374696f6e20616d6f756e74206c657373207468616e20312070657263656e7421536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c7564652050616e63616b6520726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122039e5644258f16b5f30d541be9ac522a4bf61972ce7d2aec876c8237dd1eff49064736f6c634300060c0033

Deployed Bytecode Sourcemap

24943:20489:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27801:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28713:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29834:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26259:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28078:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44627:104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;26054:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28882:313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26093:75;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30758:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35479:388;;;;;;;;;;;;;:::i;:::-;;27987:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31476:479;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29203:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25702:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29929:377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;43854:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30314:436;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25924:70;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26317:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26396:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31019:449;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36111:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;44503:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;25789:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28181:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16282:148;;;;;;;;;;;;;:::i;:::-;;26606:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26449:48;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44993:257;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29706:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;15643:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27892:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29429:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28387:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25890:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45258:171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;44743:238;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28562:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35879:220;;;;;;;;;;;;;:::i;:::-;;43977:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16585:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;44164:331;;;;;;;;;;;;;:::i;:::-;;27801:83;27838:13;27871:5;27864:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27801:83;:::o;28713:161::-;28788:4;28805:39;28814:12;:10;:12::i;:::-;28828:7;28837:6;28805:8;:39::i;:::-;28862:4;28855:11;;28713:161;;;;:::o;29834:87::-;29876:7;29903:10;;29896:17;;29834:87;:::o;26259:51::-;;;:::o;28078:95::-;28131:7;28158;;28151:14;;28078:95;:::o;44627:104::-;15865:12;:10;:12::i;:::-;15855:22;;:6;;;;;;;;;;:22;;;15847:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44714:9:::1;44701:10;;:22;;;;;;;;;;;;;;;;;;44627:104:::0;:::o;26054:32::-;;;;:::o;28882:313::-;28980:4;28997:36;29007:6;29015:9;29026:6;28997:9;:36::i;:::-;29044:121;29053:6;29061:12;:10;:12::i;:::-;29075:89;29113:6;29075:89;;;;;;;;;;;;;;;;;:11;:19;29087:6;29075:19;;;;;;;;;;;;;;;:33;29095:12;:10;:12::i;:::-;29075:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;29044:8;:121::i;:::-;29183:4;29176:11;;28882:313;;;;;:::o;26093:75::-;;;;;;;;;;;;;:::o;30758:253::-;30824:7;30863;;30852;:18;;30844:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30928:19;30951:10;:8;:10::i;:::-;30928:33;;30979:24;30991:11;30979:7;:11;;:24;;;;:::i;:::-;30972:31;;;30758:253;;;:::o;35479:388::-;35535:1;35524:7;;:12;:34;;;;;35557:1;35540:13;;:18;35524:34;35521:46;;;35560:7;;35521:46;35587:15;;35577:7;:25;;;;35629:21;;35613:13;:37;;;;35672:16;;35661:8;:27;;;;35715:21;;35699:13;:37;;;;35773:1;35763:7;:11;;;;35801:1;35785:13;:17;;;;35824:1;35813:8;:12;;;;35852:1;35836:13;:17;;;;35479:388;:::o;27987:83::-;28028:5;28053:9;;;;;;;;;;;28046:16;;27987:83;:::o;31476:479::-;15865:12;:10;:12::i;:::-;15855:22;;:6;;;;;;;;;;:22;;;15847:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31558:11:::1;:20;31570:7;31558:20;;;;;;;;;;;;;;;;;;;;;;;;;31550:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;31626:9;31621:327;31645:9;:16;;;;31641:1;:20;31621:327;;;31703:7;31687:23;;:9;31697:1;31687:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;31683:254;;;31746:9;31775:1;31756:9;:16;;;;:20;31746:31;;;;;;;;;;;;;;;;;;;;;;;;;31731:9;31741:1;31731:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;31815:1;31796:7;:16;31804:7;31796:16;;;;;;;;;;;;;;;:20;;;;31858:5;31835:11;:20;31847:7;31835:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;31882:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31916:5;;31683:254;31663:3;;;;;;;31621:327;;;;31476:479:::0;:::o;29203:218::-;29291:4;29308:83;29317:12;:10;:12::i;:::-;29331:7;29340:50;29379:10;29340:11;:25;29352:12;:10;:12::i;:::-;29340:25;;;;;;;;;;;;;;;:34;29366:7;29340:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;29308:8;:83::i;:::-;29409:4;29402:11;;29203:218;;;;:::o;25702:26::-;;;;:::o;29929:377::-;29981:14;29998:12;:10;:12::i;:::-;29981:29;;30030:11;:19;30042:6;30030:19;;;;;;;;;;;;;;;;;;;;;;;;;30029:20;30021:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30110:15;30134:19;30145:7;30134:10;:19::i;:::-;30109:44;;;;;;;30182:28;30202:7;30182;:15;30190:6;30182:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;30164:7;:15;30172:6;30164:15;;;;;;;;;;;;;;;:46;;;;30231:20;30243:7;30231;;:11;;:20;;;;:::i;:::-;30221:7;:30;;;;30275:23;30290:7;30275:10;;:14;;:23;;;;:::i;:::-;30262:10;:36;;;;29929:377;;;:::o;43854:111::-;15865:12;:10;:12::i;:::-;15855:22;;:6;;;;;;;;;;:22;;;15847:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43953:4:::1;43923:18;:27;43942:7;43923:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;43854:111:::0;:::o;30314:436::-;30404:7;30443;;30432;:18;;30424:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30502:17;30497:246;;30537:15;30561:19;30572:7;30561:10;:19::i;:::-;30536:44;;;;;;;30602:7;30595:14;;;;;30497:246;30644:23;30675:19;30686:7;30675:10;:19::i;:::-;30642:52;;;;;;;30716:15;30709:22;;;30314:436;;;;;:::o;25924:70::-;;;;;;;;;;;;;:::o;26317:38::-;;;:::o;26396:40::-;;;;;;;;;;;;;:::o;31019:449::-;15865:12;:10;:12::i;:::-;15855:22;;:6;;;;;;;;;;:22;;;15847:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31112:42:::1;31101:53;;:7;:53;;;;31093:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31218:11;:20;31230:7;31218:20;;;;;;;;;;;;;;;;;;;;;;;;;31217:21;31209:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;31303:1;31284:7;:16;31292:7;31284:16;;;;;;;;;;;;;;;;:20;31281:108;;;31340:37;31360:7;:16;31368:7;31360:16;;;;;;;;;;;;;;;;31340:19;:37::i;:::-;31321:7;:16;31329:7;31321:16;;;;;;;;;;;;;;;:56;;;;31281:108;31422:4;31399:11;:20;31411:7;31399:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;31437:9;31452:7;31437:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31019:449:::0;:::o;36111:123::-;36175:4;36199:18;:27;36218:7;36199:27;;;;;;;;;;;;;;;;;;;;;;;;;36192:34;;36111:123;;;:::o;44503:114::-;15865:12;:10;:12::i;:::-;15855:22;;:6;;;;;;;;;;:22;;;15847:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44600:9:::1;44582:15;;:27;;;;;;;;;;;;;;;;;;44503:114:::0;:::o;25789:32::-;;;;:::o;28181:198::-;28247:7;28271:11;:20;28283:7;28271:20;;;;;;;;;;;;;;;;;;;;;;;;;28267:49;;;28300:7;:16;28308:7;28300:16;;;;;;;;;;;;;;;;28293:23;;;;28267:49;28334:37;28354:7;:16;28362:7;28354:16;;;;;;;;;;;;;;;;28334:19;:37::i;:::-;28327:44;;28181:198;;;;:::o;16282:148::-;15865:12;:10;:12::i;:::-;15855:22;;:6;;;;;;;;;;:22;;;15847:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16389:1:::1;16352:40;;16373:6;::::0;::::1;;;;;;;;16352:40;;;;;;;;;;;;16420:1;16403:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;16282:148::o:0;26606:51::-;;;;:::o;26449:48::-;;;;:::o;44993:257::-;45093:1;45074:16;:20;45066:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45178:64;45226:5;45178:29;45190:16;45178:7;;:11;;:29;;;;:::i;:::-;:33;;:64;;;;:::i;:::-;45160:15;:82;;;;44993:257;:::o;29706:120::-;29774:4;29798:11;:20;29810:7;29798:20;;;;;;;;;;;;;;;;;;;;;;;;;29791:27;;29706:120;;;:::o;15643:79::-;15681:7;15708:6;;;;;;;;;;;15701:13;;15643:79;:::o;27892:87::-;27931:13;27964:7;27957:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27892:87;:::o;29429:269::-;29522:4;29539:129;29548:12;:10;:12::i;:::-;29562:7;29571:96;29610:15;29571:96;;;;;;;;;;;;;;;;;:11;:25;29583:12;:10;:12::i;:::-;29571:25;;;;;;;;;;;;;;;:34;29597:7;29571:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;29539:8;:129::i;:::-;29686:4;29679:11;;29429:269;;;;:::o;28387:167::-;28465:4;28482:42;28492:12;:10;:12::i;:::-;28506:9;28517:6;28482:9;:42::i;:::-;28542:4;28535:11;;28387:167;;;;:::o;25890:27::-;;;;:::o;45258:171::-;15865:12;:10;:12::i;:::-;15855:22;;:6;;;;;;;;;;:22;;;15847:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45359:8:::1;45335:21;;:32;;;;;;;;;;;;;;;;;;45383:38;45412:8;45383:38;;;;;;;;;;;;;;;;;;;;45258:171:::0;:::o;44743:238::-;44831:1;44816:12;:16;44808:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44913:60;44957:5;44913:25;44925:12;44913:7;;:11;;:25;;;;:::i;:::-;:29;;:60;;;;:::i;:::-;44898:12;:75;;;;44743:238;:::o;28562:143::-;28643:7;28670:11;:18;28682:5;28670:18;;;;;;;;;;;;;;;:27;28689:7;28670:27;;;;;;;;;;;;;;;;28663:34;;28562:143;;;;:::o;35879:220::-;35932:15;;35922:7;:25;;;;35974:21;;35958:13;:37;;;;36017:16;;36006:8;:27;;;;36060:21;;36044:13;:37;;;;35879:220::o;43977:110::-;15865:12;:10;:12::i;:::-;15855:22;;:6;;;;;;;;;;:22;;;15847:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44074:5:::1;44044:18;:27;44063:7;44044:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;43977:110:::0;:::o;16585:244::-;15865:12;:10;:12::i;:::-;15855:22;;:6;;;;;;;;;;:22;;;15847:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16694:1:::1;16674:22;;:8;:22;;;;16666:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16784:8;16755:38;;16776:6;::::0;::::1;;;;;;;;16755:38;;;;;;;;;;;;16813:8;16804:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;16585:244:::0;:::o;44164:331::-;15865:12;:10;:12::i;:::-;15855:22;;:6;;;;;;;;;;:22;;;15847:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44231:1:::1;44221:7;:11;;;;44261:7;;44243:15;:25;;;;44295:1;44279:13;:17;;;;44331:13;;44307:21;:37;;;;44366:1;44355:8;:12;;;;44397:7;;44378:16;:26;;;;44431:1;44415:13;:17;;;;44467:13;;44443:21;:37;;;;44164:331::o:0;8048:106::-;8101:15;8136:10;8129:17;;8048:106;:::o;36242:337::-;36352:1;36335:19;;:5;:19;;;;36327:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36433:1;36414:21;;:7;:21;;;;36406:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36517:6;36487:11;:18;36499:5;36487:18;;;;;;;;;;;;;;;:27;36506:7;36487:27;;;;;;;;;;;;;;;:36;;;;36555:7;36539:32;;36548:5;36539:32;;;36564:6;36539:32;;;;;;;;;;;;;;;;;;36242:337;;;:::o;36587:1234::-;36725:1;36709:18;;:4;:18;;;;36701:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36802:1;36788:16;;:2;:16;;;;36780:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36872:1;36863:6;:10;36855:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37214:28;37245:24;37263:4;37245:9;:24::i;:::-;37214:55;;37288:24;37339:29;;37315:20;:53;;37288:80;;37397:19;:53;;;;;37434:16;;;;;;;;;;;37433:17;37397:53;:91;;;;;37475:13;37467:21;;:4;:21;;;;37397:91;:129;;;;;37505:21;;;;;;;;;;;37397:129;37379:318;;;37576:29;;37553:52;;37649:36;37664:20;37649:14;:36::i;:::-;37379:318;37783:30;37798:4;37803:2;37806:6;37783:14;:30::i;:::-;36587:1234;;;;;:::o;4458:192::-;4544:7;4577:1;4572;:6;;4580:12;4564:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4604:9;4620:1;4616;:5;4604:17;;4641:1;4634:8;;;4458:192;;;;;:::o;34076:163::-;34117:7;34138:15;34155;34174:19;:17;:19::i;:::-;34137:56;;;;34211:20;34223:7;34211;:11;;:20;;;;:::i;:::-;34204:27;;;;34076:163;:::o;5856:132::-;5914:7;5941:39;5945:1;5948;5941:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5934:46;;5856:132;;;;:::o;3555:181::-;3613:7;3633:9;3649:1;3645;:5;3633:17;;3674:1;3669;:6;;3661:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3727:1;3720:8;;;3555:181;;;;:::o;32874:419::-;32933:7;32942;32951;32960;32969;32978;32999:23;33024:12;33038:18;33060:20;33072:7;33060:11;:20::i;:::-;32998:82;;;;;;33092:15;33109:23;33134:12;33150:50;33162:7;33171:4;33177:10;33189;:8;:10::i;:::-;33150:11;:50::i;:::-;33091:109;;;;;;33219:7;33228:15;33245:4;33251:15;33268:4;33274:10;33211:74;;;;;;;;;;;;;;;;;;32874:419;;;;;;;:::o;4019:136::-;4077:7;4104:43;4108:1;4111;4104:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4097:50;;4019:136;;;;:::o;4909:471::-;4967:7;5217:1;5212;:6;5208:47;;;5242:1;5235:8;;;;5208:47;5267:9;5283:1;5279;:5;5267:17;;5312:1;5307;5303;:5;;;;;;:10;5295:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5371:1;5364:8;;;4909:471;;;;;:::o;37829:985::-;27001:4;26982:16;;:23;;;;;;;;;;;;;;;;;;37965:12:::1;37980:27;38005:1;37980:20;:24;;:27;;;;:::i;:::-;37965:42;;38018:17;38038:30;38063:4;38038:20;:24;;:30;;;;:::i;:::-;38018:50;;38346:22;38371:21;38346:46;;38437:22;38454:4;38437:16;:22::i;:::-;38590:18;38611:41;38637:14;38611:21;:25;;:41;;;;:::i;:::-;38590:62;;38702:35;38715:9;38726:10;38702:12;:35::i;:::-;38763:43;38778:4;38784:10;38796:9;38763:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27016:1;;;;27047:5:::0;27028:16;;:24;;;;;;;;;;;;;;;;;;37829:985;:::o;40013:2155::-;40110:18;:26;40129:6;40110:26;;;;;;;;;;;;;;;;;;;;;;;;;:59;;;;40140:18;:29;40159:9;40140:29;;;;;;;;;;;;;;;;;;;;;;;;;40110:59;40107:530;;;40185:14;:12;:14::i;:::-;40107:530;;;40242:13;40229:26;;:9;:26;;;40226:411;;;40276:12;;40266:6;:22;;40258:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40226:411;;;40383:12;;40373:6;:22;;40365:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40455:32;40490:20;40500:9;40490;:20::i;:::-;40455:55;;40570:15;;40560:6;40533:24;:33;:52;;40525:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40226:411;;40107:530;40705:15;40723:29;40748:3;40723:20;40734:8;;40723:6;:10;;:20;;;;:::i;:::-;:24;;:29;;;;:::i;:::-;40705:47;;40763:20;40786:34;40816:3;40786:25;40797:13;;40786:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;40763:57;;40847:11;:19;40859:6;40847:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;40871:11;:22;40883:9;40871:22;;;;;;;;;;;;;;;;;;;;;;;;;40870:23;40847:46;40843:762;;;40910:81;40932:6;40940:9;40952:37;40976:12;40952:19;40963:7;40952:6;:10;;:19;;;;:::i;:::-;:23;;:37;;;;:::i;:::-;40910:21;:81::i;:::-;40843:762;;;41014:11;:19;41026:6;41014:19;;;;;;;;;;;;;;;;;;;;;;;;;41013:20;:46;;;;;41037:11;:22;41049:9;41037:22;;;;;;;;;;;;;;;;;;;;;;;;;41013:46;41009:596;;;41076:79;41096:6;41104:9;41116:37;41140:12;41116:19;41127:7;41116:6;:10;;:19;;;;:::i;:::-;:23;;:37;;;;:::i;:::-;41076:19;:79::i;:::-;41009:596;;;41178:11;:19;41190:6;41178:19;;;;;;;;;;;;;;;;;;;;;;;;;41177:20;:47;;;;;41202:11;:22;41214:9;41202:22;;;;;;;;;;;;;;;;;;;;;;;;;41201:23;41177:47;41173:432;;;41241:77;41259:6;41267:9;41279:37;41303:12;41279:19;41290:7;41279:6;:10;;:19;;;;:::i;:::-;:23;;:37;;;;:::i;:::-;41241:17;:77::i;:::-;41173:432;;;41340:11;:19;41352:6;41340:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;41363:11;:22;41375:9;41363:22;;;;;;;;;;;;;;;;;;;;;;;;;41340:45;41336:269;;;41402:81;41424:6;41432:9;41444:37;41468:12;41444:19;41455:7;41444:6;:10;;:19;;;;:::i;:::-;:23;;:37;;;;:::i;:::-;41402:21;:81::i;:::-;41336:269;;;41516:77;41534:6;41542:9;41554:37;41578:12;41554:19;41565:7;41554:6;:10;;:19;;;;:::i;:::-;:23;;:37;;;;:::i;:::-;41516:17;:77::i;:::-;41336:269;41173:432;41009:596;40843:762;41713:1;41703:7;:11;;;;41741:1;41725:13;:17;;;;41804:56;41822:6;41830:15;;;;;;;;;;;41847:12;41804:17;:56::i;:::-;41877:48;41896:6;41904:10;;;;;;;;;;;41917:7;41877:17;:48::i;:::-;41990:15;;41980:7;:25;;;;42032:21;;42016:13;:37;;;;42071:18;:26;42090:6;42071:26;;;;;;;;;;;;;;;;;;;;;;;;;:59;;;;42101:18;:29;42120:9;42101:29;;;;;;;;;;;;;;;;;;;;;;;;;42071:59;42068:92;;;42145:15;:13;:15::i;:::-;42068:92;40013:2155;;;;;:::o;34247:561::-;34297:7;34306;34326:15;34344:7;;34326:25;;34362:15;34380:7;;34362:25;;34409:9;34404:289;34428:9;:16;;;;34424:1;:20;34404:289;;;34494:7;34470;:21;34478:9;34488:1;34478:12;;;;;;;;;;;;;;;;;;;;;;;;;34470:21;;;;;;;;;;;;;;;;:31;:66;;;;34529:7;34505;:21;34513:9;34523:1;34513:12;;;;;;;;;;;;;;;;;;;;;;;;;34505:21;;;;;;;;;;;;;;;;:31;34470:66;34466:97;;;34546:7;;34555;;34538:25;;;;;;;;;34466:97;34588:34;34600:7;:21;34608:9;34618:1;34608:12;;;;;;;;;;;;;;;;;;;;;;;;;34600:21;;;;;;;;;;;;;;;;34588:7;:11;;:34;;;;:::i;:::-;34578:44;;34647:34;34659:7;:21;34667:9;34677:1;34667:12;;;;;;;;;;;;;;;;;;;;;;;;;34659:21;;;;;;;;;;;;;;;;34647:7;:11;;:34;;;;:::i;:::-;34637:44;;34446:3;;;;;;;34404:289;;;;34717:20;34729:7;;34717;;:11;;:20;;;;:::i;:::-;34707:7;:30;34703:61;;;34747:7;;34756;;34739:25;;;;;;;;34703:61;34783:7;34792;34775:25;;;;;;34247:561;;;:::o;6484:278::-;6570:7;6602:1;6598;:5;6605:12;6590:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6629:9;6645:1;6641;:5;;;;;;6629:17;;6753:1;6746:8;;;6484:278;;;;;:::o;33301:330::-;33361:7;33370;33379;33399:12;33414:24;33430:7;33414:15;:24::i;:::-;33399:39;;33449:18;33470:30;33492:7;33470:21;:30::i;:::-;33449:51;;33511:23;33537:33;33559:10;33537:17;33549:4;33537:7;:11;;:17;;;;:::i;:::-;:21;;:33;;;;:::i;:::-;33511:59;;33589:15;33606:4;33612:10;33581:42;;;;;;;;;33301:330;;;;;:::o;33639:429::-;33754:7;33763;33772;33792:15;33810:24;33822:11;33810:7;:11;;:24;;;;:::i;:::-;33792:42;;33845:12;33860:21;33869:11;33860:4;:8;;:21;;;;:::i;:::-;33845:36;;33892:18;33913:27;33928:11;33913:10;:14;;:27;;;;:::i;:::-;33892:48;;33951:23;33977:33;33999:10;33977:17;33989:4;33977:7;:11;;:17;;;;:::i;:::-;:21;;:33;;;;:::i;:::-;33951:59;;34029:7;34038:15;34055:4;34021:39;;;;;;;;;;33639:429;;;;;;;;:::o;38822:589::-;38948:21;38986:1;38972:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38948:40;;39017:4;38999;39004:1;38999:7;;;;;;;;;;;;;:23;;;;;;;;;;;39043:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39033:4;39038:1;39033:7;;;;;;;;;;;;;:32;;;;;;;;;;;39078:62;39095:4;39110:15;39128:11;39078:8;:62::i;:::-;39179:15;:66;;;39260:11;39286:1;39330:4;39357;39377:15;39179:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38822:589;;:::o;39419:513::-;39567:62;39584:4;39599:15;39617:11;39567:8;:62::i;:::-;39672:15;:31;;;39711:9;39744:4;39764:11;39790:1;39833;39876:7;:5;:7::i;:::-;39898:15;39672:252;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39419:513;;:::o;43280:566::-;43383:15;43400:23;43425:12;43439:23;43464:12;43478:18;43500:19;43511:7;43500:10;:19::i;:::-;43382:137;;;;;;;;;;;;43548:28;43568:7;43548;:15;43556:6;43548:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;43530:7;:15;43538:6;43530:15;;;;;;;;;;;;;;;:46;;;;43605:28;43625:7;43605;:15;43613:6;43605:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;43587:7;:15;43595:6;43587:15;;;;;;;;;;;;;;;:46;;;;43665:39;43688:15;43665:7;:18;43673:9;43665:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;43644:7;:18;43652:9;43644:18;;;;;;;;;;;;;;;:60;;;;43718:26;43733:10;43718:14;:26::i;:::-;43755:23;43767:4;43773;43755:11;:23::i;:::-;43811:9;43794:44;;43803:6;43794:44;;;43822:15;43794:44;;;;;;;;;;;;;;;;;;43280:566;;;;;;;;;:::o;42686:586::-;42787:15;42804:23;42829:12;42843:23;42868:12;42882:18;42904:19;42915:7;42904:10;:19::i;:::-;42786:137;;;;;;;;;;;;42952:28;42972:7;42952;:15;42960:6;42952:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;42934:7;:15;42942:6;42934:15;;;;;;;;;;;;;;;:46;;;;43012:39;43035:15;43012:7;:18;43020:9;43012:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;42991:7;:18;42999:9;42991:18;;;;;;;;;;;;;;;:60;;;;43083:39;43106:15;43083:7;:18;43091:9;43083:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;43062:7;:18;43070:9;43062:18;;;;;;;;;;;;;;;:60;;;;43144:26;43159:10;43144:14;:26::i;:::-;43181:23;43193:4;43199;43181:11;:23::i;:::-;43237:9;43220:44;;43229:6;43220:44;;;43248:15;43220:44;;;;;;;;;;;;;;;;;;42686:586;;;;;;;;;:::o;42176:502::-;42275:15;42292:23;42317:12;42331:23;42356:12;42370:18;42392:19;42403:7;42392:10;:19::i;:::-;42274:137;;;;;;;;;;;;42440:28;42460:7;42440;:15;42448:6;42440:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;42422:7;:15;42430:6;42422:15;;;;;;;;;;;;;;;:46;;;;42500:39;42523:15;42500:7;:18;42508:9;42500:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;42479:7;:18;42487:9;42479:18;;;;;;;;;;;;;;;:60;;;;42550:26;42565:10;42550:14;:26::i;:::-;42587:23;42599:4;42605;42587:11;:23::i;:::-;42643:9;42626:44;;42635:6;42626:44;;;42654:15;42626:44;;;;;;;;;;;;;;;;;;42176:502;;;;;;;;;:::o;31963:642::-;32066:15;32083:23;32108:12;32122:23;32147:12;32161:18;32183:19;32194:7;32183:10;:19::i;:::-;32065:137;;;;;;;;;;;;32231:28;32251:7;32231;:15;32239:6;32231:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;32213:7;:15;32221:6;32213:15;;;;;;;;;;;;;;;:46;;;;32288:28;32308:7;32288;:15;32296:6;32288:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;32270:7;:15;32278:6;32270:15;;;;;;;;;;;;;;;:46;;;;32348:39;32371:15;32348:7;:18;32356:9;32348:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;32327:7;:18;32335:9;32327:18;;;;;;;;;;;;;;;:60;;;;32419:39;32442:15;32419:7;:18;32427:9;32419:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;32398:7;:18;32406:9;32398:18;;;;;;;;;;;;;;;:60;;;;32477:26;32492:10;32477:14;:26::i;:::-;32514:23;32526:4;32532;32514:11;:23::i;:::-;32570:9;32553:44;;32562:6;32553:44;;;32581:15;32553:44;;;;;;;;;;;;;;;;;;31963:642;;;;;;;;;:::o;35187:130::-;35251:7;35278:31;35303:5;35278:20;35290:7;;35278;:11;;:20;;;;:::i;:::-;:24;;:31;;;;:::i;:::-;35271:38;;35187:130;;;:::o;35325:142::-;35395:7;35422:37;35453:5;35422:26;35434:13;;35422:7;:11;;:26;;;;:::i;:::-;:30;;:37;;;;:::i;:::-;35415:44;;35325:142;;;:::o;34820:355::-;34883:19;34906:10;:8;:10::i;:::-;34883:33;;34927:18;34948:27;34963:11;34948:10;:14;;:27;;;;:::i;:::-;34927:48;;35011:38;35038:10;35011:7;:22;35027:4;35011:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;34986:7;:22;35002:4;34986:22;;;;;;;;;;;;;;;:63;;;;35063:11;:26;35083:4;35063:26;;;;;;;;;;;;;;;;;;;;;;;;;35060:107;;;35129:38;35156:10;35129:7;:22;35145:4;35129:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;35104:7;:22;35120:4;35104:22;;;;;;;;;;;;;;;:63;;;;35060:107;34820:355;;;:::o;32719:147::-;32797:17;32809:4;32797:7;;:11;;:17;;;;:::i;:::-;32787:7;:27;;;;32838:20;32853:4;32838:10;;:14;;:20;;;;:::i;:::-;32825:10;:33;;;;32719:147;;:::o

Swarm Source

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