ETH Price: $2,441.23 (-8.94%)

Token

BONE (BONE)
 

Overview

Max Total Supply

1,000,000,000 BONE

Holders

325

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
Uniswap V2: BONE 5
Balance
70,110,794.284296583 BONE

Value
$0.00
0x27934bd8039d05138f5e6ab9dfd18d5af35561bf
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:
BONE

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 2021-04-06
*/

/**


	   ▀█████████▄   ▄██████▄  ███▄▄▄▄      ▄████████ 
		███    ███ ███    ███ ███▀▀▀██▄   ███    ███ 
		███    ███ ███    ███ ███   ███   ███    █▀  
	   ▄███▄▄▄██▀  ███    ███ ███   ███  ▄███▄▄▄     
	  ▀▀███▀▀▀██▄  ███    ███ ███   ███ ▀▀███▀▀▀     
		███    ██▄ ███    ███ ███   ███   ███    █▄  
		███    ███ ███    ███ ███   ███   ███    ███ 
	   ▄█████████▀   ▀██████▀   ▀█   █▀    ██████████ 
													
					// A $BDOG Charity Production //


    Total Supply: 1 Billion
    Transaction Fee: 6%

    Fee Breakdown:
        - Charity Wallet Distribution: 2%
        - Holder Yield: 1%
        - LP Bonus (BONE/BNB): 2%
        - Automatic Liquidity: 1%

    deployed by @sycore0
		as part of the Rocket Drop token launch platform
		url: https://drop.rocketbunny.io
		tg: @RocketBunnyChat


 */

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

    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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



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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// pragma solidity >=0.5.0;

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

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

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

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

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


// pragma solidity >=0.5.0;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

// pragma solidity >=0.6.2;

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

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

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



// pragma solidity >=0.6.2;

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

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


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

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

    mapping (address => bool) private _isExcludedFromFee;

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

	uint256 public _liquidityBonus = 2;
	uint256 public _charityPercent = 2;

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

	address public charityWallet = address(0xf3a15C4BBC332824B10282B5D0cCeaDb06a72518);
    
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    
    uint256 private numTokensSellToAddToLiquidity = 10**5 * 10**9;
    
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }
    
    constructor () public {
        _rOwned[_msgSender()] = _rTotal;
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
         // 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;

		charityWallet = owner();
        
        emit Transfer(address(0), _msgSender(), _tTotal);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");

        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & liquify if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));
        
        bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            contractTokenBalance = numTokensSellToAddToLiquidity;
            //add liquidity
            swapAndLiquify(contractTokenBalance);
        }
        
        //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;
        } else{
			//calculate LP bonus and Charity amounts
			uint256 LPbonus = amount.mul(_liquidityBonus).div(10**2);
			uint256 charityDist = amount.mul(_charityPercent).div(10**2);
			// transfer liquidity bonus
			_tokenTransfer(from,uniswapV2Pair,LPbonus,false);
			// transfer charity percent
			_tokenTransfer(from,charityWallet,charityDist,false);

			// adjust amount after charity and LP bonus
			amount = amount.sub(LPbonus).sub(charityDist);
		}
        
		

        // transfer amount, it will take tax, burn, liquidity fee

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

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        // split the contract balance into halves
        uint256 half = contractTokenBalance.div(2);
        uint256 otherHalf = contractTokenBalance.sub(half);

        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the liquidity event include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;

        // swap tokens for ETH
        swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered

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

        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);
        
        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

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

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }
    function recycleETH() public onlyOwner {
        // generate the uniswap pair path of weth -> token
        address[] memory path = new address[](2);
        path[0] = uniswapV2Router.WETH();
		path[1] = address(this);

		uint256 ethBalance = address(this).balance;
        // buy the tokens
        uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: ethBalance}(
            0, // accept any amount of tokens
            path,
            address(this),
            block.timestamp
        );
    }

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

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

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

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

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

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

    function setLiquifyAmount(uint256 amount) public onlyOwner {
        numTokensSellToAddToLiquidity = amount;
    }

	function setCharityWallet(address newWallet) public onlyOwner {
		charityWallet = newWallet;
	}
	
	function setLPbonus(uint256 amount) public onlyOwner {
        _liquidityBonus = amount;
    }
	function setCharityPercent(uint256 amount) public onlyOwner {
        _charityPercent = amount;
    }

	function withdrawNonBONEtokens(address _recipient, address _ERC20address, uint256 _amount) public onlyOwner returns(bool) {
        require(_ERC20address != address(this), "Cannot withdraw BONE!");
		require(_ERC20address != uniswapV2Pair, "Cannot withdraw LP!");
        IERC20(_ERC20address).transfer(_recipient, _amount); //use of the _ERC20 traditional transfer
        return true;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_charityPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityBonus","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":"charityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"recycleETH","outputs":[],"stateMutability":"nonpayable","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":"amount","type":"uint256"}],"name":"setCharityPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setCharityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setLPbonus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setLiquifyAmount","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"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"address","name":"_ERC20address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawNonBONEtokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

