ETH Price: $2,829.67 (-7.34%)
Gas: 7 Gwei

Token

Serbian Cave Hermit (SerbianCaveHermit)
 

Overview

Max Total Supply

15,000,000,000 SerbianCaveHermit

Holders

345

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
2 SerbianCaveHermit

Value
$0.00
0x52B4eb1384Ab6f378f2f5f970542B5277A5e6B4A
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:
SERBIAN

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-13
*/

/**
  Serbian Cave Hermit 2021
     */

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,
        uint256
    );

    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(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

    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,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 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 (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 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 (uint256);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    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 (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 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,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is Ownable {
    event Pause();
    event Unpause();

    bool public paused = false;

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     */
    modifier whenNotPaused() {
        require(!paused);
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     */
    modifier whenPaused() {
        require(paused);
        _;
    }

    /**
     * @dev called by the owner to pause, triggers stopped state
     */
    function pause() public onlyOwner whenNotPaused {
        paused = true;
        emit Pause();
    }

    /**
     * @dev called by the owner to unpause, returns to normal state
     */
    function unpause() public onlyOwner whenPaused {
        paused = false;
        emit Unpause();
    }
}

contract SERBIAN is Context, IERC20, Ownable, Pausable {
    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;
    mapping(address => bool) private _isBlackListedBot;
    address[] private _blackListedBots;

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

    string private _name = "Serbian Cave Hermit";
    string private _symbol = "SerbianCaveHermit";
    uint8 private _decimals = 9;

    uint256 public _taxFee = 0;
    uint256 private _previousTaxFee = _taxFee;

    uint256 public _liquidityFee = 11;
    uint256 private _previousLiquidityFee = _liquidityFee;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;
    address payable public _charityWalletAddress;
    address payable public _marketingWalletAddress;
    address payable public _devWalletAddress;

    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;

    uint256 public _maxTxAmount = 4 * 10**9 * 10**9;    
    uint256 private numTokensSellToAddToLiquidity = 4 * 10**7 * 10**9;

    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event DistributeRewards(
        uint256 charityPercentage,
        uint256 mmPercentage,
        uint256 devPercentage
    );

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

    constructor(
        address payable charityWalletAddress,
        address payable marketingWalletAddress,
        address payable devWalletAddress
    ) public {
        _charityWalletAddress = charityWalletAddress;
        _marketingWalletAddress = marketingWalletAddress;
        _devWalletAddress = devWalletAddress;
        _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;

        //blacklist bots

        _isBlackListedBot[
            address(0x3DAd8cf200799F82fD8eb68f608220d8f3eBF8De)
        ] = true;
        _blackListedBots.push(
            address(0x3DAd8cf200799F82fD8eb68f608220d8f3eBF8De)
        );

        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 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 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 addBotToBlacklist(address account) external onlyOwner() {
        require(
            account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D,
            "We cannot blacklist UniSwap router"
        );
        require(!_isBlackListedBot[account], "Account is already blacklisted");
        _isBlackListedBot[account] = true;
        _blackListedBots.push(account);
    }

    function removeBotFromBlacklist(address account) external onlyOwner() {
        require(_isBlackListedBot[account], "Account is not blacklisted");
        for (uint256 i = 0; i < _blackListedBots.length; i++) {
            if (_blackListedBots[i] == account) {
                _blackListedBots[i] = _blackListedBots[
                    _blackListedBots.length - 1
                ];
                _isBlackListedBot[account] = false;
                _blackListedBots.pop();
                break;
            }
        }
    }

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

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

    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 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 setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() {
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(10**2);
    }

    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 _setCharityWallet(address payable charityWalletAddress)
        external
        onlyOwner()
    {
        _charityWalletAddress = charityWalletAddress;
    }

    function sendETHToCharity(uint256 amount) private {
        swapTokensForEth(amount);
        _charityWalletAddress.transfer(address(this).balance);
    }

    function _setMarketingWallet(address payable marketingWalletAddress)
        external
        onlyOwner()
    {
        _marketingWalletAddress = marketingWalletAddress;
    }

    function sendETHToMarketing(uint256 amount) private {
        swapTokensForEth(amount);
        _marketingWalletAddress.transfer(address(this).balance);
    }

    function _setDevWallet(address payable devWalletAddress)
        external
        onlyOwner()
    {
        _devWalletAddress = devWalletAddress;
    }

    function sendETHToDev(uint256 amount) private {
        swapTokensForEth(amount);
        _devWalletAddress.transfer(address(this).balance);
    }

    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");
        require(!_isBlackListedBot[to], "You are blacklisted");
        require(!_isBlackListedBot[msg.sender], "You are blacklisted");
        require(!_isBlackListedBot[tx.origin], "You are blacklisted");
        if (from != owner() && to != owner())
            require(
                amount <= _maxTxAmount,
                "Transfer amount exceeds the maxTxAmount."
            );

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

        if (contractTokenBalance >= _maxTxAmount) {
            contractTokenBalance = _maxTxAmount;
        }

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

        //transfer amount, it will take tax, burn, liquidity fee
        _tokenTransfer(from, to, amount, takeFee);
    }

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 charityPercentage = contractTokenBalance.div(10000).mul(1875);
        uint256 devPercentage = contractTokenBalance.div(1000).mul(375);
        uint256 mmPercentage = contractTokenBalance.div(10000).mul(4375);

        //send ETH to specified wallets
        sendETHToCharity(charityPercentage);
        sendETHToMarketing(mmPercentage);
        sendETHToDev(devPercentage);

        emit DistributeRewards(charityPercentage, mmPercentage, devPercentage);
    }

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

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"charityWalletAddress","type":"address"},{"internalType":"address payable","name":"marketingWalletAddress","type":"address"},{"internalType":"address payable","name":"devWalletAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"charityPercentage","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"mmPercentage","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"devPercentage","type":"uint256"}],"name":"DistributeRewards","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":[],"name":"Pause","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"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"inputs":[],"name":"_charityWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_devWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"charityWalletAddress","type":"address"}],"name":"_setCharityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"devWalletAddress","type":"address"}],"name":"_setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"marketingWalletAddress","type":"address"}],"name":"_setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBotToBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBotFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"setRouterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6003805460ff1916905567d02ab486cedc0000600c5567aea3608628cbffff19600d5560c0604052601360808190527f5365726269616e2043617665204865726d69740000000000000000000000000060a09081526200006391600f9190620004ea565b506040805180820190915260118082527014d95c989a585b90d85d9952195c9b5a5d607a1b60209092019182526200009e91601091620004ea565b506011805460ff1916600917905560006012819055601355600b6014819055601555601a805460ff60a81b1916600160a81b179055673782dace9d900000601b55668e1bc9bf040000601c55348015620000f757600080fd5b5060405162003a7538038062003a75833981810160405260608110156200011d57600080fd5b508051602082015160409092015190919060006200013a620004d7565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350601880546001600160a01b038086166001600160a01b03199283161790925560198054858416908316179055601a805492841692909116919091179055600d5460046000620001d2620004d7565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200024957600080fd5b505afa1580156200025e573d6000803e3d6000fd5b505050506040513d60208110156200027557600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b158015620002c657600080fd5b505afa158015620002db573d6000803e3d6000fd5b505050506040513d6020811015620002f257600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200034557600080fd5b505af11580156200035a573d6000803e3d6000fd5b505050506040513d60208110156200037157600080fd5b5051601780546001600160a01b03199081166001600160a01b039384161790915560168054909116918316919091179055600160076000620003b2620004db565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff1995861617905530815260078352908120805484166001908117909155600a9092527f2436ef7a8d6f3c514f206c4d4e0f53020976e858e3bbe4fca72a9ed2f895626780549093168217909255600b805491820181559091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b031916733dad8cf200799f82fd8eb68f608220d8f3ebf8de17905562000480620004d7565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600c546040518082815260200191505060405180910390a35050505062000586565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200052d57805160ff19168380011785556200055d565b828001600101855582156200055d579182015b828111156200055d57825182559160200191906001019062000540565b506200056b9291506200056f565b5090565b5b808211156200056b576000815560010162000570565b6134df80620005966000396000f3fe6080604052600436106102b25760003560e01c80635342acb411610175578063a457c2d7116100dc578063c49b9a8011610095578063dd4670641161006f578063dd46706414610a01578063dd62ed3e14610a2b578063ea2f0b3714610a66578063f2fde38b14610a99576102b9565b8063c49b9a8014610978578063d047e4b7146109a4578063d543dbeb146109d7576102b9565b8063a457c2d714610894578063a69df4b5146108cd578063a9059cbb146108e2578063b030b34a1461091b578063b425bac31461094e578063b6c5232414610963576102b9565b80637d1db4a51161012e5780637d1db4a5146107e35780638456cb59146107f857806388f820201461080d5780638da5cb5b146108405780638ee88c531461085557806395d89b411461087f576102b9565b80635342acb4146107295780635c975abb1461075c5780636bc87c3a1461077157806370a0823114610786578063715018a6146107b957806376d4ab99146107ce576102b9565b80633685d4191161021957806341cb87fc116101d257806341cb87fc14610634578063437823ec146106675780634549b0391461069a57806349bd5a5e146106cc5780634a74bb02146106e157806352390c02146106f6576102b9565b80633685d4191461055f57806339509351146105925780633b124fe7146105cb5780633bd5d173146105e05780633f4ba83a1461060a5780634144d9e41461061f576102b9565b806318160ddd1161026b57806318160ddd1461044c5780631d7ef879146104615780631ff53b601461049457806323b872dd146104c75780632d8381191461050a578063313ce56714610534576102b9565b8063061c82d0146102be57806306fdde03146102ea578063095ea7b3146103745780630a1f8ea8146103c157806313114a9d146103f45780631694505e1461041b576102b9565b366102b957005b600080fd5b3480156102ca57600080fd5b506102e8600480360360208110156102e157600080fd5b5035610acc565b005b3480156102f657600080fd5b506102ff610b29565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610339578181015183820152602001610321565b50505050905090810190601f1680156103665780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561038057600080fd5b506103ad6004803603604081101561039757600080fd5b506001600160a01b038135169060200135610bbf565b604080519115158252519081900360200190f35b3480156103cd57600080fd5b506102e8600480360360208110156103e457600080fd5b50356001600160a01b0316610bdd565b34801561040057600080fd5b50610409610c57565b60408051918252519081900360200190f35b34801561042757600080fd5b50610430610c5d565b604080516001600160a01b039092168252519081900360200190f35b34801561045857600080fd5b50610409610c6c565b34801561046d57600080fd5b506102e86004803603602081101561048457600080fd5b50356001600160a01b0316610c72565b3480156104a057600080fd5b506102e8600480360360208110156104b757600080fd5b50356001600160a01b0316610dfa565b3480156104d357600080fd5b506103ad600480360360608110156104ea57600080fd5b506001600160a01b03813581169160208101359091169060400135610e74565b34801561051657600080fd5b506104096004803603602081101561052d57600080fd5b5035610efb565b34801561054057600080fd5b50610549610f5d565b6040805160ff9092168252519081900360200190f35b34801561056b57600080fd5b506102e86004803603602081101561058257600080fd5b50356001600160a01b0316610f66565b34801561059e57600080fd5b506103ad600480360360408110156105b557600080fd5b506001600160a01b038135169060200135611127565b3480156105d757600080fd5b50610409611175565b3480156105ec57600080fd5b506102e86004803603602081101561060357600080fd5b503561117b565b34801561061657600080fd5b506102e8611255565b34801561062b57600080fd5b506104306112f1565b34801561064057600080fd5b506102e86004803603602081101561065757600080fd5b50356001600160a01b0316611300565b34801561067357600080fd5b506102e86004803603602081101561068a57600080fd5b50356001600160a01b03166114ea565b3480156106a657600080fd5b50610409600480360360408110156106bd57600080fd5b50803590602001351515611566565b3480156106d857600080fd5b506104306115f8565b3480156106ed57600080fd5b506103ad611607565b34801561070257600080fd5b506102e86004803603602081101561071957600080fd5b50356001600160a01b0316611617565b34801561073557600080fd5b506103ad6004803603602081101561074c57600080fd5b50356001600160a01b031661179d565b34801561076857600080fd5b506103ad6117bb565b34801561077d57600080fd5b506104096117c4565b34801561079257600080fd5b50610409600480360360208110156107a957600080fd5b50356001600160a01b03166117ca565b3480156107c557600080fd5b506102e861182c565b3480156107da57600080fd5b506104306118bc565b3480156107ef57600080fd5b506104096118cb565b34801561080457600080fd5b506102e86118d1565b34801561081957600080fd5b506103ad6004803603602081101561083057600080fd5b50356001600160a01b0316611971565b34801561084c57600080fd5b5061043061198f565b34801561086157600080fd5b506102e86004803603602081101561087857600080fd5b503561199e565b34801561088b57600080fd5b506102ff6119fb565b3480156108a057600080fd5b506103ad600480360360408110156108b757600080fd5b506001600160a01b038135169060200135611a5c565b3480156108d957600080fd5b506102e8611ac4565b3480156108ee57600080fd5b506103ad6004803603604081101561090557600080fd5b506001600160a01b038135169060200135611bb2565b34801561092757600080fd5b506102e86004803603602081101561093e57600080fd5b50356001600160a01b0316611bc6565b34801561095a57600080fd5b50610430611d53565b34801561096f57600080fd5b50610409611d62565b34801561098457600080fd5b506102e86004803603602081101561099b57600080fd5b50351515611d68565b3480156109b057600080fd5b506102e8600480360360208110156109c757600080fd5b50356001600160a01b0316611e13565b3480156109e357600080fd5b506102e8600480360360208110156109fa57600080fd5b5035611e8d565b348015610a0d57600080fd5b506102e860048036036020811015610a2457600080fd5b5035611f0b565b348015610a3757600080fd5b5061040960048036036040811015610a4e57600080fd5b506001600160a01b0381358116916020013516611fa9565b348015610a7257600080fd5b506102e860048036036020811015610a8957600080fd5b50356001600160a01b0316611fd4565b348015610aa557600080fd5b506102e860048036036020811015610abc57600080fd5b50356001600160a01b031661204d565b610ad4612133565b6000546001600160a01b03908116911614610b24576040805162461bcd60e51b81526020600482018190526024820152600080516020613384833981519152604482015290519081900360640190fd5b601255565b600f8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bb55780601f10610b8a57610100808354040283529160200191610bb5565b820191906000526020600020905b815481529060010190602001808311610b9857829003601f168201915b5050505050905090565b6000610bd3610bcc612133565b8484612137565b5060015b92915050565b610be5612133565b6000546001600160a01b03908116911614610c35576040805162461bcd60e51b81526020600482018190526024820152600080516020613384833981519152604482015290519081900360640190fd5b601a80546001600160a01b0319166001600160a01b0392909216919091179055565b600e5490565b6016546001600160a01b031681565b600c5490565b610c7a612133565b6000546001600160a01b03908116911614610cca576040805162461bcd60e51b81526020600482018190526024820152600080516020613384833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610d265760405162461bcd60e51b815260040180806020018281038252602281526020018061333a6022913960400191505060405180910390fd5b6001600160a01b0381166000908152600a602052604090205460ff1615610d94576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600a60205260408120805460ff19166001908117909155600b805491820181559091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319169091179055565b610e02612133565b6000546001600160a01b03908116911614610e52576040805162461bcd60e51b81526020600482018190526024820152600080516020613384833981519152604482015290519081900360640190fd5b601980546001600160a01b0319166001600160a01b0392909216919091179055565b6000610e81848484612223565b610ef184610e8d612133565b610eec8560405180606001604052806028815260200161335c602891396001600160a01b038a16600090815260066020526040812090610ecb612133565b6001600160a01b031681526020810191909152604001600020549190612568565b612137565b5060019392505050565b6000600d54821115610f3e5760405162461bcd60e51b815260040180806020018281038252602a81526020018061327f602a913960400191505060405180910390fd5b6000610f486125ff565b9050610f548382612622565b9150505b919050565b60115460ff1690565b610f6e612133565b6000546001600160a01b03908116911614610fbe576040805162461bcd60e51b81526020600482018190526024820152600080516020613384833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526008602052604090205460ff1661102b576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b60095481101561112357816001600160a01b03166009828154811061104f57fe5b6000918252602090912001546001600160a01b0316141561111b5760098054600019810190811061107c57fe5b600091825260209091200154600980546001600160a01b0390921691839081106110a257fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600582526040808220829055600890925220805460ff1916905560098054806110f457fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611123565b60010161102e565b5050565b6000610bd3611134612133565b84610eec8560066000611145612133565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061266b565b60125481565b6000611185612133565b6001600160a01b03811660009081526008602052604090205490915060ff16156111e05760405162461bcd60e51b815260040180806020018281038252602c815260200180613436602c913960400191505060405180910390fd5b60006111eb836126c5565b505050506001600160a01b03841660009081526004602052604090205491925061121791905082612714565b6001600160a01b038316600090815260046020526040902055600d5461123d9082612714565b600d55600e5461124d908461266b565b600e55505050565b61125d612133565b6000546001600160a01b039081169116146112ad576040805162461bcd60e51b81526020600482018190526024820152600080516020613384833981519152604482015290519081900360640190fd5b60035460ff166112bc57600080fd5b6003805460ff191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b6019546001600160a01b031681565b611308612133565b6000546001600160a01b03908116911614611358576040805162461bcd60e51b81526020600482018190526024820152600080516020613384833981519152604482015290519081900360640190fd5b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b15801561139657600080fd5b505afa1580156113aa573d6000803e3d6000fd5b505050506040513d60208110156113c057600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b15801561141057600080fd5b505afa158015611424573d6000803e3d6000fd5b505050506040513d602081101561143a57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b15801561148c57600080fd5b505af11580156114a0573d6000803e3d6000fd5b505050506040513d60208110156114b657600080fd5b5051601780546001600160a01b039283166001600160a01b0319918216179091556016805493909216921691909117905550565b6114f2612133565b6000546001600160a01b03908116911614611542576040805162461bcd60e51b81526020600482018190526024820152600080516020613384833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b6000600c548311156115bf576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816115de5760006115cf846126c5565b50939550610bd7945050505050565b60006115e9846126c5565b50929550610bd7945050505050565b6017546001600160a01b031681565b601a54600160a81b900460ff1681565b61161f612133565b6000546001600160a01b0390811691161461166f576040805162461bcd60e51b81526020600482018190526024820152600080516020613384833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526008602052604090205460ff16156116dd576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205415611737576001600160a01b03811660009081526004602052604090205461171d90610efb565b6001600160a01b0382166000908152600560205260409020555b6001600160a01b03166000818152600860205260408120805460ff191660019081179091556009805491820181559091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0180546001600160a01b0319169091179055565b6001600160a01b031660009081526007602052604090205460ff1690565b60035460ff1681565b60145481565b6001600160a01b03811660009081526008602052604081205460ff161561180a57506001600160a01b038116600090815260056020526040902054610f58565b6001600160a01b038216600090815260046020526040902054610bd790610efb565b611834612133565b6000546001600160a01b03908116911614611884576040805162461bcd60e51b81526020600482018190526024820152600080516020613384833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116906000805160206133a4833981519152908390a3600080546001600160a01b0319169055565b6018546001600160a01b031681565b601b5481565b6118d9612133565b6000546001600160a01b03908116911614611929576040805162461bcd60e51b81526020600482018190526024820152600080516020613384833981519152604482015290519081900360640190fd5b60035460ff161561193957600080fd5b6003805460ff191660011790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b6001600160a01b031660009081526008602052604090205460ff1690565b6000546001600160a01b031690565b6119a6612133565b6000546001600160a01b039081169116146119f6576040805162461bcd60e51b81526020600482018190526024820152600080516020613384833981519152604482015290519081900360640190fd5b601455565b60108054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bb55780601f10610b8a57610100808354040283529160200191610bb5565b6000610bd3611a69612133565b84610eec856040518060600160405280602581526020016134856025913960066000611a93612133565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612568565b6001546001600160a01b03163314611b0d5760405162461bcd60e51b81526004018080602001828103825260238152602001806134626023913960400191505060405180910390fd5b6002544211611b63576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b0393841693909116916000805160206133a483398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610bd3611bbf612133565b8484612223565b611bce612133565b6000546001600160a01b03908116911614611c1e576040805162461bcd60e51b81526020600482018190526024820152600080516020613384833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff16611c8b576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600b5481101561112357816001600160a01b0316600b8281548110611caf57fe5b6000918252602090912001546001600160a01b03161415611d4b57600b80546000198101908110611cdc57fe5b600091825260209091200154600b80546001600160a01b039092169183908110611d0257fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600a90915260409020805460ff19169055600b8054806110f457fe5b600101611c8e565b601a546001600160a01b031681565b60025490565b611d70612133565b6000546001600160a01b03908116911614611dc0576040805162461bcd60e51b81526020600482018190526024820152600080516020613384833981519152604482015290519081900360640190fd5b601a8054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b611e1b612133565b6000546001600160a01b03908116911614611e6b576040805162461bcd60e51b81526020600482018190526024820152600080516020613384833981519152604482015290519081900360640190fd5b601880546001600160a01b0319166001600160a01b0392909216919091179055565b611e95612133565b6000546001600160a01b03908116911614611ee5576040805162461bcd60e51b81526020600482018190526024820152600080516020613384833981519152604482015290519081900360640190fd5b611f056064611eff83600c5461275690919063ffffffff16565b90612622565b601b5550565b611f13612133565b6000546001600160a01b03908116911614611f63576040805162461bcd60e51b81526020600482018190526024820152600080516020613384833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b0384161790915516815542820160025560405181906000805160206133a4833981519152908290a350565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b611fdc612133565b6000546001600160a01b0390811691161461202c576040805162461bcd60e51b81526020600482018190526024820152600080516020613384833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760205260409020805460ff19169055565b612055612133565b6000546001600160a01b039081169116146120a5576040805162461bcd60e51b81526020600482018190526024820152600080516020613384833981519152604482015290519081900360640190fd5b6001600160a01b0381166120ea5760405162461bcd60e51b81526004018080602001828103825260268152602001806132a96026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216916000805160206133a483398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b03831661217c5760405162461bcd60e51b81526004018080602001828103825260248152602001806134126024913960400191505060405180910390fd5b6001600160a01b0382166121c15760405162461bcd60e51b81526004018080602001828103825260228152602001806132cf6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260066020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166122685760405162461bcd60e51b81526004018080602001828103825260258152602001806133ed6025913960400191505060405180910390fd5b6001600160a01b0382166122ad5760405162461bcd60e51b815260040180806020018281038252602381526020018061325c6023913960400191505060405180910390fd5b600081116122ec5760405162461bcd60e51b81526004018080602001828103825260298152602001806133c46029913960400191505060405180910390fd5b6001600160a01b0382166000908152600a602052604090205460ff1615612350576040805162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b604482015290519081900360640190fd5b336000908152600a602052604090205460ff16156123ab576040805162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b604482015290519081900360640190fd5b326000908152600a602052604090205460ff1615612406576040805162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b604482015290519081900360640190fd5b61240e61198f565b6001600160a01b0316836001600160a01b031614158015612448575061243261198f565b6001600160a01b0316826001600160a01b031614155b1561248e57601b5481111561248e5760405162461bcd60e51b81526004018080602001828103825260288152602001806132f16028913960400191505060405180910390fd5b6000612499306117ca565b9050601b5481106124a95750601b545b601c54811080159081906124c75750601a54600160a01b900460ff16155b80156124e157506017546001600160a01b03868116911614155b80156124f65750601a54600160a81b900460ff165b1561250957601c549150612509826127af565b6001600160a01b03851660009081526007602052604090205460019060ff168061254b57506001600160a01b03851660009081526007602052604090205460ff165b15612554575060005b61256086868684612878565b505050505050565b600081848411156125f75760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156125bc5781810151838201526020016125a4565b50505050905090810190601f1680156125e95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600061260c6129ec565b909250905061261b8282612622565b9250505090565b600061266483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612b4f565b9392505050565b600082820183811015612664576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006126dc8a612bb4565b92509250925060008060006126fa8d86866126f56125ff565b612bf6565b919f909e50909c50959a5093985091965092945050505050565b600061266483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612568565b60008261276557506000610bd7565b8282028284828161277257fe5b04146126645760405162461bcd60e51b81526004018080602001828103825260218152602001806133196021913960400191505060405180910390fd5b601a805460ff60a01b1916600160a01b17905560006127dc6107536127d684612710612622565b90612756565b905060006127f26101776127d6856103e8612622565b905060006128086111176127d686612710612622565b905061281383612c46565b61281c81612c88565b61282582612cca565b604080518481526020810183905280820184905290517f2b3815017a53df0f7a02daff8930fa0330e6091a501c5de817e0df95894bab1d9181900360600190a15050601a805460ff60a01b191690555050565b8061288557612885612d0c565b6001600160a01b03841660009081526008602052604090205460ff1680156128c657506001600160a01b03831660009081526008602052604090205460ff16155b156128db576128d6848484612d3e565b6129d9565b6001600160a01b03841660009081526008602052604090205460ff1615801561291c57506001600160a01b03831660009081526008602052604090205460ff165b1561292c576128d6848484612e62565b6001600160a01b03841660009081526008602052604090205460ff1615801561296e57506001600160a01b03831660009081526008602052604090205460ff16155b1561297e576128d6848484612f0b565b6001600160a01b03841660009081526008602052604090205460ff1680156129be57506001600160a01b03831660009081526008602052604090205460ff165b156129ce576128d6848484612f4f565b6129d9848484612f0b565b806129e6576129e6612fc2565b50505050565b600d54600c546000918291825b600954811015612b1d57826004600060098481548110612a1557fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612a7a5750816005600060098481548110612a5357fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15612a9157600d54600c5494509450505050612b4b565b612ad16004600060098481548110612aa557fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612714565b9250612b136005600060098481548110612ae757fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612714565b91506001016129f9565b50600c54600d54612b2d91612622565b821015612b4557600d54600c54935093505050612b4b565b90925090505b9091565b60008183612b9e5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156125bc5781810151838201526020016125a4565b506000838581612baa57fe5b0495945050505050565b600080600080612bc385612fd0565b90506000612bd086612fec565b90506000612be882612be28986612714565b90612714565b979296509094509092505050565b6000808080612c058886612756565b90506000612c138887612756565b90506000612c218888612756565b90506000612c3382612be28686612714565b939b939a50919850919650505050505050565b612c4f81613008565b6018546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611123573d6000803e3d6000fd5b612c9181613008565b6019546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611123573d6000803e3d6000fd5b612cd381613008565b601a546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611123573d6000803e3d6000fd5b601254158015612d1c5750601454155b15612d2657612d3c565b6012805460135560148054601555600091829055555b565b600080600080600080612d50876126c5565b6001600160a01b038f16600090815260056020526040902054959b50939950919750955093509150612d829088612714565b6001600160a01b038a16600090815260056020908152604080832093909355600490522054612db19087612714565b6001600160a01b03808b1660009081526004602052604080822093909355908a1681522054612de0908661266b565b6001600160a01b038916600090815260046020526040902055612e02816131ae565b612e0c8483613237565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080612e74876126c5565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612ea69087612714565b6001600160a01b03808b16600090815260046020908152604080832094909455918b16815260059091522054612edc908461266b565b6001600160a01b038916600090815260056020908152604080832093909355600490522054612de0908661266b565b600080600080600080612f1d876126c5565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612db19087612714565b600080600080600080612f61876126c5565b6001600160a01b038f16600090815260056020526040902054959b50939950919750955093509150612f939088612714565b6001600160a01b038a16600090815260056020908152604080832093909355600490522054612ea69087612714565b601354601255601554601455565b6000610bd76064611eff6012548561275690919063ffffffff16565b6000610bd76064611eff6014548561275690919063ffffffff16565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061303657fe5b6001600160a01b03928316602091820292909201810191909152601654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561308a57600080fd5b505afa15801561309e573d6000803e3d6000fd5b505050506040513d60208110156130b457600080fd5b50518151829060019081106130c557fe5b6001600160a01b0392831660209182029290920101526016546130eb9130911684612137565b60165460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b83811015613171578181015183820152602001613159565b505050509050019650505050505050600060405180830381600087803b15801561319a57600080fd5b505af1158015612560573d6000803e3d6000fd5b60006131b86125ff565b905060006131c68383612756565b306000908152600460205260409020549091506131e3908261266b565b3060009081526004602090815260408083209390935560089052205460ff16156132325730600090815260056020526040902054613221908461266b565b306000908152600560205260409020555b505050565b600d546132449083612714565b600d55600e54613254908261266b565b600e55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7757652063616e6e6f7420626c61636b6c69737420556e695377617020726f7574657245524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122056a547184b33a53e70c71d526234c5397009966bbf8df4c16e9779ec5129dcc464736f6c634300060c00330000000000000000000000000b578997bb0bef8f4f5f71abaa473e8122be12a00000000000000000000000000b64a58ff41c45e395309d22dbbfbd150e836b660000000000000000000000004ee53c9cc151d34adb77ae3d455855b7d32addd1

