ETH Price: $3,098.31 (-0.97%)

Token

Change Token ETH ($CHANGE)
 

Overview

Max Total Supply

1,000,000,000,000 $CHANGE

Holders

98

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
8,666,599,972.641422991 $CHANGE

Value
$0.00
0xb9e4345182be80e45a5e649367f25ffb0cd9aed3
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:
ChangeToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-18
*/

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

interface IERC20 {

    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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



/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    //Locks the contract for owner for the amount of time provided
    function lock(uint256 time) public virtual onlyOwner {
        _previousOwner = _owner;
        _owner = address(0);
        _lockTime = now + time;
        emit OwnershipTransferred(_owner, address(0));
    }

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

// pragma solidity >=0.5.0;

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

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

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

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

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


// pragma solidity >=0.5.0;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

// pragma solidity >=0.6.2;

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

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

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



// pragma solidity >=0.6.2;

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

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


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

    mapping (address => uint256) private _rOwned;
    mapping (address => uint256) private _tOwned;
    mapping (address => mapping (address => uint256)) private _allowances;
    mapping (address => uint256) public _firstBuyTime;
    mapping (address => bool) private _isExcludedFromFee;

    address payable public treasury;
    address payable public development;

    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 1 * 10**12 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = "Change Token ETH";
    string private _symbol = "$CHANGE";
    uint8 private _decimals = 9;

    uint256 private _operationsFee = 0; //adjusted on the go
    uint256 private _liquidityFee = 0; //adjusted on the go
    uint256 private _taxFee = 0; //adjusted on the go

    uint256 public __treasuryFee = 7;
    uint256 public __developmentFee = 1;
    uint256 public __liquidityFee = 1;
    uint256 public __taxFee = 1;

    uint256 public _pendingLiquidityFees = 0;

    uint256 public _dayTraderMultiplicator = 20; // div by 10

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;

    uint256 public _maxWalletHolding = 25 * 10**9 * 10**9;
    uint256 private numTokensSellToAddToLiquidity = 3 * 10**8 * 10**9;

    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    constructor (address payable _treasury, address payable _development) public {
      treasury = _treasury;
      development = _development;
      IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
      uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
      uniswapV2Router = _uniswapV2Router;
      _isExcludedFromFee[owner()] = true;
      _isExcludedFromFee[address(this)] = true;
      _isExcludedFromFee[_treasury] = true;
      _isExcludedFromFee[_development] = true;
      _rOwned[_msgSender()] = _rTotal;
      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) {
        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 totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }

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