670de0b6b3a764000060095567081ad01a501bffff19600a556002600c819055600d55610100604052600460c081905263424f4e4560e01b60e09081526200004b91600e9190620003f6565b5060408051808201909152600480825263424f4e4560e01b60209092019182526200007991600f91620003f6565b506010805460ff1916600917905560016011819055601281905560138190556014556015805460ff60a81b196001600160a01b031990911673f3a15c4bbc332824b10282b5d0cceadb06a725181716600160a81b179055655af3107a4000601655348015620000e757600080fd5b506000620000f4620003e3565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600a54600360006200014f620003e3565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001c657600080fd5b505afa158015620001db573d6000803e3d6000fd5b505050506040513d6020811015620001f257600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200024357600080fd5b505afa15801562000258573d6000803e3d6000fd5b505050506040513d60208110156200026f57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620002c257600080fd5b505af1158015620002d7573d6000803e3d6000fd5b505050506040513d6020811015620002ee57600080fd5b50516001600160601b0319606091821b811660a0529082901b166080526001600660006200031b620003e7565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff19958616179055308152600690925290208054909116600117905562000365620003e7565b601580546001600160a01b0319166001600160a01b03929092169190911790556200038f620003e3565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040518082815260200191505060405180910390a35062000492565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200043957805160ff191683800117855562000469565b8280016001018555821562000469579182015b82811115620004695782518255916020019190600101906200044c565b50620004779291506200047b565b5090565b5b808211156200047757600081556001016200047c565b60805160601c60a05160601c6130a7620004ee6000398061109052806111745280611fa05280612094525080610af75280611a2a5280611b0f528061280752806128bf52806128e652806129cc52806129f352506130a76000f3fe60806040526004361061026b5760003560e01c806369c9846911610144578063a69df4b5116100b6578063dd62ed3e1161007a578063dd62ed3e146108e9578063e76bbd2e14610924578063ea2f0b3714610939578063f16026281461096c578063f2fde38b14610981578063f5e30dea146109b457610272565b8063a69df4b514610830578063a9059cbb14610845578063b6c523241461087e578063c49b9a8014610893578063dd467064146108bf57610272565b806388f820201161010857806388f82020146107465780638da5cb5b146107795780638ee88c531461078e57806395d89b41146107b8578063a03fd480146107cd578063a457c2d7146107f757610272565b806369c98469146106aa5780636bc87c3a146106d457806370a08231146106e9578063715018a61461071c5780637b2087691461073157610272565b80633685d419116101dd5780634549b039116101a15780634549b039146105a557806349bd5a5e146105d75780634a74bb02146105ec5780634d5302ac1461060157806352390c02146106445780635342acb41461067757610272565b80633685d419146104c757806339509351146104fa5780633b124fe7146105335780633bd5d17314610548578063437823ec1461057257610272565b806318160ddd1161022f57806318160ddd146103d257806323b872dd146103e75780632d8381191461042a57806330563bd714610454578063313ce5671461048757806332f24188146104b257610272565b8063061c82d01461027757806306fdde03146102a3578063095ea7b31461032d57806313114a9d1461037a5780631694505e146103a157610272565b3661027257005b600080fd5b34801561028357600080fd5b506102a16004803603602081101561029a57600080fd5b50356109de565b005b3480156102af57600080fd5b506102b8610a3b565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102f25781810151838201526020016102da565b50505050905090810190601f16801561031f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561033957600080fd5b506103666004803603604081101561035057600080fd5b506001600160a01b038135169060200135610ad1565b604080519115158252519081900360200190f35b34801561038657600080fd5b5061038f610aef565b60408051918252519081900360200190f35b3480156103ad57600080fd5b506103b6610af5565b604080516001600160a01b039092168252519081900360200190f35b3480156103de57600080fd5b5061038f610b19565b3480156103f357600080fd5b506103666004803603606081101561040a57600080fd5b506001600160a01b03813581169160208101359091169060400135610b1f565b34801561043657600080fd5b5061038f6004803603602081101561044d57600080fd5b5035610ba6565b34801561046057600080fd5b506102a16004803603602081101561047757600080fd5b50356001600160a01b0316610c08565b34801561049357600080fd5b5061049c610c82565b6040805160ff9092168252519081900360200190f35b3480156104be57600080fd5b5061038f610c8b565b3480156104d357600080fd5b506102a1600480360360208110156104ea57600080fd5b50356001600160a01b0316610c91565b34801561050657600080fd5b506103666004803603604081101561051d57600080fd5b506001600160a01b038135169060200135610e52565b34801561053f57600080fd5b5061038f610ea0565b34801561055457600080fd5b506102a16004803603602081101561056b57600080fd5b5035610ea6565b34801561057e57600080fd5b506102a16004803603602081101561059557600080fd5b50356001600160a01b0316610f80565b3480156105b157600080fd5b5061038f600480360360408110156105c857600080fd5b50803590602001351515610ffc565b3480156105e357600080fd5b506103b661108e565b3480156105f857600080fd5b506103666110b2565b34801561060d57600080fd5b506103666004803603606081101561062457600080fd5b506001600160a01b038135811691602081013590911690604001356110c2565b34801561065057600080fd5b506102a16004803603602081101561066757600080fd5b50356001600160a01b031661127c565b34801561068357600080fd5b506103666004803603602081101561069a57600080fd5b50356001600160a01b0316611402565b3480156106b657600080fd5b506102a1600480360360208110156106cd57600080fd5b5035611420565b3480156106e057600080fd5b5061038f61147d565b3480156106f557600080fd5b5061038f6004803603602081101561070c57600080fd5b50356001600160a01b0316611483565b34801561072857600080fd5b506102a16114e5565b34801561073d57600080fd5b506103b6611575565b34801561075257600080fd5b506103666004803603602081101561076957600080fd5b50356001600160a01b0316611584565b34801561078557600080fd5b506103b66115a2565b34801561079a57600080fd5b506102a1600480360360208110156107b157600080fd5b50356115b1565b3480156107c457600080fd5b506102b861160e565b3480156107d957600080fd5b506102a1600480360360208110156107f057600080fd5b503561166f565b34801561080357600080fd5b506103666004803603604081101561081a57600080fd5b506001600160a01b0381351690602001356116cc565b34801561083c57600080fd5b506102a1611734565b34801561085157600080fd5b506103666004803603604081101561086857600080fd5b506001600160a01b038135169060200135611822565b34801561088a57600080fd5b5061038f611836565b34801561089f57600080fd5b506102a1600480360360208110156108b657600080fd5b5035151561183c565b3480156108cb57600080fd5b506102a1600480360360208110156108e257600080fd5b50356118e7565b3480156108f557600080fd5b5061038f6004803603604081101561090c57600080fd5b506001600160a01b0381358116916020013516611985565b34801561093057600080fd5b506102a16119b0565b34801561094557600080fd5b506102a16004803603602081101561095c57600080fd5b50356001600160a01b0316611bf0565b34801561097857600080fd5b5061038f611c69565b34801561098d57600080fd5b506102a1600480360360208110156109a457600080fd5b50356001600160a01b0316611c6f565b3480156109c057600080fd5b506102a1600480360360208110156109d757600080fd5b5035611d55565b6109e6611db2565b6000546001600160a01b03908116911614610a36576040805162461bcd60e51b81526020600482018190526024820152600080516020612f4c833981519152604482015290519081900360640190fd5b601155565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ac75780601f10610a9c57610100808354040283529160200191610ac7565b820191906000526020600020905b815481529060010190602001808311610aaa57829003601f168201915b5050505050905090565b6000610ae5610ade611db2565b8484611db6565b5060015b92915050565b600b5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b60095490565b6000610b2c848484611ea2565b610b9c84610b38611db2565b610b9785604051806060016040528060288152602001612f24602891396001600160a01b038a16600090815260056020526040812090610b76611db2565b6001600160a01b031681526020810191909152604001600020549190612102565b611db6565b5060019392505050565b6000600a54821115610be95760405162461bcd60e51b815260040180806020018281038252602a815260200180612e91602a913960400191505060405180910390fd5b6000610bf3612199565b9050610bff83826121bc565b9150505b919050565b610c10611db2565b6000546001600160a01b03908116911614610c60576040805162461bcd60e51b81526020600482018190526024820152600080516020612f4c833981519152604482015290519081900360640190fd5b601580546001600160a01b0319166001600160a01b0392909216919091179055565b60105460ff1690565b600d5481565b610c99611db2565b6000546001600160a01b03908116911614610ce9576040805162461bcd60e51b81526020600482018190526024820152600080516020612f4c833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610d56576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610e4e57816001600160a01b031660088281548110610d7a57fe5b6000918252602090912001546001600160a01b03161415610e4657600880546000198101908110610da757fe5b600091825260209091200154600880546001600160a01b039092169183908110610dcd57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610e1f57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610e4e565b600101610d59565b5050565b6000610ae5610e5f611db2565b84610b978560056000610e70611db2565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612205565b60115481565b6000610eb0611db2565b6001600160a01b03811660009081526007602052604090205490915060ff1615610f0b5760405162461bcd60e51b815260040180806020018281038252602c815260200180612ffe602c913960400191505060405180910390fd5b6000610f168361225f565b505050506001600160a01b038416600090815260036020526040902054919250610f42919050826122ae565b6001600160a01b038316600090815260036020526040902055600a54610f6890826122ae565b600a55600b54610f789084612205565b600b55505050565b610f88611db2565b6000546001600160a01b03908116911614610fd8576040805162461bcd60e51b81526020600482018190526024820152600080516020612f4c833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600954831115611055576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816110745760006110658461225f565b50939550610ae9945050505050565b600061107f8461225f565b50929550610ae9945050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601554600160a81b900460ff1681565b60006110cc611db2565b6000546001600160a01b0390811691161461111c576040805162461bcd60e51b81526020600482018190526024820152600080516020612f4c833981519152604482015290519081900360640190fd5b6001600160a01b038316301415611172576040805162461bcd60e51b815260206004820152601560248201527443616e6e6f7420776974686472617720424f4e452160581b604482015290519081900360640190fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614156111ef576040805162461bcd60e51b815260206004820152601360248201527243616e6e6f74207769746864726177204c502160681b604482015290519081900360640190fd5b826001600160a01b031663a9059cbb85846040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561124657600080fd5b505af115801561125a573d6000803e3d6000fd5b505050506040513d602081101561127057600080fd5b50600195945050505050565b611284611db2565b6000546001600160a01b039081169116146112d4576040805162461bcd60e51b81526020600482018190526024820152600080516020612f4c833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff1615611342576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152600360205260409020541561139c576001600160a01b03811660009081526003602052604090205461138290610ba6565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b611428611db2565b6000546001600160a01b03908116911614611478576040805162461bcd60e51b81526020600482018190526024820152600080516020612f4c833981519152604482015290519081900360640190fd5b601655565b60135481565b6001600160a01b03811660009081526007602052604081205460ff16156114c357506001600160a01b038116600090815260046020526040902054610c03565b6001600160a01b038216600090815260036020526040902054610ae990610ba6565b6114ed611db2565b6000546001600160a01b0390811691161461153d576040805162461bcd60e51b81526020600482018190526024820152600080516020612f4c833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020612f6c833981519152908390a3600080546001600160a01b0319169055565b6015546001600160a01b031681565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b6115b9611db2565b6000546001600160a01b03908116911614611609576040805162461bcd60e51b81526020600482018190526024820152600080516020612f4c833981519152604482015290519081900360640190fd5b601355565b600f8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ac75780601f10610a9c57610100808354040283529160200191610ac7565b611677611db2565b6000546001600160a01b039081169116146116c7576040805162461bcd60e51b81526020600482018190526024820152600080516020612f4c833981519152604482015290519081900360640190fd5b600d55565b6000610ae56116d9611db2565b84610b978560405180606001604052806025815260200161304d6025913960056000611703611db2565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612102565b6001546001600160a01b0316331461177d5760405162461bcd60e51b815260040180806020018281038252602381526020018061302a6023913960400191505060405180910390fd5b60025442116117d3576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b039384169390911691600080516020612f6c83398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610ae561182f611db2565b8484611ea2565b60025490565b611844611db2565b6000546001600160a01b03908116911614611894576040805162461bcd60e51b81526020600482018190526024820152600080516020612f4c833981519152604482015290519081900360640190fd5b60158054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b6118ef611db2565b6000546001600160a01b0390811691161461193f576040805162461bcd60e51b81526020600482018190526024820152600080516020612f4c833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020612f6c833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6119b8611db2565b6000546001600160a01b03908116911614611a08576040805162461bcd60e51b81526020600482018190526024820152600080516020612f4c833981519152604482015290519081900360640190fd5b60408051600280825260608083018452926020830190803683370190505090507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611a8157600080fd5b505afa158015611a95573d6000803e3d6000fd5b505050506040513d6020811015611aab57600080fd5b505181518290600090611aba57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250503081600181518110611ae857fe5b60200260200101906001600160a01b031690816001600160a01b03168152505060004790507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663b6f9de958260008530426040518663ffffffff1660e01b81526004018085815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015611bac578181015183820152602001611b94565b50505050905001955050505050506000604051808303818588803b158015611bd357600080fd5b505af1158015611be7573d6000803e3d6000fd5b50505050505050565b611bf8611db2565b6000546001600160a01b03908116911614611c48576040805162461bcd60e51b81526020600482018190526024820152600080516020612f4c833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b600c5481565b611c77611db2565b6000546001600160a01b03908116911614611cc7576040805162461bcd60e51b81526020600482018190526024820152600080516020612f4c833981519152604482015290519081900360640190fd5b6001600160a01b038116611d0c5760405162461bcd60e51b8152600401808060200182810382526026815260200180612ebb6026913960400191505060405180910390fd5b600080546040516001600160a01b0380851693921691600080516020612f6c83398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611d5d611db2565b6000546001600160a01b03908116911614611dad576040805162461bcd60e51b81526020600482018190526024820152600080516020612f4c833981519152604482015290519081900360640190fd5b600c55565b3390565b6001600160a01b038316611dfb5760405162461bcd60e51b8152600401808060200182810382526024815260200180612fda6024913960400191505060405180910390fd5b6001600160a01b038216611e405760405162461bcd60e51b8152600401808060200182810382526022815260200180612ee16022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611ee75760405162461bcd60e51b8152600401808060200182810382526025815260200180612fb56025913960400191505060405180910390fd5b6001600160a01b038216611f2c5760405162461bcd60e51b8152600401808060200182810382526023815260200180612e6e6023913960400191505060405180910390fd5b60008111611f6b5760405162461bcd60e51b8152600401808060200182810382526029815260200180612f8c6029913960400191505060405180910390fd5b6000611f7630611483565b60165490915081108015908190611f975750601554600160a01b900460ff16155b8015611fd557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b8015611fea5750601554600160a81b900460ff165b15611ffd576016549150611ffd826122f0565b6001600160a01b03851660009081526006602052604090205460019060ff168061203f57506001600160a01b03851660009081526006602052604090205460ff165b1561204c575060006120ee565b600061206e6064612068600c548861239690919063ffffffff16565b906121bc565b9050600061208c6064612068600d548961239690919063ffffffff16565b90506120bb887f00000000000000000000000000000000000000000000000000000000000000008460006123ef565b6015546120d59089906001600160a01b03168360006123ef565b6120e9816120e388856122ae565b906122ae565b955050505b6120fa868686846123ef565b505050505050565b600081848411156121915760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561215657818101518382015260200161213e565b50505050905090810190601f1680156121835780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006121a6612563565b90925090506121b582826121bc565b9250505090565b60006121fe83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506126c6565b9392505050565b6000828201838110156121fe576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006122768a61272b565b92509250925060008060006122948d868661228f612199565b612767565b919f909e50909c50959a5093985091965092945050505050565b60006121fe83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612102565b6015805460ff60a01b1916600160a01b17905560006123108260026121bc565b9050600061231e83836122ae565b90504761232a836127b7565b600061233647836122ae565b905061234283826129c6565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150506015805460ff60a01b19169055505050565b6000826123a557506000610ae9565b828202828482816123b257fe5b04146121fe5760405162461bcd60e51b8152600401808060200182810382526021815260200180612f036021913960400191505060405180910390fd5b806123fc576123fc612ac4565b6001600160a01b03841660009081526007602052604090205460ff16801561243d57506001600160a01b03831660009081526007602052604090205460ff16155b156124525761244d848484612af6565b612550565b6001600160a01b03841660009081526007602052604090205460ff1615801561249357506001600160a01b03831660009081526007602052604090205460ff165b156124a35761244d848484612c1a565b6001600160a01b03841660009081526007602052604090205460ff161580156124e557506001600160a01b03831660009081526007602052604090205460ff16155b156124f55761244d848484612cc3565b6001600160a01b03841660009081526007602052604090205460ff16801561253557506001600160a01b03831660009081526007602052604090205460ff165b156125455761244d848484612d07565b612550848484612cc3565b8061255d5761255d612d7a565b50505050565b600a546009546000918291825b6008548110156126945782600360006008848154811061258c57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806125f157508160046000600884815481106125ca57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561260857600a54600954945094505050506126c2565b612648600360006008848154811061261c57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906122ae565b925061268a600460006008848154811061265e57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906122ae565b9150600101612570565b50600954600a546126a4916121bc565b8210156126bc57600a546009549350935050506126c2565b90925090505b9091565b600081836127155760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561215657818101518382015260200161213e565b50600083858161272157fe5b0495945050505050565b60008060008061273a85612d88565b9050600061274786612da4565b90506000612759826120e389866122ae565b979296509094509092505050565b60008080806127768886612396565b905060006127848887612396565b905060006127928888612396565b905060006127a4826120e386866122ae565b939b939a50919850919650505050505050565b604080516002808252606080830184529260208301908036833701905050905030816000815181106127e557fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561285e57600080fd5b505afa158015612872573d6000803e3d6000fd5b505050506040513d602081101561288857600080fd5b505181518290600190811061289957fe5b60200260200101906001600160a01b031690816001600160a01b0316815250506128e4307f000000000000000000000000000000000000000000000000000000000000000084611db6565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612989578181015183820152602001612971565b505050509050019650505050505050600060405180830381600087803b1580156129b257600080fd5b505af11580156120fa573d6000803e3d6000fd5b6129f1307f000000000000000000000000000000000000000000000000000000000000000084611db6565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d719823085600080612a2e6115a2565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b158015612a9957600080fd5b505af1158015612aad573d6000803e3d6000fd5b50505050506040513d606081101561255d57600080fd5b601154158015612ad45750601354155b15612ade57612af4565b6011805460125560138054601455600091829055555b565b600080600080600080612b088761225f565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612b3a90886122ae565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612b6990876122ae565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612b989086612205565b6001600160a01b038916600090815260036020526040902055612bba81612dc0565b612bc48483612e49565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080612c2c8761225f565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612c5e90876122ae565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612c949084612205565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612b989086612205565b600080600080600080612cd58761225f565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612b6990876122ae565b600080600080600080612d198761225f565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612d4b90886122ae565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612c5e90876122ae565b601254601155601454601355565b6000610ae960646120686011548561239690919063ffffffff16565b6000610ae960646120686013548561239690919063ffffffff16565b6000612dca612199565b90506000612dd88383612396565b30600090815260036020526040902054909150612df59082612205565b3060009081526003602090815260408083209390935560079052205460ff1615612e445730600090815260046020526040902054612e339084612205565b306000908152600460205260409020555b505050565b600a54612e5690836122ae565b600a55600b54612e669082612205565b600b55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220685695da5d69eaf063885cdd7dc5d31f28155fa2ee253ef26942ca09ca2484b764736f6c634300060c0033

