ETH Price: $3,150.82 (+1.01%)
Gas: 2 Gwei

Token

Connective (Connect)
 

Overview

Max Total Supply

100,000,000,000 Connect

Holders

126

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
bartbaker.eth
Balance
447,496,747.68928293 Connect

Value
$0.00
0x2f4e6d42ff6a68497656d8788ea2bcc7d04658b1
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:
Connective

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-15
*/

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

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

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 Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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



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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

/**
 * @dev 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;

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

// 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 IUniswapV2Router {
    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 IUniswapV2Router {
    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 Connective is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

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

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

    string private _name = "Connective";
    string private _symbol = "Connect";
    uint8 private _decimals = 9;
    
    uint256 public _taxFee = 0;
    uint256 private _previousTaxFee = _taxFee;

    uint256 public _devFee = 475;
    uint256 private _devTax = 200;
    uint256 private _marketingTax = 200;
    uint256 private _platformTax = 75;
    uint256 private _previousDevFee = _devFee;
    
    uint256 public _liquidityFee = 100;
    uint256 private _previousLiquidityFee = _liquidityFee;

    uint256 public launchSellFee = 1900;
    uint256 private _previousLaunchSellFee = launchSellFee;

    uint256 public maxTxAmount = _tTotal.mul(5).div(1000); // 0.5%
    address payable private _devWallet = payable(0xDEA8909f747aCD55CaE130b2684A86f3E84EdB63);
    address payable private _marketingWallet = payable(0x613be1E5F840355016b4dc81e7C12c966c730e28);
    address payable private _platformWallet = payable(0x89e65aa948e71eFFa2eFC732C70e6BC036073b5E);

    uint256 public launchSellFeeDeadline = 0;

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

        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;
        
        //exclude owner and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;

        // internal exclude from max tx
        _isExcludedFromMaxTx[owner()] = true;
        _isExcludedFromMaxTx[address(this)] = true;

        // launch sell fee
        launchSellFeeDeadline = now + 1 days;
        
        emit Transfer(address(0), _msgSender(), _tTotal);
    }

    function setRouterAddress(address newRouter) public onlyOwner() {
        IUniswapV2Router02 _newUniswapRouter = IUniswapV2Router02(newRouter);
        uniswapV2Pair = IUniswapV2Factory(_newUniswapRouter.factory()).createPair(address(this), _newUniswapRouter.WETH());
        uniswapV2Router = _newUniswapRouter;
    }

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

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

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

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

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

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

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

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

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

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

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

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

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

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

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

    function excludeFromReward(address account) public onlyOwner() {
        require(!_isExcluded[account], "Account is already excluded");
        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

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

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }
    
    function expectedRewards(address _sender) external view returns(uint256){
        uint256 _balance = address(this).balance;
        address sender = _sender;
        uint256 holdersBal = balanceOf(sender);
        uint totalExcludedBal;
        for (uint256 i = 0; i < _excluded.length; i++){
            totalExcludedBal = balanceOf(_excluded[i]).add(totalExcludedBal);   
        }
        uint256 rewards = holdersBal.mul(_balance).div(_tTotal.sub(balanceOf(uniswapV2Pair)).sub(totalExcludedBal));
        return rewards;
    }
    
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        
        if (
            !_isExcludedFromMaxTx[from] &&
            !_isExcludedFromMaxTx[to] // by default false
        ) {
            require(
                amount <= maxTxAmount,
                "Transfer amount exceeds the maxTxAmount."
            );
        }

        // initial sell fee
        uint256 regularDevFee = _devFee;
        uint256 regularDevTax = _devTax;
        if (launchSellFeeDeadline >= now && to == uniswapV2Pair) {
            _devFee = _devFee.add(launchSellFee);
            _devTax = _devTax.add(launchSellFee);
        }

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

        _devFee = regularDevFee;
        _devTax = regularDevTax;
    }
    
    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        // balance token fees based on variable percents
        uint256 totalRedirectTokenFee = _devFee.add(_liquidityFee);

        if (totalRedirectTokenFee == 0) return;
        uint256 liquidityTokenBalance = contractTokenBalance.mul(_liquidityFee).div(totalRedirectTokenFee);
        uint256 devTokenBalance = contractTokenBalance.mul(_devFee).div(totalRedirectTokenFee);
        
        // split the liquidity balance into halves
        uint256 halfLiquidity = liquidityTokenBalance.div(2);
        
        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the fee events include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;
        
        if (liquidityTokenBalance == 0 && devTokenBalance == 0) return;
        
        // swap tokens for ETH
        swapTokensForEth(devTokenBalance.add(halfLiquidity));
        
        uint256 newBalance = address(this).balance.sub(initialBalance);
        
        if(newBalance > 0) {
            // rebalance ETH fees proportionally to half the liquidity
            uint256 totalRedirectEthFee = _devFee.add(_liquidityFee.div(2));
            uint256 liquidityEthBalance = newBalance.mul(_liquidityFee.div(2)).div(totalRedirectEthFee);
            uint256 devEthBalance = newBalance.mul(_devFee).div(totalRedirectEthFee);

            //
            // for liquidity
            // add to uniswap
            //
    
            addLiquidity(halfLiquidity, liquidityEthBalance);
            
            //
            // for dev fee
            // send to the dev address
            //
            
            sendEthToDevAddress(devEthBalance);
            
            emit SwapAndLiquify(contractTokenBalance, liquidityEthBalance, devEthBalance);
        }
    } 
    
    function sendEthToDevAddress(uint256 amount) private {
        if (amount > 0 && _devFee > 0) {
            uint256 ethToDev = amount.mul(_devTax).div(_devFee);
            uint256 ethToMarketing = amount.mul(_marketingTax).div(_devFee);
            uint256 ethToPlatform = amount.mul(_platformTax).div(_devFee);
            if (ethToDev > 0) _devWallet.transfer(ethToDev);
            if (ethToMarketing > 0) _marketingWallet.transfer(ethToMarketing);
            if (ethToPlatform > 0) _platformWallet.transfer(ethToPlatform);
        }
    }

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

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

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

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

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

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

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

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

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

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

    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 tTransferAmount, uint256 tFee, uint256 tDev, uint256 tLiquidity) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tDev, tLiquidity, _getRate());
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tDev, tLiquidity);
    }

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

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

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

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

    function calculateDevFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_devFee).div(10000);
    }

    function calculateLiquidityFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_liquidityFee).div(10000);
    }
    
    function removeAllFee() private {
        if(_taxFee == 0 && _devFee == 0 && _liquidityFee == 0 && launchSellFee == 0) return;
        
        _previousTaxFee = _taxFee;
        _previousDevFee = _devFee;
        _previousLiquidityFee = _liquidityFee;
        _previousLaunchSellFee = launchSellFee;
        
        _taxFee = 0;
        _devFee = 0;
        _liquidityFee = 0;
        launchSellFee = 0;
    }
    
    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _devFee = _previousDevFee;
        _liquidityFee = _previousLiquidityFee;
        launchSellFee = _previousLaunchSellFee;
    }
    
    function manualSwap() external onlyOwner() {
        uint256 contractBalance = balanceOf(address(this));
        swapTokensForEth(contractBalance);
    }

    function manualSend() external onlyOwner() {
        uint256 contractEthBalance = address(this).balance;
        sendEthToDevAddress(contractEthBalance);
    }
    
    function isExcludedFromFee(address account) external view returns(bool) {
        return _isExcludedFromFee[account];
    }
    
    function excludeFromFee(address account) external onlyOwner {
        _isExcludedFromFee[account] = true;
    }
    
    function includeInFee(address account) external onlyOwner {
        _isExcludedFromFee[account] = false;
    }

    // for 0.5% input 5, for 1% input 10
    function setMaxTxPercent(uint256 newMaxTx) external onlyOwner {
        require(newMaxTx >= 5, "Max TX should be above 0.5%");
        maxTxAmount = _tTotal.mul(newMaxTx).div(1000);
    }
    
    function setTaxFeePercent(uint256 taxFee) external onlyOwner() {
         require(taxFee <= 800, "Maximum fee limit is 8 percent");
        _taxFee = taxFee;
    }
    
    function setDevFeePercent(uint256 devFee, uint256 devTax, uint256 marketingTax) external onlyOwner() {
         require(devFee <= 1500, "Maximum fee limit is 15 percent");
         require(devTax + marketingTax == devFee, "Dev + marketing must equal total fee");
        _devFee = devFee + _platformTax;
        _devTax = devTax;
        _marketingTax = marketingTax;
    }
    
    function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() {
        require(liquidityFee <= 800, "Maximum fee limit is 8 percent");
        _liquidityFee = liquidityFee;
    }

    function setLaunchSellFee(uint256 newLaunchSellFee) external onlyOwner {
        require(newLaunchSellFee <= 2500, "Maximum launch sell fee is 25%");
        launchSellFee = newLaunchSellFee;
    }

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

    function setMinTokensBeforeSwap(uint256 minTokens) external onlyOwner {
        minTokensBeforeSwap = minTokens * 10**9;
        emit MinTokensBeforeSwapUpdated(minTokens);
    }
    
    // to receive ETH from uniswapV2Router when swaping
    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"liquidityEthBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"devEthBalance","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":"_devFee","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"}],"name":"expectedRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchSellFeeDeadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"devFee","type":"uint256"},{"internalType":"uint256","name":"devTax","type":"uint256"},{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"name":"setDevFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLaunchSellFee","type":"uint256"}],"name":"setLaunchSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTx","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"minTokens","type":"uint256"}],"name":"setMinTokensBeforeSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"setRouterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

68056bc75e2d6310000060085568031f237e1a955fffff1960095560c0604052600a608081905269436f6e6e65637469766560b01b60a09081526200004891600b919062000649565b506040805180820190915260078082526610dbdb9b9958dd60ca1b60209092019182526200007991600c9162000649565b50600d8054600960ff199091161790556000600e819055600f556101db601081905560c86011819055601255604b6013556014556064601581905560165561076c6017819055601855600854620000fb906103e890620000e7906005620004de602090811b62001dc317901c565b6200054560201b62001e231790919060201c565b601955601a80546001600160a01b031990811673dea8909f747acd55cae130b2684a86f3e84edb6317909155601b8054821673613be1e5f840355016b4dc81e7c12c966c730e28179055601c80549091167389e65aa948e71effa2efc732c70e6bc036073b5e1790556000601d55601f805460ff60a81b1916600160a81b17905566038d7ea4c680006020553480156200019457600080fd5b506000620001a16200058f565b9050620001ad6200058f565b600080546001600160a01b0319166001600160a01b03928316178155604051918316917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060095460016000620002076200058f565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200027e57600080fd5b505afa15801562000293573d6000803e3d6000fd5b505050506040513d6020811015620002aa57600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b158015620002fb57600080fd5b505afa15801562000310573d6000803e3d6000fd5b505050506040513d60208110156200032757600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200037a57600080fd5b505af11580156200038f573d6000803e3d6000fd5b505050506040513d6020811015620003a657600080fd5b5051601f80546001600160a01b03199081166001600160a01b0393841617909155601e8054909116918316919091179055600160046000620003e762000593565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff1995861617905530815260049092528120805490921660019081179092556005906200043762000593565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526005909252902080549091166001179055620151804201601d556200048a6200058f565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6008546040518082815260200191505060405180910390a350620006e5565b600082620004ef575060006200053f565b82820282848281620004fd57fe5b04146200053c5760405162461bcd60e51b8152600401808060200182810382526021815260200180620039cf6021913960400191505060405180910390fd5b90505b92915050565b60006200053c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620005a260201b60201c565b3390565b6000546001600160a01b031690565b60008183620006325760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015620005f6578181015183820152602001620005dc565b50505050905090810190601f168015620006245780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816200063f57fe5b0495945050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200068c57805160ff1916838001178555620006bc565b82800160010185558215620006bc579182015b82811115620006bc5782518255916020019190600101906200069f565b50620006ca929150620006ce565b5090565b5b80821115620006ca5760008155600101620006cf565b6132da80620006f56000396000f3fe60806040526004361061026b5760003560e01c80635342acb41161014457806395d89b41116100b6578063c49b9a801161007a578063c49b9a80146108ce578063d543dbeb146108fa578063dd62ed3e14610924578063ea2f0b371461095f578063f2fde38b14610992578063f4293890146109c557610272565b806395d89b411461081d578063a457c2d714610832578063a9059cbb1461086b578063aa45026b146108a4578063af01f2b2146108b957610272565b806377e5006f1161010857806377e5006f146107395780638421b5071461076c57806388f82020146107965780638c0b5e22146107c95780638da5cb5b146107de5780638ee88c53146107f357610272565b80635342acb41461069457806354959363146106c75780636bc87c3a146106dc57806370a08231146106f1578063715018a61461072457610272565b80633b124fe7116101dd57806348a46473116101a157806348a46473146105c257806349bd5a5e146105ec5780634a74bb02146106015780634d33cc651461061657806351bc3c851461064c57806352390c021461066157610272565b80633b124fe7146104eb5780633bd5d1731461050057806341cb87fc1461052a578063437823ec1461055d5780634549b0391461059057610272565b806318160ddd1161022f57806318160ddd146103d257806323b872dd146103e75780632d8381191461042a578063313ce567146104545780633685d4191461047f57806339509351146104b257610272565b8063061c82d01461027757806306fdde03146102a3578063095ea7b31461032d57806313114a9d1461037a5780631694505e146103a157610272565b3661027257005b600080fd5b34801561028357600080fd5b506102a16004803603602081101561029a57600080fd5b50356109da565b005b3480156102af57600080fd5b506102b8610a8e565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102f25781810151838201526020016102da565b50505050905090810190601f16801561031f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561033957600080fd5b506103666004803603604081101561035057600080fd5b506001600160a01b038135169060200135610b24565b604080519115158252519081900360200190f35b34801561038657600080fd5b5061038f610b42565b60408051918252519081900360200190f35b3480156103ad57600080fd5b506103b6610b48565b604080516001600160a01b039092168252519081900360200190f35b3480156103de57600080fd5b5061038f610b57565b3480156103f357600080fd5b506103666004803603606081101561040a57600080fd5b506001600160a01b03813581169160208101359091169060400135610b5d565b34801561043657600080fd5b5061038f6004803603602081101561044d57600080fd5b5035610be4565b34801561046057600080fd5b50610469610c46565b6040805160ff9092168252519081900360200190f35b34801561048b57600080fd5b506102a1600480360360208110156104a257600080fd5b50356001600160a01b0316610c4f565b3480156104be57600080fd5b50610366600480360360408110156104d557600080fd5b506001600160a01b038135169060200135610e10565b3480156104f757600080fd5b5061038f610e5e565b34801561050c57600080fd5b506102a16004803603602081101561052357600080fd5b5035610e64565b34801561053657600080fd5b506102a16004803603602081101561054d57600080fd5b50356001600160a01b0316610f40565b34801561056957600080fd5b506102a16004803603602081101561058057600080fd5b50356001600160a01b031661112a565b34801561059c57600080fd5b5061038f600480360360408110156105b357600080fd5b508035906020013515156111a6565b3480156105ce57600080fd5b506102a1600480360360208110156105e557600080fd5b503561123a565b3480156105f857600080fd5b506103b66112d5565b34801561060d57600080fd5b506103666112e4565b34801561062257600080fd5b506102a16004803603606081101561063957600080fd5b50803590602081013590604001356112f4565b34801561065857600080fd5b506102a16113f5565b34801561066d57600080fd5b506102a16004803603602081101561068457600080fd5b50356001600160a01b0316611466565b3480156106a057600080fd5b50610366600480360360208110156106b757600080fd5b50356001600160a01b03166115ec565b3480156106d357600080fd5b5061038f61160a565b3480156106e857600080fd5b5061038f611610565b3480156106fd57600080fd5b5061038f6004803603602081101561071457600080fd5b50356001600160a01b0316611616565b34801561073057600080fd5b506102a1611678565b34801561074557600080fd5b5061038f6004803603602081101561075c57600080fd5b50356001600160a01b031661171a565b34801561077857600080fd5b506102a16004803603602081101561078f57600080fd5b50356117c7565b3480156107a257600080fd5b50610366600480360360208110156107b957600080fd5b50356001600160a01b031661187b565b3480156107d557600080fd5b5061038f611899565b3480156107ea57600080fd5b506103b661189f565b3480156107ff57600080fd5b506102a16004803603602081101561081657600080fd5b50356118ae565b34801561082957600080fd5b506102b8611962565b34801561083e57600080fd5b506103666004803603604081101561085557600080fd5b506001600160a01b0381351690602001356119c3565b34801561087757600080fd5b506103666004803603604081101561088e57600080fd5b506001600160a01b038135169060200135611a2b565b3480156108b057600080fd5b5061038f611a3f565b3480156108c557600080fd5b5061038f611a45565b3480156108da57600080fd5b506102a1600480360360208110156108f157600080fd5b50351515611a4b565b34801561090657600080fd5b506102a16004803603602081101561091d57600080fd5b5035611af6565b34801561093057600080fd5b5061038f6004803603604081101561094757600080fd5b506001600160a01b0381358116916020013516611bc5565b34801561096b57600080fd5b506102a16004803603602081101561098257600080fd5b50356001600160a01b0316611bf0565b34801561099e57600080fd5b506102a1600480360360208110156109b557600080fd5b50356001600160a01b0316611c69565b3480156109d157600080fd5b506102a1611d61565b6109e2611e65565b6000546001600160a01b03908116911614610a32576040805162461bcd60e51b815260206004820181905260248201526000805160206131e6833981519152604482015290519081900360640190fd5b610320811115610a89576040805162461bcd60e51b815260206004820152601e60248201527f4d6178696d756d20666565206c696d697420697320382070657263656e740000604482015290519081900360640190fd5b600e55565b600b8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b1a5780601f10610aef57610100808354040283529160200191610b1a565b820191906000526020600020905b815481529060010190602001808311610afd57829003601f168201915b5050505050905090565b6000610b38610b31611e65565b8484611e69565b5060015b92915050565b600a5490565b601e546001600160a01b031681565b60085490565b6000610b6a848484611ef1565b610bda84610b76611e65565b610bd5856040518060600160405280602881526020016131be602891396001600160a01b038a16600090815260036020526040812090610bb4611e65565b6001600160a01b03168152602081019190915260400160002054919061217b565b611e69565b5060019392505050565b6000600954821115610c275760405162461bcd60e51b815260040180806020018281038252602a815260200180613101602a913960400191505060405180910390fd5b6000610c31612212565b9050610c3d8382611e23565b9150505b919050565b600d5460ff1690565b610c57611e65565b6000546001600160a01b03908116911614610ca7576040805162461bcd60e51b815260206004820181905260248201526000805160206131e6833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526006602052604090205460ff16610d14576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600754811015610e0c57816001600160a01b031660078281548110610d3857fe5b6000918252602090912001546001600160a01b03161415610e0457600780546000198101908110610d6557fe5b600091825260209091200154600780546001600160a01b039092169183908110610d8b57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600690925220805460ff191690556007805480610ddd57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610e0c565b600101610d17565b5050565b6000610b38610e1d611e65565b84610bd58560036000610e2e611e65565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612235565b600e5481565b6000610e6e611e65565b6001600160a01b03811660009081526006602052604090205490915060ff1615610ec95760405162461bcd60e51b815260040180806020018281038252602c815260200180613254602c913960400191505060405180910390fd5b6000610ed48361228f565b5050506001600160a01b038616600090815260016020526040902054939450610f02939250849150506122ea565b6001600160a01b038316600090815260016020526040902055600954610f2890826122ea565b600955600a54610f389084612235565b600a55505050565b610f48611e65565b6000546001600160a01b03908116911614610f98576040805162461bcd60e51b815260206004820181905260248201526000805160206131e6833981519152604482015290519081900360640190fd5b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610fd657600080fd5b505afa158015610fea573d6000803e3d6000fd5b505050506040513d602081101561100057600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b15801561105057600080fd5b505afa158015611064573d6000803e3d6000fd5b505050506040513d602081101561107a57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156110cc57600080fd5b505af11580156110e0573d6000803e3d6000fd5b505050506040513d60208110156110f657600080fd5b5051601f80546001600160a01b039283166001600160a01b031991821617909155601e805493909216921691909117905550565b611132611e65565b6000546001600160a01b03908116911614611182576040805162461bcd60e51b815260206004820181905260248201526000805160206131e6833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b60006008548311156111ff576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161121f57600061120f8461228f565b50949650610b3c95505050505050565b600061122a8461228f565b50939650610b3c95505050505050565b611242611e65565b6000546001600160a01b03908116911614611292576040805162461bcd60e51b815260206004820181905260248201526000805160206131e6833981519152604482015290519081900360640190fd5b633b9aca00810260209081556040805183815290517f5948780118f41f7c4577ae4619d5cbd064057bd8562d9f7b7e60324053375c00929181900390910190a150565b601f546001600160a01b031681565b601f54600160a81b900460ff1681565b6112fc611e65565b6000546001600160a01b0390811691161461134c576040805162461bcd60e51b815260206004820181905260248201526000805160206131e6833981519152604482015290519081900360640190fd5b6105dc8311156113a3576040805162461bcd60e51b815260206004820152601f60248201527f4d6178696d756d20666565206c696d69742069732031352070657263656e7400604482015290519081900360640190fd5b82818301146113e35760405162461bcd60e51b81526004018080602001828103825260248152602001806131796024913960400191505060405180910390fd5b60135492909201601055601155601255565b6113fd611e65565b6000546001600160a01b0390811691161461144d576040805162461bcd60e51b815260206004820181905260248201526000805160206131e6833981519152604482015290519081900360640190fd5b600061145830611616565b90506114638161232c565b50565b61146e611e65565b6000546001600160a01b039081169116146114be576040805162461bcd60e51b815260206004820181905260248201526000805160206131e6833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526006602052604090205460ff161561152c576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415611586576001600160a01b03811660009081526001602052604090205461156c90610be4565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600660205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319169091179055565b6001600160a01b031660009081526004602052604090205460ff1690565b60175481565b60155481565b6001600160a01b03811660009081526006602052604081205460ff161561165657506001600160a01b038116600090815260026020526040902054610c41565b6001600160a01b038216600090815260016020526040902054610b3c90610be4565b611680611e65565b6000546001600160a01b039081169116146116d0576040805162461bcd60e51b815260206004820181905260248201526000805160206131e6833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600047828261172882611616565b90506000805b6007548110156117765761176c826117666007848154811061174c57fe5b6000918252602090912001546001600160a01b0316611616565b90612235565b915060010161172e565b50601f546000906117bc906117ac9084906117a69061179d906001600160a01b0316611616565b600854906122ea565b906122ea565b6117b68588611dc3565b90611e23565b979650505050505050565b6117cf611e65565b6000546001600160a01b0390811691161461181f576040805162461bcd60e51b815260206004820181905260248201526000805160206131e6833981519152604482015290519081900360640190fd5b6109c4811115611876576040805162461bcd60e51b815260206004820152601e60248201527f4d6178696d756d206c61756e63682073656c6c20666565206973203235250000604482015290519081900360640190fd5b601755565b6001600160a01b031660009081526006602052604090205460ff1690565b60195481565b6000546001600160a01b031690565b6118b6611e65565b6000546001600160a01b03908116911614611906576040805162461bcd60e51b815260206004820181905260248201526000805160206131e6833981519152604482015290519081900360640190fd5b61032081111561195d576040805162461bcd60e51b815260206004820152601e60248201527f4d6178696d756d20666565206c696d697420697320382070657263656e740000604482015290519081900360640190fd5b601555565b600c8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b1a5780601f10610aef57610100808354040283529160200191610b1a565b6000610b386119d0611e65565b84610bd58560405180606001604052806025815260200161328060259139600360006119fa611e65565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061217b565b6000610b38611a38611e65565b8484611ef1565b60105481565b601d5481565b611a53611e65565b6000546001600160a01b03908116911614611aa3576040805162461bcd60e51b815260206004820181905260248201526000805160206131e6833981519152604482015290519081900360640190fd5b601f8054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b611afe611e65565b6000546001600160a01b03908116911614611b4e576040805162461bcd60e51b815260206004820181905260248201526000805160206131e6833981519152604482015290519081900360640190fd5b6005811015611ba4576040805162461bcd60e51b815260206004820152601b60248201527f4d61782054582073686f756c642062652061626f766520302e35250000000000604482015290519081900360640190fd5b611bbf6103e86117b683600854611dc390919063ffffffff16565b60195550565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b611bf8611e65565b6000546001600160a01b03908116911614611c48576040805162461bcd60e51b815260206004820181905260248201526000805160206131e6833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600460205260409020805460ff19169055565b611c71611e65565b6000546001600160a01b03908116911614611cc1576040805162461bcd60e51b815260206004820181905260248201526000805160206131e6833981519152604482015290519081900360640190fd5b6001600160a01b038116611d065760405162461bcd60e51b815260040180806020018281038252602681526020018061312b6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611d69611e65565b6000546001600160a01b03908116911614611db9576040805162461bcd60e51b815260206004820181905260248201526000805160206131e6833981519152604482015290519081900360640190fd5b47611463816124da565b600082611dd257506000610b3c565b82820282848281611ddf57fe5b0414611e1c5760405162461bcd60e51b815260040180806020018281038252602181526020018061319d6021913960400191505060405180910390fd5b9392505050565b6000611e1c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061261a565b3390565b6001600160a01b038316611e7c57600080fd5b6001600160a01b038216611e8f57600080fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611f365760405162461bcd60e51b815260040180806020018281038252602581526020018061322f6025913960400191505060405180910390fd5b6001600160a01b038216611f7b5760405162461bcd60e51b81526004018080602001828103825260238152602001806130de6023913960400191505060405180910390fd5b60008111611fba5760405162461bcd60e51b81526004018080602001828103825260298152602001806132066029913960400191505060405180910390fd5b6001600160a01b03831660009081526005602052604090205460ff16158015611ffc57506001600160a01b03821660009081526005602052604090205460ff16155b15612042576019548111156120425760405162461bcd60e51b81526004018080602001828103825260288152602001806131516028913960400191505060405180910390fd5b601054601154601d5442118015906120675750601f546001600160a01b038581169116145b156120915760175460105461207b91612235565b60105560175460115461208d91612235565b6011555b600061209c30611616565b602054909150811080159081906120bd5750601f54600160a01b900460ff16155b80156120d75750601f546001600160a01b03888116911614155b80156120ec5750601f54600160a81b900460ff165b15612113576000826019541161210457601954612106565b825b90506121118161267f565b505b6001600160a01b03871660009081526004602052604090205460019060ff168061215557506001600160a01b03871660009081526004602052604090205460ff165b1561215e575060005b61216a88888884612816565b505050601091909155601155505050565b6000818484111561220a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156121cf5781810151838201526020016121b7565b50505050905090810190601f1680156121fc5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600061221f612984565b909250905061222e8282611e23565b9250505090565b600082820183811015611e1c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060008060006122a98c612ae7565b935093509350935060008060006122ca8f8787876122c5612212565b612b36565b919f509d509b509599509397509195509350505050919395979092949650565b6000611e1c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061217b565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061235a57fe5b6001600160a01b03928316602091820292909201810191909152601e54604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156123ae57600080fd5b505afa1580156123c2573d6000803e3d6000fd5b505050506040513d60208110156123d857600080fd5b50518151829060019081106123e957fe5b6001600160a01b039283166020918202929092010152601e5461240f9130911684611e69565b601e5460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b8381101561249557818101518382015260200161247d565b505050509050019650505050505050600060405180830381600087803b1580156124be57600080fd5b505af11580156124d2573d6000803e3d6000fd5b505050505050565b6000811180156124ec57506000601054115b1561146357600061250e6010546117b660115485611dc390919063ffffffff16565b9050600061252d6010546117b660125486611dc390919063ffffffff16565b9050600061254c6010546117b660135487611dc390919063ffffffff16565b9050821561259057601a546040516001600160a01b039091169084156108fc029085906000818181858888f1935050505015801561258e573d6000803e3d6000fd5b505b81156125d257601b546040516001600160a01b039091169083156108fc029084906000818181858888f193505050501580156125d0573d6000803e3d6000fd5b505b801561261457601c546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612612573d6000803e3d6000fd5b505b50505050565b600081836126695760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156121cf5781810151838201526020016121b7565b50600083858161267557fe5b0495945050505050565b601f805460ff60a01b1916600160a01b1790556015546010546000916126a59190612235565b9050806126b25750612806565b60006126cd826117b660155486611dc390919063ffffffff16565b905060006126ea836117b660105487611dc390919063ffffffff16565b905060006126f9836002611e23565b90504783158015612708575082155b15612717575050505050612806565b6127296127248484612235565b61232c565b600061273547836122ea565b905080156127ff5760006127616127586002601554611e2390919063ffffffff16565b60105490612235565b90506000612789826117b66127826002601554611e2390919063ffffffff16565b8690611dc3565b905060006127a6836117b660105487611dc390919063ffffffff16565b90506127b28683612b98565b6127bb816124da565b604080518b81526020810184905280820183905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15050505b5050505050505b50601f805460ff60a01b19169055565b8061282357612823612c7a565b6001600160a01b03841660009081526006602052604090205460ff16801561286457506001600160a01b03831660009081526006602052604090205460ff16155b1561287957612874848484612cd9565b612977565b6001600160a01b03841660009081526006602052604090205460ff161580156128ba57506001600160a01b03831660009081526006602052604090205460ff165b156128ca57612874848484612e1d565b6001600160a01b03841660009081526006602052604090205460ff1615801561290c57506001600160a01b03831660009081526006602052604090205460ff16155b1561291c57612874848484612edc565b6001600160a01b03841660009081526006602052604090205460ff16801561295c57506001600160a01b03831660009081526006602052604090205460ff165b1561296c57612874848484612f36565b612977848484612edc565b8061261457612614612fbf565b6009546008546000918291825b600754811015612ab5578260016000600784815481106129ad57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612a1257508160026000600784815481106129eb57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15612a295760095460085494509450505050612ae3565b612a696001600060078481548110612a3d57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906122ea565b9250612aab6002600060078481548110612a7f57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906122ea565b9150600101612991565b50600854600954612ac591611e23565b821015612add57600954600854935093505050612ae3565b90925090505b9091565b6000806000806000612af886612fd9565b90506000612b0587612ff6565b90506000612b1288613013565b90506000612b26826117a685818d896122ea565b9993985091965094509092505050565b6000808080612b458986611dc3565b90506000612b538987611dc3565b90506000612b618988611dc3565b90506000612b6f8989611dc3565b90506000612b83826117a6858189896122ea565b949d949c50929a509298505050505050505050565b600082118015612ba85750600081115b15610e0c57601e54612bc59030906001600160a01b031684611e69565b601e546001600160a01b031663f305d719823085600080612be461189f565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b158015612c4f57600080fd5b505af1158015612c63573d6000803e3d6000fd5b50505050506040513d606081101561261457600080fd5b600e54158015612c8a5750601054155b8015612c965750601554155b8015612ca25750601754155b15612cac57612cd7565b600e8054600f5560108054601455601580546016556017805460185560009384905591839055829055555b565b6000806000806000806000612ced8861228f565b9650965096509650965096509650612d3388600260008d6001600160a01b03166001600160a01b03168152602001908152602001600020546122ea90919063ffffffff16565b6001600160a01b038b16600090815260026020908152604080832093909355600190522054612d6290886122ea565b6001600160a01b03808c1660009081526001602052604080822093909355908b1681522054612d919087612235565b6001600160a01b038a16600090815260016020526040902055612db381613030565b612dbc82613030565b612dc685846130b9565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a350505050505050505050565b6000806000806000806000612e318861228f565b9650965096509650965096509650612e7787600160008d6001600160a01b03166001600160a01b03168152602001908152602001600020546122ea90919063ffffffff16565b6001600160a01b03808c16600090815260016020908152604080832094909455918c16815260029091522054612ead9085612235565b6001600160a01b038a16600090815260026020908152604080832093909355600190522054612d919087612235565b6000806000806000806000612ef08861228f565b9650965096509650965096509650612d6287600160008d6001600160a01b03166001600160a01b03168152602001908152602001600020546122ea90919063ffffffff16565b6000806000806000806000612f4a8861228f565b9650965096509650965096509650612f9088600260008d6001600160a01b03166001600160a01b03168152602001908152602001600020546122ea90919063ffffffff16565b6001600160a01b038b16600090815260026020908152604080832093909355600190522054612e7790886122ea565b600f54600e55601454601055601654601555601854601755565b6000610b3c6127106117b6600e5485611dc390919063ffffffff16565b6000610b3c6127106117b660105485611dc390919063ffffffff16565b6000610b3c6127106117b660155485611dc390919063ffffffff16565b600061303a612212565b905060006130488383611dc3565b306000908152600160205260409020549091506130659082612235565b3060009081526001602090815260408083209390935560069052205460ff16156130b457306000908152600260205260409020546130a39084612235565b306000908152600260205260409020555b505050565b6009546130c690836122ea565b600955600a546130d69082612235565b600a55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e446576202b206d61726b6574696e67206d75737420657175616c20746f74616c20666565536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ccd7398fa7bf1c2d9343a01dfa89007d6a2b18f6fc6f5705da54b30d0f96831064736f6c634300060c0033536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77

Deployed Bytecode

0x60806040526004361061026b5760003560e01c80635342acb41161014457806395d89b41116100b6578063c49b9a801161007a578063c49b9a80146108ce578063d543dbeb146108fa578063dd62ed3e14610924578063ea2f0b371461095f578063f2fde38b14610992578063f4293890146109c557610272565b806395d89b411461081d578063a457c2d714610832578063a9059cbb1461086b578063aa45026b146108a4578063af01f2b2146108b957610272565b806377e5006f1161010857806377e5006f146107395780638421b5071461076c57806388f82020146107965780638c0b5e22146107c95780638da5cb5b146107de5780638ee88c53146107f357610272565b80635342acb41461069457806354959363146106c75780636bc87c3a146106dc57806370a08231146106f1578063715018a61461072457610272565b80633b124fe7116101dd57806348a46473116101a157806348a46473146105c257806349bd5a5e146105ec5780634a74bb02146106015780634d33cc651461061657806351bc3c851461064c57806352390c021461066157610272565b80633b124fe7146104eb5780633bd5d1731461050057806341cb87fc1461052a578063437823ec1461055d5780634549b0391461059057610272565b806318160ddd1161022f57806318160ddd146103d257806323b872dd146103e75780632d8381191461042a578063313ce567146104545780633685d4191461047f57806339509351146104b257610272565b8063061c82d01461027757806306fdde03146102a3578063095ea7b31461032d57806313114a9d1461037a5780631694505e146103a157610272565b3661027257005b600080fd5b34801561028357600080fd5b506102a16004803603602081101561029a57600080fd5b50356109da565b005b3480156102af57600080fd5b506102b8610a8e565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102f25781810151838201526020016102da565b50505050905090810190601f16801561031f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561033957600080fd5b506103666004803603604081101561035057600080fd5b506001600160a01b038135169060200135610b24565b604080519115158252519081900360200190f35b34801561038657600080fd5b5061038f610b42565b60408051918252519081900360200190f35b3480156103ad57600080fd5b506103b6610b48565b604080516001600160a01b039092168252519081900360200190f35b3480156103de57600080fd5b5061038f610b57565b3480156103f357600080fd5b506103666004803603606081101561040a57600080fd5b506001600160a01b03813581169160208101359091169060400135610b5d565b34801561043657600080fd5b5061038f6004803603602081101561044d57600080fd5b5035610be4565b34801561046057600080fd5b50610469610c46565b6040805160ff9092168252519081900360200190f35b34801561048b57600080fd5b506102a1600480360360208110156104a257600080fd5b50356001600160a01b0316610c4f565b3480156104be57600080fd5b50610366600480360360408110156104d557600080fd5b506001600160a01b038135169060200135610e10565b3480156104f757600080fd5b5061038f610e5e565b34801561050c57600080fd5b506102a16004803603602081101561052357600080fd5b5035610e64565b34801561053657600080fd5b506102a16004803603602081101561054d57600080fd5b50356001600160a01b0316610f40565b34801561056957600080fd5b506102a16004803603602081101561058057600080fd5b50356001600160a01b031661112a565b34801561059c57600080fd5b5061038f600480360360408110156105b357600080fd5b508035906020013515156111a6565b3480156105ce57600080fd5b506102a1600480360360208110156105e557600080fd5b503561123a565b3480156105f857600080fd5b506103b66112d5565b34801561060d57600080fd5b506103666112e4565b34801561062257600080fd5b506102a16004803603606081101561063957600080fd5b50803590602081013590604001356112f4565b34801561065857600080fd5b506102a16113f5565b34801561066d57600080fd5b506102a16004803603602081101561068457600080fd5b50356001600160a01b0316611466565b3480156106a057600080fd5b50610366600480360360208110156106b757600080fd5b50356001600160a01b03166115ec565b3480156106d357600080fd5b5061038f61160a565b3480156106e857600080fd5b5061038f611610565b3480156106fd57600080fd5b5061038f6004803603602081101561071457600080fd5b50356001600160a01b0316611616565b34801561073057600080fd5b506102a1611678565b34801561074557600080fd5b5061038f6004803603602081101561075c57600080fd5b50356001600160a01b031661171a565b34801561077857600080fd5b506102a16004803603602081101561078f57600080fd5b50356117c7565b3480156107a257600080fd5b50610366600480360360208110156107b957600080fd5b50356001600160a01b031661187b565b3480156107d557600080fd5b5061038f611899565b3480156107ea57600080fd5b506103b661189f565b3480156107ff57600080fd5b506102a16004803603602081101561081657600080fd5b50356118ae565b34801561082957600080fd5b506102b8611962565b34801561083e57600080fd5b506103666004803603604081101561085557600080fd5b506001600160a01b0381351690602001356119c3565b34801561087757600080fd5b506103666004803603604081101561088e57600080fd5b506001600160a01b038135169060200135611a2b565b3480156108b057600080fd5b5061038f611a3f565b3480156108c557600080fd5b5061038f611a45565b3480156108da57600080fd5b506102a1600480360360208110156108f157600080fd5b50351515611a4b565b34801561090657600080fd5b506102a16004803603602081101561091d57600080fd5b5035611af6565b34801561093057600080fd5b5061038f6004803603604081101561094757600080fd5b506001600160a01b0381358116916020013516611bc5565b34801561096b57600080fd5b506102a16004803603602081101561098257600080fd5b50356001600160a01b0316611bf0565b34801561099e57600080fd5b506102a1600480360360208110156109b557600080fd5b50356001600160a01b0316611c69565b3480156109d157600080fd5b506102a1611d61565b6109e2611e65565b6000546001600160a01b03908116911614610a32576040805162461bcd60e51b815260206004820181905260248201526000805160206131e6833981519152604482015290519081900360640190fd5b610320811115610a89576040805162461bcd60e51b815260206004820152601e60248201527f4d6178696d756d20666565206c696d697420697320382070657263656e740000604482015290519081900360640190fd5b600e55565b600b8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b1a5780601f10610aef57610100808354040283529160200191610b1a565b820191906000526020600020905b815481529060010190602001808311610afd57829003601f168201915b5050505050905090565b6000610b38610b31611e65565b8484611e69565b5060015b92915050565b600a5490565b601e546001600160a01b031681565b60085490565b6000610b6a848484611ef1565b610bda84610b76611e65565b610bd5856040518060600160405280602881526020016131be602891396001600160a01b038a16600090815260036020526040812090610bb4611e65565b6001600160a01b03168152602081019190915260400160002054919061217b565b611e69565b5060019392505050565b6000600954821115610c275760405162461bcd60e51b815260040180806020018281038252602a815260200180613101602a913960400191505060405180910390fd5b6000610c31612212565b9050610c3d8382611e23565b9150505b919050565b600d5460ff1690565b610c57611e65565b6000546001600160a01b03908116911614610ca7576040805162461bcd60e51b815260206004820181905260248201526000805160206131e6833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526006602052604090205460ff16610d14576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600754811015610e0c57816001600160a01b031660078281548110610d3857fe5b6000918252602090912001546001600160a01b03161415610e0457600780546000198101908110610d6557fe5b600091825260209091200154600780546001600160a01b039092169183908110610d8b57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600690925220805460ff191690556007805480610ddd57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610e0c565b600101610d17565b5050565b6000610b38610e1d611e65565b84610bd58560036000610e2e611e65565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612235565b600e5481565b6000610e6e611e65565b6001600160a01b03811660009081526006602052604090205490915060ff1615610ec95760405162461bcd60e51b815260040180806020018281038252602c815260200180613254602c913960400191505060405180910390fd5b6000610ed48361228f565b5050506001600160a01b038616600090815260016020526040902054939450610f02939250849150506122ea565b6001600160a01b038316600090815260016020526040902055600954610f2890826122ea565b600955600a54610f389084612235565b600a55505050565b610f48611e65565b6000546001600160a01b03908116911614610f98576040805162461bcd60e51b815260206004820181905260248201526000805160206131e6833981519152604482015290519081900360640190fd5b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610fd657600080fd5b505afa158015610fea573d6000803e3d6000fd5b505050506040513d602081101561100057600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b15801561105057600080fd5b505afa158015611064573d6000803e3d6000fd5b505050506040513d602081101561107a57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156110cc57600080fd5b505af11580156110e0573d6000803e3d6000fd5b505050506040513d60208110156110f657600080fd5b5051601f80546001600160a01b039283166001600160a01b031991821617909155601e805493909216921691909117905550565b611132611e65565b6000546001600160a01b03908116911614611182576040805162461bcd60e51b815260206004820181905260248201526000805160206131e6833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b60006008548311156111ff576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161121f57600061120f8461228f565b50949650610b3c95505050505050565b600061122a8461228f565b50939650610b3c95505050505050565b611242611e65565b6000546001600160a01b03908116911614611292576040805162461bcd60e51b815260206004820181905260248201526000805160206131e6833981519152604482015290519081900360640190fd5b633b9aca00810260209081556040805183815290517f5948780118f41f7c4577ae4619d5cbd064057bd8562d9f7b7e60324053375c00929181900390910190a150565b601f546001600160a01b031681565b601f54600160a81b900460ff1681565b6112fc611e65565b6000546001600160a01b0390811691161461134c576040805162461bcd60e51b815260206004820181905260248201526000805160206131e6833981519152604482015290519081900360640190fd5b6105dc8311156113a3576040805162461bcd60e51b815260206004820152601f60248201527f4d6178696d756d20666565206c696d69742069732031352070657263656e7400604482015290519081900360640190fd5b82818301146113e35760405162461bcd60e51b81526004018080602001828103825260248152602001806131796024913960400191505060405180910390fd5b60135492909201601055601155601255565b6113fd611e65565b6000546001600160a01b0390811691161461144d576040805162461bcd60e51b815260206004820181905260248201526000805160206131e6833981519152604482015290519081900360640190fd5b600061145830611616565b90506114638161232c565b50565b61146e611e65565b6000546001600160a01b039081169116146114be576040805162461bcd60e51b815260206004820181905260248201526000805160206131e6833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526006602052604090205460ff161561152c576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415611586576001600160a01b03811660009081526001602052604090205461156c90610be4565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600660205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319169091179055565b6001600160a01b031660009081526004602052604090205460ff1690565b60175481565b60155481565b6001600160a01b03811660009081526006602052604081205460ff161561165657506001600160a01b038116600090815260026020526040902054610c41565b6001600160a01b038216600090815260016020526040902054610b3c90610be4565b611680611e65565b6000546001600160a01b039081169116146116d0576040805162461bcd60e51b815260206004820181905260248201526000805160206131e6833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600047828261172882611616565b90506000805b6007548110156117765761176c826117666007848154811061174c57fe5b6000918252602090912001546001600160a01b0316611616565b90612235565b915060010161172e565b50601f546000906117bc906117ac9084906117a69061179d906001600160a01b0316611616565b600854906122ea565b906122ea565b6117b68588611dc3565b90611e23565b979650505050505050565b6117cf611e65565b6000546001600160a01b0390811691161461181f576040805162461bcd60e51b815260206004820181905260248201526000805160206131e6833981519152604482015290519081900360640190fd5b6109c4811115611876576040805162461bcd60e51b815260206004820152601e60248201527f4d6178696d756d206c61756e63682073656c6c20666565206973203235250000604482015290519081900360640190fd5b601755565b6001600160a01b031660009081526006602052604090205460ff1690565b60195481565b6000546001600160a01b031690565b6118b6611e65565b6000546001600160a01b03908116911614611906576040805162461bcd60e51b815260206004820181905260248201526000805160206131e6833981519152604482015290519081900360640190fd5b61032081111561195d576040805162461bcd60e51b815260206004820152601e60248201527f4d6178696d756d20666565206c696d697420697320382070657263656e740000604482015290519081900360640190fd5b601555565b600c8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b1a5780601f10610aef57610100808354040283529160200191610b1a565b6000610b386119d0611e65565b84610bd58560405180606001604052806025815260200161328060259139600360006119fa611e65565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061217b565b6000610b38611a38611e65565b8484611ef1565b60105481565b601d5481565b611a53611e65565b6000546001600160a01b03908116911614611aa3576040805162461bcd60e51b815260206004820181905260248201526000805160206131e6833981519152604482015290519081900360640190fd5b601f8054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b611afe611e65565b6000546001600160a01b03908116911614611b4e576040805162461bcd60e51b815260206004820181905260248201526000805160206131e6833981519152604482015290519081900360640190fd5b6005811015611ba4576040805162461bcd60e51b815260206004820152601b60248201527f4d61782054582073686f756c642062652061626f766520302e35250000000000604482015290519081900360640190fd5b611bbf6103e86117b683600854611dc390919063ffffffff16565b60195550565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b611bf8611e65565b6000546001600160a01b03908116911614611c48576040805162461bcd60e51b815260206004820181905260248201526000805160206131e6833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600460205260409020805460ff19169055565b611c71611e65565b6000546001600160a01b03908116911614611cc1576040805162461bcd60e51b815260206004820181905260248201526000805160206131e6833981519152604482015290519081900360640190fd5b6001600160a01b038116611d065760405162461bcd60e51b815260040180806020018281038252602681526020018061312b6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611d69611e65565b6000546001600160a01b03908116911614611db9576040805162461bcd60e51b815260206004820181905260248201526000805160206131e6833981519152604482015290519081900360640190fd5b47611463816124da565b600082611dd257506000610b3c565b82820282848281611ddf57fe5b0414611e1c5760405162461bcd60e51b815260040180806020018281038252602181526020018061319d6021913960400191505060405180910390fd5b9392505050565b6000611e1c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061261a565b3390565b6001600160a01b038316611e7c57600080fd5b6001600160a01b038216611e8f57600080fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611f365760405162461bcd60e51b815260040180806020018281038252602581526020018061322f6025913960400191505060405180910390fd5b6001600160a01b038216611f7b5760405162461bcd60e51b81526004018080602001828103825260238152602001806130de6023913960400191505060405180910390fd5b60008111611fba5760405162461bcd60e51b81526004018080602001828103825260298152602001806132066029913960400191505060405180910390fd5b6001600160a01b03831660009081526005602052604090205460ff16158015611ffc57506001600160a01b03821660009081526005602052604090205460ff16155b15612042576019548111156120425760405162461bcd60e51b81526004018080602001828103825260288152602001806131516028913960400191505060405180910390fd5b601054601154601d5442118015906120675750601f546001600160a01b038581169116145b156120915760175460105461207b91612235565b60105560175460115461208d91612235565b6011555b600061209c30611616565b602054909150811080159081906120bd5750601f54600160a01b900460ff16155b80156120d75750601f546001600160a01b03888116911614155b80156120ec5750601f54600160a81b900460ff165b15612113576000826019541161210457601954612106565b825b90506121118161267f565b505b6001600160a01b03871660009081526004602052604090205460019060ff168061215557506001600160a01b03871660009081526004602052604090205460ff165b1561215e575060005b61216a88888884612816565b505050601091909155601155505050565b6000818484111561220a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156121cf5781810151838201526020016121b7565b50505050905090810190601f1680156121fc5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600061221f612984565b909250905061222e8282611e23565b9250505090565b600082820183811015611e1c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060008060006122a98c612ae7565b935093509350935060008060006122ca8f8787876122c5612212565b612b36565b919f509d509b509599509397509195509350505050919395979092949650565b6000611e1c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061217b565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061235a57fe5b6001600160a01b03928316602091820292909201810191909152601e54604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156123ae57600080fd5b505afa1580156123c2573d6000803e3d6000fd5b505050506040513d60208110156123d857600080fd5b50518151829060019081106123e957fe5b6001600160a01b039283166020918202929092010152601e5461240f9130911684611e69565b601e5460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b8381101561249557818101518382015260200161247d565b505050509050019650505050505050600060405180830381600087803b1580156124be57600080fd5b505af11580156124d2573d6000803e3d6000fd5b505050505050565b6000811180156124ec57506000601054115b1561146357600061250e6010546117b660115485611dc390919063ffffffff16565b9050600061252d6010546117b660125486611dc390919063ffffffff16565b9050600061254c6010546117b660135487611dc390919063ffffffff16565b9050821561259057601a546040516001600160a01b039091169084156108fc029085906000818181858888f1935050505015801561258e573d6000803e3d6000fd5b505b81156125d257601b546040516001600160a01b039091169083156108fc029084906000818181858888f193505050501580156125d0573d6000803e3d6000fd5b505b801561261457601c546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612612573d6000803e3d6000fd5b505b50505050565b600081836126695760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156121cf5781810151838201526020016121b7565b50600083858161267557fe5b0495945050505050565b601f805460ff60a01b1916600160a01b1790556015546010546000916126a59190612235565b9050806126b25750612806565b60006126cd826117b660155486611dc390919063ffffffff16565b905060006126ea836117b660105487611dc390919063ffffffff16565b905060006126f9836002611e23565b90504783158015612708575082155b15612717575050505050612806565b6127296127248484612235565b61232c565b600061273547836122ea565b905080156127ff5760006127616127586002601554611e2390919063ffffffff16565b60105490612235565b90506000612789826117b66127826002601554611e2390919063ffffffff16565b8690611dc3565b905060006127a6836117b660105487611dc390919063ffffffff16565b90506127b28683612b98565b6127bb816124da565b604080518b81526020810184905280820183905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15050505b5050505050505b50601f805460ff60a01b19169055565b8061282357612823612c7a565b6001600160a01b03841660009081526006602052604090205460ff16801561286457506001600160a01b03831660009081526006602052604090205460ff16155b1561287957612874848484612cd9565b612977565b6001600160a01b03841660009081526006602052604090205460ff161580156128ba57506001600160a01b03831660009081526006602052604090205460ff165b156128ca57612874848484612e1d565b6001600160a01b03841660009081526006602052604090205460ff1615801561290c57506001600160a01b03831660009081526006602052604090205460ff16155b1561291c57612874848484612edc565b6001600160a01b03841660009081526006602052604090205460ff16801561295c57506001600160a01b03831660009081526006602052604090205460ff165b1561296c57612874848484612f36565b612977848484612edc565b8061261457612614612fbf565b6009546008546000918291825b600754811015612ab5578260016000600784815481106129ad57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612a1257508160026000600784815481106129eb57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15612a295760095460085494509450505050612ae3565b612a696001600060078481548110612a3d57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906122ea565b9250612aab6002600060078481548110612a7f57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906122ea565b9150600101612991565b50600854600954612ac591611e23565b821015612add57600954600854935093505050612ae3565b90925090505b9091565b6000806000806000612af886612fd9565b90506000612b0587612ff6565b90506000612b1288613013565b90506000612b26826117a685818d896122ea565b9993985091965094509092505050565b6000808080612b458986611dc3565b90506000612b538987611dc3565b90506000612b618988611dc3565b90506000612b6f8989611dc3565b90506000612b83826117a6858189896122ea565b949d949c50929a509298505050505050505050565b600082118015612ba85750600081115b15610e0c57601e54612bc59030906001600160a01b031684611e69565b601e546001600160a01b031663f305d719823085600080612be461189f565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b158015612c4f57600080fd5b505af1158015612c63573d6000803e3d6000fd5b50505050506040513d606081101561261457600080fd5b600e54158015612c8a5750601054155b8015612c965750601554155b8015612ca25750601754155b15612cac57612cd7565b600e8054600f5560108054601455601580546016556017805460185560009384905591839055829055555b565b6000806000806000806000612ced8861228f565b9650965096509650965096509650612d3388600260008d6001600160a01b03166001600160a01b03168152602001908152602001600020546122ea90919063ffffffff16565b6001600160a01b038b16600090815260026020908152604080832093909355600190522054612d6290886122ea565b6001600160a01b03808c1660009081526001602052604080822093909355908b1681522054612d919087612235565b6001600160a01b038a16600090815260016020526040902055612db381613030565b612dbc82613030565b612dc685846130b9565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a350505050505050505050565b6000806000806000806000612e318861228f565b9650965096509650965096509650612e7787600160008d6001600160a01b03166001600160a01b03168152602001908152602001600020546122ea90919063ffffffff16565b6001600160a01b03808c16600090815260016020908152604080832094909455918c16815260029091522054612ead9085612235565b6001600160a01b038a16600090815260026020908152604080832093909355600190522054612d919087612235565b6000806000806000806000612ef08861228f565b9650965096509650965096509650612d6287600160008d6001600160a01b03166001600160a01b03168152602001908152602001600020546122ea90919063ffffffff16565b6000806000806000806000612f4a8861228f565b9650965096509650965096509650612f9088600260008d6001600160a01b03166001600160a01b03168152602001908152602001600020546122ea90919063ffffffff16565b6001600160a01b038b16600090815260026020908152604080832093909355600190522054612e7790886122ea565b600f54600e55601454601055601654601555601854601755565b6000610b3c6127106117b6600e5485611dc390919063ffffffff16565b6000610b3c6127106117b660105485611dc390919063ffffffff16565b6000610b3c6127106117b660155485611dc390919063ffffffff16565b600061303a612212565b905060006130488383611dc3565b306000908152600160205260409020549091506130659082612235565b3060009081526001602090815260408083209390935560069052205460ff16156130b457306000908152600260205260409020546130a39084612235565b306000908152600260205260409020555b505050565b6009546130c690836122ea565b600955600a546130d69082612235565b600a55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e446576202b206d61726b6574696e67206d75737420657175616c20746f74616c20666565536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ccd7398fa7bf1c2d9343a01dfa89007d6a2b18f6fc6f5705da54b30d0f96831064736f6c634300060c0033

Deployed Bytecode Sourcemap

24990:24490:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48037:166;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48037:166:0;;:::i;:::-;;28616:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29528:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29528:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;30649:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;26731:41;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;26731:41:0;;;;;;;;;;;;;;28893:95;;;;;;;;;;;;;:::i;29697:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29697:313:0;;;;;;;;;;;;;;;;;:::i;31576:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31576:253:0;;:::i;28802:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32178:479;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32178:479:0;-1:-1:-1;;;;;32178:479:0;;:::i;30018:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30018:218:0;;;;;;;;:::i;25818:26::-;;;;;;;;;;;;;:::i;30744:378::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30744:378:0;;:::i;28286:322::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28286:322:0;-1:-1:-1;;;;;28286:322:0;;:::i;47548:113::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47548:113:0;-1:-1:-1;;;;;47548:113:0;;:::i;31130:438::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31130:438:0;;;;;;;;;:::i;49198:181::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49198:181:0;;:::i;26779:28::-;;;;;;;;;;;;;:::i;26848:40::-;;;;;;;;;;;;;:::i;48215:379::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48215:379:0;;;;;;;;;;;;:::i;47073:156::-;;;;;;;;;;;;;:::i;31837:333::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31837:333:0;-1:-1:-1;;;;;31837:333:0;;:::i;47411:125::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47411:125:0;-1:-1:-1;;;;;47411:125:0;;:::i;26211:35::-;;;;;;;;;;;;;:::i;26108:34::-;;;;;;;;;;;;;:::i;28996:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28996:198:0;-1:-1:-1;;;;;28996:198:0;;:::i;16353:148::-;;;;;;;;;;;;;:::i;32940:540::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32940:540:0;-1:-1:-1;;;;;32940:540:0;;:::i;48809:200::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48809:200:0;;:::i;30521:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30521:120:0;-1:-1:-1;;;;;30521:120:0;;:::i;26316:53::-;;;;;;;;;;;;;:::i;15710:79::-;;;;;;;;;;;;;:::i;48606:195::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48606:195:0;;:::i;28707:87::-;;;;;;;;;;;;;:::i;30244:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30244:269:0;;;;;;;;:::i;29202:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29202:167:0;;;;;;;;:::i;25901:28::-;;;;;;;;;;;;;:::i;26682:40::-;;;;;;;;;;;;;:::i;49017:173::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49017:173:0;;;;:::i;47835:190::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47835:190:0;;:::i;29377:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29377:143:0;;;;;;;;;;:::i;47673:112::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47673:112:0;-1:-1:-1;;;;;47673:112:0;;:::i;16656:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16656:244:0;-1:-1:-1;;;;;16656:244:0;;:::i;47237:162::-;;;;;;;;;;;;;:::i;48037:166::-;15932:12;:10;:12::i;:::-;15922:6;;-1:-1:-1;;;;;15922:6:0;;;:22;;;15914:67;;;;;-1:-1:-1;;;15914:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15914:67:0;;;;;;;;;;;;;;;48130:3:::1;48120:6;:13;;48112:56;;;::::0;;-1:-1:-1;;;48112:56:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;48179:7;:16:::0;48037:166::o;28616:83::-;28686:5;28679:12;;;;;;;;-1:-1:-1;;28679:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28653:13;;28679:12;;28686:5;;28679:12;;28686:5;28679:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28616:83;:::o;29528:161::-;29603:4;29620:39;29629:12;:10;:12::i;:::-;29643:7;29652:6;29620:8;:39::i;:::-;-1:-1:-1;29677:4:0;29528:161;;;;;:::o;30649:87::-;30718:10;;30649:87;:::o;26731:41::-;;;-1:-1:-1;;;;;26731:41:0;;:::o;28893:95::-;28973:7;;28893:95;:::o;29697:313::-;29795:4;29812:36;29822:6;29830:9;29841:6;29812:9;:36::i;:::-;29859:121;29868:6;29876:12;:10;:12::i;:::-;29890:89;29928:6;29890:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29890:19:0;;;;;;:11;:19;;;;;;29910:12;:10;:12::i;:::-;-1:-1:-1;;;;;29890:33:0;;;;;;;;;;;;-1:-1:-1;29890:33:0;;;:89;:37;:89::i;:::-;29859:8;:121::i;:::-;-1:-1:-1;29998:4:0;29697:313;;;;;:::o;31576:253::-;31642:7;31681;;31670;:18;;31662:73;;;;-1:-1:-1;;;31662:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31746:19;31769:10;:8;:10::i;:::-;31746:33;-1:-1:-1;31797:24:0;:7;31746:33;31797:11;:24::i;:::-;31790:31;;;31576:253;;;;:::o;28802:83::-;28868:9;;;;28802:83;:::o;32178:479::-;15932:12;:10;:12::i;:::-;15922:6;;-1:-1:-1;;;;;15922:6:0;;;:22;;;15914:67;;;;;-1:-1:-1;;;15914:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15914:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32260:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;32252:60;;;::::0;;-1:-1:-1;;;32252:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;32328:9;32323:327;32347:9;:16:::0;32343:20;::::1;32323:327;;;32405:7;-1:-1:-1::0;;;;;32389:23:0::1;:9;32399:1;32389:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;32389:12:0::1;:23;32385:254;;;32448:9;32458:16:::0;;-1:-1:-1;;32458:20:0;;;32448:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;32433:9:::1;:12:::0;;-1:-1:-1;;;;;32448:31:0;;::::1;::::0;32443:1;;32433:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;32433:46:0::1;-1:-1:-1::0;;;;;32433:46:0;;::::1;;::::0;;32498:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;32537:11:::1;:20:::0;;;;:28;;-1:-1:-1;;32537:28:0::1;::::0;;32584:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;32584:15:0;;;;;-1:-1:-1;;;;;;32584:15:0::1;::::0;;;;;32618:5:::1;;32385:254;32365:3;;32323:327;;;;32178:479:::0;:::o;30018:218::-;30106:4;30123:83;30132:12;:10;:12::i;:::-;30146:7;30155:50;30194:10;30155:11;:25;30167:12;:10;:12::i;:::-;-1:-1:-1;;;;;30155:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30155:25:0;;;:34;;;;;;;;;;;:38;:50::i;25818:26::-;;;;:::o;30744:378::-;30796:14;30813:12;:10;:12::i;:::-;-1:-1:-1;;;;;30845:19:0;;;;;;:11;:19;;;;;;30796:29;;-1:-1:-1;30845:19:0;;30844:20;30836:77;;;;-1:-1:-1;;;30836:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30925:15;30950:19;30961:7;30950:10;:19::i;:::-;-1:-1:-1;;;;;;;;30998:15:0;;;;;;:7;:15;;;;;;30924:45;;-1:-1:-1;30998:28:0;;:15;-1:-1:-1;30924:45:0;;-1:-1:-1;;30998:19:0;:28::i;:::-;-1:-1:-1;;;;;30980:15:0;;;;;;:7;:15;;;;;:46;31047:7;;:20;;31059:7;31047:11;:20::i;:::-;31037:7;:30;31091:10;;:23;;31106:7;31091:14;:23::i;:::-;31078:10;:36;-1:-1:-1;;;30744:378:0:o;28286:322::-;15932:12;:10;:12::i;:::-;15922:6;;-1:-1:-1;;;;;15922:6:0;;;:22;;;15914:67;;;;;-1:-1:-1;;;15914:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15914:67:0;;;;;;;;;;;;;;;28361:36:::1;28419:9;28361:68;;28474:17;-1:-1:-1::0;;;;;28474:25:0::1;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;28474:27:0;28529:24:::1;::::0;;-1:-1:-1;;;28529:24:0;;;;-1:-1:-1;;;;;28456:57:0;;::::1;::::0;::::1;::::0;28522:4:::1;::::0;28529:22;;::::1;::::0;::::1;::::0;:24:::1;::::0;;::::1;::::0;28474:27:::1;::::0;28529:24;;;;;;;;:22;:24;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;28529:24:0;28456:98:::1;::::0;;-1:-1:-1;;;;;;28456:98:0::1;::::0;;;;;;-1:-1:-1;;;;;28456:98:0;;::::1;;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;28529:24:::1;::::0;28456:98;;;;;;;-1:-1:-1;28456:98:0;;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;28456:98:0;28440:13:::1;:114:::0;;-1:-1:-1;;;;;28440:114:0;;::::1;-1:-1:-1::0;;;;;;28440:114:0;;::::1;;::::0;;;28565:15:::1;:35:::0;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;-1:-1:-1;28286:322:0:o;47548:113::-;15932:12;:10;:12::i;:::-;15922:6;;-1:-1:-1;;;;;15922:6:0;;;:22;;;15914:67;;;;;-1:-1:-1;;;15914:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15914:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;47619:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;47619:34:0::1;47649:4;47619:34;::::0;;47548:113::o;31130:438::-;31220:7;31259;;31248;:18;;31240:62;;;;;-1:-1:-1;;;31240:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31318:17;31313:248;;31353:15;31378:19;31389:7;31378:10;:19::i;:::-;-1:-1:-1;31352:45:0;;-1:-1:-1;31412:14:0;;-1:-1:-1;;;;;;31412:14:0;31313:248;31461:23;31493:19;31504:7;31493:10;:19::i;:::-;-1:-1:-1;31459:53:0;;-1:-1:-1;31527:22:0;;-1:-1:-1;;;;;;31527:22:0;49198:181;15932:12;:10;:12::i;:::-;15922:6;;-1:-1:-1;;;;;15922:6:0;;;:22;;;15914:67;;;;;-1:-1:-1;;;15914:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15914:67:0;;;;;;;;;;;;;;;49313:5:::1;49301:17:::0;::::1;49279:19;:39:::0;;;49334:37:::1;::::0;;;;;;;::::1;::::0;;;;;;;;;::::1;49198:181:::0;:::o;26779:28::-;;;-1:-1:-1;;;;;26779:28:0;;:::o;26848:40::-;;;-1:-1:-1;;;26848:40:0;;;;;:::o;48215:379::-;15932:12;:10;:12::i;:::-;15922:6;;-1:-1:-1;;;;;15922:6:0;;;:22;;;15914:67;;;;;-1:-1:-1;;;15914:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15914:67:0;;;;;;;;;;;;;;;48346:4:::1;48336:6;:14;;48328:58;;;::::0;;-1:-1:-1;;;48328:58:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;48431:6;48415:12;48406:6;:21;:31;48398:80;;;;-1:-1:-1::0;;;48398:80:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48508:12;::::0;48499:21;;;::::1;48489:7;:31:::0;48531:7:::1;:16:::0;48558:13:::1;:28:::0;48215:379::o;47073:156::-;15932:12;:10;:12::i;:::-;15922:6;;-1:-1:-1;;;;;15922:6:0;;;:22;;;15914:67;;;;;-1:-1:-1;;;15914:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15914:67:0;;;;;;;;;;;;;;;47127:23:::1;47153:24;47171:4;47153:9;:24::i;:::-;47127:50;;47188:33;47205:15;47188:16;:33::i;:::-;15992:1;47073:156::o:0;31837:333::-;15932:12;:10;:12::i;:::-;15922:6;;-1:-1:-1;;;;;15922:6:0;;;:22;;;15914:67;;;;;-1:-1:-1;;;15914:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15914:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31920:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;31919:21;31911:61;;;::::0;;-1:-1:-1;;;31911:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;31986:16:0;::::1;32005:1;31986:16:::0;;;:7:::1;:16;::::0;;;;;:20;31983:108:::1;;-1:-1:-1::0;;;;;32062:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;32042:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;32023:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;31983:108:::1;-1:-1:-1::0;;;;;32101:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;32101:27:0::1;32124:4;32101:27:::0;;::::1;::::0;;;32139:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;32139:23:0::1;::::0;;::::1;::::0;;31837:333::o;47411:125::-;-1:-1:-1;;;;;47501:27:0;47477:4;47501:27;;;:18;:27;;;;;;;;;47411:125::o;26211:35::-;;;;:::o;26108:34::-;;;;:::o;28996:198::-;-1:-1:-1;;;;;29086:20:0;;29062:7;29086:20;;;:11;:20;;;;;;;;29082:49;;;-1:-1:-1;;;;;;29115:16:0;;;;;;:7;:16;;;;;;29108:23;;29082:49;-1:-1:-1;;;;;29169:16:0;;;;;;:7;:16;;;;;;29149:37;;:19;:37::i;16353:148::-;15932:12;:10;:12::i;:::-;15922:6;;-1:-1:-1;;;;;15922:6:0;;;:22;;;15914:67;;;;;-1:-1:-1;;;15914:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15914:67:0;;;;;;;;;;;;;;;16460:1:::1;16444:6:::0;;16423:40:::1;::::0;-1:-1:-1;;;;;16444:6:0;;::::1;::::0;16423:40:::1;::::0;16460:1;;16423:40:::1;16491:1;16474:19:::0;;-1:-1:-1;;;;;;16474:19:0::1;::::0;;16353:148::o;32940:540::-;33004:7;33042:21;33091:7;33004;33130:17;33091:7;33130:9;:17::i;:::-;33109:38;-1:-1:-1;33158:21:0;;33190:140;33214:9;:16;33210:20;;33190:140;;;33270:45;33298:16;33270:23;33280:9;33290:1;33280:12;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33280:12:0;33270:9;:23::i;:::-;:27;;:45::i;:::-;33251:64;-1:-1:-1;33232:3:0;;33190:140;;;-1:-1:-1;33409:13:0;;33340:15;;33358:89;;33387:59;;33429:16;;33387:37;;33399:24;;-1:-1:-1;;;;;33409:13:0;33399:9;:24::i;:::-;33387:7;;;:11;:37::i;:::-;:41;;:59::i;:::-;33358:24;:10;33373:8;33358:14;:24::i;:::-;:28;;:89::i;:::-;33340:107;32940:540;-1:-1:-1;;;;;;;32940:540:0:o;48809:200::-;15932:12;:10;:12::i;:::-;15922:6;;-1:-1:-1;;;;;15922:6:0;;;:22;;;15914:67;;;;;-1:-1:-1;;;15914:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15914:67:0;;;;;;;;;;;;;;;48919:4:::1;48899:16;:24;;48891:67;;;::::0;;-1:-1:-1;;;48891:67:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;48969:13;:32:::0;48809:200::o;30521:120::-;-1:-1:-1;;;;;30613:20:0;30589:4;30613:20;;;:11;:20;;;;;;;;;30521:120::o;26316:53::-;;;;:::o;15710:79::-;15748:7;15775:6;-1:-1:-1;;;;;15775:6:0;15710:79;:::o;48606:195::-;15932:12;:10;:12::i;:::-;15922:6;;-1:-1:-1;;;;;15922:6:0;;;:22;;;15914:67;;;;;-1:-1:-1;;;15914:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15914:67:0;;;;;;;;;;;;;;;48716:3:::1;48700:12;:19;;48692:62;;;::::0;;-1:-1:-1;;;48692:62:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;48765:13;:28:::0;48606:195::o;28707:87::-;28779:7;28772:14;;;;;;;;-1:-1:-1;;28772:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28746:13;;28772:14;;28779:7;;28772:14;;28779:7;28772:14;;;;;;;;;;;;;;;;;;;;;;;;30244:269;30337:4;30354:129;30363:12;:10;:12::i;:::-;30377:7;30386:96;30425:15;30386:96;;;;;;;;;;;;;;;;;:11;:25;30398:12;:10;:12::i;:::-;-1:-1:-1;;;;;30386:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30386:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;29202:167::-;29280:4;29297:42;29307:12;:10;:12::i;:::-;29321:9;29332:6;29297:9;:42::i;25901:28::-;;;;:::o;26682:40::-;;;;:::o;49017:173::-;15932:12;:10;:12::i;:::-;15922:6;;-1:-1:-1;;;;;15922:6:0;;;:22;;;15914:67;;;;;-1:-1:-1;;;15914:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15914:67:0;;;;;;;;;;;;;;;49096:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;49096:32:0;::::1;-1:-1:-1::0;;;;49096:32:0;;::::1;::::0;;;::::1;::::0;;;49144:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;49017:173:::0;:::o;47835:190::-;15932:12;:10;:12::i;:::-;15922:6;;-1:-1:-1;;;;;15922:6:0;;;:22;;;15914:67;;;;;-1:-1:-1;;;15914:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15914:67:0;;;;;;;;;;;;;;;47928:1:::1;47916:8;:13;;47908:53;;;::::0;;-1:-1:-1;;;47908:53:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;47986:31;48012:4;47986:21;47998:8;47986:7;;:11;;:21;;;;:::i;:31::-;47972:11;:45:::0;-1:-1:-1;47835:190:0:o;29377:143::-;-1:-1:-1;;;;;29485:18:0;;;29458:7;29485:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29377:143::o;47673:112::-;15932:12;:10;:12::i;:::-;15922:6;;-1:-1:-1;;;;;15922:6:0;;;:22;;;15914:67;;;;;-1:-1:-1;;;15914:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15914:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;47742:27:0::1;47772:5;47742:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;47742:35:0::1;::::0;;47673:112::o;16656:244::-;15932:12;:10;:12::i;:::-;15922:6;;-1:-1:-1;;;;;15922:6:0;;;:22;;;15914:67;;;;;-1:-1:-1;;;15914:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15914:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16745:22:0;::::1;16737:73;;;;-1:-1:-1::0;;;16737:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16847:6;::::0;;16826:38:::1;::::0;-1:-1:-1;;;;;16826:38:0;;::::1;::::0;16847:6;::::1;::::0;16826:38:::1;::::0;::::1;16875:6;:17:::0;;-1:-1:-1;;;;;;16875:17:0::1;-1:-1:-1::0;;;;;16875:17:0;;;::::1;::::0;;;::::1;::::0;;16656:244::o;47237:162::-;15932:12;:10;:12::i;:::-;15922:6;;-1:-1:-1;;;;;15922:6:0;;;:22;;;15914:67;;;;;-1:-1:-1;;;15914:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15914:67:0;;;;;;;;;;;;;;;47320:21:::1;47352:39;47320:21:::0;47352:19:::1;:39::i;5434:471::-:0;5492:7;5737:6;5733:47;;-1:-1:-1;5767:1:0;5760:8;;5733:47;5804:5;;;5808:1;5804;:5;:1;5828:5;;;;;:10;5820:56;;;;-1:-1:-1;;;5820:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5896:1;5434:471;-1:-1:-1;;;5434:471:0:o;6381:132::-;6439:7;6466:39;6470:1;6473;6466:39;;;;;;;;;;;;;;;;;:3;:39::i;164:106::-;252:10;164:106;:::o;32669:259::-;-1:-1:-1;;;;;32762:19:0;;32754:28;;;;;;-1:-1:-1;;;;;32801:21:0;;32793:30;;;;;;-1:-1:-1;;;;;32836:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;32888:32;;;;;;;;;;;;;;;;;32669:259;;;:::o;33492:2224::-;-1:-1:-1;;;;;33614:18:0;;33606:68;;;;-1:-1:-1;;;33606:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33693:16:0;;33685:64;;;;-1:-1:-1;;;33685:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33777:1;33768:6;:10;33760:64;;;;-1:-1:-1;;;33760:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33864:26:0;;;;;;:20;:26;;;;;;;;33863:27;:69;;;;-1:-1:-1;;;;;;33908:24:0;;;;;;:20;:24;;;;;;;;33907:25;33863:69;33845:269;;;34015:11;;34005:6;:21;;33979:123;;;;-1:-1:-1;;;33979:123:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34179:7;;34221;;34243:21;;34268:3;-1:-1:-1;34243:28:0;;;:51;;-1:-1:-1;34281:13:0;;-1:-1:-1;;;;;34275:19:0;;;34281:13;;34275:19;34243:51;34239:171;;;34333:13;;34321:7;;:26;;:11;:26::i;:::-;34311:7;:36;34384:13;;34372:7;;:26;;:11;:26::i;:::-;34362:7;:36;34239:171;34704:28;34735:24;34753:4;34735:9;:24::i;:::-;34821:19;;34704:55;;-1:-1:-1;34797:43:0;;;;;;;34869:53;;-1:-1:-1;34906:16:0;;-1:-1:-1;;;34906:16:0;;;;34905:17;34869:53;:91;;;;-1:-1:-1;34947:13:0;;-1:-1:-1;;;;;34939:21:0;;;34947:13;;34939:21;;34869:91;:129;;;;-1:-1:-1;34977:21:0;;-1:-1:-1;;;34977:21:0;;;;34869:129;34851:353;;;35055:20;35092;35078:11;;:34;:71;;35138:11;;35078:71;;;35115:20;35078:71;35055:94;;35164:28;35179:12;35164:14;:28::i;:::-;34851:353;;-1:-1:-1;;;;;35414:24:0;;35286:12;35414:24;;;:18;:24;;;;;;35301:4;;35414:24;;;:50;;-1:-1:-1;;;;;;35442:22:0;;;;;;:18;:22;;;;;;;;35414:50;35411:96;;;-1:-1:-1;35490:5:0;35411:96;35597:41;35612:4;35618:2;35622:6;35630:7;35597:14;:41::i;:::-;-1:-1:-1;;;35651:7:0;:23;;;;35685:7;:23;-1:-1:-1;;;33492:2224:0:o;4983:192::-;5069:7;5105:12;5097:6;;;;5089:29;;;;-1:-1:-1;;;5089:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5141:5:0;;;4983:192::o;44518:163::-;44559:7;44580:15;44597;44616:19;:17;:19::i;:::-;44579:56;;-1:-1:-1;44579:56:0;-1:-1:-1;44653:20:0;44579:56;;44653:11;:20::i;:::-;44646:27;;;;44518:163;:::o;4080:181::-;4138:7;4170:5;;;4194:6;;;;4186:46;;;;;-1:-1:-1;;;4186:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;43135:454;43194:7;43203;43212;43221;43230;43239;43248;43269:23;43294:12;43308;43322:18;43344:20;43356:7;43344:11;:20::i;:::-;43268:96;;;;;;;;43376:15;43393:23;43418:12;43434:56;43446:7;43455:4;43461;43467:10;43479;:8;:10::i;:::-;43434:11;:56::i;:::-;43375:115;;-1:-1:-1;43375:115:0;-1:-1:-1;43375:115:0;-1:-1:-1;43541:15:0;;-1:-1:-1;43558:4:0;;-1:-1:-1;43564:4:0;;-1:-1:-1;43570:10:0;-1:-1:-1;;;;43135:454:0;;;;;;;;;:::o;4544:136::-;4602:7;4629:43;4633:1;4636;4629:43;;;;;;;;;;;;;;;;;:3;:43::i;38332:589::-;38482:16;;;38496:1;38482:16;;;38458:21;38482:16;;;;;38458:21;38482:16;;;;;;;;;;-1:-1:-1;38482:16:0;38458:40;;38527:4;38509;38514:1;38509:7;;;;;;;;-1:-1:-1;;;;;38509:23:0;;;:7;;;;;;;;;;:23;;;;38553:15;;:22;;;-1:-1:-1;;;38553:22:0;;;;:15;;;;;:20;;:22;;;;;38509:7;;38553:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38553:22:0;38543:7;;:4;;38548:1;;38543:7;;;;;;-1:-1:-1;;;;;38543:32:0;;;:7;;;;;;;;;:32;38620:15;;38588:62;;38605:4;;38620:15;38638:11;38588:8;:62::i;:::-;38689:15;;:224;;-1:-1:-1;;;38689:224:0;;;;;;;;:15;:224;;;;;;38867:4;38689:224;;;;;;38887:15;38689:224;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38689:15:0;;;;:66;;38770:11;;38840:4;;38867;38887:15;38689:224;;;;;;;;;;;;;;;;:15;:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38332:589;;:::o;37771:553::-;37848:1;37839:6;:10;:25;;;;;37863:1;37853:7;;:11;37839:25;37835:482;;;37881:16;37900:32;37924:7;;37900:19;37911:7;;37900:6;:10;;:19;;;;:::i;:32::-;37881:51;;37947:22;37972:38;38002:7;;37972:25;37983:13;;37972:6;:10;;:25;;;;:::i;:38::-;37947:63;;38025:21;38049:37;38078:7;;38049:24;38060:12;;38049:6;:10;;:24;;;;:::i;:37::-;38025:61;-1:-1:-1;38105:12:0;;38101:47;;38119:10;;:29;;-1:-1:-1;;;;;38119:10:0;;;;:29;;;;;38139:8;;38119:10;:29;:10;:29;38139:8;38119:10;:29;;;;;;;;;;;;;;;;;;;;;38101:47;38167:18;;38163:65;;38187:16;;:41;;-1:-1:-1;;;;;38187:16:0;;;;:41;;;;;38213:14;;38187:16;:41;:16;:41;38213:14;38187:16;:41;;;;;;;;;;;;;;;;;;;;;38163:65;38247:17;;38243:62;;38266:15;;:39;;-1:-1:-1;;;;;38266:15:0;;;;:39;;;;;38291:13;;38266:15;:39;:15;:39;38291:13;38266:15;:39;;;;;;;;;;;;;;;;;;;;;38243:62;37835:482;;;37771:553;:::o;7009:278::-;7095:7;7130:12;7123:5;7115:28;;;;-1:-1:-1;;;7115:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7154:9;7170:1;7166;:5;;;;;;;7009:278;-1:-1:-1;;;;;7009:278:0:o;35728:2030::-;27258:16;:23;;-1:-1:-1;;;;27258:23:0;-1:-1:-1;;;27258:23:0;;;35915:13:::1;::::0;35903:7:::1;::::0;27258:23;;35903:26:::1;::::0;:7;:11:::1;:26::i;:::-;35871:58:::0;-1:-1:-1;35946:26:0;35942:39:::1;;35974:7;;;35942:39;35991:29;36023:66;36067:21;36023:39;36048:13;;36023:20;:24;;:39;;;;:::i;:66::-;35991:98;;36100:23;36126:60;36164:21;36126:33;36151:7;;36126:20;:24;;:33;;;;:::i;:60::-;36100:86:::0;-1:-1:-1;36259:21:0::1;36283:28;:21:::0;36309:1:::1;36283:25;:28::i;:::-;36259:52:::0;-1:-1:-1;36617:21:0::1;36663:26:::0;;:50;::::1;;;-1:-1:-1::0;36693:20:0;;36663:50:::1;36659:63;;;36715:7;;;;;;;36659:63;36774:52;36791:34;:15:::0;36811:13;36791:19:::1;:34::i;:::-;36774:16;:52::i;:::-;36847:18;36868:41;:21;36894:14:::0;36868:25:::1;:41::i;:::-;36847:62:::0;-1:-1:-1;36933:14:0;;36930:821:::1;;37036:27;37066:33;37078:20;37096:1;37078:13;;:17;;:20;;;;:::i;:::-;37066:7;::::0;;:11:::1;:33::i;:::-;37036:63;;37114:27;37144:61;37185:19;37144:36;37159:20;37177:1;37159:13;;:17;;:20;;;;:::i;:::-;37144:10:::0;;:14:::1;:36::i;:61::-;37114:91;;37220:21;37244:48;37272:19;37244:23;37259:7;;37244:10;:14;;:23;;;;:::i;:48::-;37220:72;;37408:48;37421:13;37436:19;37408:12;:48::i;:::-;37599:34;37619:13;37599:19;:34::i;:::-;37667:72;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;36930:821;;;;27293:1;;;;;;;-1:-1:-1::0;27305:16:0;:24;;-1:-1:-1;;;;27305:24:0;;;35728:2030::o;39628:860::-;39739:7;39735:54;;39763:14;:12;:14::i;:::-;-1:-1:-1;;;;;39813:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;39837:22:0;;;;;;:11;:22;;;;;;;;39836:23;39813:46;39809:597;;;39876:48;39898:6;39906:9;39917:6;39876:21;:48::i;:::-;39809:597;;;-1:-1:-1;;;;;39947:19:0;;;;;;:11;:19;;;;;;;;39946:20;:46;;;;-1:-1:-1;;;;;;39970:22:0;;;;;;:11;:22;;;;;;;;39946:46;39942:464;;;40009:46;40029:6;40037:9;40048:6;40009:19;:46::i;39942:464::-;-1:-1:-1;;;;;40078:19:0;;;;;;:11;:19;;;;;;;;40077:20;:47;;;;-1:-1:-1;;;;;;40102:22:0;;;;;;:11;:22;;;;;;;;40101:23;40077:47;40073:333;;;40141:44;40159:6;40167:9;40178:6;40141:17;:44::i;40073:333::-;-1:-1:-1;;;;;40207:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;40230:22:0;;;;;;:11;:22;;;;;;;;40207:45;40203:203;;;40269:48;40291:6;40299:9;40310:6;40269:21;:48::i;40203:203::-;40350:44;40368:6;40376:9;40387:6;40350:17;:44::i;:::-;40430:7;40426:55;;40454:15;:13;:15::i;44689:561::-;44786:7;;44822;;44739;;;;;44846:289;44870:9;:16;44866:20;;44846:289;;;44936:7;44912;:21;44920:9;44930:1;44920:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44920:12:0;44912:21;;;;;;;;;;;;;:31;;:66;;;44971:7;44947;:21;44955:9;44965:1;44955:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44955:12:0;44947:21;;;;;;;;;;;;;:31;44912:66;44908:97;;;44988:7;;44997;;44980:25;;;;;;;;;44908:97;45030:34;45042:7;:21;45050:9;45060:1;45050:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45050:12:0;45042:21;;;;;;;;;;;;;45030:7;;:11;:34::i;:::-;45020:44;;45089:34;45101:7;:21;45109:9;45119:1;45109:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45109:12:0;45101:21;;;;;;;;;;;;;45089:7;;:11;:34::i;:::-;45079:44;-1:-1:-1;44888:3:0;;44846:289;;;-1:-1:-1;45171:7:0;;45159;;:20;;:11;:20::i;:::-;45149:7;:30;45145:61;;;45189:7;;45198;;45181:25;;;;;;;;45145:61;45225:7;;-1:-1:-1;45234:7:0;-1:-1:-1;44689:561:0;;;:::o;43597:405::-;43657:7;43666;43675;43684;43704:12;43719:24;43735:7;43719:15;:24::i;:::-;43704:39;;43754:12;43769:24;43785:7;43769:15;:24::i;:::-;43754:39;;43804:18;43825:30;43847:7;43825:21;:30::i;:::-;43804:51;-1:-1:-1;43866:23:0;43892:43;43804:51;43892:27;43914:4;43892:27;:7;43904:4;43892:11;:17::i;:43::-;43866:69;43971:4;;-1:-1:-1;43977:4:0;;-1:-1:-1;43977:4:0;-1:-1:-1;43597:405:0;;-1:-1:-1;;;43597:405:0:o;44010:500::-;44139:7;;;;44195:24;:7;44207:11;44195;:24::i;:::-;44177:42;-1:-1:-1;44230:12:0;44245:21;:4;44254:11;44245:8;:21::i;:::-;44230:36;-1:-1:-1;44277:12:0;44292:21;:4;44301:11;44292:8;:21::i;:::-;44277:36;-1:-1:-1;44324:18:0;44345:27;:10;44360:11;44345:14;:27::i;:::-;44324:48;-1:-1:-1;44383:23:0;44409:43;44324:48;44409:27;44431:4;44409:27;:7;44421:4;44409:11;:17::i;:43::-;44471:7;;;;-1:-1:-1;44497:4:0;;-1:-1:-1;44010:500:0;;-1:-1:-1;;;;;;;;;44010:500:0:o;38929:618::-;39028:1;39014:11;:15;:32;;;;;39045:1;39033:9;:13;39014:32;39010:530;;;39166:15;;39134:62;;39151:4;;-1:-1:-1;;;;;39166:15:0;39184:11;39134:8;:62::i;:::-;39247:15;;-1:-1:-1;;;;;39247:15:0;:31;39286:9;39324:4;39348:11;39247:15;;39472:7;:5;:7::i;:::-;39498:15;39247:281;;;;;;;;;;;;;-1:-1:-1;;;;;39247:281:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39247:281:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46416:423;46462:7;;:12;:28;;;;-1:-1:-1;46478:7:0;;:12;46462:28;:50;;;;-1:-1:-1;46494:13:0;;:18;46462:50;:72;;;;-1:-1:-1;46516:13:0;;:18;46462:72;46459:84;;;46536:7;;46459:84;46581:7;;;46563:15;:25;46617:7;;;46599:15;:25;46659:13;;;46635:21;:37;46708:13;;;46683:22;:38;-1:-1:-1;46742:11:0;;;;46764;;;;46786:17;;;46814;46416:423;:::o;41678:605::-;41781:15;41798:23;41823:12;41837:23;41862:12;41876;41890:18;41912:19;41923:7;41912:10;:19::i;:::-;41780:151;;;;;;;;;;;;;;41960:28;41980:7;41960;:15;41968:6;-1:-1:-1;;;;;41960:15:0;-1:-1:-1;;;;;41960:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;41942:15:0;;;;;;:7;:15;;;;;;;;:46;;;;42017:7;:15;;;;:28;;42037:7;42017:19;:28::i;:::-;-1:-1:-1;;;;;41999:15:0;;;;;;;:7;:15;;;;;;:46;;;;42077:18;;;;;;;:39;;42100:15;42077:22;:39::i;:::-;-1:-1:-1;;;;;42056:18:0;;;;;;:7;:18;;;;;:60;42130:26;42145:10;42130:14;:26::i;:::-;42167:14;42176:4;42167:8;:14::i;:::-;42192:23;42204:4;42210;42192:11;:23::i;:::-;42248:9;-1:-1:-1;;;;;42231:44:0;42240:6;-1:-1:-1;;;;;42231:44:0;;42259:15;42231:44;;;;;;;;;;;;;;;;;;41678:605;;;;;;;;;;:::o;41045:625::-;41146:15;41163:23;41188:12;41202:23;41227:12;41241;41255:18;41277:19;41288:7;41277:10;:19::i;:::-;41145:151;;;;;;;;;;;;;;41325:28;41345:7;41325;:15;41333:6;-1:-1:-1;;;;;41325:15:0;-1:-1:-1;;;;;41325:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;41307:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;41385:18;;;;;:7;:18;;;;;:39;;41408:15;41385:22;:39::i;:::-;-1:-1:-1;;;;;41364:18:0;;;;;;:7;:18;;;;;;;;:60;;;;41456:7;:18;;;;:39;;41479:15;41456:22;:39::i;40496:541::-;40595:15;40612:23;40637:12;40651:23;40676:12;40690;40704:18;40726:19;40737:7;40726:10;:19::i;:::-;40594:151;;;;;;;;;;;;;;40774:28;40794:7;40774;:15;40782:6;-1:-1:-1;;;;;40774:15:0;-1:-1:-1;;;;;40774:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;42291:681::-;42394:15;42411:23;42436:12;42450:23;42475:12;42489;42503:18;42525:19;42536:7;42525:10;:19::i;:::-;42393:151;;;;;;;;;;;;;;42573:28;42593:7;42573;:15;42581:6;-1:-1:-1;;;;;42573:15:0;-1:-1:-1;;;;;42573:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;42555:15:0;;;;;;:7;:15;;;;;;;;:46;;;;42630:7;:15;;;;:28;;42650:7;42630:19;:28::i;46851:210::-;46905:15;;46895:7;:25;46941:15;;46931:7;:25;46983:21;;46967:13;:37;47031:22;;47015:13;:38;46851:210::o;45986:130::-;46050:7;46077:31;46102:5;46077:20;46089:7;;46077;:11;;:20;;;;:::i;46124:130::-;46188:7;46215:31;46240:5;46215:20;46227:7;;46215;:11;;:20;;;;:::i;46262:142::-;46332:7;46359:37;46390:5;46359:26;46371:13;;46359:7;:11;;:26;;;;:::i;45262:368::-;45325:19;45348:10;:8;:10::i;:::-;45325:33;-1:-1:-1;45369:18:0;45390:27;:10;45325:33;45390:14;:27::i;:::-;45469:4;45453:22;;;;:7;:22;;;;;;45369:48;;-1:-1:-1;45453:38:0;;45369:48;45453:26;:38::i;:::-;45444:4;45428:22;;;;:7;:22;;;;;;;;:63;;;;45505:11;:26;;;;;;45502:121;;;45589:4;45573:22;;;;:7;:22;;;;;;:38;;45600:10;45573:26;:38::i;:::-;45564:4;45548:22;;;;:7;:22;;;;;:63;45502:121;45262:368;;;:::o;42980:147::-;43058:7;;:17;;43070:4;43058:11;:17::i;:::-;43048:7;:27;43099:10;;:20;;43114:4;43099:14;:20::i;:::-;43086:10;:33;-1:-1:-1;;42980:147:0:o

Swarm Source

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