    //this can be called externally by deployer to immediately process accumulated fees accordingly (distribute to treasury & liquidity)
    function manualSwapAndLiquify() public onlyOwner() {
        uint256 contractTokenBalance = balanceOf(address(this));
        swapAndLiquify(contractTokenBalance);
    }

    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }

    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }

    function setTax(uint256 _taxType, uint _taxSize) external onlyOwner() {
      if (_taxType == 1) {
        __treasuryFee = _taxSize;
      }
      else if (_taxType == 2) {
        __developmentFee = _taxSize;
      }
      else if (_taxType == 3) {
        __liquidityFee = _taxSize;
      }
      else if (_taxType == 4) {
        __taxFee = _taxSize;
      }
      else if (_taxType == 5) {
        _dayTraderMultiplicator = _taxSize;
      }
    }

    function setPendingLiquidityAmount(uint256 _newPendingLiquidity) external onlyOwner() {
        _pendingLiquidityFees = _newPendingLiquidity;
    }

    function setMaxWalletHolding(uint256 maxHolding) external onlyOwner() {
        _maxWalletHolding = maxHolding;
    }

    function setSwapAndLiquifyEnabled(bool _enabled, uint256 _numTokensMin) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        numTokensSellToAddToLiquidity = _numTokensMin;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }

     //to receive ETH from uniswapV2Router when swaping
    receive() external payable {}

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

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256, uint256) {
        uint256[4] memory tValues = _getTValuesArray(tAmount);
        uint256[3] memory rValues = _getRValuesArray(tAmount, tValues[1], tValues[2], tValues[3]);
        return (rValues[0], rValues[1], rValues[2], tValues[0], tValues[1], tValues[2], tValues[3]);
    }

    function _getTValuesArray(uint256 tAmount) private view returns (uint256[4] memory val) {
        uint256 tFee = calculateTaxFee(tAmount);
        uint256 tLiquidity = calculateLiquidityFee(tAmount);
        uint256 tOperations = calculateOperationsFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity).sub(tOperations);
        return [tTransferAmount, tFee, tLiquidity, tOperations];
    }

    function _getRValuesArray(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 tOperations) private view returns (uint256[3] memory val) {
        uint256 currentRate = _getRate();
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(tLiquidity.mul(currentRate)).sub(tOperations.mul(currentRate));
        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;
        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);
        _pendingLiquidityFees = _pendingLiquidityFees.add(tLiquidity);
    }

    function _takeOperations(uint256 tOperations) private {
        uint256 currentRate =  _getRate();
        uint256 rOperations = tOperations.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rOperations);
    }

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

    function removeAllFee() private {
        _taxFee = 0;
        _liquidityFee = 0;
        _operationsFee = 0;
    }

    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");
        uint256 contractTokenBalance = balanceOf(address(this));

        bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            swapAndLiquify(contractTokenBalance);
        }

        //indicates if fee should be deducted from transfer
        bool takeFee = true;

        //if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){
            takeFee = false;
        }

        //depending on type of transfer (buy, sell, or p2p tokens transfer) different taxes & fees are applied
        bool isTransferBuy = from == uniswapV2Pair;
        bool isTransferSell = to == uniswapV2Pair;

        if (!isTransferBuy && !isTransferSell) {
          //no taxes when transferring
          //still transferring the first buy timestamp
          takeFee = false;
          if (_firstBuyTime[to] < _firstBuyTime[from]) _firstBuyTime[to] = _firstBuyTime[from];
        }
        else if (isTransferBuy) {
          _operationsFee = __treasuryFee.add(__developmentFee);
          _liquidityFee = __liquidityFee;
          _taxFee = __taxFee;
          if (_firstBuyTime[to] == 0) _firstBuyTime[to] = block.timestamp;
        }
        else if (isTransferSell) {
          uint tax_multiplicator = 10;
          _operationsFee = __treasuryFee.add(__developmentFee);
          _liquidityFee = __liquidityFee;
          _taxFee = __taxFee;

          if(!_isExcludedFromFee[from] && !_isExcludedFromFee[to]){
            if (_firstBuyTime[from] != 0 && (_firstBuyTime[from] + (48 hours) > block.timestamp) ) {
              tax_multiplicator = _dayTraderMultiplicator;
            }
          }

          _operationsFee = _operationsFee.mul(tax_multiplicator).div(10);
          _liquidityFee = __liquidityFee.mul(tax_multiplicator).div(10);
          _taxFee = __taxFee.mul(tax_multiplicator).div(10);
        }

        _tokenTransfer(from,to,amount,takeFee);
        removeAllFee();
    }

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 liquidityPart = 0;
        if (_pendingLiquidityFees < contractTokenBalance) liquidityPart = _pendingLiquidityFees;
        uint256 distributionPart = contractTokenBalance.sub(liquidityPart);
        uint256 liquidityHalfPart = liquidityPart.div(2);
        uint256 liquidityHalfTokenPart = liquidityPart.sub(liquidityHalfPart);

        //now swapping half of the liquidity part + all of the distribution part into ETH
        uint256 totalETHSwap = liquidityHalfPart.add(distributionPart);

        uint256 initialBalance = address(this).balance;

        // swap tokens for ETH
        swapTokensForEth(totalETHSwap);

        uint256 newBalance = address(this).balance.sub(initialBalance);
        uint256 liquidityBalance = liquidityHalfPart.mul(newBalance).div(totalETHSwap);

        // add liquidity to uniswap
        if (liquidityHalfTokenPart > 0 && liquidityBalance > 0) addLiquidity(liquidityHalfTokenPart, liquidityBalance);
        emit SwapAndLiquify(liquidityHalfPart, liquidityBalance, liquidityHalfPart);

        newBalance = address(this).balance;
        uint256 devBalance = newBalance.mul(__developmentFee).div(__developmentFee.add(__treasuryFee));
        development.sendValue(devBalance);
        treasury.sendValue(address(this).balance);

        _pendingLiquidityFees = 0;
    }

    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,
            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,
            0,
            treasury,
            block.timestamp
        );
    }

    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private {
        if(!takeFee) removeAllFee();
        _transferStandard(sender, recipient, amount);
        if (!_isExcludedFromFee[recipient] && (recipient != uniswapV2Pair)) require(balanceOf(recipient) < _maxWalletHolding, "Max Wallet holding limit exceeded");
    }

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

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"_treasury","type":"address"},{"internalType":"address payable","name":"_development","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"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":"tokensIntoLiquidity","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":"__developmentFee","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":"__taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"__treasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_dayTraderMultiplicator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_firstBuyTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletHolding","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_pendingLiquidityFees","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":[],"name":"development","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwapAndLiquify","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxHolding","type":"uint256"}],"name":"setMaxWalletHolding","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPendingLiquidity","type":"uint256"}],"name":"setPendingLiquidityAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"},{"internalType":"uint256","name":"_numTokensMin","type":"uint256"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxType","type":"uint256"},{"internalType":"uint256","name":"_taxSize","type":"uint256"}],"name":"setTax","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":"treasury","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052683635c9adc5dea00000600a55600a54600019816200001f57fe5b0660001903600b556040518060400160405280601081526020017f4368616e676520546f6b656e2045544800000000000000000000000000000000815250600d90805190602001906200007492919062000786565b506040518060400160405280600781526020017f244348414e474500000000000000000000000000000000000000000000000000815250600e9080519060200190620000c292919062000786565b506009600f60006101000a81548160ff021916908360ff1602179055506000601055600060115560006012556007601355600160145560016015556001601655600060175560146018556001601960016101000a81548160ff02191690831515021790555068015af1d78b58c40000601a55670429d069189e0000601b553480156200014d57600080fd5b5060405162004bd138038062004bd1833981810160405260408110156200017357600080fd5b8101908080519060200190929190805190602001909291905050506000620001a06200075560201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200032057600080fd5b505afa15801562000335573d6000803e3d6000fd5b505050506040513d60208110156200034c57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620003c057600080fd5b505afa158015620003d5573d6000803e3d6000fd5b505050506040513d6020811015620003ec57600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b1580156200046757600080fd5b505af11580156200047c573d6000803e3d6000fd5b505050506040513d60208110156200049357600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b81525050600160076000620005276200075d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600b5460036000620006976200075560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550620006e56200075560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600a546040518082815260200191505060405180910390a35050506200082c565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620007c957805160ff1916838001178555620007fa565b82800160010185558215620007fa579182015b82811115620007f9578251825591602001919060010190620007dc565b5b5090506200080991906200080d565b5090565b5b80821115620008285760008160009055506001016200080e565b5090565b60805160601c60a05160601c61434e62000883600039806112f152806127dc5280612907528061295a52806133be525080610eba52806137e852806138d452806138fb5280613a065280613a2d525061434e6000f3fe60806040526004361061024a5760003560e01c8063715018a611610139578063a69df4b5116100b6578063dd62ed3e1161007a578063dd62ed3e14610c46578063ea2f0b3714610ccb578063ee1ac8e514610d1c578063ee3922cc14610d47578063f2fde38b14610d72578063f499133514610dc357610251565b8063a69df4b514610b2d578063a9059cbb14610b44578063b6c5232414610bb5578063db5b6a1d14610be0578063dd46706414610c0b57610251565b806392592f37116100fd57806392592f371461096157806395d89b411461099c5780639c2c61e514610a2c578063a457c2d714610a57578063a639c05c14610ac857610251565b8063715018a614610886578063733b864f1461089d5780637b929c27146108b4578063866435c5146108f55780638da5cb5b1461092057610251565b8063437823ec116101c75780635342acb41161018b5780635342acb4146106ed57806361d027b314610754578063667f6526146107955780636f60efbc146107da57806370a082311461082157610251565b8063437823ec146105985780634549b039146105e957806349bd5a5e146106445780634a74bb02146106855780634fb2343a146106b257610251565b806323b872dd1161020e57806323b872dd146103ee578063243299ba1461047f5780632d838119146104aa578063313ce567146104f9578063395093511461052757610251565b806306fdde0314610256578063095ea7b3146102e657806313114a9d146103575780631694505e1461038257806318160ddd146103c357610251565b3661025157005b600080fd5b34801561026257600080fd5b5061026b610dee565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102ab578082015181840152602081019050610290565b50505050905090810190601f1680156102d85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102f257600080fd5b5061033f6004803603604081101561030957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e90565b60405180821515815260200191505060405180910390f35b34801561036357600080fd5b5061036c610eae565b6040518082815260200191505060405180910390f35b34801561038e57600080fd5b50610397610eb8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103cf57600080fd5b506103d8610edc565b6040518082815260200191505060405180910390f35b3480156103fa57600080fd5b506104676004803603606081101561041157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ee6565b60405180821515815260200191505060405180910390f35b34801561048b57600080fd5b50610494610fbf565b6040518082815260200191505060405180910390f35b3480156104b657600080fd5b506104e3600480360360208110156104cd57600080fd5b8101908080359060200190929190505050610fc5565b6040518082815260200191505060405180910390f35b34801561050557600080fd5b5061050e611049565b604051808260ff16815260200191505060405180910390f35b34801561053357600080fd5b506105806004803603604081101561054a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611060565b60405180821515815260200191505060405180910390f35b3480156105a457600080fd5b506105e7600480360360208110156105bb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611113565b005b3480156105f557600080fd5b5061062e6004803603604081101561060c57600080fd5b8101908080359060200190929190803515159060200190929190505050611236565b6040518082815260200191505060405180910390f35b34801561065057600080fd5b506106596112ef565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561069157600080fd5b5061069a611313565b60405180821515815260200191505060405180910390f35b3480156106be57600080fd5b506106eb600480360360208110156106d557600080fd5b8101908080359060200190929190505050611326565b005b3480156106f957600080fd5b5061073c6004803603602081101561071057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113f8565b60405180821515815260200191505060405180910390f35b34801561076057600080fd5b5061076961144e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156107a157600080fd5b506107d8600480360360408110156107b857600080fd5b810190808035906020019092919080359060200190929190505050611474565b005b3480156107e657600080fd5b5061081f600480360360408110156107fd57600080fd5b81019080803515159060200190929190803590602001909291905050506115a9565b005b34801561082d57600080fd5b506108706004803603602081101561084457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116cf565b6040518082815260200191505060405180910390f35b34801561089257600080fd5b5061089b611720565b005b3480156108a957600080fd5b506108b26118a6565b005b3480156108c057600080fd5b506108c9611987565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561090157600080fd5b5061090a6119ad565b6040518082815260200191505060405180910390f35b34801561092c57600080fd5b506109356119b3565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561096d57600080fd5b5061099a6004803603602081101561098457600080fd5b81019080803590602001909291905050506119dc565b005b3480156109a857600080fd5b506109b1611aae565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156109f15780820151818401526020810190506109d6565b50505050905090810190601f168015610a1e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610a3857600080fd5b50610a41611b50565b6040518082815260200191505060405180910390f35b348015610a6357600080fd5b50610ab060048036036040811015610a7a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b56565b60405180821515815260200191505060405180910390f35b348015610ad457600080fd5b50610b1760048036036020811015610aeb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c23565b6040518082815260200191505060405180910390f35b348015610b3957600080fd5b50610b42611c3b565b005b348015610b5057600080fd5b50610b9d60048036036040811015610b6757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e58565b60405180821515815260200191505060405180910390f35b348015610bc157600080fd5b50610bca611e76565b6040518082815260200191505060405180910390f35b348015610bec57600080fd5b50610bf5611e80565b6040518082815260200191505060405180910390f35b348015610c1757600080fd5b50610c4460048036036020811015610c2e57600080fd5b8101908080359060200190929190505050611e86565b005b348015610c5257600080fd5b50610cb560048036036040811015610c6957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612077565b6040518082815260200191505060405180910390f35b348015610cd757600080fd5b50610d1a60048036036020811015610cee57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120fe565b005b348015610d2857600080fd5b50610d31612221565b6040518082815260200191505060405180910390f35b348015610d5357600080fd5b50610d5c612227565b6040518082815260200191505060405180910390f35b348015610d7e57600080fd5b50610dc160048036036020811015610d9557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061222d565b005b348015610dcf57600080fd5b50610dd8612438565b6040518082815260200191505060405180910390f35b6060600d8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e865780601f10610e5b57610100808354040283529160200191610e86565b820191906000526020600020905b815481529060010190602001808311610e6957829003601f168201915b5050505050905090565b6000610ea4610e9d61243e565b8484612446565b6001905092915050565b6000600c54905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600a54905090565b6000610ef384848461263d565b610fb484610eff61243e565b610faf8560405180606001604052806028815260200161421660289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f6561243e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612dc39092919063ffffffff16565b612446565b600190509392505050565b60185481565b6000600b54821115611022576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614149602a913960400191505060405180910390fd5b600061102c612e83565b90506110418184612eae90919063ffffffff16565b915050919050565b6000600f60009054906101000a900460ff16905090565b600061110961106d61243e565b84611104856005600061107e61243e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ef890919063ffffffff16565b612446565b6001905092915050565b61111b61243e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600a548311156112b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b816112d15760006112c084612f80565b5050505050509050809150506112e9565b60006112dc84612f80565b5050505050915050809150505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601960019054906101000a900460ff1681565b61132e61243e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601a8190555050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61147c61243e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461153c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600182141561155157806013819055506115a5565b600282141561156657806014819055506115a4565b600382141561157b57806015819055506115a3565b600482141561159057806016819055506115a2565b60058214156115a157806018819055505b5b5b5b5b5050565b6115b161243e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611671576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81601960016101000a81548160ff02191690831515021790555080601b819055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598260405180821515815260200191505060405180910390a15050565b6000611719600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fc5565b9050919050565b61172861243e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6118ae61243e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461196e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000611979306116cf565b905061198481613080565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60175481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6119e461243e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611aa4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060178190555050565b6060600e8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611b465780601f10611b1b57610100808354040283529160200191611b46565b820191906000526020600020905b815481529060010190602001808311611b2957829003601f168201915b5050505050905090565b60145481565b6000611c19611b6361243e565b84611c14856040518060600160405280602581526020016142d36025913960056000611b8d61243e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612dc39092919063ffffffff16565b612446565b6001905092915050565b60066020528060005260406000206000915090505481565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ce1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806142b06023913960400191505060405180910390fd5b6002544211611d58576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000611e6c611e6561243e565b848461263d565b6001905092915050565b6000600254905090565b60135481565b611e8e61243e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f4e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61210661243e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60165481565b60155481565b61223561243e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146122f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561237b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806141736026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124cc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061428c6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612552576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806141996022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806142676025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612749576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806141266023913960400191505060405180910390fd5b600081116127a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602981526020018061423e6029913960400191505060405180910390fd5b60006127ad306116cf565b90506000601b5482101590508080156127d35750601960009054906101000a900460ff16155b801561282b57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156128435750601960019054906101000a900460ff165b156128525761285182613080565b5b600060019050600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128f95750600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561290357600090505b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16149050811580156129b5575080155b15612acd5760009250600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015612ac857600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b612da5565b8115612b9457612aea601454601354612ef890919063ffffffff16565b6010819055506015546011819055506016546012819055506000600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415612b8f5742600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b612da4565b8015612da3576000600a9050612bb7601454601354612ef890919063ffffffff16565b601081905550601554601181905550601654601281905550600760008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612c735750600760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d17576000600660008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414158015612d0b5750426202a300600660008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205401115b15612d165760185490505b5b612d3f600a612d31836010546132c890919063ffffffff16565b612eae90919063ffffffff16565b601081905550612d6d600a612d5f836015546132c890919063ffffffff16565b612eae90919063ffffffff16565b601181905550612d9b600a612d8d836016546132c890919063ffffffff16565b612eae90919063ffffffff16565b601281905550505b5b5b612db18888888661334e565b612db961347b565b5050505050505050565b6000838311158290612e70576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612e35578082015181840152602081019050612e1a565b50505050905090810190601f168015612e625780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000612e90613495565b91509150612ea78183612eae90919063ffffffff16565b9250505090565b6000612ef083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506134e2565b905092915050565b600080828401905083811015612f76576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000612f936140e1565b612f9c896135a8565b9050612fa6614103565b612fe58a83600160048110612fb757fe5b602002015184600260048110612fc957fe5b602002015185600360048110612fdb57fe5b602002015161363e565b905080600060038110612ff457fe5b60200201518160016003811061300657fe5b60200201518260026003811061301857fe5b60200201518460006004811061302a57fe5b60200201518560016004811061303c57fe5b60200201518660026004811061304e57fe5b60200201518760036004811061306057fe5b602002015198509850985098509850985098505050919395979092949650565b6001601960006101000a81548160ff02191690831515021790555060008160175410156130ad5760175490505b60006130c2828461370890919063ffffffff16565b905060006130da600284612eae90919063ffffffff16565b905060006130f1828561370890919063ffffffff16565b905060006131088484612ef890919063ffffffff16565b9050600047905061311882613752565b600061312d824761370890919063ffffffff16565b905060006131568461314884896132c890919063ffffffff16565b612eae90919063ffffffff16565b90506000851180156131685750600081115b15613178576131778582613a00565b5b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186828860405180848152602001838152602001828152602001935050505060405180910390a147915060006132016131de601354601454612ef890919063ffffffff16565b6131f3601454866132c890919063ffffffff16565b612eae90919063ffffffff16565b905061324e81600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16613b6c90919063ffffffff16565b61329947600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16613b6c90919063ffffffff16565b60006017819055505050505050505050506000601960006101000a81548160ff02191690831515021790555050565b6000808314156132db5760009050613348565b60008284029050828482816132ec57fe5b0414613343576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806141f56021913960400191505060405180910390fd5b809150505b92915050565b8061335c5761335b61347b565b5b613367848484613ca6565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561340d57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b1561347557601a5461341e846116cf565b10613474576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806142f86021913960400191505060405180910390fd5b5b50505050565b600060128190555060006011819055506000601081905550565b6000806000600b5490506000600a5490506134bd600a54600b54612eae90919063ffffffff16565b8210156134d557600b54600a549350935050506134de565b81819350935050505b9091565b6000808311829061358e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613553578082015181840152602081019050613538565b50505050905090810190601f1680156135805780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161359a57fe5b049050809150509392505050565b6135b06140e1565b60006135bb83613e7f565b905060006135c884613eb0565b905060006135d585613ee1565b9050600061361082613602856135f4888b61370890919063ffffffff16565b61370890919063ffffffff16565b61370890919063ffffffff16565b9050604051806080016040528082815260200185815260200184815260200183815250945050505050919050565b613646614103565b6000613650612e83565b9050600061366782886132c890919063ffffffff16565b9050600061367e83886132c890919063ffffffff16565b905060006136dd61369885886132c890919063ffffffff16565b6136cf6136ae878b6132c890919063ffffffff16565b6136c1868861370890919063ffffffff16565b61370890919063ffffffff16565b61370890919063ffffffff16565b9050604051806060016040528084815260200182815260200183815250945050505050949350505050565b600061374a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612dc3565b905092915050565b6060600267ffffffffffffffff8111801561376c57600080fd5b5060405190808252806020026020018201604052801561379b5781602001602082028036833780820191505090505b50905030816000815181106137ac57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561384c57600080fd5b505afa158015613860573d6000803e3d6000fd5b505050506040513d602081101561387657600080fd5b81019080805190602001909291905050508160018151811061389457fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506138f9307f000000000000000000000000000000000000000000000000000000000000000084612446565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156139bb5780820151818401526020810190506139a0565b505050509050019650505050505050600060405180830381600087803b1580156139e457600080fd5b505af11580156139f8573d6000803e3d6000fd5b505050505050565b613a2b307f000000000000000000000000000000000000000000000000000000000000000084612446565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b158015613b1557600080fd5b505af1158015613b29573d6000803e3d6000fd5b50505050506040513d6060811015613b4057600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b80471015613be2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a20696e73756666696369656e742062616c616e636500000081525060200191505060405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405180600001905060006040518083038185875af1925050503d8060008114613c42576040519150601f19603f3d011682016040523d82523d6000602084013e613c47565b606091505b5050905080613ca1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a8152602001806141bb603a913960400191505060405180910390fd5b505050565b6000806000806000806000613cba88612f80565b9650965096509650965096509650613d1a87600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461370890919063ffffffff16565b600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613daf86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ef890919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613dfb82613f12565b613e0481613fea565b613e0e85846140a7565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a350505050505050505050565b6000613ea96064613e9b601254856132c890919063ffffffff16565b612eae90919063ffffffff16565b9050919050565b6000613eda6064613ecc601154856132c890919063ffffffff16565b612eae90919063ffffffff16565b9050919050565b6000613f0b6064613efd601054856132c890919063ffffffff16565b612eae90919063ffffffff16565b9050919050565b6000613f1c612e83565b90506000613f3382846132c890919063ffffffff16565b9050613f8781600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ef890919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613fdf83601754612ef890919063ffffffff16565b601781905550505050565b6000613ff4612e83565b9050600061400b82846132c890919063ffffffff16565b905061405f81600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ef890919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b6140bc82600b5461370890919063ffffffff16565b600b819055506140d781600c54612ef890919063ffffffff16565b600c819055505050565b6040518060800160405280600490602082028036833780820191505090505090565b604051806060016040528060039060208202803683378082019150509050509056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d61792068617665207265766572746564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4d61782057616c6c657420686f6c64696e67206c696d6974206578636565646564a2646970667358221220f3ee90b20cb01de52faefc16967ec65275edbb47f0b6e69b06f06fc3eff49c6564736f6c634300060c0033000000000000000000000000b81b8720d3a6257e220d46c7184a356afc29086700000000000000000000000079112056459671d81f9156afd00d6f1f1c09c39d

Deployed Bytecode

0x60806040526004361061024a5760003560e01c8063715018a611610139578063a69df4b5116100b6578063dd62ed3e1161007a578063dd62ed3e14610c46578063ea2f0b3714610ccb578063ee1ac8e514610d1c578063ee3922cc14610d47578063f2fde38b14610d72578063f499133514610dc357610251565b8063a69df4b514610b2d578063a9059cbb14610b44578063b6c5232414610bb5578063db5b6a1d14610be0578063dd46706414610c0b57610251565b806392592f37116100fd57806392592f371461096157806395d89b411461099c5780639c2c61e514610a2c578063a457c2d714610a57578063a639c05c14610ac857610251565b8063715018a614610886578063733b864f1461089d5780637b929c27146108b4578063866435c5146108f55780638da5cb5b1461092057610251565b8063437823ec116101c75780635342acb41161018b5780635342acb4146106ed57806361d027b314610754578063667f6526146107955780636f60efbc146107da57806370a082311461082157610251565b8063437823ec146105985780634549b039146105e957806349bd5a5e146106445780634a74bb02146106855780634fb2343a146106b257610251565b806323b872dd1161020e57806323b872dd146103ee578063243299ba1461047f5780632d838119146104aa578063313ce567146104f9578063395093511461052757610251565b806306fdde0314610256578063095ea7b3146102e657806313114a9d146103575780631694505e1461038257806318160ddd146103c357610251565b3661025157005b600080fd5b34801561026257600080fd5b5061026b610dee565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102ab578082015181840152602081019050610290565b50505050905090810190601f1680156102d85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102f257600080fd5b5061033f6004803603604081101561030957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e90565b60405180821515815260200191505060405180910390f35b34801561036357600080fd5b5061036c610eae565b6040518082815260200191505060405180910390f35b34801561038e57600080fd5b50610397610eb8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103cf57600080fd5b506103d8610edc565b6040518082815260200191505060405180910390f35b3480156103fa57600080fd5b506104676004803603606081101561041157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ee6565b60405180821515815260200191505060405180910390f35b34801561048b57600080fd5b50610494610fbf565b6040518082815260200191505060405180910390f35b3480156104b657600080fd5b506104e3600480360360208110156104cd57600080fd5b8101908080359060200190929190505050610fc5565b6040518082815260200191505060405180910390f35b34801561050557600080fd5b5061050e611049565b604051808260ff16815260200191505060405180910390f35b34801561053357600080fd5b506105806004803603604081101561054a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611060565b60405180821515815260200191505060405180910390f35b3480156105a457600080fd5b506105e7600480360360208110156105bb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611113565b005b3480156105f557600080fd5b5061062e6004803603604081101561060c57600080fd5b8101908080359060200190929190803515159060200190929190505050611236565b6040518082815260200191505060405180910390f35b34801561065057600080fd5b506106596112ef565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561069157600080fd5b5061069a611313565b60405180821515815260200191505060405180910390f35b3480156106be57600080fd5b506106eb600480360360208110156106d557600080fd5b8101908080359060200190929190505050611326565b005b3480156106f957600080fd5b5061073c6004803603602081101561071057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113f8565b60405180821515815260200191505060405180910390f35b34801561076057600080fd5b5061076961144e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156107a157600080fd5b506107d8600480360360408110156107b857600080fd5b810190808035906020019092919080359060200190929190505050611474565b005b3480156107e657600080fd5b5061081f600480360360408110156107fd57600080fd5b81019080803515159060200190929190803590602001909291905050506115a9565b005b34801561082d57600080fd5b506108706004803603602081101561084457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116cf565b6040518082815260200191505060405180910390f35b34801561089257600080fd5b5061089b611720565b005b3480156108a957600080fd5b506108b26118a6565b005b3480156108c057600080fd5b506108c9611987565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561090157600080fd5b5061090a6119ad565b6040518082815260200191505060405180910390f35b34801561092c57600080fd5b506109356119b3565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561096d57600080fd5b5061099a6004803603602081101561098457600080fd5b81019080803590602001909291905050506119dc565b005b3480156109a857600080fd5b506109b1611aae565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156109f15780820151818401526020810190506109d6565b50505050905090810190601f168015610a1e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610a3857600080fd5b50610a41611b50565b6040518082815260200191505060405180910390f35b348015610a6357600080fd5b50610ab060048036036040811015610a7a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b56565b60405180821515815260200191505060405180910390f35b348015610ad457600080fd5b50610b1760048036036020811015610aeb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c23565b6040518082815260200191505060405180910390f35b348015610b3957600080fd5b50610b42611c3b565b005b348015610b5057600080fd5b50610b9d60048036036040811015610b6757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e58565b60405180821515815260200191505060405180910390f35b348015610bc157600080fd5b50610bca611e76565b6040518082815260200191505060405180910390f35b348015610bec57600080fd5b50610bf5611e80565b6040518082815260200191505060405180910390f35b348015610c1757600080fd5b50610c4460048036036020811015610c2e57600080fd5b8101908080359060200190929190505050611e86565b005b348015610c5257600080fd5b50610cb560048036036040811015610c6957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612077565b6040518082815260200191505060405180910390f35b348015610cd757600080fd5b50610d1a60048036036020811015610cee57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120fe565b005b348015610d2857600080fd5b50610d31612221565b6040518082815260200191505060405180910390f35b348015610d5357600080fd5b50610d5c612227565b6040518082815260200191505060405180910390f35b348015610d7e57600080fd5b50610dc160048036036020811015610d9557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061222d565b005b348015610dcf57600080fd5b50610dd8612438565b6040518082815260200191505060405180910390f35b6060600d8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e865780601f10610e5b57610100808354040283529160200191610e86565b820191906000526020600020905b815481529060010190602001808311610e6957829003601f168201915b5050505050905090565b6000610ea4610e9d61243e565b8484612446565b6001905092915050565b6000600c54905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600a54905090565b6000610ef384848461263d565b610fb484610eff61243e565b610faf8560405180606001604052806028815260200161421660289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f6561243e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612dc39092919063ffffffff16565b612446565b600190509392505050565b60185481565b6000600b54821115611022576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614149602a913960400191505060405180910390fd5b600061102c612e83565b90506110418184612eae90919063ffffffff16565b915050919050565b6000600f60009054906101000a900460ff16905090565b600061110961106d61243e565b84611104856005600061107e61243e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ef890919063ffffffff16565b612446565b6001905092915050565b61111b61243e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600a548311156112b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b816112d15760006112c084612f80565b5050505050509050809150506112e9565b60006112dc84612f80565b5050505050915050809150505b92915050565b7f000000000000000000000000fe4db3ed11e048542222e0834b2f1c16dba9861081565b601960019054906101000a900460ff1681565b61132e61243e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601a8190555050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61147c61243e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461153c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600182141561155157806013819055506115a5565b600282141561156657806014819055506115a4565b600382141561157b57806015819055506115a3565b600482141561159057806016819055506115a2565b60058214156115a157806018819055505b5b5b5b5b5050565b6115b161243e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611671576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81601960016101000a81548160ff02191690831515021790555080601b819055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598260405180821515815260200191505060405180910390a15050565b6000611719600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fc5565b9050919050565b61172861243e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6118ae61243e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461196e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000611979306116cf565b905061198481613080565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60175481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6119e461243e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611aa4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060178190555050565b6060600e8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611b465780601f10611b1b57610100808354040283529160200191611b46565b820191906000526020600020905b815481529060010190602001808311611b2957829003601f168201915b5050505050905090565b60145481565b6000611c19611b6361243e565b84611c14856040518060600160405280602581526020016142d36025913960056000611b8d61243e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612dc39092919063ffffffff16565b612446565b6001905092915050565b60066020528060005260406000206000915090505481565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ce1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806142b06023913960400191505060405180910390fd5b6002544211611d58576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000611e6c611e6561243e565b848461263d565b6001905092915050565b6000600254905090565b60135481565b611e8e61243e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f4e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61210661243e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60165481565b60155481565b61223561243e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146122f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561237b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806141736026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124cc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061428c6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612552576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806141996022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806142676025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612749576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806141266023913960400191505060405180910390fd5b600081116127a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602981526020018061423e6029913960400191505060405180910390fd5b60006127ad306116cf565b90506000601b5482101590508080156127d35750601960009054906101000a900460ff16155b801561282b57507f000000000000000000000000fe4db3ed11e048542222e0834b2f1c16dba9861073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156128435750601960019054906101000a900460ff165b156128525761285182613080565b5b600060019050600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128f95750600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561290357600090505b60007f000000000000000000000000fe4db3ed11e048542222e0834b2f1c16dba9861073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614905060007f000000000000000000000000fe4db3ed11e048542222e0834b2f1c16dba9861073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16149050811580156129b5575080155b15612acd5760009250600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015612ac857600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b612da5565b8115612b9457612aea601454601354612ef890919063ffffffff16565b6010819055506015546011819055506016546012819055506000600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415612b8f5742600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b612da4565b8015612da3576000600a9050612bb7601454601354612ef890919063ffffffff16565b601081905550601554601181905550601654601281905550600760008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612c735750600760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d17576000600660008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414158015612d0b5750426202a300600660008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205401115b15612d165760185490505b5b612d3f600a612d31836010546132c890919063ffffffff16565b612eae90919063ffffffff16565b601081905550612d6d600a612d5f836015546132c890919063ffffffff16565b612eae90919063ffffffff16565b601181905550612d9b600a612d8d836016546132c890919063ffffffff16565b612eae90919063ffffffff16565b601281905550505b5b5b612db18888888661334e565b612db961347b565b5050505050505050565b6000838311158290612e70576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612e35578082015181840152602081019050612e1a565b50505050905090810190601f168015612e625780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000612e90613495565b91509150612ea78183612eae90919063ffffffff16565b9250505090565b6000612ef083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506134e2565b905092915050565b600080828401905083811015612f76576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000612f936140e1565b612f9c896135a8565b9050612fa6614103565b612fe58a83600160048110612fb757fe5b602002015184600260048110612fc957fe5b602002015185600360048110612fdb57fe5b602002015161363e565b905080600060038110612ff457fe5b60200201518160016003811061300657fe5b60200201518260026003811061301857fe5b60200201518460006004811061302a57fe5b60200201518560016004811061303c57fe5b60200201518660026004811061304e57fe5b60200201518760036004811061306057fe5b602002015198509850985098509850985098505050919395979092949650565b6001601960006101000a81548160ff02191690831515021790555060008160175410156130ad5760175490505b60006130c2828461370890919063ffffffff16565b905060006130da600284612eae90919063ffffffff16565b905060006130f1828561370890919063ffffffff16565b905060006131088484612ef890919063ffffffff16565b9050600047905061311882613752565b600061312d824761370890919063ffffffff16565b905060006131568461314884896132c890919063ffffffff16565b612eae90919063ffffffff16565b90506000851180156131685750600081115b15613178576131778582613a00565b5b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186828860405180848152602001838152602001828152602001935050505060405180910390a147915060006132016131de601354601454612ef890919063ffffffff16565b6131f3601454866132c890919063ffffffff16565b612eae90919063ffffffff16565b905061324e81600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16613b6c90919063ffffffff16565b61329947600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16613b6c90919063ffffffff16565b60006017819055505050505050505050506000601960006101000a81548160ff02191690831515021790555050565b6000808314156132db5760009050613348565b60008284029050828482816132ec57fe5b0414613343576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806141f56021913960400191505060405180910390fd5b809150505b92915050565b8061335c5761335b61347b565b5b613367848484613ca6565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561340d57507f000000000000000000000000fe4db3ed11e048542222e0834b2f1c16dba9861073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b1561347557601a5461341e846116cf565b10613474576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806142f86021913960400191505060405180910390fd5b5b50505050565b600060128190555060006011819055506000601081905550565b6000806000600b5490506000600a5490506134bd600a54600b54612eae90919063ffffffff16565b8210156134d557600b54600a549350935050506134de565b81819350935050505b9091565b6000808311829061358e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613553578082015181840152602081019050613538565b50505050905090810190601f1680156135805780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161359a57fe5b049050809150509392505050565b6135b06140e1565b60006135bb83613e7f565b905060006135c884613eb0565b905060006135d585613ee1565b9050600061361082613602856135f4888b61370890919063ffffffff16565b61370890919063ffffffff16565b61370890919063ffffffff16565b9050604051806080016040528082815260200185815260200184815260200183815250945050505050919050565b613646614103565b6000613650612e83565b9050600061366782886132c890919063ffffffff16565b9050600061367e83886132c890919063ffffffff16565b905060006136dd61369885886132c890919063ffffffff16565b6136cf6136ae878b6132c890919063ffffffff16565b6136c1868861370890919063ffffffff16565b61370890919063ffffffff16565b61370890919063ffffffff16565b9050604051806060016040528084815260200182815260200183815250945050505050949350505050565b600061374a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612dc3565b905092915050565b6060600267ffffffffffffffff8111801561376c57600080fd5b5060405190808252806020026020018201604052801561379b5781602001602082028036833780820191505090505b50905030816000815181106137ac57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561384c57600080fd5b505afa158015613860573d6000803e3d6000fd5b505050506040513d602081101561387657600080fd5b81019080805190602001909291905050508160018151811061389457fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506138f9307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612446565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156139bb5780820151818401526020810190506139a0565b505050509050019650505050505050600060405180830381600087803b1580156139e457600080fd5b505af11580156139f8573d6000803e3d6000fd5b505050505050565b613a2b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612446565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b158015613b1557600080fd5b505af1158015613b29573d6000803e3d6000fd5b50505050506040513d6060811015613b4057600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b80471015613be2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a20696e73756666696369656e742062616c616e636500000081525060200191505060405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405180600001905060006040518083038185875af1925050503d8060008114613c42576040519150601f19603f3d011682016040523d82523d6000602084013e613c47565b606091505b5050905080613ca1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a8152602001806141bb603a913960400191505060405180910390fd5b505050565b6000806000806000806000613cba88612f80565b9650965096509650965096509650613d1a87600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461370890919063ffffffff16565b600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613daf86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ef890919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613dfb82613f12565b613e0481613fea565b613e0e85846140a7565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a350505050505050505050565b6000613ea96064613e9b601254856132c890919063ffffffff16565b612eae90919063ffffffff16565b9050919050565b6000613eda6064613ecc601154856132c890919063ffffffff16565b612eae90919063ffffffff16565b9050919050565b6000613f0b6064613efd601054856132c890919063ffffffff16565b612eae90919063ffffffff16565b9050919050565b6000613f1c612e83565b90506000613f3382846132c890919063ffffffff16565b9050613f8781600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ef890919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613fdf83601754612ef890919063ffffffff16565b601781905550505050565b6000613ff4612e83565b9050600061400b82846132c890919063ffffffff16565b905061405f81600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ef890919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b6140bc82600b5461370890919063ffffffff16565b600b819055506140d781600c54612ef890919063ffffffff16565b600c819055505050565b6040518060800160405280600490602082028036833780820191505090505090565b604051806060016040528060039060208202803683378082019150509050509056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d61792068617665207265766572746564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4d61782057616c6c657420686f6c64696e67206c696d6974206578636565646564a2646970667358221220f3ee90b20cb01de52faefc16967ec65275edbb47f0b6e69b06f06fc3eff49c6564736f6c634300060c0033

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

000000000000000000000000b81b8720d3a6257e220d46c7184a356afc29086700000000000000000000000079112056459671d81f9156afd00d6f1f1c09c39d

-----Decoded View---------------
Arg [0] : _treasury (address): 0xb81B8720D3A6257E220D46C7184a356afc290867
Arg [1] : _development (address): 0x79112056459671d81f9156afd00D6F1F1C09C39D

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000b81b8720d3a6257e220d46c7184a356afc290867
Arg [1] : 00000000000000000000000079112056459671d81f9156afd00d6f1f1c09c39d


Deployed Bytecode Sourcemap

25610:16621:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28289:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29141:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30134:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26884:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28566:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29310:313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26819:43;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30675:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28475:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29631:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31254:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30229:438;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26942:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27017:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32123:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35708:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26036:31;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31491:467;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32250:250;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28669:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16209:148;;;;;;;;;;;;;:::i;:::-;;31074:172;;;;;;;;;;;;;:::i;:::-;;26074:34;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26770:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15566:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31966:149;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28380:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26652:35;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29857:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25919:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17215:293;;;;;;;;;;;;;:::i;:::-;;28815:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;16764:89;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26613:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16929:214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28990:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31373:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;26734:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26694:33;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16512:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27066:53;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28289:83;28326:13;28359:5;28352:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28289:83;:::o;29141:161::-;29216:4;29233:39;29242:12;:10;:12::i;:::-;29256:7;29265:6;29233:8;:39::i;:::-;29290:4;29283:11;;29141:161;;;;:::o;30134:87::-;30176:7;30203:10;;30196:17;;30134:87;:::o;26884:51::-;;;:::o;28566:95::-;28619:7;28646;;28639:14;;28566:95;:::o;29310:313::-;29408:4;29425:36;29435:6;29443:9;29454:6;29425:9;:36::i;:::-;29472:121;29481:6;29489:12;:10;:12::i;:::-;29503:89;29541:6;29503:89;;;;;;;;;;;;;;;;;:11;:19;29515:6;29503:19;;;;;;;;;;;;;;;:33;29523:12;:10;:12::i;:::-;29503:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;29472:8;:121::i;:::-;29611:4;29604:11;;29310:313;;;;;:::o;26819:43::-;;;;:::o;30675:253::-;30741:7;30780;;30769;:18;;30761:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30845:19;30868:10;:8;:10::i;:::-;30845:33;;30896:24;30908:11;30896:7;:11;;:24;;;;:::i;:::-;30889:31;;;30675:253;;;:::o;28475:83::-;28516:5;28541:9;;;;;;;;;;;28534:16;;28475:83;:::o;29631:218::-;29719:4;29736:83;29745:12;:10;:12::i;:::-;29759:7;29768:50;29807:10;29768:11;:25;29780:12;:10;:12::i;:::-;29768:25;;;;;;;;;;;;;;;:34;29794:7;29768:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;29736:8;:83::i;:::-;29837:4;29830:11;;29631:218;;;;:::o;31254:111::-;15788:12;:10;:12::i;:::-;15778:22;;:6;;;;;;;;;;:22;;;15770:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31353:4:::1;31323:18;:27;31342:7;31323:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;31254:111:::0;:::o;30229:438::-;30319:7;30358;;30347;:18;;30339:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30417:17;30412:248;;30452:15;30477:19;30488:7;30477:10;:19::i;:::-;30451:45;;;;;;;;30518:7;30511:14;;;;;30412:248;30560:23;30592:19;30603:7;30592:10;:19::i;:::-;30558:53;;;;;;;;30633:15;30626:22;;;30229:438;;;;;:::o;26942:38::-;;;:::o;27017:40::-;;;;;;;;;;;;;:::o;32123:119::-;15788:12;:10;:12::i;:::-;15778:22;;:6;;;;;;;;;;:22;;;15770:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32224:10:::1;32204:17;:30;;;;32123:119:::0;:::o;35708:123::-;35772:4;35796:18;:27;35815:7;35796:27;;;;;;;;;;;;;;;;;;;;;;;;;35789:34;;35708:123;;;:::o;26036:31::-;;;;;;;;;;;;;:::o;31491:467::-;15788:12;:10;:12::i;:::-;15778:22;;:6;;;;;;;;;;:22;;;15770:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31586:1:::1;31574:8;:13;31570:381;;;31616:8;31600:13;:24;;;;31570:381;;;31663:1;31651:8;:13;31647:304;;;31696:8;31677:16;:27;;;;31647:304;;;31743:1;31731:8;:13;31727:224;;;31774:8;31757:14;:25;;;;31727:224;;;31821:1;31809:8;:13;31805:146;;;31846:8;31835;:19;;;;31805:146;;;31893:1;31881:8;:13;31877:74;;;31933:8;31907:23;:34;;;;31877:74;31805:146;31727:224;31647:304;31570:381;31491:467:::0;;:::o;32250:250::-;15788:12;:10;:12::i;:::-;15778:22;;:6;;;;;;;;;;:22;;;15770:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32374:8:::1;32350:21;;:32;;;;;;;;;;;;;;;;;;32425:13;32393:29;:45;;;;32454:38;32483:8;32454:38;;;;;;;;;;;;;;;;;;;;32250:250:::0;;:::o;28669:138::-;28735:7;28762:37;28782:7;:16;28790:7;28782:16;;;;;;;;;;;;;;;;28762:19;:37::i;:::-;28755:44;;28669:138;;;:::o;16209:148::-;15788:12;:10;:12::i;:::-;15778:22;;:6;;;;;;;;;;:22;;;15770:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16316:1:::1;16279:40;;16300:6;::::0;::::1;;;;;;;;16279:40;;;;;;;;;;;;16347:1;16330:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;16209:148::o:0;31074:172::-;15788:12;:10;:12::i;:::-;15778:22;;:6;;;;;;;;;;:22;;;15770:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31136:28:::1;31167:24;31185:4;31167:9;:24::i;:::-;31136:55;;31202:36;31217:20;31202:14;:36::i;:::-;15848:1;31074:172::o:0;26074:34::-;;;;;;;;;;;;;:::o;26770:40::-;;;;:::o;15566:79::-;15604:7;15631:6;;;;;;;;;;;15624:13;;15566:79;:::o;31966:149::-;15788:12;:10;:12::i;:::-;15778:22;;:6;;;;;;;;;;:22;;;15770:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32087:20:::1;32063:21;:44;;;;31966:149:::0;:::o;28380:87::-;28419:13;28452:7;28445:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28380:87;:::o;26652:35::-;;;;:::o;29857:269::-;29950:4;29967:129;29976:12;:10;:12::i;:::-;29990:7;29999:96;30038:15;29999:96;;;;;;;;;;;;;;;;;:11;:25;30011:12;:10;:12::i;:::-;29999:25;;;;;;;;;;;;;;;:34;30025:7;29999:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;29967:8;:129::i;:::-;30114:4;30107:11;;29857:269;;;;:::o;25919:49::-;;;;;;;;;;;;;;;;;:::o;17215:293::-;17285:10;17267:28;;:14;;;;;;;;;;;:28;;;17259:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17360:9;;17354:3;:15;17346:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17451:14;;;;;;;;;;;17422:44;;17443:6;;;;;;;;;;17422:44;;;;;;;;;;;;17486:14;;;;;;;;;;;17477:6;;:23;;;;;;;;;;;;;;;;;;17215:293::o;28815:167::-;28893:4;28910:42;28920:12;:10;:12::i;:::-;28934:9;28945:6;28910:9;:42::i;:::-;28970:4;28963:11;;28815:167;;;;:::o;16764:89::-;16809:7;16836:9;;16829:16;;16764:89;:::o;26613:32::-;;;;:::o;16929:214::-;15788:12;:10;:12::i;:::-;15778:22;;:6;;;;;;;;;;:22;;;15770:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17010:6:::1;::::0;::::1;;;;;;;;16993:14;;:23;;;;;;;;;;;;;;;;;;17044:1;17027:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;17075:4;17069:3;:10;17057:9;:22;;;;17132:1;17095:40;;17116:6;::::0;::::1;;;;;;;;17095:40;;;;;;;;;;;;16929:214:::0;:::o;28990:143::-;29071:7;29098:11;:18;29110:5;29098:18;;;;;;;;;;;;;;;:27;29117:7;29098:27;;;;;;;;;;;;;;;;29091:34;;28990:143;;;;:::o;31373:110::-;15788:12;:10;:12::i;:::-;15778:22;;:6;;;;;;;;;;:22;;;15770:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31470:5:::1;31440:18;:27;31459:7;31440:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;31373:110:::0;:::o;26734:27::-;;;;:::o;26694:33::-;;;;:::o;16512:244::-;15788:12;:10;:12::i;:::-;15778:22;;:6;;;;;;;;;;:22;;;15770:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16621:1:::1;16601:22;;:8;:22;;;;16593:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16711:8;16682:38;;16703:6;::::0;::::1;;;;;;;;16682:38;;;;;;;;;;;;16740:8;16731:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;16512:244:::0;:::o;27066:53::-;;;;:::o;7974:106::-;8027:15;8062:10;8055:17;;7974:106;:::o;35839:337::-;35949:1;35932:19;;:5;:19;;;;35924:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36030:1;36011:21;;:7;:21;;;;36003:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36114:6;36084:11;:18;36096:5;36084:18;;;;;;;;;;;;;;;:27;36103:7;36084:27;;;;;;;;;;;;;;;:36;;;;36152:7;36136:32;;36145:5;36136:32;;;36161:6;36136:32;;;;;;;;;;;;;;;;;;35839:337;;;:::o;36184:2556::-;36322:1;36306:18;;:4;:18;;;;36298:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36399:1;36385:16;;:2;:16;;;;36377:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36469:1;36460:6;:10;36452:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36527:28;36558:24;36576:4;36558:9;:24::i;:::-;36527:55;;36595:24;36646:29;;36622:20;:53;;36595:80;;36704:19;:53;;;;;36741:16;;;;;;;;;;;36740:17;36704:53;:91;;;;;36782:13;36774:21;;:4;:21;;;;36704:91;:129;;;;;36812:21;;;;;;;;;;;36704:129;36686:222;;;36860:36;36875:20;36860:14;:36::i;:::-;36686:222;36981:12;36996:4;36981:19;;37100:18;:24;37119:4;37100:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;37128:18;:22;37147:2;37128:22;;;;;;;;;;;;;;;;;;;;;;;;;37100:50;37097:96;;;37176:5;37166:15;;37097:96;37317:18;37346:13;37338:21;;:4;:21;;;37317:42;;37370:19;37398:13;37392:19;;:2;:19;;;37370:41;;37429:13;37428:14;:33;;;;;37447:14;37446:15;37428:33;37424:1233;;;37582:5;37572:15;;37624:13;:19;37638:4;37624:19;;;;;;;;;;;;;;;;37604:13;:17;37618:2;37604:17;;;;;;;;;;;;;;;;:39;37600:84;;;37665:13;:19;37679:4;37665:19;;;;;;;;;;;;;;;;37645:13;:17;37659:2;37645:17;;;;;;;;;;;;;;;:39;;;;37600:84;37424:1233;;;37715:13;37711:946;;;37760:35;37778:16;;37760:13;;:17;;:35;;;;:::i;:::-;37743:14;:52;;;;37824:14;;37808:13;:30;;;;37861:8;;37851:7;:18;;;;37907:1;37886:13;:17;37900:2;37886:17;;;;;;;;;;;;;;;;:22;37882:63;;;37930:15;37910:13;:17;37924:2;37910:17;;;;;;;;;;;;;;;:35;;;;37882:63;37711:946;;;37976:14;37972:685;;;38005:22;38030:2;38005:27;;38062:35;38080:16;;38062:13;;:17;;:35;;;;:::i;:::-;38045:14;:52;;;;38126:14;;38110:13;:30;;;;38163:8;;38153:7;:18;;;;38190;:24;38209:4;38190:24;;;;;;;;;;;;;;;;;;;;;;;;;38189:25;:52;;;;;38219:18;:22;38238:2;38219:22;;;;;;;;;;;;;;;;;;;;;;;;;38218:23;38189:52;38186:247;;;38284:1;38261:13;:19;38275:4;38261:19;;;;;;;;;;;;;;;;:24;;:80;;;;;38325:15;38313:8;38290:13;:19;38304:4;38290:19;;;;;;;;;;;;;;;;:32;:50;38261:80;38257:163;;;38381:23;;38361:43;;38257:163;38186:247;38464:45;38506:2;38464:37;38483:17;38464:14;;:18;;:37;;;;:::i;:::-;:41;;:45;;;;:::i;:::-;38447:14;:62;;;;38538:45;38580:2;38538:37;38557:17;38538:14;;:18;;:37;;;;:::i;:::-;:41;;:45;;;;:::i;:::-;38522:13;:61;;;;38606:39;38642:2;38606:31;38619:17;38606:8;;:12;;:31;;;;:::i;:::-;:35;;:39;;;;:::i;:::-;38596:7;:49;;;;37972:685;;37711:946;37424:1233;38669:38;38684:4;38689:2;38692:6;38699:7;38669:14;:38::i;:::-;38718:14;:12;:14::i;:::-;36184:2556;;;;;;;;:::o;4384:192::-;4470:7;4503:1;4498;:6;;4506:12;4490:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4530:9;4546:1;4542;:5;4530:17;;4567:1;4560:8;;;4384:192;;;;;:::o;34067:163::-;34108:7;34129:15;34146;34165:19;:17;:19::i;:::-;34128:56;;;;34202:20;34214:7;34202;:11;;:20;;;;:::i;:::-;34195:27;;;;34067:163;:::o;5782:132::-;5840:7;5867:39;5871:1;5874;5867:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5860:46;;5782:132;;;;:::o;3481:181::-;3539:7;3559:9;3575:1;3571;:5;3559:17;;3600:1;3595;:6;;3587:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3653:1;3646:8;;;3481:181;;;;:::o;32757:396::-;32816:7;32825;32834;32843;32852;32861;32870;32890:25;;:::i;:::-;32918;32935:7;32918:16;:25::i;:::-;32890:53;;32954:25;;:::i;:::-;32982:61;32999:7;33008;33016:1;33008:10;;;;;;;;;;;33020:7;33028:1;33020:10;;;;;;;;;;;33032:7;33040:1;33032:10;;;;;;;;;;;32982:16;:61::i;:::-;32954:89;;33062:7;33070:1;33062:10;;;;;;;;;;;33074:7;33082:1;33074:10;;;;;;;;;;;33086:7;33094:1;33086:10;;;;;;;;;;;33098:7;33106:1;33098:10;;;;;;;;;;;33110:7;33118:1;33110:10;;;;;;;;;;;33122:7;33130:1;33122:10;;;;;;;;;;;33134:7;33142:1;33134:10;;;;;;;;;;;33054:91;;;;;;;;;;;;;;;;32757:396;;;;;;;;;:::o;38748:1428::-;27510:4;27491:16;;:23;;;;;;;;;;;;;;;;;;38833:21:::1;38897:20;38873:21;;:44;38869:87;;;38935:21;;38919:37;;38869:87;38967:24;38994:39;39019:13;38994:20;:24;;:39;;;;:::i;:::-;38967:66;;39044:25;39072:20;39090:1;39072:13;:17;;:20;;;;:::i;:::-;39044:48;;39103:30;39136:36;39154:17;39136:13;:17;;:36;;;;:::i;:::-;39103:69;;39276:20;39299:39;39321:16;39299:17;:21;;:39;;;;:::i;:::-;39276:62;;39351:22;39376:21;39351:46;;39442:30;39459:12;39442:16;:30::i;:::-;39485:18;39506:41;39532:14;39506:21;:25;;:41;;;;:::i;:::-;39485:62;;39558:24;39585:51;39623:12;39585:33;39607:10;39585:17;:21;;:33;;;;:::i;:::-;:37;;:51;;;;:::i;:::-;39558:78;;39715:1;39690:22;:26;:50;;;;;39739:1;39720:16;:20;39690:50;39686:110;;;39742:54;39755:22;39779:16;39742:12;:54::i;:::-;39686:110;39812:70;39827:17;39846:16;39864:17;39812:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39908:21;39895:34;;39940:18;39961:73;39998:35;40019:13;;39998:16;;:20;;:35;;;;:::i;:::-;39961:32;39976:16;;39961:10;:14;;:32;;;;:::i;:::-;:36;;:73;;;;:::i;:::-;39940:94;;40045:33;40067:10;40045:11;;;;;;;;;;;:21;;;;:33;;;;:::i;:::-;40089:41;40108:21;40089:8;;;;;;;;;;;:18;;;;:41;;;;:::i;:::-;40167:1;40143:21;:25;;;;27525:1;;;;;;;;;27556:5:::0;27537:16;;:24;;;;;;;;;;;;;;;;;;38748:1428;:::o;4835:471::-;4893:7;5143:1;5138;:6;5134:47;;;5168:1;5161:8;;;;5134:47;5193:9;5209:1;5205;:5;5193:17;;5238:1;5233;5229;:5;;;;;;:10;5221:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5297:1;5290:8;;;4835:471;;;;;:::o;41294:362::-;41405:7;41401:27;;41414:14;:12;:14::i;:::-;41401:27;41439:44;41457:6;41465:9;41476:6;41439:17;:44::i;:::-;41499:18;:29;41518:9;41499:29;;;;;;;;;;;;;;;;;;;;;;;;;41498:30;:62;;;;;41546:13;41533:26;;:9;:26;;;;41498:62;41494:154;;;41593:17;;41570:20;41580:9;41570;:20::i;:::-;:40;41562:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41494:154;41294:362;;;;:::o;35581:119::-;35634:1;35624:7;:11;;;;35662:1;35646:13;:17;;;;35691:1;35674:14;:18;;;;35581:119::o;34238:256::-;34288:7;34297;34317:15;34335:7;;34317:25;;34353:15;34371:7;;34353:25;;34403:20;34415:7;;34403;;:11;;:20;;;;:::i;:::-;34393:7;:30;34389:61;;;34433:7;;34442;;34425:25;;;;;;;;34389:61;34469:7;34478;34461:25;;;;;;34238:256;;;:::o;6410:278::-;6496:7;6528:1;6524;:5;6531:12;6516:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6555:9;6571:1;6567;:5;;;;;;6555:17;;6679:1;6672:8;;;6410:278;;;;;:::o;33161:425::-;33226:21;;:::i;:::-;33260:12;33275:24;33291:7;33275:15;:24::i;:::-;33260:39;;33310:18;33331:30;33353:7;33331:21;:30::i;:::-;33310:51;;33372:19;33394:31;33417:7;33394:22;:31::i;:::-;33372:53;;33436:23;33462:50;33500:11;33462:33;33484:10;33462:17;33474:4;33462:7;:11;;:17;;;;:::i;:::-;:21;;:33;;;;:::i;:::-;:37;;:50;;;;:::i;:::-;33436:76;;33523:55;;;;;;;;33531:15;33523:55;;;;33548:4;33523:55;;;;33554:10;33523:55;;;;33566:11;33523:55;;;;;;;;;33161:425;;;:::o;33594:465::-;33714:21;;:::i;:::-;33748:19;33770:10;:8;:10::i;:::-;33748:32;;33791:15;33809:24;33821:11;33809:7;:11;;:24;;;;:::i;:::-;33791:42;;33844:12;33859:21;33868:11;33859:4;:8;;:21;;;;:::i;:::-;33844:36;;33891:23;33917:84;33972:28;33988:11;33972;:15;;:28;;;;:::i;:::-;33917:50;33939:27;33954:11;33939:10;:14;;:27;;;;:::i;:::-;33917:17;33929:4;33917:7;:11;;:17;;;;:::i;:::-;:21;;:50;;;;:::i;:::-;:54;;:84;;;;:::i;:::-;33891:110;;34012:39;;;;;;;;34020:7;34012:39;;;;34029:15;34012:39;;;;34046:4;34012:39;;;;;;;;;33594:465;;;;;;:::o;3945:136::-;4003:7;4030:43;4034:1;4037;4030:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4023:50;;3945:136;;;;:::o;40184:561::-;40310:21;40348:1;40334:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40310:40;;40379:4;40361;40366:1;40361:7;;;;;;;;;;;;;:23;;;;;;;;;;;40405:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40395:4;40400:1;40395:7;;;;;;;;;;;;;:32;;;;;;;;;;;40440:62;40457:4;40472:15;40490:11;40440:8;:62::i;:::-;40541:15;:66;;;40622:11;40648:1;40664:4;40691;40711:15;40541:196;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40184:561;;:::o;40753:460::-;40901:62;40918:4;40933:15;40951:11;40901:8;:62::i;:::-;41006:15;:31;;;41045:9;41078:4;41098:11;41124:1;41140;41156:8;;;;;;;;;;;41179:15;41006:199;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40753:460;;:::o;10565:397::-;10680:6;10655:21;:31;;10647:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10812:12;10830:9;:14;;10853:6;10830:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10811:54;;;10884:7;10876:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10565:397;;;:::o;41664:562::-;41763:15;41780:23;41805:12;41819:23;41844:12;41858:18;41878:19;41901;41912:7;41901:10;:19::i;:::-;41762:158;;;;;;;;;;;;;;41949:28;41969:7;41949;:15;41957:6;41949:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;41931:7;:15;41939:6;41931:15;;;;;;;;;;;;;;;:46;;;;42009:39;42032:15;42009:7;:18;42017:9;42009:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;41988:7;:18;41996:9;41988:18;;;;;;;;;;;;;;;:60;;;;42059:26;42074:10;42059:14;:26::i;:::-;42096:28;42112:11;42096:15;:28::i;:::-;42135:23;42147:4;42153;42135:11;:23::i;:::-;42191:9;42174:44;;42183:6;42174:44;;;42202:15;42174:44;;;;;;;;;;;;;;;;;;41664:562;;;;;;;;;;:::o;35069:154::-;35133:7;35160:55;35199:5;35160:20;35172:7;;35160;:11;;:20;;;;:::i;:::-;:24;;:55;;;;:::i;:::-;35153:62;;35069:154;;;:::o;35231:166::-;35301:7;35328:61;35373:5;35328:26;35340:13;;35328:7;:11;;:26;;;;:::i;:::-;:30;;:61;;;;:::i;:::-;35321:68;;35231:166;;;:::o;35405:168::-;35476:7;35503:62;35549:5;35503:27;35515:14;;35503:7;:11;;:27;;;;:::i;:::-;:31;;:62;;;;:::i;:::-;35496:69;;35405:168;;;:::o;34502:309::-;34565:19;34588:10;:8;:10::i;:::-;34565:33;;34609:18;34630:27;34645:11;34630:10;:14;;:27;;;;:::i;:::-;34609:48;;34693:38;34720:10;34693:7;:22;34709:4;34693:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;34668:7;:22;34684:4;34668:22;;;;;;;;;;;;;;;:63;;;;34766:37;34792:10;34766:21;;:25;;:37;;;;:::i;:::-;34742:21;:61;;;;34502:309;;;:::o;34819:242::-;34884:19;34907:10;:8;:10::i;:::-;34884:33;;34928:19;34950:28;34966:11;34950;:15;;:28;;;;:::i;:::-;34928:50;;35014:39;35041:11;35014:7;:22;35030:4;35014:22;;;;;;;;;;;;;;;;:26;;:39;;;;:::i;:::-;34989:7;:22;35005:4;34989:22;;;;;;;;;;;;;;;:64;;;;34819:242;;;:::o;32602:147::-;32680:17;32692:4;32680:7;;:11;;:17;;;;:::i;:::-;32670:7;:27;;;;32721:20;32736:4;32721:10;;:14;;:20;;;;:::i;:::-;32708:10;:33;;;;32602:147;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

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