Deployed Bytecode

0x60806040526004361061026b5760003560e01c806369c9846911610144578063a69df4b5116100b6578063dd62ed3e1161007a578063dd62ed3e146108e9578063e76bbd2e14610924578063ea2f0b3714610939578063f16026281461096c578063f2fde38b14610981578063f5e30dea146109b457610272565b8063a69df4b514610830578063a9059cbb14610845578063b6c523241461087e578063c49b9a8014610893578063dd467064146108bf57610272565b806388f820201161010857806388f82020146107465780638da5cb5b146107795780638ee88c531461078e57806395d89b41146107b8578063a03fd480146107cd578063a457c2d7146107f757610272565b806369c98469146106aa5780636bc87c3a146106d457806370a08231146106e9578063715018a61461071c5780637b2087691461073157610272565b80633685d419116101dd5780634549b039116101a15780634549b039146105a557806349bd5a5e146105d75780634a74bb02146105ec5780634d5302ac1461060157806352390c02146106445780635342acb41461067757610272565b80633685d419146104c757806339509351146104fa5780633b124fe7146105335780633bd5d17314610548578063437823ec1461057257610272565b806318160ddd1161022f57806318160ddd146103d257806323b872dd146103e75780632d8381191461042a57806330563bd714610454578063313ce5671461048757806332f24188146104b257610272565b8063061c82d01461027757806306fdde03146102a3578063095ea7b31461032d57806313114a9d1461037a5780631694505e146103a157610272565b3661027257005b600080fd5b34801561028357600080fd5b506102a16004803603602081101561029a57600080fd5b50356109de565b005b3480156102af57600080fd5b506102b8610a3b565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102f25781810151838201526020016102da565b50505050905090810190601f16801561031f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561033957600080fd5b506103666004803603604081101561035057600080fd5b506001600160a01b038135169060200135610ad1565b604080519115158252519081900360200190f35b34801561038657600080fd5b5061038f610aef565b60408051918252519081900360200190f35b3480156103ad57600080fd5b506103b6610af5565b604080516001600160a01b039092168252519081900360200190f35b3480156103de57600080fd5b5061038f610b19565b3480156103f357600080fd5b506103666004803603606081101561040a57600080fd5b506001600160a01b03813581169160208101359091169060400135610b1f565b34801561043657600080fd5b5061038f6004803603602081101561044d57600080fd5b5035610ba6565b34801561046057600080fd5b506102a16004803603602081101561047757600080fd5b50356001600160a01b0316610c08565b34801561049357600080fd5b5061049c610c82565b6040805160ff9092168252519081900360200190f35b3480156104be57600080fd5b5061038f610c8b565b3480156104d357600080fd5b506102a1600480360360208110156104ea57600080fd5b50356001600160a01b0316610c91565b34801561050657600080fd5b506103666004803603604081101561051d57600080fd5b506001600160a01b038135169060200135610e52565b34801561053f57600080fd5b5061038f610ea0565b34801561055457600080fd5b506102a16004803603602081101561056b57600080fd5b5035610ea6565b34801561057e57600080fd5b506102a16004803603602081101561059557600080fd5b50356001600160a01b0316610f80565b3480156105b157600080fd5b5061038f600480360360408110156105c857600080fd5b50803590602001351515610ffc565b3480156105e357600080fd5b506103b661108e565b3480156105f857600080fd5b506103666110b2565b34801561060d57600080fd5b506103666004803603606081101561062457600080fd5b506001600160a01b038135811691602081013590911690604001356110c2565b34801561065057600080fd5b506102a16004803603602081101561066757600080fd5b50356001600160a01b031661127c565b34801561068357600080fd5b506103666004803603602081101561069a57600080fd5b50356001600160a01b0316611402565b3480156106b657600080fd5b506102a1600480360360208110156106cd57600080fd5b5035611420565b3480156106e057600080fd5b5061038f61147d565b3480156106f557600080fd5b5061038f6004803603602081101561070c57600080fd5b50356001600160a01b0316611483565b34801561072857600080fd5b506102a16114e5565b34801561073d57600080fd5b506103b6611575565b34801561075257600080fd5b506103666004803603602081101561076957600080fd5b50356001600160a01b0316611584565b34801561078557600080fd5b506103b66115a2565b34801561079a57600080fd5b506102a1600480360360208110156107b157600080fd5b50356115b1565b3480156107c457600080fd5b506102b861160e565b3480156107d957600080fd5b506102a1600480360360208110156107f057600080fd5b503561166f565b34801561080357600080fd5b506103666004803603604081101561081a57600080fd5b506001600160a01b0381351690602001356116cc565b34801561083c57600080fd5b506102a1611734565b34801561085157600080fd5b506103666004803603604081101561086857600080fd5b506001600160a01b038135169060200135611822565b34801561088a57600080fd5b5061038f611836565b34801561089f57600080fd5b506102a1600480360360208110156108b657600080fd5b5035151561183c565b3480156108cb57600080fd5b506102a1600480360360208110156108e257600080fd5b50356118e7565b3480156108f557600080fd5b5061038f6004803603604081101561090c57600080fd5b506001600160a01b0381358116916020013516611985565b34801561093057600080fd5b506102a16119b0565b34801561094557600080fd5b506102a16004803603602081101561095c57600080fd5b50356001600160a01b0316611bf0565b34801561097857600080fd5b5061038f611c69565b34801561098d57600080fd5b506102a1600480360360208110156109a457600080fd5b50356001600160a01b0316611c6f565b3480156109c057600080fd5b506102a1600480360360208110156109d757600080fd5b5035611d55565b6109e6611db2565b6000546001600160a01b03908116911614610a36576040805162461bcd60e51b81526020600482018190526024820152600080516020612f4c833981519152604482015290519081900360640190fd5b601155565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ac75780601f10610a9c57610100808354040283529160200191610ac7565b820191906000526020600020905b815481529060010190602001808311610aaa57829003601f168201915b5050505050905090565b6000610ae5610ade611db2565b8484611db6565b5060015b92915050565b600b5490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60095490565b6000610b2c848484611ea2565b610b9c84610b38611db2565b610b9785604051806060016040528060288152602001612f24602891396001600160a01b038a16600090815260056020526040812090610b76611db2565b6001600160a01b031681526020810191909152604001600020549190612102565b611db6565b5060019392505050565b6000600a54821115610be95760405162461bcd60e51b815260040180806020018281038252602a815260200180612e91602a913960400191505060405180910390fd5b6000610bf3612199565b9050610bff83826121bc565b9150505b919050565b610c10611db2565b6000546001600160a01b03908116911614610c60576040805162461bcd60e51b81526020600482018190526024820152600080516020612f4c833981519152604482015290519081900360640190fd5b601580546001600160a01b0319166001600160a01b0392909216919091179055565b60105460ff1690565b600d5481565b610c99611db2565b6000546001600160a01b03908116911614610ce9576040805162461bcd60e51b81526020600482018190526024820152600080516020612f4c833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610d56576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610e4e57816001600160a01b031660088281548110610d7a57fe5b6000918252602090912001546001600160a01b03161415610e4657600880546000198101908110610da757fe5b600091825260209091200154600880546001600160a01b039092169183908110610dcd57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610e1f57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610e4e565b600101610d59565b5050565b6000610ae5610e5f611db2565b84610b978560056000610e70611db2565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612205565b60115481565b6000610eb0611db2565b6001600160a01b03811660009081526007602052604090205490915060ff1615610f0b5760405162461bcd60e51b815260040180806020018281038252602c815260200180612ffe602c913960400191505060405180910390fd5b6000610f168361225f565b505050506001600160a01b038416600090815260036020526040902054919250610f42919050826122ae565b6001600160a01b038316600090815260036020526040902055600a54610f6890826122ae565b600a55600b54610f789084612205565b600b55505050565b610f88611db2565b6000546001600160a01b03908116911614610fd8576040805162461bcd60e51b81526020600482018190526024820152600080516020612f4c833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600954831115611055576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816110745760006110658461225f565b50939550610ae9945050505050565b600061107f8461225f565b50929550610ae9945050505050565b7f00000000000000000000000027934bd8039d05138f5e6ab9dfd18d5af35561bf81565b601554600160a81b900460ff1681565b60006110cc611db2565b6000546001600160a01b0390811691161461111c576040805162461bcd60e51b81526020600482018190526024820152600080516020612f4c833981519152604482015290519081900360640190fd5b6001600160a01b038316301415611172576040805162461bcd60e51b815260206004820152601560248201527443616e6e6f7420776974686472617720424f4e452160581b604482015290519081900360640190fd5b7f00000000000000000000000027934bd8039d05138f5e6ab9dfd18d5af35561bf6001600160a01b0316836001600160a01b031614156111ef576040805162461bcd60e51b815260206004820152601360248201527243616e6e6f74207769746864726177204c502160681b604482015290519081900360640190fd5b826001600160a01b031663a9059cbb85846040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561124657600080fd5b505af115801561125a573d6000803e3d6000fd5b505050506040513d602081101561127057600080fd5b50600195945050505050565b611284611db2565b6000546001600160a01b039081169116146112d4576040805162461bcd60e51b81526020600482018190526024820152600080516020612f4c833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff1615611342576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152600360205260409020541561139c576001600160a01b03811660009081526003602052604090205461138290610ba6565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b611428611db2565b6000546001600160a01b03908116911614611478576040805162461bcd60e51b81526020600482018190526024820152600080516020612f4c833981519152604482015290519081900360640190fd5b601655565b60135481565b6001600160a01b03811660009081526007602052604081205460ff16156114c357506001600160a01b038116600090815260046020526040902054610c03565b6001600160a01b038216600090815260036020526040902054610ae990610ba6565b6114ed611db2565b6000546001600160a01b0390811691161461153d576040805162461bcd60e51b81526020600482018190526024820152600080516020612f4c833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020612f6c833981519152908390a3600080546001600160a01b0319169055565b6015546001600160a01b031681565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b6115b9611db2565b6000546001600160a01b03908116911614611609576040805162461bcd60e51b81526020600482018190526024820152600080516020612f4c833981519152604482015290519081900360640190fd5b601355565b600f8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ac75780601f10610a9c57610100808354040283529160200191610ac7565b611677611db2565b6000546001600160a01b039081169116146116c7576040805162461bcd60e51b81526020600482018190526024820152600080516020612f4c833981519152604482015290519081900360640190fd5b600d55565b6000610ae56116d9611db2565b84610b978560405180606001604052806025815260200161304d6025913960056000611703611db2565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612102565b6001546001600160a01b0316331461177d5760405162461bcd60e51b815260040180806020018281038252602381526020018061302a6023913960400191505060405180910390fd5b60025442116117d3576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b039384169390911691600080516020612f6c83398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610ae561182f611db2565b8484611ea2565b60025490565b611844611db2565b6000546001600160a01b03908116911614611894576040805162461bcd60e51b81526020600482018190526024820152600080516020612f4c833981519152604482015290519081900360640190fd5b60158054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b6118ef611db2565b6000546001600160a01b0390811691161461193f576040805162461bcd60e51b81526020600482018190526024820152600080516020612f4c833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020612f6c833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6119b8611db2565b6000546001600160a01b03908116911614611a08576040805162461bcd60e51b81526020600482018190526024820152600080516020612f4c833981519152604482015290519081900360640190fd5b60408051600280825260608083018452926020830190803683370190505090507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611a8157600080fd5b505afa158015611a95573d6000803e3d6000fd5b505050506040513d6020811015611aab57600080fd5b505181518290600090611aba57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250503081600181518110611ae857fe5b60200260200101906001600160a01b031690816001600160a01b03168152505060004790507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663b6f9de958260008530426040518663ffffffff1660e01b81526004018085815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015611bac578181015183820152602001611b94565b50505050905001955050505050506000604051808303818588803b158015611bd357600080fd5b505af1158015611be7573d6000803e3d6000fd5b50505050505050565b611bf8611db2565b6000546001600160a01b03908116911614611c48576040805162461bcd60e51b81526020600482018190526024820152600080516020612f4c833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b600c5481565b611c77611db2565b6000546001600160a01b03908116911614611cc7576040805162461bcd60e51b81526020600482018190526024820152600080516020612f4c833981519152604482015290519081900360640190fd5b6001600160a01b038116611d0c5760405162461bcd60e51b8152600401808060200182810382526026815260200180612ebb6026913960400191505060405180910390fd5b600080546040516001600160a01b0380851693921691600080516020612f6c83398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611d5d611db2565b6000546001600160a01b03908116911614611dad576040805162461bcd60e51b81526020600482018190526024820152600080516020612f4c833981519152604482015290519081900360640190fd5b600c55565b3390565b6001600160a01b038316611dfb5760405162461bcd60e51b8152600401808060200182810382526024815260200180612fda6024913960400191505060405180910390fd5b6001600160a01b038216611e405760405162461bcd60e51b8152600401808060200182810382526022815260200180612ee16022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611ee75760405162461bcd60e51b8152600401808060200182810382526025815260200180612fb56025913960400191505060405180910390fd5b6001600160a01b038216611f2c5760405162461bcd60e51b8152600401808060200182810382526023815260200180612e6e6023913960400191505060405180910390fd5b60008111611f6b5760405162461bcd60e51b8152600401808060200182810382526029815260200180612f8c6029913960400191505060405180910390fd5b6000611f7630611483565b60165490915081108015908190611f975750601554600160a01b900460ff16155b8015611fd557507f00000000000000000000000027934bd8039d05138f5e6ab9dfd18d5af35561bf6001600160a01b0316856001600160a01b031614155b8015611fea5750601554600160a81b900460ff165b15611ffd576016549150611ffd826122f0565b6001600160a01b03851660009081526006602052604090205460019060ff168061203f57506001600160a01b03851660009081526006602052604090205460ff165b1561204c575060006120ee565b600061206e6064612068600c548861239690919063ffffffff16565b906121bc565b9050600061208c6064612068600d548961239690919063ffffffff16565b90506120bb887f00000000000000000000000027934bd8039d05138f5e6ab9dfd18d5af35561bf8460006123ef565b6015546120d59089906001600160a01b03168360006123ef565b6120e9816120e388856122ae565b906122ae565b955050505b6120fa868686846123ef565b505050505050565b600081848411156121915760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561215657818101518382015260200161213e565b50505050905090810190601f1680156121835780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006121a6612563565b90925090506121b582826121bc565b9250505090565b60006121fe83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506126c6565b9392505050565b6000828201838110156121fe576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006122768a61272b565b92509250925060008060006122948d868661228f612199565b612767565b919f909e50909c50959a5093985091965092945050505050565b60006121fe83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612102565b6015805460ff60a01b1916600160a01b17905560006123108260026121bc565b9050600061231e83836122ae565b90504761232a836127b7565b600061233647836122ae565b905061234283826129c6565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150506015805460ff60a01b19169055505050565b6000826123a557506000610ae9565b828202828482816123b257fe5b04146121fe5760405162461bcd60e51b8152600401808060200182810382526021815260200180612f036021913960400191505060405180910390fd5b806123fc576123fc612ac4565b6001600160a01b03841660009081526007602052604090205460ff16801561243d57506001600160a01b03831660009081526007602052604090205460ff16155b156124525761244d848484612af6565b612550565b6001600160a01b03841660009081526007602052604090205460ff1615801561249357506001600160a01b03831660009081526007602052604090205460ff165b156124a35761244d848484612c1a565b6001600160a01b03841660009081526007602052604090205460ff161580156124e557506001600160a01b03831660009081526007602052604090205460ff16155b156124f55761244d848484612cc3565b6001600160a01b03841660009081526007602052604090205460ff16801561253557506001600160a01b03831660009081526007602052604090205460ff165b156125455761244d848484612d07565b612550848484612cc3565b8061255d5761255d612d7a565b50505050565b600a546009546000918291825b6008548110156126945782600360006008848154811061258c57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806125f157508160046000600884815481106125ca57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561260857600a54600954945094505050506126c2565b612648600360006008848154811061261c57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906122ae565b925061268a600460006008848154811061265e57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906122ae565b9150600101612570565b50600954600a546126a4916121bc565b8210156126bc57600a546009549350935050506126c2565b90925090505b9091565b600081836127155760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561215657818101518382015260200161213e565b50600083858161272157fe5b0495945050505050565b60008060008061273a85612d88565b9050600061274786612da4565b90506000612759826120e389866122ae565b979296509094509092505050565b60008080806127768886612396565b905060006127848887612396565b905060006127928888612396565b905060006127a4826120e386866122ae565b939b939a50919850919650505050505050565b604080516002808252606080830184529260208301908036833701905050905030816000815181106127e557fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561285e57600080fd5b505afa158015612872573d6000803e3d6000fd5b505050506040513d602081101561288857600080fd5b505181518290600190811061289957fe5b60200260200101906001600160a01b031690816001600160a01b0316815250506128e4307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611db6565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612989578181015183820152602001612971565b505050509050019650505050505050600060405180830381600087803b1580156129b257600080fd5b505af11580156120fa573d6000803e3d6000fd5b6129f1307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611db6565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d719823085600080612a2e6115a2565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b158015612a9957600080fd5b505af1158015612aad573d6000803e3d6000fd5b50505050506040513d606081101561255d57600080fd5b601154158015612ad45750601354155b15612ade57612af4565b6011805460125560138054601455600091829055555b565b600080600080600080612b088761225f565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612b3a90886122ae565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612b6990876122ae565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612b989086612205565b6001600160a01b038916600090815260036020526040902055612bba81612dc0565b612bc48483612e49565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080612c2c8761225f565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612c5e90876122ae565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612c949084612205565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612b989086612205565b600080600080600080612cd58761225f565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612b6990876122ae565b600080600080600080612d198761225f565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612d4b90886122ae565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612c5e90876122ae565b601254601155601454601355565b6000610ae960646120686011548561239690919063ffffffff16565b6000610ae960646120686013548561239690919063ffffffff16565b6000612dca612199565b90506000612dd88383612396565b30600090815260036020526040902054909150612df59082612205565b3060009081526003602090815260408083209390935560079052205460ff1615612e445730600090815260046020526040902054612e339084612205565b306000908152600460205260409020555b505050565b600a54612e5690836122ae565b600a55600b54612e669082612205565b600b55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220685695da5d69eaf063885cdd7dc5d31f28155fa2ee253ef26942ca09ca2484b764736f6c634300060c0033