Deployed Bytecode

0x6080604052600436106102b25760003560e01c80635342acb411610175578063a457c2d7116100dc578063c49b9a8011610095578063dd4670641161006f578063dd46706414610a01578063dd62ed3e14610a2b578063ea2f0b3714610a66578063f2fde38b14610a99576102b9565b8063c49b9a8014610978578063d047e4b7146109a4578063d543dbeb146109d7576102b9565b8063a457c2d714610894578063a69df4b5146108cd578063a9059cbb146108e2578063b030b34a1461091b578063b425bac31461094e578063b6c5232414610963576102b9565b80637d1db4a51161012e5780637d1db4a5146107e35780638456cb59146107f857806388f820201461080d5780638da5cb5b146108405780638ee88c531461085557806395d89b411461087f576102b9565b80635342acb4146107295780635c975abb1461075c5780636bc87c3a1461077157806370a0823114610786578063715018a6146107b957806376d4ab99146107ce576102b9565b80633685d4191161021957806341cb87fc116101d257806341cb87fc14610634578063437823ec146106675780634549b0391461069a57806349bd5a5e146106cc5780634a74bb02146106e157806352390c02146106f6576102b9565b80633685d4191461055f57806339509351146105925780633b124fe7146105cb5780633bd5d173146105e05780633f4ba83a1461060a5780634144d9e41461061f576102b9565b806318160ddd1161026b57806318160ddd1461044c5780631d7ef879146104615780631ff53b601461049457806323b872dd146104c75780632d8381191461050a578063313ce56714610534576102b9565b8063061c82d0146102be57806306fdde03146102ea578063095ea7b3146103745780630a1f8ea8146103c157806313114a9d146103f45780631694505e1461041b576102b9565b366102b957005b600080fd5b3480156102ca57600080fd5b506102e8600480360360208110156102e157600080fd5b5035610acc565b005b3480156102f657600080fd5b506102ff610b29565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610339578181015183820152602001610321565b50505050905090810190601f1680156103665780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561038057600080fd5b506103ad6004803603604081101561039757600080fd5b506001600160a01b038135169060200135610bbf565b604080519115158252519081900360200190f35b3480156103cd57600080fd5b506102e8600480360360208110156103e457600080fd5b50356001600160a01b0316610bdd565b34801561040057600080fd5b50610409610c57565b60408051918252519081900360200190f35b34801561042757600080fd5b50610430610c5d565b604080516001600160a01b039092168252519081900360200190f35b34801561045857600080fd5b50610409610c6c565b34801561046d57600080fd5b506102e86004803603602081101561048457600080fd5b50356001600160a01b0316610c72565b3480156104a057600080fd5b506102e8600480360360208110156104b757600080fd5b50356001600160a01b0316610dfa565b3480156104d357600080fd5b506103ad600480360360608110156104ea57600080fd5b506001600160a01b03813581169160208101359091169060400135610e74565b34801561051657600080fd5b506104096004803603602081101561052d57600080fd5b5035610efb565b34801561054057600080fd5b50610549610f5d565b6040805160ff9092168252519081900360200190f35b34801561056b57600080fd5b506102e86004803603602081101561058257600080fd5b50356001600160a01b0316610f66565b34801561059e57600080fd5b506103ad600480360360408110156105b557600080fd5b506001600160a01b038135169060200135611127565b3480156105d757600080fd5b50610409611175565b3480156105ec57600080fd5b506102e86004803603602081101561060357600080fd5b503561117b565b34801561061657600080fd5b506102e8611255565b34801561062b57600080fd5b506104306112f1565b34801561064057600080fd5b506102e86004803603602081101561065757600080fd5b50356001600160a01b0316611300565b34801561067357600080fd5b506102e86004803603602081101561068a57600080fd5b50356001600160a01b03166114ea565b3480156106a657600080fd5b50610409600480360360408110156106bd57600080fd5b50803590602001351515611566565b3480156106d857600080fd5b506104306115f8565b3480156106ed57600080fd5b506103ad611607565b34801561070257600080fd5b506102e86004803603602081101561071957600080fd5b50356001600160a01b0316611617565b34801561073557600080fd5b506103ad6004803603602081101561074c57600080fd5b50356001600160a01b031661179d565b34801561076857600080fd5b506103ad6117bb565b34801561077d57600080fd5b506104096117c4565b34801561079257600080fd5b50610409600480360360208110156107a957600080fd5b50356001600160a01b03166117ca565b3480156107c557600080fd5b506102e861182c565b3480156107da57600080fd5b506104306118bc565b3480156107ef57600080fd5b506104096118cb565b34801561080457600080fd5b506102e86118d1565b34801561081957600080fd5b506103ad6004803603602081101561083057600080fd5b50356001600160a01b0316611971565b34801561084c57600080fd5b5061043061198f565b34801561086157600080fd5b506102e86004803603602081101561087857600080fd5b503561199e565b34801561088b57600080fd5b506102ff6119fb565b3480156108a057600080fd5b506103ad600480360360408110156108b757600080fd5b506001600160a01b038135169060200135611a5c565b3480156108d957600080fd5b506102e8611ac4565b3480156108ee57600080fd5b506103ad6004803603604081101561090557600080fd5b506001600160a01b038135169060200135611bb2565b34801561092757600080fd5b506102e86004803603602081101561093e57600080fd5b50356001600160a01b0316611bc6565b34801561095a57600080fd5b50610430611d53565b34801561096f57600080fd5b50610409611d62565b34801561098457600080fd5b506102e86004803603602081101561099b57600080fd5b50351515611d68565b3480156109b057600080fd5b506102e8600480360360208110156109c757600080fd5b50356001600160a01b0316611e13565b3480156109e357600080fd5b506102e8600480360360208110156109fa57600080fd5b5035611e8d565b348015610a0d57600080fd5b506102e860048036036020811015610a2457600080fd5b5035611f0b565b348015610a3757600080fd5b5061040960048036036040811015610a4e57600080fd5b506001600160a01b0381358116916020013516611fa9565b348015610a7257600080fd5b506102e860048036036020811015610a8957600080fd5b50356001600160a01b0316611fd4565b348015610aa557600080fd5b506102e860048036036020811015610abc57600080fd5b50356001600160a01b031661204d565b610ad4612133565b6000546001600160a01b03908116911614610b24576040805162461bcd60e51b81526020600482018190526024820152600080516020613384833981519152604482015290519081900360640190fd5b601255565b600f8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bb55780601f10610b8a57610100808354040283529160200191610bb5565b820191906000526020600020905b815481529060010190602001808311610b9857829003601f168201915b5050505050905090565b6000610bd3610bcc612133565b8484612137565b5060015b92915050565b610be5612133565b6000546001600160a01b03908116911614610c35576040805162461bcd60e51b81526020600482018190526024820152600080516020613384833981519152604482015290519081900360640190fd5b601a80546001600160a01b0319166001600160a01b0392909216919091179055565b600e5490565b6016546001600160a01b031681565b600c5490565b610c7a612133565b6000546001600160a01b03908116911614610cca576040805162461bcd60e51b81526020600482018190526024820152600080516020613384833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610d265760405162461bcd60e51b815260040180806020018281038252602281526020018061333a6022913960400191505060405180910390fd5b6001600160a01b0381166000908152600a602052604090205460ff1615610d94576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600a60205260408120805460ff19166001908117909155600b805491820181559091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319169091179055565b610e02612133565b6000546001600160a01b03908116911614610e52576040805162461bcd60e51b81526020600482018190526024820152600080516020613384833981519152604482015290519081900360640190fd5b601980546001600160a01b0319166001600160a01b0392909216919091179055565b6000610e81848484612223565b610ef184610e8d612133565b610eec8560405180606001604052806028815260200161335c602891396001600160a01b038a16600090815260066020526040812090610ecb612133565b6001600160a01b031681526020810191909152604001600020549190612568565b612137565b5060019392505050565b6000600d54821115610f3e5760405162461bcd60e51b815260040180806020018281038252602a81526020018061327f602a913960400191505060405180910390fd5b6000610f486125ff565b9050610f548382612622565b9150505b919050565b60115460ff1690565b610f6e612133565b6000546001600160a01b03908116911614610fbe576040805162461bcd60e51b81526020600482018190526024820152600080516020613384833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526008602052604090205460ff1661102b576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b60095481101561112357816001600160a01b03166009828154811061104f57fe5b6000918252602090912001546001600160a01b0316141561111b5760098054600019810190811061107c57fe5b600091825260209091200154600980546001600160a01b0390921691839081106110a257fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600582526040808220829055600890925220805460ff1916905560098054806110f457fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611123565b60010161102e565b5050565b6000610bd3611134612133565b84610eec8560066000611145612133565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061266b565b60125481565b6000611185612133565b6001600160a01b03811660009081526008602052604090205490915060ff16156111e05760405162461bcd60e51b815260040180806020018281038252602c815260200180613436602c913960400191505060405180910390fd5b60006111eb836126c5565b505050506001600160a01b03841660009081526004602052604090205491925061121791905082612714565b6001600160a01b038316600090815260046020526040902055600d5461123d9082612714565b600d55600e5461124d908461266b565b600e55505050565b61125d612133565b6000546001600160a01b039081169116146112ad576040805162461bcd60e51b81526020600482018190526024820152600080516020613384833981519152604482015290519081900360640190fd5b60035460ff166112bc57600080fd5b6003805460ff191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b6019546001600160a01b031681565b611308612133565b6000546001600160a01b03908116911614611358576040805162461bcd60e51b81526020600482018190526024820152600080516020613384833981519152604482015290519081900360640190fd5b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b15801561139657600080fd5b505afa1580156113aa573d6000803e3d6000fd5b505050506040513d60208110156113c057600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b15801561141057600080fd5b505afa158015611424573d6000803e3d6000fd5b505050506040513d602081101561143a57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b15801561148c57600080fd5b505af11580156114a0573d6000803e3d6000fd5b505050506040513d60208110156114b657600080fd5b5051601780546001600160a01b039283166001600160a01b0319918216179091556016805493909216921691909117905550565b6114f2612133565b6000546001600160a01b03908116911614611542576040805162461bcd60e51b81526020600482018190526024820152600080516020613384833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b6000600c548311156115bf576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816115de5760006115cf846126c5565b50939550610bd7945050505050565b60006115e9846126c5565b50929550610bd7945050505050565b6017546001600160a01b031681565b601a54600160a81b900460ff1681565b61161f612133565b6000546001600160a01b0390811691161461166f576040805162461bcd60e51b81526020600482018190526024820152600080516020613384833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526008602052604090205460ff16156116dd576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205415611737576001600160a01b03811660009081526004602052604090205461171d90610efb565b6001600160a01b0382166000908152600560205260409020555b6001600160a01b03166000818152600860205260408120805460ff191660019081179091556009805491820181559091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0180546001600160a01b0319169091179055565b6001600160a01b031660009081526007602052604090205460ff1690565b60035460ff1681565b60145481565b6001600160a01b03811660009081526008602052604081205460ff161561180a57506001600160a01b038116600090815260056020526040902054610f58565b6001600160a01b038216600090815260046020526040902054610bd790610efb565b611834612133565b6000546001600160a01b03908116911614611884576040805162461bcd60e51b81526020600482018190526024820152600080516020613384833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116906000805160206133a4833981519152908390a3600080546001600160a01b0319169055565b6018546001600160a01b031681565b601b5481565b6118d9612133565b6000546001600160a01b03908116911614611929576040805162461bcd60e51b81526020600482018190526024820152600080516020613384833981519152604482015290519081900360640190fd5b60035460ff161561193957600080fd5b6003805460ff191660011790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b6001600160a01b031660009081526008602052604090205460ff1690565b6000546001600160a01b031690565b6119a6612133565b6000546001600160a01b039081169116146119f6576040805162461bcd60e51b81526020600482018190526024820152600080516020613384833981519152604482015290519081900360640190fd5b601455565b60108054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bb55780601f10610b8a57610100808354040283529160200191610bb5565b6000610bd3611a69612133565b84610eec856040518060600160405280602581526020016134856025913960066000611a93612133565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612568565b6001546001600160a01b03163314611b0d5760405162461bcd60e51b81526004018080602001828103825260238152602001806134626023913960400191505060405180910390fd5b6002544211611b63576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b0393841693909116916000805160206133a483398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610bd3611bbf612133565b8484612223565b611bce612133565b6000546001600160a01b03908116911614611c1e576040805162461bcd60e51b81526020600482018190526024820152600080516020613384833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff16611c8b576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600b5481101561112357816001600160a01b0316600b8281548110611caf57fe5b6000918252602090912001546001600160a01b03161415611d4b57600b80546000198101908110611cdc57fe5b600091825260209091200154600b80546001600160a01b039092169183908110611d0257fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600a90915260409020805460ff19169055600b8054806110f457fe5b600101611c8e565b601a546001600160a01b031681565b60025490565b611d70612133565b6000546001600160a01b03908116911614611dc0576040805162461bcd60e51b81526020600482018190526024820152600080516020613384833981519152604482015290519081900360640190fd5b601a8054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b611e1b612133565b6000546001600160a01b03908116911614611e6b576040805162461bcd60e51b81526020600482018190526024820152600080516020613384833981519152604482015290519081900360640190fd5b601880546001600160a01b0319166001600160a01b0392909216919091179055565b611e95612133565b6000546001600160a01b03908116911614611ee5576040805162461bcd60e51b81526020600482018190526024820152600080516020613384833981519152604482015290519081900360640190fd5b611f056064611eff83600c5461275690919063ffffffff16565b90612622565b601b5550565b611f13612133565b6000546001600160a01b03908116911614611f63576040805162461bcd60e51b81526020600482018190526024820152600080516020613384833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b0384161790915516815542820160025560405181906000805160206133a4833981519152908290a350565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b611fdc612133565b6000546001600160a01b0390811691161461202c576040805162461bcd60e51b81526020600482018190526024820152600080516020613384833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760205260409020805460ff19169055565b612055612133565b6000546001600160a01b039081169116146120a5576040805162461bcd60e51b81526020600482018190526024820152600080516020613384833981519152604482015290519081900360640190fd5b6001600160a01b0381166120ea5760405162461bcd60e51b81526004018080602001828103825260268152602001806132a96026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216916000805160206133a483398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b03831661217c5760405162461bcd60e51b81526004018080602001828103825260248152602001806134126024913960400191505060405180910390fd5b6001600160a01b0382166121c15760405162461bcd60e51b81526004018080602001828103825260228152602001806132cf6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260066020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166122685760405162461bcd60e51b81526004018080602001828103825260258152602001806133ed6025913960400191505060405180910390fd5b6001600160a01b0382166122ad5760405162461bcd60e51b815260040180806020018281038252602381526020018061325c6023913960400191505060405180910390fd5b600081116122ec5760405162461bcd60e51b81526004018080602001828103825260298152602001806133c46029913960400191505060405180910390fd5b6001600160a01b0382166000908152600a602052604090205460ff1615612350576040805162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b604482015290519081900360640190fd5b336000908152600a602052604090205460ff16156123ab576040805162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b604482015290519081900360640190fd5b326000908152600a602052604090205460ff1615612406576040805162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b604482015290519081900360640190fd5b61240e61198f565b6001600160a01b0316836001600160a01b031614158015612448575061243261198f565b6001600160a01b0316826001600160a01b031614155b1561248e57601b5481111561248e5760405162461bcd60e51b81526004018080602001828103825260288152602001806132f16028913960400191505060405180910390fd5b6000612499306117ca565b9050601b5481106124a95750601b545b601c54811080159081906124c75750601a54600160a01b900460ff16155b80156124e157506017546001600160a01b03868116911614155b80156124f65750601a54600160a81b900460ff165b1561250957601c549150612509826127af565b6001600160a01b03851660009081526007602052604090205460019060ff168061254b57506001600160a01b03851660009081526007602052604090205460ff165b15612554575060005b61256086868684612878565b505050505050565b600081848411156125f75760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156125bc5781810151838201526020016125a4565b50505050905090810190601f1680156125e95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600061260c6129ec565b909250905061261b8282612622565b9250505090565b600061266483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612b4f565b9392505050565b600082820183811015612664576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006126dc8a612bb4565b92509250925060008060006126fa8d86866126f56125ff565b612bf6565b919f909e50909c50959a5093985091965092945050505050565b600061266483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612568565b60008261276557506000610bd7565b8282028284828161277257fe5b04146126645760405162461bcd60e51b81526004018080602001828103825260218152602001806133196021913960400191505060405180910390fd5b601a805460ff60a01b1916600160a01b17905560006127dc6107536127d684612710612622565b90612756565b905060006127f26101776127d6856103e8612622565b905060006128086111176127d686612710612622565b905061281383612c46565b61281c81612c88565b61282582612cca565b604080518481526020810183905280820184905290517f2b3815017a53df0f7a02daff8930fa0330e6091a501c5de817e0df95894bab1d9181900360600190a15050601a805460ff60a01b191690555050565b8061288557612885612d0c565b6001600160a01b03841660009081526008602052604090205460ff1680156128c657506001600160a01b03831660009081526008602052604090205460ff16155b156128db576128d6848484612d3e565b6129d9565b6001600160a01b03841660009081526008602052604090205460ff1615801561291c57506001600160a01b03831660009081526008602052604090205460ff165b1561292c576128d6848484612e62565b6001600160a01b03841660009081526008602052604090205460ff1615801561296e57506001600160a01b03831660009081526008602052604090205460ff16155b1561297e576128d6848484612f0b565b6001600160a01b03841660009081526008602052604090205460ff1680156129be57506001600160a01b03831660009081526008602052604090205460ff165b156129ce576128d6848484612f4f565b6129d9848484612f0b565b806129e6576129e6612fc2565b50505050565b600d54600c546000918291825b600954811015612b1d57826004600060098481548110612a1557fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612a7a5750816005600060098481548110612a5357fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15612a9157600d54600c5494509450505050612b4b565b612ad16004600060098481548110612aa557fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612714565b9250612b136005600060098481548110612ae757fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612714565b91506001016129f9565b50600c54600d54612b2d91612622565b821015612b4557600d54600c54935093505050612b4b565b90925090505b9091565b60008183612b9e5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156125bc5781810151838201526020016125a4565b506000838581612baa57fe5b0495945050505050565b600080600080612bc385612fd0565b90506000612bd086612fec565b90506000612be882612be28986612714565b90612714565b979296509094509092505050565b6000808080612c058886612756565b90506000612c138887612756565b90506000612c218888612756565b90506000612c3382612be28686612714565b939b939a50919850919650505050505050565b612c4f81613008565b6018546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611123573d6000803e3d6000fd5b612c9181613008565b6019546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611123573d6000803e3d6000fd5b612cd381613008565b601a546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611123573d6000803e3d6000fd5b601254158015612d1c5750601454155b15612d2657612d3c565b6012805460135560148054601555600091829055555b565b600080600080600080612d50876126c5565b6001600160a01b038f16600090815260056020526040902054959b50939950919750955093509150612d829088612714565b6001600160a01b038a16600090815260056020908152604080832093909355600490522054612db19087612714565b6001600160a01b03808b1660009081526004602052604080822093909355908a1681522054612de0908661266b565b6001600160a01b038916600090815260046020526040902055612e02816131ae565b612e0c8483613237565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080612e74876126c5565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612ea69087612714565b6001600160a01b03808b16600090815260046020908152604080832094909455918b16815260059091522054612edc908461266b565b6001600160a01b038916600090815260056020908152604080832093909355600490522054612de0908661266b565b600080600080600080612f1d876126c5565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612db19087612714565b600080600080600080612f61876126c5565b6001600160a01b038f16600090815260056020526040902054959b50939950919750955093509150612f939088612714565b6001600160a01b038a16600090815260056020908152604080832093909355600490522054612ea69087612714565b601354601255601554601455565b6000610bd76064611eff6012548561275690919063ffffffff16565b6000610bd76064611eff6014548561275690919063ffffffff16565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061303657fe5b6001600160a01b03928316602091820292909201810191909152601654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561308a57600080fd5b505afa15801561309e573d6000803e3d6000fd5b505050506040513d60208110156130b457600080fd5b50518151829060019081106130c557fe5b6001600160a01b0392831660209182029290920101526016546130eb9130911684612137565b60165460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b83811015613171578181015183820152602001613159565b505050509050019650505050505050600060405180830381600087803b15801561319a57600080fd5b505af1158015612560573d6000803e3d6000fd5b60006131b86125ff565b905060006131c68383612756565b306000908152600460205260409020549091506131e3908261266b565b3060009081526004602090815260408083209390935560089052205460ff16156132325730600090815260056020526040902054613221908461266b565b306000908152600560205260409020555b505050565b600d546132449083612714565b600d55600e54613254908261266b565b600e55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7757652063616e6e6f7420626c61636b6c69737420556e695377617020726f7574657245524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122056a547184b33a53e70c71d526234c5397009966bbf8df4c16e9779ec5129dcc464736f6c634300060c0033

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