Deployed Bytecode Sourcemap

26904:19868:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34470:98;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34470:98:0;;:::i;:::-;;29405:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30317:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30317:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;31438:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;27922:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;27922:51:0;;;;;;;;;;;;;;29682:95;;;;;;;;;;;;;:::i;30486:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30486:313:0;;;;;;;;;;;;;;;;;:::i;32362:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32362:253:0;;:::i;46060:97::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46060:97:0;-1:-1:-1;;;;;46060:97:0;;:::i;29591:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27577:34;;;;;;;;;;;;;:::i;33078:479::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33078:479:0;-1:-1:-1;;;;;33078:479:0;;:::i;30807:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30807:218:0;;;;;;;;:::i;27734:26::-;;;;;;;;;;;;;:::i;31533:377::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31533:377:0;;:::i;34225:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34225:111:0;-1:-1:-1;;;;;34225:111:0;;:::i;31918:436::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31918:436:0;;;;;;;;;:::i;27980:38::-;;;;;;;;;;;;;:::i;28147:40::-;;;;;;;;;;;;;:::i;46370:397::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;46370:397:0;;;;;;;;;;;;;;;;;:::i;32623:447::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32623:447:0;-1:-1:-1;;;;;32623:447:0;;:::i;38194:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38194:123:0;-1:-1:-1;;;;;38194:123:0;;:::i;45939:116::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45939:116:0;;:::i;27821:32::-;;;;;;;;;;;;;:::i;29785:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29785:198:0;-1:-1:-1;;;;;29785:198:0;;:::i;17499:148::-;;;;;;;;;;;;;:::i;28024:82::-;;;;;;;;;;;;;:::i;31310:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31310:120:0;-1:-1:-1;;;;;31310:120:0;;:::i;16856:79::-;;;;;;;;;;;;;:::i;34580:122::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34580:122:0;;:::i;29496:87::-;;;;;;;;;;;;;:::i;46262:103::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46262:103:0;;:::i;31033:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31033:269:0;;;;;;;;:::i;18509:293::-;;;;;;;;;;;;;:::i;29991:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29991:167:0;;;;;;;;:::i;18054:89::-;;;;;;;;;;;;;:::i;34710:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34710:171:0;;;;:::i;18219:214::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18219:214:0;;:::i;30166:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30166:143:0;;;;;;;;;;:::i;42281:536::-;;;;;;;;;;;;;:::i;34348:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34348:110:0;-1:-1:-1;;;;;34348:110:0;;:::i;27539:34::-;;;;;;;;;;;;;:::i;17802:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17802:244:0;-1:-1:-1;;;;;17802:244:0;;:::i;46163:96::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46163:96:0;;:::i;34470:98::-;17078:12;:10;:12::i;:::-;17068:6;;-1:-1:-1;;;;;17068:6:0;;;:22;;;17060:67;;;;;-1:-1:-1;;;17060:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17060:67:0;;;;;;;;;;;;;;;34544:7:::1;:16:::0;34470:98::o;29405:83::-;29475:5;29468:12;;;;;;;;-1:-1:-1;;29468:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29442:13;;29468:12;;29475:5;;29468:12;;29475:5;29468:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29405:83;:::o;30317:161::-;30392:4;30409:39;30418:12;:10;:12::i;:::-;30432:7;30441:6;30409:8;:39::i;:::-;-1:-1:-1;30466:4:0;30317:161;;;;;:::o;31438:87::-;31507:10;;31438:87;:::o;27922:51::-;;;:::o;29682:95::-;29762:7;;29682:95;:::o;30486:313::-;30584:4;30601:36;30611:6;30619:9;30630:6;30601:9;:36::i;:::-;30648:121;30657:6;30665:12;:10;:12::i;:::-;30679:89;30717:6;30679:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30679:19:0;;;;;;:11;:19;;;;;;30699:12;:10;:12::i;:::-;-1:-1:-1;;;;;30679:33:0;;;;;;;;;;;;-1:-1:-1;30679:33:0;;;:89;:37;:89::i;:::-;30648:8;:121::i;:::-;-1:-1:-1;30787:4:0;30486:313;;;;;:::o;32362:253::-;32428:7;32467;;32456;:18;;32448:73;;;;-1:-1:-1;;;32448:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32532:19;32555:10;:8;:10::i;:::-;32532:33;-1:-1:-1;32583:24:0;:7;32532:33;32583:11;:24::i;:::-;32576:31;;;32362:253;;;;:::o;46060:97::-;17078:12;:10;:12::i;:::-;17068:6;;-1:-1:-1;;;;;17068:6:0;;;:22;;;17060:67;;;;;-1:-1:-1;;;17060:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17060:67:0;;;;;;;;;;;;;;;46127:13:::1;:25:::0;;-1:-1:-1;;;;;;46127:25:0::1;-1:-1:-1::0;;;;;46127:25:0;;;::::1;::::0;;;::::1;::::0;;46060:97::o;29591:83::-;29657:9;;;;29591:83;:::o;27577:34::-;;;;:::o;33078:479::-;17078:12;:10;:12::i;:::-;17068:6;;-1:-1:-1;;;;;17068:6:0;;;:22;;;17060:67;;;;;-1:-1:-1;;;17060:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17060:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33160:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33152:60;;;::::0;;-1:-1:-1;;;33152:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;33228:9;33223:327;33247:9;:16:::0;33243:20;::::1;33223:327;;;33305:7;-1:-1:-1::0;;;;;33289:23:0::1;:9;33299:1;33289:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;33289:12:0::1;:23;33285:254;;;33348:9;33358:16:::0;;-1:-1:-1;;33358:20:0;;;33348:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;33333:9:::1;:12:::0;;-1:-1:-1;;;;;33348:31:0;;::::1;::::0;33343:1;;33333:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;33333:46:0::1;-1:-1:-1::0;;;;;33333:46:0;;::::1;;::::0;;33398:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;33437:11:::1;:20:::0;;;;:28;;-1:-1:-1;;33437:28:0::1;::::0;;33484:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;33484:15:0;;;;;-1:-1:-1;;;;;;33484:15:0::1;::::0;;;;;33518:5:::1;;33285:254;33265:3;;33223:327;;;;33078:479:::0;:::o;30807:218::-;30895:4;30912:83;30921:12;:10;:12::i;:::-;30935:7;30944:50;30983:10;30944:11;:25;30956:12;:10;:12::i;:::-;-1:-1:-1;;;;;30944:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30944:25:0;;;:34;;;;;;;;;;;:38;:50::i;27734:26::-;;;;:::o;31533:377::-;31585:14;31602:12;:10;:12::i;:::-;-1:-1:-1;;;;;31634:19:0;;;;;;:11;:19;;;;;;31585:29;;-1:-1:-1;31634:19:0;;31633:20;31625:77;;;;-1:-1:-1;;;31625:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31714:15;31738:19;31749:7;31738:10;:19::i;:::-;-1:-1:-1;;;;;;;;;31786:15:0;;;;;;:7;:15;;;;;;31713:44;;-1:-1:-1;31786:28:0;;:15;-1:-1:-1;31713:44:0;31786:19;:28::i;:::-;-1:-1:-1;;;;;31768:15:0;;;;;;:7;:15;;;;;:46;31835:7;;:20;;31847:7;31835:11;:20::i;:::-;31825:7;:30;31879:10;;:23;;31894:7;31879:14;:23::i;:::-;31866:10;:36;-1:-1:-1;;;31533:377:0:o;34225:111::-;17078:12;:10;:12::i;:::-;17068:6;;-1:-1:-1;;;;;17068:6:0;;;:22;;;17060:67;;;;;-1:-1:-1;;;17060:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17060:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;34294:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;34294:34:0::1;34324:4;34294:34;::::0;;34225:111::o;31918:436::-;32008:7;32047;;32036;:18;;32028:62;;;;;-1:-1:-1;;;32028:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;32106:17;32101:246;;32141:15;32165:19;32176:7;32165:10;:19::i;:::-;-1:-1:-1;32140:44:0;;-1:-1:-1;32199:14:0;;-1:-1:-1;;;;;32199:14:0;32101:246;32248:23;32279:19;32290:7;32279:10;:19::i;:::-;-1:-1:-1;32246:52:0;;-1:-1:-1;32313:22:0;;-1:-1:-1;;;;;32313:22:0;27980:38;;;:::o;28147:40::-;;;-1:-1:-1;;;28147:40:0;;;;;:::o;46370:397::-;46486:4;17078:12;:10;:12::i;:::-;17068:6;;-1:-1:-1;;;;;17068:6:0;;;:22;;;17060:67;;;;;-1:-1:-1;;;17060:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17060:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;46511:30:0;::::1;46536:4;46511:30;;46503:64;;;::::0;;-1:-1:-1;;;46503:64:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;46503:64:0;;;;;;;;;;;;;::::1;;46597:13;-1:-1:-1::0;;;;;46580:30:0::1;:13;-1:-1:-1::0;;;;;46580:30:0::1;;;46572:62;;;::::0;;-1:-1:-1;;;46572:62:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;46572:62:0;;;;;;;;;;;;;::::1;;46652:13;-1:-1:-1::0;;;;;46645:30:0::1;;46676:10;46688:7;46645:51;;;;;;;;;;;;;-1:-1:-1::0;;;;;46645:51:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;46755:4:0::1;::::0;46370:397;-1:-1:-1;;;;;46370:397:0:o;32623:447::-;17078:12;:10;:12::i;:::-;17068:6;;-1:-1:-1;;;;;17068:6:0;;;:22;;;17060:67;;;;;-1:-1:-1;;;17060:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17060:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32820:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;32819:21;32811:61;;;::::0;;-1:-1:-1;;;32811:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;32886:16:0;::::1;32905:1;32886:16:::0;;;:7:::1;:16;::::0;;;;;:20;32883:108:::1;;-1:-1:-1::0;;;;;32962:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;32942:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;32923:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;32883:108:::1;-1:-1:-1::0;;;;;33001:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;33001:27:0::1;33024:4;33001:27:::0;;::::1;::::0;;;33039:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;33039:23:0::1;::::0;;::::1;::::0;;32623:447::o;38194:123::-;-1:-1:-1;;;;;38282:27:0;38258:4;38282:27;;;:18;:27;;;;;;;;;38194:123::o;45939:116::-;17078:12;:10;:12::i;:::-;17068:6;;-1:-1:-1;;;;;17068:6:0;;;:22;;;17060:67;;;;;-1:-1:-1;;;17060:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17060:67:0;;;;;;;;;;;;;;;46009:29:::1;:38:::0;45939:116::o;27821:32::-;;;;:::o;29785:198::-;-1:-1:-1;;;;;29875:20:0;;29851:7;29875:20;;;:11;:20;;;;;;;;29871:49;;;-1:-1:-1;;;;;;29904:16:0;;;;;;:7;:16;;;;;;29897:23;;29871:49;-1:-1:-1;;;;;29958:16:0;;;;;;:7;:16;;;;;;29938:37;;:19;:37::i;17499:148::-;17078:12;:10;:12::i;:::-;17068:6;;-1:-1:-1;;;;;17068:6:0;;;:22;;;17060:67;;;;;-1:-1:-1;;;17060:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17060:67:0;;;;;;;;;;;;;;;17606:1:::1;17590:6:::0;;17569:40:::1;::::0;-1:-1:-1;;;;;17590:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;17569:40:0;17606:1;;17569:40:::1;17637:1;17620:19:::0;;-1:-1:-1;;;;;;17620:19:0::1;::::0;;17499:148::o;28024:82::-;;;-1:-1:-1;;;;;28024:82:0;;:::o;31310:120::-;-1:-1:-1;;;;;31402:20:0;31378:4;31402:20;;;:11;:20;;;;;;;;;31310:120::o;16856:79::-;16894:7;16921:6;-1:-1:-1;;;;;16921:6:0;16856:79;:::o;34580:122::-;17078:12;:10;:12::i;:::-;17068:6;;-1:-1:-1;;;;;17068:6:0;;;:22;;;17060:67;;;;;-1:-1:-1;;;17060:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17060:67:0;;;;;;;;;;;;;;;34666:13:::1;:28:::0;34580:122::o;29496:87::-;29568:7;29561:14;;;;;;;;-1:-1:-1;;29561:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29535:13;;29561:14;;29568:7;;29561:14;;29568:7;29561:14;;;;;;;;;;;;;;;;;;;;;;;;46262:103;17078:12;:10;:12::i;:::-;17068:6;;-1:-1:-1;;;;;17068:6:0;;;:22;;;17060:67;;;;;-1:-1:-1;;;17060:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17060:67:0;;;;;;;;;;;;;;;46333:15:::1;:24:::0;46262:103::o;31033:269::-;31126:4;31143:129;31152:12;:10;:12::i;:::-;31166:7;31175:96;31214:15;31175:96;;;;;;;;;;;;;;;;;:11;:25;31187:12;:10;:12::i;:::-;-1:-1:-1;;;;;31175:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;31175:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;18509:293::-;18561:14;;-1:-1:-1;;;;;18561:14:0;18579:10;18561:28;18553:76;;;;-1:-1:-1;;;18553:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18654:9;;18648:3;:15;18640:60;;;;;-1:-1:-1;;;18640:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18745:14;;;18737:6;;18716:44;;-1:-1:-1;;;;;18745:14:0;;;;18737:6;;;;-1:-1:-1;;;;;;;;;;;18716:44:0;;18780:14;;;18771:23;;-1:-1:-1;;;;;;18771:23:0;-1:-1:-1;;;;;18780:14:0;;;18771:23;;;;;;18509:293::o;29991:167::-;30069:4;30086:42;30096:12;:10;:12::i;:::-;30110:9;30121:6;30086:9;:42::i;18054:89::-;18126:9;;18054:89;:::o;34710:171::-;17078:12;:10;:12::i;:::-;17068:6;;-1:-1:-1;;;;;17068:6:0;;;:22;;;17060:67;;;;;-1:-1:-1;;;17060:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17060:67:0;;;;;;;;;;;;;;;34787:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;34787:32:0;::::1;-1:-1:-1::0;;;;34787:32:0;;::::1;::::0;;;::::1;::::0;;;34835:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;34710:171:::0;:::o;18219:214::-;17078:12;:10;:12::i;:::-;17068:6;;-1:-1:-1;;;;;17068:6:0;;;:22;;;17060:67;;;;;-1:-1:-1;;;17060:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17060:67:0;;;;;;;;;;;;;;;18300:6:::1;::::0;;;18283:23;;-1:-1:-1;;;;;;18283:23:0;;::::1;-1:-1:-1::0;;;;;18300:6:0;::::1;18283:23;::::0;;;18317:19:::1;::::0;;18359:3:::1;:10:::0;::::1;18347:9;:22:::0;18385:40:::1;::::0;18300:6;;-1:-1:-1;;;;;;;;;;;18385:40:0;18300:6;;18385:40:::1;18219:214:::0;:::o;30166:143::-;-1:-1:-1;;;;;30274:18:0;;;30247:7;30274:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;30166:143::o;42281:536::-;17078:12;:10;:12::i;:::-;17068:6;;-1:-1:-1;;;;;17068:6:0;;;:22;;;17060:67;;;;;-1:-1:-1;;;17060:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17060:67:0;;;;;;;;;;;;;;;42415:16:::1;::::0;;42429:1:::1;42415:16:::0;;;42391:21:::1;42415:16:::0;;::::1;::::0;;42391:21;42415:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;42415:16:0::1;42391:40;;42452:15;-1:-1:-1::0;;;;;42452:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;42452:22:0;42442:7;;:4;;42447:1:::1;::::0;42442:7:::1;;;;;;;;;:32;-1:-1:-1::0;;;;;42442:32:0::1;;;-1:-1:-1::0;;;;;42442:32:0::1;;;::::0;::::1;42497:4;42479;42484:1;42479:7;;;;;;;;;;;;;:23;-1:-1:-1::0;;;;;42479:23:0::1;;;-1:-1:-1::0;;;;;42479:23:0::1;;;::::0;::::1;42509:18;42530:21;42509:42;;42589:15;-1:-1:-1::0;;;;;42589:66:0::1;;42663:10;42689:1;42736:4;42763;42783:15;42589:220;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;42589:220:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;17138:1;;42281:536::o:0;34348:110::-;17078:12;:10;:12::i;:::-;17068:6;;-1:-1:-1;;;;;17068:6:0;;;:22;;;17060:67;;;;;-1:-1:-1;;;17060:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17060:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;34415:27:0::1;34445:5;34415:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;34415:35:0::1;::::0;;34348:110::o;27539:34::-;;;;:::o;17802:244::-;17078:12;:10;:12::i;:::-;17068:6;;-1:-1:-1;;;;;17068:6:0;;;:22;;;17060:67;;;;;-1:-1:-1;;;17060:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17060:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;17891:22:0;::::1;17883:73;;;;-1:-1:-1::0;;;17883:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17993:6;::::0;;17972:38:::1;::::0;-1:-1:-1;;;;;17972:38:0;;::::1;::::0;17993:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;17972:38:0;::::1;18021:6;:17:::0;;-1:-1:-1;;;;;;18021:17:0::1;-1:-1:-1::0;;;;;18021:17:0;;;::::1;::::0;;;::::1;::::0;;17802:244::o;46163:96::-;17078:12;:10;:12::i;:::-;17068:6;;-1:-1:-1;;;;;17068:6:0;;;:22;;;17060:67;;;;;-1:-1:-1;;;17060:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17060:67:0;;;;;;;;;;;;;;;46227:15:::1;:24:::0;46163:96::o;9264:106::-;9352:10;9264:106;:::o;38325:337::-;-1:-1:-1;;;;;38418:19:0;;38410:68;;;;-1:-1:-1;;;38410:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38497:21:0;;38489:68;;;;-1:-1:-1;;;38489:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38570:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;38622:32;;;;;;;;;;;;;;;;;38325:337;;;:::o;38670:2015::-;-1:-1:-1;;;;;38792:18:0;;38784:68;;;;-1:-1:-1;;;38784:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38871:16:0;;38863:64;;;;-1:-1:-1;;;38863:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38955:1;38946:6;:10;38938:64;;;;-1:-1:-1;;;38938:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39297:28;39328:24;39346:4;39328:9;:24::i;:::-;39424:29;;39297:55;;-1:-1:-1;39400:53:0;;;;;;;39482;;-1:-1:-1;39519:16:0;;-1:-1:-1;;;39519:16:0;;;;39518:17;39482:53;:91;;;;;39560:13;-1:-1:-1;;;;;39552:21:0;:4;-1:-1:-1;;;;;39552:21:0;;;39482:91;:129;;;;-1:-1:-1;39590:21:0;;-1:-1:-1;;;39590:21:0;;;;39482:129;39464:318;;;39661:29;;39638:52;;39734:36;39749:20;39734:14;:36::i;:::-;-1:-1:-1;;;;;39990:24:0;;39863:12;39990:24;;;:18;:24;;;;;;39878:4;;39990:24;;;:50;;-1:-1:-1;;;;;;40018:22:0;;;;;;:18;:22;;;;;;;;39990:50;39987:557;;;-1:-1:-1;40066:5:0;39987:557;;;40139:15;40157:38;40189:5;40157:27;40168:15;;40157:6;:10;;:27;;;;:::i;:::-;:31;;:38::i;:::-;40139:56;;40201:19;40223:38;40255:5;40223:27;40234:15;;40223:6;:10;;:27;;;;:::i;:38::-;40201:60;;40299:48;40314:4;40319:13;40333:7;40341:5;40299:14;:48::i;:::-;40405:13;;40385:52;;40400:4;;-1:-1:-1;;;;;40405:13:0;40419:11;40405:13;40385:14;:52::i;:::-;40502:36;40526:11;40502:19;:6;40513:7;40502:10;:19::i;:::-;:23;;:36::i;:::-;40493:45;;39987:557;;;40639:38;40654:4;40659:2;40662:6;40669:7;40639:14;:38::i;:::-;38670:2015;;;;;;:::o;5674:192::-;5760:7;5796:12;5788:6;;;;5780:29;;;;-1:-1:-1;;;5780:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5832:5:0;;;5674:192::o;36344:163::-;36385:7;36406:15;36423;36442:19;:17;:19::i;:::-;36405:56;;-1:-1:-1;36405:56:0;-1:-1:-1;36479:20:0;36405:56;;36479:11;:20::i;:::-;36472:27;;;;36344:163;:::o;7072:132::-;7130:7;7157:39;7161:1;7164;7157:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;7150:46;7072:132;-1:-1:-1;;;7072:132:0:o;4771:181::-;4829:7;4861:5;;;4885:6;;;;4877:46;;;;;-1:-1:-1;;;4877:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;35142:419;35201:7;35210;35219;35228;35237;35246;35267:23;35292:12;35306:18;35328:20;35340:7;35328:11;:20::i;:::-;35266:82;;;;;;35360:15;35377:23;35402:12;35418:50;35430:7;35439:4;35445:10;35457;:8;:10::i;:::-;35418:11;:50::i;:::-;35359:109;;;;-1:-1:-1;35359:109:0;;-1:-1:-1;35519:15:0;;-1:-1:-1;35536:4:0;;-1:-1:-1;35542:10:0;;-1:-1:-1;35142:419:0;;-1:-1:-1;;;;;35142:419:0:o;5235:136::-;5293:7;5320:43;5324:1;5327;5320:43;;;;;;;;;;;;;;;;;:3;:43::i;40693:985::-;28568:16;:23;;-1:-1:-1;;;;28568:23:0;-1:-1:-1;;;28568:23:0;;;;40844:27:::1;:20:::0;40869:1:::1;40844:24;:27::i;:::-;40829:42:::0;-1:-1:-1;40882:17:0::1;40902:30;:20:::0;40829:42;40902:24:::1;:30::i;:::-;40882:50:::0;-1:-1:-1;41235:21:0::1;41301:22;41318:4:::0;41301:16:::1;:22::i;:::-;41454:18;41475:41;:21;41501:14:::0;41475:25:::1;:41::i;:::-;41454:62;;41566:35;41579:9;41590:10;41566:12;:35::i;:::-;41627:43;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;;28614:16:0;:24;;-1:-1:-1;;;;28614:24:0;;;-1:-1:-1;;;40693:985:0:o;6125:471::-;6183:7;6428:6;6424:47;;-1:-1:-1;6458:1:0;6451:8;;6424:47;6495:5;;;6499:1;6495;:5;:1;6519:5;;;;;:10;6511:56;;;;-1:-1:-1;;;6511:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43419:834;43530:7;43526:40;;43552:14;:12;:14::i;:::-;-1:-1:-1;;;;;43591:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;43615:22:0;;;;;;:11;:22;;;;;;;;43614:23;43591:46;43587:597;;;43654:48;43676:6;43684:9;43695:6;43654:21;:48::i;:::-;43587:597;;;-1:-1:-1;;;;;43725:19:0;;;;;;:11;:19;;;;;;;;43724:20;:46;;;;-1:-1:-1;;;;;;43748:22:0;;;;;;:11;:22;;;;;;;;43724:46;43720:464;;;43787:46;43807:6;43815:9;43826:6;43787:19;:46::i;43720:464::-;-1:-1:-1;;;;;43856:19:0;;;;;;:11;:19;;;;;;;;43855:20;:47;;;;-1:-1:-1;;;;;;43880:22:0;;;;;;:11;:22;;;;;;;;43879:23;43855:47;43851:333;;;43919:44;43937:6;43945:9;43956:6;43919:17;:44::i;43851:333::-;-1:-1:-1;;;;;43985:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;44008:22:0;;;;;;:11;:22;;;;;;;;43985:45;43981:203;;;44047:48;44069:6;44077:9;44088:6;44047:21;:48::i;43981:203::-;44128:44;44146:6;44154:9;44165:6;44128:17;:44::i;:::-;44208:7;44204:41;;44230:15;:13;:15::i;:::-;43419:834;;;;:::o;36515:561::-;36612:7;;36648;;36565;;;;;36672:289;36696:9;:16;36692:20;;36672:289;;;36762:7;36738;:21;36746:9;36756:1;36746:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36746:12:0;36738:21;;;;;;;;;;;;;:31;;:66;;;36797:7;36773;:21;36781:9;36791:1;36781:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36781:12:0;36773:21;;;;;;;;;;;;;:31;36738:66;36734:97;;;36814:7;;36823;;36806:25;;;;;;;;;36734:97;36856:34;36868:7;:21;36876:9;36886:1;36876:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36876:12:0;36868:21;;;;;;;;;;;;;36856:7;;:11;:34::i;:::-;36846:44;;36915:34;36927:7;:21;36935:9;36945:1;36935:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36935:12:0;36927:21;;;;;;;;;;;;;36915:7;;:11;:34::i;:::-;36905:44;-1:-1:-1;36714:3:0;;36672:289;;;-1:-1:-1;36997:7:0;;36985;;:20;;:11;:20::i;:::-;36975:7;:30;36971:61;;;37015:7;;37024;;37007:25;;;;;;;;36971:61;37051:7;;-1:-1:-1;37060:7:0;-1:-1:-1;36515:561:0;;;:::o;7700:278::-;7786:7;7821:12;7814:5;7806:28;;;;-1:-1:-1;;;7806:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7845:9;7861:1;7857;:5;;;;;;;7700:278;-1:-1:-1;;;;;7700:278:0:o;35569:330::-;35629:7;35638;35647;35667:12;35682:24;35698:7;35682:15;:24::i;:::-;35667:39;;35717:18;35738:30;35760:7;35738:21;:30::i;:::-;35717:51;-1:-1:-1;35779:23:0;35805:33;35717:51;35805:17;:7;35817:4;35805:11;:17::i;:33::-;35779:59;35874:4;;-1:-1:-1;35880:10:0;;-1:-1:-1;35569:330:0;;-1:-1:-1;;;35569:330:0:o;35907:429::-;36022:7;;;;36078:24;:7;36090:11;36078;:24::i;:::-;36060:42;-1:-1:-1;36113:12:0;36128:21;:4;36137:11;36128:8;:21::i;:::-;36113:36;-1:-1:-1;36160:18:0;36181:27;:10;36196:11;36181:14;:27::i;:::-;36160:48;-1:-1:-1;36219:23:0;36245:33;36160:48;36245:17;:7;36257:4;36245:11;:17::i;:33::-;36297:7;;;;-1:-1:-1;36323:4:0;;-1:-1:-1;35907:429:0;;-1:-1:-1;;;;;;;35907:429:0:o;41686:589::-;41836:16;;;41850:1;41836:16;;;41812:21;41836:16;;;;;41812:21;41836:16;;;;;;;;;;-1:-1:-1;41836:16:0;41812:40;;41881:4;41863;41868:1;41863:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;41863:23:0;;;-1:-1:-1;;;;;41863:23:0;;;;;41907:15;-1:-1:-1;;;;;41907:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41907:22:0;41897:7;;:4;;41902:1;;41897:7;;;;;;;;;;;:32;-1:-1:-1;;;;;41897:32:0;;;-1:-1:-1;;;;;41897:32:0;;;;;41942:62;41959:4;41974:15;41992:11;41942:8;:62::i;:::-;42043:15;-1:-1:-1;;;;;42043:66:0;;42124:11;42150:1;42194:4;42221;42241:15;42043:224;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42043:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42825:513;42973:62;42990:4;43005:15;43023:11;42973:8;:62::i;:::-;43078:15;-1:-1:-1;;;;;43078:31:0;;43117:9;43150:4;43170:11;43196:1;43239;43282:7;:5;:7::i;:::-;43304:15;43078:252;;;;;;;;;;;;;-1:-1:-1;;;;;43078:252:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43078:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37795:250;37841:7;;:12;:34;;;;-1:-1:-1;37857:13:0;;:18;37841:34;37838:46;;;37877:7;;37838:46;37922:7;;;37904:15;:25;37964:13;;;37940:21;:37;-1:-1:-1;37998:11:0;;;;38020:17;37795:250;:::o;45365:566::-;45468:15;45485:23;45510:12;45524:23;45549:12;45563:18;45585:19;45596:7;45585:10;:19::i;:::-;-1:-1:-1;;;;;45633:15:0;;;;;;:7;:15;;;;;;45467:137;;-1:-1:-1;45467:137:0;;-1:-1:-1;45467:137:0;;-1:-1:-1;45467:137:0;-1:-1:-1;45467:137:0;-1:-1:-1;45467:137:0;-1:-1:-1;45633:28:0;;45653:7;45633:19;:28::i;:::-;-1:-1:-1;;;;;45615:15:0;;;;;;:7;:15;;;;;;;;:46;;;;45690:7;:15;;;;:28;;45710:7;45690:19;:28::i;:::-;-1:-1:-1;;;;;45672:15:0;;;;;;;:7;:15;;;;;;:46;;;;45750:18;;;;;;;:39;;45773:15;45750:22;:39::i;:::-;-1:-1:-1;;;;;45729:18:0;;;;;;:7;:18;;;;;:60;45803:26;45818:10;45803:14;:26::i;:::-;45840:23;45852:4;45858;45840:11;:23::i;:::-;45896:9;-1:-1:-1;;;;;45879:44:0;45888:6;-1:-1:-1;;;;;45879:44:0;;45907:15;45879:44;;;;;;;;;;;;;;;;;;45365:566;;;;;;;;;:::o;44771:586::-;44872:15;44889:23;44914:12;44928:23;44953:12;44967:18;44989:19;45000:7;44989:10;:19::i;:::-;-1:-1:-1;;;;;45037:15:0;;;;;;:7;:15;;;;;;44871:137;;-1:-1:-1;44871:137:0;;-1:-1:-1;44871:137:0;;-1:-1:-1;44871:137:0;-1:-1:-1;44871:137:0;-1:-1:-1;44871:137:0;-1:-1:-1;45037:28:0;;44871:137;45037:19;:28::i;:::-;-1:-1:-1;;;;;45019:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;45097:18;;;;;:7;:18;;;;;:39;;45120:15;45097:22;:39::i;:::-;-1:-1:-1;;;;;45076:18:0;;;;;;:7;:18;;;;;;;;:60;;;;45168:7;:18;;;;:39;;45191:15;45168:22;:39::i;44261:502::-;44360:15;44377:23;44402:12;44416:23;44441:12;44455:18;44477:19;44488:7;44477:10;:19::i;:::-;-1:-1:-1;;;;;44525:15:0;;;;;;:7;:15;;;;;;44359:137;;-1:-1:-1;44359:137:0;;-1:-1:-1;44359:137:0;;-1:-1:-1;44359:137:0;-1:-1:-1;44359:137:0;-1:-1:-1;44359:137:0;-1:-1:-1;44525:28:0;;44359:137;44525:19;:28::i;33567:642::-;33670:15;33687:23;33712:12;33726:23;33751:12;33765:18;33787:19;33798:7;33787:10;:19::i;:::-;-1:-1:-1;;;;;33835:15:0;;;;;;:7;:15;;;;;;33669:137;;-1:-1:-1;33669:137:0;;-1:-1:-1;33669:137:0;;-1:-1:-1;33669:137:0;-1:-1:-1;33669:137:0;-1:-1:-1;33669:137:0;-1:-1:-1;33835:28:0;;33855:7;33835:19;:28::i;:::-;-1:-1:-1;;;;;33817:15:0;;;;;;:7;:15;;;;;;;;:46;;;;33892:7;:15;;;;:28;;33912:7;33892:19;:28::i;38057:125::-;38111:15;;38101:7;:25;38153:21;;38137:13;:37;38057:125::o;37455:154::-;37519:7;37546:55;37585:5;37546:20;37558:7;;37546;:11;;:20;;;;:::i;37617:166::-;37687:7;37714:61;37759:5;37714:26;37726:13;;37714:7;:11;;:26;;;;:::i;37088:355::-;37151:19;37174:10;:8;:10::i;:::-;37151:33;-1:-1:-1;37195:18:0;37216:27;:10;37151:33;37216:14;:27::i;:::-;37295:4;37279:22;;;;:7;:22;;;;;;37195:48;;-1:-1:-1;37279:38:0;;37195:48;37279:26;:38::i;:::-;37270:4;37254:22;;;;:7;:22;;;;;;;;:63;;;;37331:11;:26;;;;;;37328:107;;;37413:4;37397:22;;;;:7;:22;;;;;;:38;;37424:10;37397:26;:38::i;:::-;37388:4;37372:22;;;;:7;:22;;;;;:63;37328:107;37088:355;;;:::o;34987:147::-;35065:7;;:17;;35077:4;35065:11;:17::i;:::-;35055:7;:27;35106:10;;:20;;35121:4;35106:14;:20::i;:::-;35093:10;:33;-1:-1:-1;;34987:147:0:o

Swarm Source

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