0000000000000000000000000b578997bb0bef8f4f5f71abaa473e8122be12a00000000000000000000000000b64a58ff41c45e395309d22dbbfbd150e836b660000000000000000000000004ee53c9cc151d34adb77ae3d455855b7d32addd1

-----Decoded View---------------
Arg [0] : charityWalletAddress (address): 0x0B578997BB0BeF8f4F5f71ABAa473e8122bE12a0
Arg [1] : marketingWalletAddress (address): 0x0b64A58FF41C45e395309D22DBbFbD150E836B66
Arg [2] : devWalletAddress (address): 0x4EE53c9cC151D34Adb77Ae3d455855B7D32aDdD1

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000b578997bb0bef8f4f5f71abaa473e8122be12a0
Arg [1] : 0000000000000000000000000b64a58ff41c45e395309d22dbbfbd150e836b66
Arg [2] : 0000000000000000000000004ee53c9cc151d34adb77ae3d455855b7d32addd1


Deployed Bytecode Sourcemap

28736:22264:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38942:98;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38942:98:0;;:::i;:::-;;31891:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32876:193;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32876:193:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44161:156;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44161:156:0;-1:-1:-1;;;;;44161:156:0;;:::i;34375:87::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;29800:41;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;29800:41:0;;;;;;;;;;;;;;32168:95;;;;;;;;;;;;;:::i;36657:387::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36657:387:0;-1:-1:-1;;;;;36657:387:0;;:::i;43804:180::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43804:180:0;-1:-1:-1;;;;;43804:180:0;;:::i;33077:446::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33077:446:0;;;;;;;;;;;;;;;;;:::i;36327:322::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36327:322:0;;:::i;32077:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35353:479;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35353:479:0;-1:-1:-1;;;;;35353:479:0;;:::i;33531:300::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33531:300:0;;;;;;;;:::i;29615:26::-;;;;;;;;;;;;;:::i;34470:419::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34470:419:0;;:::i;28624:105::-;;;;;;;;;;;;;:::i;29934:46::-;;;;;;;;;;;;;:::i;37600:332::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37600:332:0;-1:-1:-1;;;;;37600:332:0;;:::i;37940:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37940:111:0;-1:-1:-1;;;;;37940:111:0;;:::i;35840:479::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35840:479:0;;;;;;;;;:::i;29848:28::-;;;;;;;;;;;;;:::i;30064:40::-;;;;;;;;;;;;;:::i;34897:448::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34897:448:0;-1:-1:-1;;;;;34897:448:0;;:::i;43327:124::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43327:124:0;-1:-1:-1;;;;;43327:124:0;;:::i;27943:26::-;;;;;;;;;;;;;:::i;29698:33::-;;;;;;;;;;;;;:::i;32271:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32271:198:0;-1:-1:-1;;;;;32271:198:0;;:::i;16931:148::-;;;;;;;;;;;;;:::i;29883:44::-;;;;;;;;;;;;;:::i;30113:47::-;;;;;;;;;;;;;:::i;28426:103::-;;;;;;;;;;;;;:::i;34247:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34247:120:0;-1:-1:-1;;;;;34247:120:0;;:::i;16289:79::-;;;;;;;;;;;;;:::i;39048:122::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39048:122:0;;:::i;31982:87::-;;;;;;;;;;;;;:::i;33839:400::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33839:400:0;;;;;;;;:::i;17974:329::-;;;;;;;;;;;;;:::i;32477:199::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32477:199:0;;;;;;;;:::i;37052:540::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37052:540:0;-1:-1:-1;;;;;37052:540:0;;:::i;29987:40::-;;;;;;;;;;;;;:::i;17523:89::-;;;;;;;;;;;;;:::i;39324:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39324:171:0;;;;:::i;43459:172::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43459:172:0;-1:-1:-1;;;;;43459:172:0;;:::i;39178:138::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39178:138:0;;:::i;17688:214::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17688:214:0;;:::i;32684:184::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32684:184:0;;;;;;;;;;:::i;38824:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38824:110:0;-1:-1:-1;;;;;38824:110:0;;:::i;17234:281::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17234:281:0;-1:-1:-1;;;;;17234:281:0;;:::i;38942:98::-;16511:12;:10;:12::i;:::-;16501:6;;-1:-1:-1;;;;;16501:6:0;;;:22;;;16493:67;;;;;-1:-1:-1;;;16493:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16493:67:0;;;;;;;;;;;;;;;39016:7:::1;:16:::0;38942:98::o;31891:83::-;31961:5;31954:12;;;;;;;;-1:-1:-1;;31954:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31928:13;;31954:12;;31961:5;;31954:12;;31961:5;31954:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31891:83;:::o;32876:193::-;32978:4;33000:39;33009:12;:10;:12::i;:::-;33023:7;33032:6;33000:8;:39::i;:::-;-1:-1:-1;33057:4:0;32876:193;;;;;:::o;44161:156::-;16511:12;:10;:12::i;:::-;16501:6;;-1:-1:-1;;;;;16501:6:0;;;:22;;;16493:67;;;;;-1:-1:-1;;;16493:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16493:67:0;;;;;;;;;;;;;;;44273:17:::1;:36:::0;;-1:-1:-1;;;;;;44273:36:0::1;-1:-1:-1::0;;;;;44273:36:0;;;::::1;::::0;;;::::1;::::0;;44161:156::o;34375:87::-;34444:10;;34375:87;:::o;29800:41::-;;;-1:-1:-1;;;;;29800:41:0;;:::o;32168:95::-;32248:7;;32168:95;:::o;36657:387::-;16511:12;:10;:12::i;:::-;16501:6;;-1:-1:-1;;;;;16501:6:0;;;:22;;;16493:67;;;;;-1:-1:-1;;;16493:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16493:67:0;;;;;;;;;;;;;;;36766:42:::1;-1:-1:-1::0;;;;;36755:53:0;::::1;;;36733:137;;;;-1:-1:-1::0;;;36733:137:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;36890:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;36889:27;36881:70;;;::::0;;-1:-1:-1;;;36881:70:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;36962:26:0::1;;::::0;;;:17:::1;:26;::::0;;;;:33;;-1:-1:-1;;36962:33:0::1;36991:4;36962:33:::0;;::::1;::::0;;;37006:16:::1;:30:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;37006:30:0::1;::::0;;::::1;::::0;;36657:387::o;43804:180::-;16511:12;:10;:12::i;:::-;16501:6;;-1:-1:-1;;;;;16501:6:0;;;:22;;;16493:67;;;;;-1:-1:-1;;;16493:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16493:67:0;;;;;;;;;;;;;;;43928:23:::1;:48:::0;;-1:-1:-1;;;;;;43928:48:0::1;-1:-1:-1::0;;;;;43928:48:0;;;::::1;::::0;;;::::1;::::0;;43804:180::o;33077:446::-;33209:4;33226:36;33236:6;33244:9;33255:6;33226:9;:36::i;:::-;33273:220;33296:6;33317:12;:10;:12::i;:::-;33344:138;33400:6;33344:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33344:19:0;;;;;;:11;:19;;;;;;33364:12;:10;:12::i;:::-;-1:-1:-1;;;;;33344:33:0;;;;;;;;;;;;-1:-1:-1;33344:33:0;;;:138;:37;:138::i;:::-;33273:8;:220::i;:::-;-1:-1:-1;33511:4:0;33077:446;;;;;:::o;36327:322::-;36421:7;36479;;36468;:18;;36446:110;;;;-1:-1:-1;;;36446:110:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36567:19;36589:10;:8;:10::i;:::-;36567:32;-1:-1:-1;36617:24:0;:7;36567:32;36617:11;:24::i;:::-;36610:31;;;36327:322;;;;:::o;32077:83::-;32143:9;;;;32077:83;:::o;35353:479::-;16511:12;:10;:12::i;:::-;16501:6;;-1:-1:-1;;;;;16501:6:0;;;:22;;;16493:67;;;;;-1:-1:-1;;;16493:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16493:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;35435:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;35427:60;;;::::0;;-1:-1:-1;;;35427:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;35503:9;35498:327;35522:9;:16:::0;35518:20;::::1;35498:327;;;35580:7;-1:-1:-1::0;;;;;35564:23:0::1;:9;35574:1;35564:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;35564:12:0::1;:23;35560:254;;;35623:9;35633:16:::0;;-1:-1:-1;;35633:20:0;;;35623:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;35608:9:::1;:12:::0;;-1:-1:-1;;;;;35623:31:0;;::::1;::::0;35618:1;;35608:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;35608:46:0::1;-1:-1:-1::0;;;;;35608:46:0;;::::1;;::::0;;35673:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;35712:11:::1;:20:::0;;;;:28;;-1:-1:-1;;35712:28:0::1;::::0;;35759:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;35759:15:0;;;;;-1:-1:-1;;;;;;35759:15:0::1;::::0;;;;;35793:5:::1;;35560:254;35540:3;;35498:327;;;;35353:479:::0;:::o;33531:300::-;33646:4;33668:133;33691:12;:10;:12::i;:::-;33718:7;33740:50;33779:10;33740:11;:25;33752:12;:10;:12::i;:::-;-1:-1:-1;;;;;33740:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;33740:25:0;;;:34;;;;;;;;;;;:38;:50::i;29615:26::-;;;;:::o;34470:419::-;34522:14;34539:12;:10;:12::i;:::-;-1:-1:-1;;;;;34585:19:0;;;;;;:11;:19;;;;;;34522:29;;-1:-1:-1;34585:19:0;;34584:20;34562:114;;;;-1:-1:-1;;;34562:114:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34688:15;34717:19;34728:7;34717:10;:19::i;:::-;-1:-1:-1;;;;;;;;;34765:15:0;;;;;;:7;:15;;;;;;34687:49;;-1:-1:-1;34765:28:0;;:15;-1:-1:-1;34687:49:0;34765:19;:28::i;:::-;-1:-1:-1;;;;;34747:15:0;;;;;;:7;:15;;;;;:46;34814:7;;:20;;34826:7;34814:11;:20::i;:::-;34804:7;:30;34858:10;;:23;;34873:7;34858:14;:23::i;:::-;34845:10;:36;-1:-1:-1;;;34470:419:0:o;28624:105::-;16511:12;:10;:12::i;:::-;16501:6;;-1:-1:-1;;;;;16501:6:0;;;:22;;;16493:67;;;;;-1:-1:-1;;;16493:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16493:67:0;;;;;;;;;;;;;;;28307:6:::1;::::0;::::1;;28299:15;;;::::0;::::1;;28682:6:::2;:14:::0;;-1:-1:-1;;28682:14:0::2;::::0;;28712:9:::2;::::0;::::2;::::0;28691:5:::2;::::0;28712:9:::2;28624:105::o:0;29934:46::-;;;-1:-1:-1;;;;;29934:46:0;;:::o;37600:332::-;16511:12;:10;:12::i;:::-;16501:6;;-1:-1:-1;;;;;16501:6:0;;;:22;;;16493:67;;;;;-1:-1:-1;;;16493:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16493:67:0;;;;;;;;;;;;;;;37675:36:::1;37733:9;37675:68;;37788:17;-1:-1:-1::0;;;;;37788:25:0::1;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;37788:27:0;37853:24:::1;::::0;;-1:-1:-1;;;37853:24:0;;;;-1:-1:-1;;;;;37770:67:0;;::::1;::::0;::::1;::::0;37846:4:::1;::::0;37853:22;;::::1;::::0;::::1;::::0;:24:::1;::::0;;::::1;::::0;37788:27:::1;::::0;37853:24;;;;;;;;:22;:24;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;37853:24:0;37770:108:::1;::::0;;-1:-1:-1;;;;;;37770:108:0::1;::::0;;;;;;-1:-1:-1;;;;;37770:108:0;;::::1;;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;37853:24:::1;::::0;37770:108;;;;;;;-1:-1:-1;37770:108:0;;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;37770:108:0;37754:13:::1;:124:::0;;-1:-1:-1;;;;;37754:124:0;;::::1;-1:-1:-1::0;;;;;;37754:124:0;;::::1;;::::0;;;37889:15:::1;:35:::0;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;-1:-1:-1;37600:332:0:o;37940:111::-;16511:12;:10;:12::i;:::-;16501:6;;-1:-1:-1;;;;;16501:6:0;;;:22;;;16493:67;;;;;-1:-1:-1;;;16493:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16493:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;38009:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;38009:34:0::1;38039:4;38009:34;::::0;;37940:111::o;35840:479::-;35958:7;36002;;35991;:18;;35983:62;;;;;-1:-1:-1;;;35983:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;36061:17;36056:256;;36096:15;36125:19;36136:7;36125:10;:19::i;:::-;-1:-1:-1;36095:49:0;;-1:-1:-1;36159:14:0;;-1:-1:-1;;;;;36159:14:0;36056:256;36209:23;36244:19;36255:7;36244:10;:19::i;:::-;-1:-1:-1;36206:57:0;;-1:-1:-1;36278:22:0;;-1:-1:-1;;;;;36278:22:0;29848:28;;;-1:-1:-1;;;;;29848:28:0;;:::o;30064:40::-;;;-1:-1:-1;;;30064:40:0;;;;;:::o;34897:448::-;16511:12;:10;:12::i;:::-;16501:6;;-1:-1:-1;;;;;16501:6:0;;;:22;;;16493:67;;;;;-1:-1:-1;;;16493:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16493:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;35094:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;35093:21;35085:61;;;::::0;;-1:-1:-1;;;35085:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;35161:16:0;::::1;35180:1;35161:16:::0;;;:7:::1;:16;::::0;;;;;:20;35157:109:::1;;-1:-1:-1::0;;;;;35237:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;35217:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;35198:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;35157:109:::1;-1:-1:-1::0;;;;;35276:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;35276:27:0::1;35299:4;35276:27:::0;;::::1;::::0;;;35314:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;35314:23:0::1;::::0;;::::1;::::0;;34897:448::o;43327:124::-;-1:-1:-1;;;;;43416:27:0;43392:4;43416:27;;;:18;:27;;;;;;;;;43327:124::o;27943:26::-;;;;;;:::o;29698:33::-;;;;:::o;32271:198::-;-1:-1:-1;;;;;32361:20:0;;32337:7;32361:20;;;:11;:20;;;;;;;;32357:49;;;-1:-1:-1;;;;;;32390:16:0;;;;;;:7;:16;;;;;;32383:23;;32357:49;-1:-1:-1;;;;;32444:16:0;;;;;;:7;:16;;;;;;32424:37;;:19;:37::i;16931:148::-;16511:12;:10;:12::i;:::-;16501:6;;-1:-1:-1;;;;;16501:6:0;;;:22;;;16493:67;;;;;-1:-1:-1;;;16493:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16493:67:0;;;;;;;;;;;;;;;17038:1:::1;17022:6:::0;;17001:40:::1;::::0;-1:-1:-1;;;;;17022:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;17001:40:0;17038:1;;17001:40:::1;17069:1;17052:19:::0;;-1:-1:-1;;;;;;17052:19:0::1;::::0;;16931:148::o;29883:44::-;;;-1:-1:-1;;;;;29883:44:0;;:::o;30113:47::-;;;;:::o;28426:103::-;16511:12;:10;:12::i;:::-;16501:6;;-1:-1:-1;;;;;16501:6:0;;;:22;;;16493:67;;;;;-1:-1:-1;;;16493:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16493:67:0;;;;;;;;;;;;;;;28129:6:::1;::::0;::::1;;28128:7;28120:16;;;::::0;::::1;;28485:6:::2;:13:::0;;-1:-1:-1;;28485:13:0::2;28494:4;28485:13;::::0;;28514:7:::2;::::0;::::2;::::0;28485:6:::2;::::0;28514:7:::2;28426:103::o:0;34247:120::-;-1:-1:-1;;;;;34339:20:0;34315:4;34339:20;;;:11;:20;;;;;;;;;34247:120::o;16289:79::-;16327:7;16354:6;-1:-1:-1;;;;;16354:6:0;16289:79;:::o;39048:122::-;16511:12;:10;:12::i;:::-;16501:6;;-1:-1:-1;;;;;16501:6:0;;;:22;;;16493:67;;;;;-1:-1:-1;;;16493:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16493:67:0;;;;;;;;;;;;;;;39134:13:::1;:28:::0;39048:122::o;31982:87::-;32054:7;32047:14;;;;;;;;-1:-1:-1;;32047:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32021:13;;32047:14;;32054:7;;32047:14;;32054:7;32047:14;;;;;;;;;;;;;;;;;;;;;;;;33839:400;33959:4;33981:228;34004:12;:10;:12::i;:::-;34031:7;34053:145;34110:15;34053:145;;;;;;;;;;;;;;;;;:11;:25;34065:12;:10;:12::i;:::-;-1:-1:-1;;;;;34053:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;34053:25:0;;;:34;;;;;;;;;;;:145;:38;:145::i;17974:329::-;18040:14;;-1:-1:-1;;;;;18040:14:0;18058:10;18040:28;18018:113;;;;-1:-1:-1;;;18018:113:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18156:9;;18150:3;:15;18142:59;;;;;-1:-1:-1;;;18142:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18246:14;;;18238:6;;18217:44;;-1:-1:-1;;;;;18246:14:0;;;;18238:6;;;;-1:-1:-1;;;;;;;;;;;18217:44:0;;18281:14;;;18272:23;;-1:-1:-1;;;;;;18272:23:0;-1:-1:-1;;;;;18281:14:0;;;18272:23;;;;;;17974:329::o;32477:199::-;32582:4;32604:42;32614:12;:10;:12::i;:::-;32628:9;32639:6;32604:9;:42::i;37052:540::-;16511:12;:10;:12::i;:::-;16501:6;;-1:-1:-1;;;;;16501:6:0;;;:22;;;16493:67;;;;;-1:-1:-1;;;16493:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16493:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;37141:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;37133:65;;;::::0;;-1:-1:-1;;;37133:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;37214:9;37209:376;37233:16;:23:::0;37229:27;::::1;37209:376;;;37305:7;-1:-1:-1::0;;;;;37282:30:0::1;:16;37299:1;37282:19;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;37282:19:0::1;:30;37278:296;;;37355:16;37394:23:::0;;-1:-1:-1;;37394:27:0;;;37355:85;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;37333:16:::1;:19:::0;;-1:-1:-1;;;;;37355:85:0;;::::1;::::0;37350:1;;37333:19;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:107:::0;;-1:-1:-1;;;;;;37333:107:0::1;-1:-1:-1::0;;;;;37333:107:0;;::::1;;::::0;;37459:26;;::::1;::::0;;:17:::1;:26:::0;;;;;;:34;;-1:-1:-1;;37459:34:0::1;::::0;;37512:16:::1;:22:::0;;;::::1;;;37278:296;37258:3;;37209:376;;29987:40:::0;;;-1:-1:-1;;;;;29987:40:0;;:::o;17523:89::-;17595:9;;17523:89;:::o;39324:171::-;16511:12;:10;:12::i;:::-;16501:6;;-1:-1:-1;;;;;16501:6:0;;;:22;;;16493:67;;;;;-1:-1:-1;;;16493:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16493:67:0;;;;;;;;;;;;;;;39401:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;39401:32:0;::::1;-1:-1:-1::0;;;;39401:32:0;;::::1;::::0;;;::::1;::::0;;;39449:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;39324:171:::0;:::o;43459:172::-;16511:12;:10;:12::i;:::-;16501:6;;-1:-1:-1;;;;;16501:6:0;;;:22;;;16493:67;;;;;-1:-1:-1;;;16493:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16493:67:0;;;;;;;;;;;;;;;43579:21:::1;:44:::0;;-1:-1:-1;;;;;;43579:44:0::1;-1:-1:-1::0;;;;;43579:44:0;;;::::1;::::0;;;::::1;::::0;;43459:172::o;39178:138::-;16511:12;:10;:12::i;:::-;16501:6;;-1:-1:-1;;;;;16501:6:0;;;:22;;;16493:67;;;;;-1:-1:-1;;;16493:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16493:67:0;;;;;;;;;;;;;;;39272:36:::1;39302:5;39272:25;39284:12;39272:7;;:11;;:25;;;;:::i;:::-;:29:::0;::::1;:36::i;:::-;39257:12;:51:::0;-1:-1:-1;39178:138:0:o;17688:214::-;16511:12;:10;:12::i;:::-;16501:6;;-1:-1:-1;;;;;16501:6:0;;;:22;;;16493:67;;;;;-1:-1:-1;;;16493:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16493:67:0;;;;;;;;;;;;;;;17769:6:::1;::::0;;;17752:23;;-1:-1:-1;;;;;;17752:23:0;;::::1;-1:-1:-1::0;;;;;17769:6:0;::::1;17752:23;::::0;;;17786:19:::1;::::0;;17828:3:::1;:10:::0;::::1;17816:9;:22:::0;17854:40:::1;::::0;17769:6;;-1:-1:-1;;;;;;;;;;;17854:40:0;17769:6;;17854:40:::1;17688:214:::0;:::o;32684:184::-;-1:-1:-1;;;;;32833:18:0;;;32801:7;32833:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;32684:184::o;38824:110::-;16511:12;:10;:12::i;:::-;16501:6;;-1:-1:-1;;;;;16501:6:0;;;:22;;;16493:67;;;;;-1:-1:-1;;;16493:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16493:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;38891:27:0::1;38921:5;38891:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;38891:35:0::1;::::0;;38824:110::o;17234:281::-;16511:12;:10;:12::i;:::-;16501:6;;-1:-1:-1;;;;;16501:6:0;;;:22;;;16493:67;;;;;-1:-1:-1;;;16493:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16493:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;17337:22:0;::::1;17315:110;;;;-1:-1:-1::0;;;17315:110:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17462:6;::::0;;17441:38:::1;::::0;-1:-1:-1;;;;;17441:38:0;;::::1;::::0;17462:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;17441:38:0;::::1;17490:6;:17:::0;;-1:-1:-1;;;;;;17490:17:0::1;-1:-1:-1::0;;;;;17490:17:0;;;::::1;::::0;;;::::1;::::0;;17234:281::o;8229:106::-;8317:10;8229:106;:::o;44482:371::-;-1:-1:-1;;;;;44609:19:0;;44601:68;;;;-1:-1:-1;;;44601:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44688:21:0;;44680:68;;;;-1:-1:-1;;;44680:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44761:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;44813:32;;;;;;;;;;;;;;;;;44482:371;;;:::o;44861:2043::-;-1:-1:-1;;;;;44983:18:0;;44975:68;;;;-1:-1:-1;;;44975:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45062:16:0;;45054:64;;;;-1:-1:-1;;;45054:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45146:1;45137:6;:10;45129:64;;;;-1:-1:-1;;;45129:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45213:21:0;;;;;;:17;:21;;;;;;;;45212:22;45204:54;;;;;-1:-1:-1;;;45204:54:0;;;;;;;;;;;;-1:-1:-1;;;45204:54:0;;;;;;;;;;;;;;;45296:10;45278:29;;;;:17;:29;;;;;;;;45277:30;45269:62;;;;;-1:-1:-1;;;45269:62:0;;;;;;;;;;;;-1:-1:-1;;;45269:62:0;;;;;;;;;;;;;;;45369:9;45351:28;;;;:17;:28;;;;;;;;45350:29;45342:61;;;;;-1:-1:-1;;;45342:61:0;;;;;;;;;;;;-1:-1:-1;;;45342:61:0;;;;;;;;;;;;;;;45426:7;:5;:7::i;:::-;-1:-1:-1;;;;;45418:15:0;:4;-1:-1:-1;;;;;45418:15:0;;;:32;;;;;45443:7;:5;:7::i;:::-;-1:-1:-1;;;;;45437:13:0;:2;-1:-1:-1;;;;;45437:13:0;;;45418:32;45414:175;;;45501:12;;45491:6;:22;;45465:124;;;;-1:-1:-1;;;45465:124:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45884:28;45915:24;45933:4;45915:9;:24::i;:::-;45884:55;;45980:12;;45956:20;:36;45952:104;;-1:-1:-1;46032:12:0;;45952:104;46132:29;;46095:66;;;;;;;46190:53;;-1:-1:-1;46227:16:0;;-1:-1:-1;;;46227:16:0;;;;46226:17;46190:53;:91;;;;-1:-1:-1;46268:13:0;;-1:-1:-1;;;;;46260:21:0;;;46268:13;;46260:21;;46190:91;:129;;;;-1:-1:-1;46298:21:0;;-1:-1:-1;;;46298:21:0;;;;46190:129;46172:318;;;46369:29;;46346:52;;46442:36;46457:20;46442:14;:36::i;:::-;-1:-1:-1;;;;;46683:24:0;;46563:12;46683:24;;;:18;:24;;;;;;46578:4;;46683:24;;;:50;;-1:-1:-1;;;;;;46711:22:0;;;;;;:18;:22;;;;;;;;46683:50;46679:98;;;-1:-1:-1;46760:5:0;46679:98;46855:41;46870:4;46876:2;46880:6;46888:7;46855:14;:41::i;:::-;44861:2043;;;;;;:::o;4537:226::-;4657:7;4693:12;4685:6;;;;4677:29;;;;-1:-1:-1;;;4677:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4729:5:0;;;4537:226::o;41483:164::-;41525:7;41546:15;41563;41582:19;:17;:19::i;:::-;41545:56;;-1:-1:-1;41545:56:0;-1:-1:-1;41619:20:0;41545:56;;41619:11;:20::i;:::-;41612:27;;;;41483:164;:::o;5969:132::-;6027:7;6054:39;6058:1;6061;6054:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6047:46;5969:132;-1:-1:-1;;;5969:132:0:o;3634:181::-;3692:7;3724:5;;;3748:6;;;;3740:46;;;;;-1:-1:-1;;;3740:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;39751:742;39851:7;39873;39895;39917;39939;39961;40011:23;40049:12;40076:18;40108:20;40120:7;40108:11;:20::i;:::-;39996:132;;;;;;40140:15;40157:23;40182:12;40198:113;40224:7;40246:4;40265:10;40290;:8;:10::i;:::-;40198:11;:113::i;:::-;40139:172;;;;-1:-1:-1;40139:172:0;;-1:-1:-1;40415:15:0;;-1:-1:-1;40445:4:0;;-1:-1:-1;40464:10:0;;-1:-1:-1;39751:742:0;;-1:-1:-1;;;;;39751:742:0:o;4098:136::-;4156:7;4183:43;4187:1;4190;4183:43;;;;;;;;;;;;;;;;;:3;:43::i;5022:471::-;5080:7;5325:6;5321:47;;-1:-1:-1;5355:1:0;5348:8;;5321:47;5392:5;;;5396:1;5392;:5;:1;5416:5;;;;;:10;5408:56;;;;-1:-1:-1;;;5408:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46912:564;30538:16;:23;;-1:-1:-1;;;;30538:23:0;-1:-1:-1;;;30538:23:0;;;;47025:41:::1;47061:4;47025:31;:20:::0;47050:5:::1;47025:24;:31::i;:::-;:35:::0;::::1;:41::i;:::-;46997:69:::0;-1:-1:-1;47077:21:0::1;47101:39;47136:3;47101:30;:20:::0;47126:4:::1;47101:24;:30::i;:39::-;47077:63:::0;-1:-1:-1;47151:20:0::1;47174:41;47210:4;47174:31;:20:::0;47199:5:::1;47174:24;:31::i;:41::-;47151:64;;47269:35;47286:17;47269:16;:35::i;:::-;47315:32;47334:12;47315:18;:32::i;:::-;47358:27;47371:13;47358:12;:27::i;:::-;47403:65;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;;30584:16:0;:24;;-1:-1:-1;;;;30584:24:0;;;-1:-1:-1;;46912:564:0:o;48126:838::-;48282:7;48277:28;;48291:14;:12;:14::i;:::-;-1:-1:-1;;;;;48322:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;48346:22:0;;;;;;:11;:22;;;;;;;;48345:23;48322:46;48318:597;;;48385:48;48407:6;48415:9;48426:6;48385:21;:48::i;:::-;48318:597;;;-1:-1:-1;;;;;48456:19:0;;;;;;:11;:19;;;;;;;;48455:20;:46;;;;-1:-1:-1;;;;;;48479:22:0;;;;;;:11;:22;;;;;;;;48455:46;48451:464;;;48518:46;48538:6;48546:9;48557:6;48518:19;:46::i;48451:464::-;-1:-1:-1;;;;;48587:19:0;;;;;;:11;:19;;;;;;;;48586:20;:47;;;;-1:-1:-1;;;;;;48611:22:0;;;;;;:11;:22;;;;;;;;48610:23;48586:47;48582:333;;;48650:44;48668:6;48676:9;48687:6;48650:17;:44::i;48582:333::-;-1:-1:-1;;;;;48716:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;48739:22:0;;;;;;:11;:22;;;;;;;;48716:45;48712:203;;;48778:48;48800:6;48808:9;48819:6;48778:21;:48::i;48712:203::-;48859:44;48877:6;48885:9;48896:6;48859:17;:44::i;:::-;48932:7;48927:29;;48941:15;:13;:15::i;:::-;48126:838;;;;:::o;41655:605::-;41753:7;;41789;;41706;;;;;41807:338;41831:9;:16;41827:20;;41807:338;;;41915:7;41891;:21;41899:9;41909:1;41899:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41899:12:0;41891:21;;;;;;;;;;;;;:31;;:83;;;41967:7;41943;:21;41951:9;41961:1;41951:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41951:12:0;41943:21;;;;;;;;;;;;;:31;41891:83;41869:146;;;41998:7;;42007;;41990:25;;;;;;;;;41869:146;42040:34;42052:7;:21;42060:9;42070:1;42060:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42060:12:0;42052:21;;;;;;;;;;;;;42040:7;;:11;:34::i;:::-;42030:44;;42099:34;42111:7;:21;42119:9;42129:1;42119:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42119:12:0;42111:21;;;;;;;;;;;;;42099:7;;:11;:34::i;:::-;42089:44;-1:-1:-1;41849:3:0;;41807:338;;;-1:-1:-1;42181:7:0;;42169;;:20;;:11;:20::i;:::-;42159:7;:30;42155:61;;;42199:7;;42208;;42191:25;;;;;;;;42155:61;42235:7;;-1:-1:-1;42244:7:0;-1:-1:-1;41655:605:0;;;:::o;6597:312::-;6717:7;6752:12;6745:5;6737:28;;;;-1:-1:-1;;;6737:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6776:9;6792:1;6788;:5;;;;;;;6597:312;-1:-1:-1;;;;;6597:312:0:o;40501:412::-;40602:7;40624;40646;40681:12;40696:24;40712:7;40696:15;:24::i;:::-;40681:39;;40731:18;40752:30;40774:7;40752:21;:30::i;:::-;40731:51;-1:-1:-1;40793:23:0;40819:33;40731:51;40819:17;:7;40831:4;40819:11;:17::i;:::-;:21;;:33::i;:::-;40793:59;40888:4;;-1:-1:-1;40894:10:0;;-1:-1:-1;40501:412:0;;-1:-1:-1;;;40501:412:0:o;40921:554::-;41120:7;;;;41217:24;:7;41229:11;41217;:24::i;:::-;41199:42;-1:-1:-1;41252:12:0;41267:21;:4;41276:11;41267:8;:21::i;:::-;41252:36;-1:-1:-1;41299:18:0;41320:27;:10;41335:11;41320:14;:27::i;:::-;41299:48;-1:-1:-1;41358:23:0;41384:33;41299:48;41384:17;:7;41396:4;41384:11;:17::i;:33::-;41436:7;;;;-1:-1:-1;41462:4:0;;-1:-1:-1;40921:554:0;;-1:-1:-1;;;;;;;40921:554:0:o;43639:157::-;43700:24;43717:6;43700:16;:24::i;:::-;43735:21;;:53;;-1:-1:-1;;;;;43735:21:0;;;;43766;43735:53;;;;;:21;:53;:21;:53;43766:21;43735;:53;;;;;;;;;;;;;;;;;;;43992:161;44055:24;44072:6;44055:16;:24::i;:::-;44090:23;;:55;;-1:-1:-1;;;;;44090:23:0;;;;44123:21;44090:55;;;;;:23;:55;:23;:55;44123:21;44090:23;:55;;;;;;;;;;;;;;;;;;;44325:149;44382:24;44399:6;44382:16;:24::i;:::-;44417:17;;:49;;-1:-1:-1;;;;;44417:17:0;;;;44444:21;44417:49;;;;;:17;:49;:17;:49;44444:21;44417:17;:49;;;;;;;;;;;;;;;;;;;42951:235;42998:7;;:12;:34;;;;-1:-1:-1;43014:13:0;;:18;42998:34;42994:47;;;43034:7;;42994:47;43071:7;;;43053:15;:25;43113:13;;;43089:21;:37;-1:-1:-1;43139:11:0;;;;43161:17;42951:235;:::o;49605:686::-;49756:15;49786:23;49824:12;49851:23;49889:12;49916:18;49948:19;49959:7;49948:10;:19::i;:::-;-1:-1:-1;;;;;49996:15:0;;;;;;:7;:15;;;;;;49741:226;;-1:-1:-1;49741:226:0;;-1:-1:-1;49741:226:0;;-1:-1:-1;49741:226:0;-1:-1:-1;49741:226:0;-1:-1:-1;49741:226:0;-1:-1:-1;49996:28:0;;50016:7;49996:19;:28::i;:::-;-1:-1:-1;;;;;49978:15:0;;;;;;:7;:15;;;;;;;;:46;;;;50053:7;:15;;;;:28;;50073:7;50053:19;:28::i;:::-;-1:-1:-1;;;;;50035:15:0;;;;;;;:7;:15;;;;;;:46;;;;50113:18;;;;;;;:39;;50136:15;50113:22;:39::i;:::-;-1:-1:-1;;;;;50092:18:0;;;;;;:7;:18;;;;;:60;50163:26;50178:10;50163:14;:26::i;:::-;50200:23;50212:4;50218;50200:11;:23::i;:::-;50256:9;-1:-1:-1;;;;;50239:44:0;50248:6;-1:-1:-1;;;;;50239:44:0;;50267:15;50239:44;;;;;;;;;;;;;;;;;;49605:686;;;;;;;;;:::o;50299:698::-;50448:15;50478:23;50516:12;50543:23;50581:12;50608:18;50640:19;50651:7;50640:10;:19::i;:::-;-1:-1:-1;;;;;50688:15:0;;;;;;:7;:15;;;;;;50433:226;;-1:-1:-1;50433:226:0;;-1:-1:-1;50433:226:0;;-1:-1:-1;50433:226:0;-1:-1:-1;50433:226:0;-1:-1:-1;50433:226:0;-1:-1:-1;50688:28:0;;50433:226;50688:19;:28::i;:::-;-1:-1:-1;;;;;50670:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;50748:18;;;;;:7;:18;;;;;:39;;50771:15;50748:22;:39::i;:::-;-1:-1:-1;;;;;50727:18:0;;;;;;:7;:18;;;;;;;;:60;;;;50819:7;:18;;;;:39;;50842:15;50819:22;:39::i;48972:625::-;49119:15;49149:23;49187:12;49214:23;49252:12;49279:18;49311:19;49322:7;49311:10;:19::i;:::-;-1:-1:-1;;;;;49359:15:0;;;;;;:7;:15;;;;;;49104:226;;-1:-1:-1;49104:226:0;;-1:-1:-1;49104:226:0;;-1:-1:-1;49104:226:0;-1:-1:-1;49104:226:0;-1:-1:-1;49104:226:0;-1:-1:-1;49359:28:0;;49104:226;49359:19;:28::i;38059:757::-;38210:15;38240:23;38278:12;38305:23;38343:12;38370:18;38402:19;38413:7;38402:10;:19::i;:::-;-1:-1:-1;;;;;38450:15:0;;;;;;:7;:15;;;;;;38195:226;;-1:-1:-1;38195:226:0;;-1:-1:-1;38195:226:0;;-1:-1:-1;38195:226:0;-1:-1:-1;38195:226:0;-1:-1:-1;38195:226:0;-1:-1:-1;38450:28:0;;38470:7;38450:19;:28::i;:::-;-1:-1:-1;;;;;38432:15:0;;;;;;:7;:15;;;;;;;;:46;;;;38507:7;:15;;;;:28;;38527:7;38507:19;:28::i;43194:125::-;43248:15;;43238:7;:25;43290:21;;43274:13;:37;43194:125::o;42631:130::-;42695:7;42722:31;42747:5;42722:20;42734:7;;42722;:11;;:20;;;;:::i;42769:174::-;42866:7;42898:37;42929:5;42898:26;42910:13;;42898:7;:11;;:26;;;;:::i;47484:561::-;47634:16;;;47648:1;47634:16;;;47610:21;47634:16;;;;;47610:21;47634:16;;;;;;;;;;-1:-1:-1;47634:16:0;47610:40;;47679:4;47661;47666:1;47661:7;;;;;;;;-1:-1:-1;;;;;47661:23:0;;;:7;;;;;;;;;;:23;;;;47705:15;;:22;;;-1:-1:-1;;;47705:22:0;;;;:15;;;;;:20;;:22;;;;;47661:7;;47705:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47705:22:0;47695:7;;:4;;47700:1;;47695:7;;;;;;-1:-1:-1;;;;;47695:32:0;;;:7;;;;;;;;;:32;47772:15;;47740:62;;47757:4;;47772:15;47790:11;47740:8;:62::i;:::-;47841:15;;:196;;-1:-1:-1;;;47841:196:0;;;;;;;;:15;:196;;;;;;47991:4;47841:196;;;;;;48011:15;47841:196;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47841:15:0;;;;:66;;47922:11;;47964:4;;47991;48011:15;47841:196;;;;;;;;;;;;;;;;:15;:196;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42268:355;42331:19;42353:10;:8;:10::i;:::-;42331:32;-1:-1:-1;42374:18:0;42395:27;:10;42331:32;42395:14;:27::i;:::-;42474:4;42458:22;;;;:7;:22;;;;;;42374:48;;-1:-1:-1;42458:38:0;;42374:48;42458:26;:38::i;:::-;42449:4;42433:22;;;;:7;:22;;;;;;;;:63;;;;42511:11;:26;;;;;;42507:108;;;42593:4;42577:22;;;;:7;:22;;;;;;:38;;42604:10;42577:26;:38::i;:::-;42568:4;42552:22;;;;:7;:22;;;;;:63;42507:108;42268:355;;;:::o;39596:147::-;39674:7;;:17;;39686:4;39674:11;:17::i;:::-;39664:7;:27;39715:10;;:20;;39730:4;39715:14;:20::i;:::-;39702:10;:33;-1:-1:-1;;39596:147:0:o

Swarm Source

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