ETH Price: $3,465.37 (+2.10%)
Gas: 10 Gwei

Token

The Little Guy (TLG)
 

Overview

Max Total Supply

100,000,000,000,000 TLG

Holders

601

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
110.471606387 TLG

Value
$0.00
0x86c81b53d187251fc09941bc19b46aa3966b65cc
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:
TLG

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-07-20
*/

/**

  'The Little Guy' (TLG) is a community-driven charity token supporting struggling small businesses throughout the US.


*/

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 TLG 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 = 10000000000000 * 10**1 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = "The Little Guy";
    string private _symbol = "TLG";
    uint8 private _decimals = 9;

    uint256 public _taxFee = 4;
    uint256 private _previousTaxFee = _taxFee;

    uint256 public _liquidityFee = 2;
    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 = 35000000000 * 10**1 * 10**9;
    uint256 private numTokensSellToAddToLiquidity = 10000000000 * 10**1 * 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(50).mul(20);
        uint256 devPercentage = contractTokenBalance.div(50).mul(20);
        uint256 mmPercentage = contractTokenBalance.div(100).mul(20);

        //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"}]

6003805460ff1916905569152d02c7e14af6800000600c5569085afffa6ff50bffffff19600d5560c0604052600e60808190526d546865204c6974746c652047757960901b60a09081526200005891600f9190620004d4565b5060408051808201909152600380825262544c4760e81b60209092019182526200008591601091620004d4565b506011805460ff191660091790556004601281905560135560026014819055601555601a805460ff60a81b1916600160a81b1790556812f939c99edab80000601b5568056bc75e2d63100000601c55348015620000e157600080fd5b5060405162003a5938038062003a59833981810160405260608110156200010757600080fd5b5080516020820151604090920151909190600062000124620004c1565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350601880546001600160a01b038086166001600160a01b03199283161790925560198054858416908316179055601a805492841692909116919091179055600d5460046000620001bc620004c1565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200023357600080fd5b505afa15801562000248573d6000803e3d6000fd5b505050506040513d60208110156200025f57600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b158015620002b057600080fd5b505afa158015620002c5573d6000803e3d6000fd5b505050506040513d6020811015620002dc57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200032f57600080fd5b505af115801562000344573d6000803e3d6000fd5b505050506040513d60208110156200035b57600080fd5b5051601780546001600160a01b03199081166001600160a01b0393841617909155601680549091169183169190911790556001600760006200039c620004c5565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff1995861617905530815260078352908120805484166001908117909155600a9092527f2436ef7a8d6f3c514f206c4d4e0f53020976e858e3bbe4fca72a9ed2f895626780549093168217909255600b805491820181559091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b031916733dad8cf200799f82fd8eb68f608220d8f3ebf8de1790556200046a620004c1565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600c546040518082815260200191505060405180910390a35050505062000570565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200051757805160ff191683800117855562000547565b8280016001018555821562000547579182015b82811115620005475782518255916020019190600101906200052a565b506200055592915062000559565b5090565b5b808211156200055557600081556001016200055a565b6134d980620005806000396000f3fe6080604052600436106102b25760003560e01c80635342acb411610175578063a457c2d7116100dc578063c49b9a8011610095578063dd4670641161006f578063dd46706414610a01578063dd62ed3e14610a2b578063ea2f0b3714610a66578063f2fde38b14610a99576102b9565b8063c49b9a8014610978578063d047e4b7146109a4578063d543dbeb146109d7576102b9565b8063a457c2d714610894578063a69df4b5146108cd578063a9059cbb146108e2578063b030b34a1461091b578063b425bac31461094e578063b6c5232414610963576102b9565b80637d1db4a51161012e5780637d1db4a5146107e35780638456cb59146107f857806388f820201461080d5780638da5cb5b146108405780638ee88c531461085557806395d89b411461087f576102b9565b80635342acb4146107295780635c975abb1461075c5780636bc87c3a1461077157806370a0823114610786578063715018a6146107b957806376d4ab99146107ce576102b9565b80633685d4191161021957806341cb87fc116101d257806341cb87fc14610634578063437823ec146106675780634549b0391461069a57806349bd5a5e146106cc5780634a74bb02146106e157806352390c02146106f6576102b9565b80633685d4191461055f57806339509351146105925780633b124fe7146105cb5780633bd5d173146105e05780633f4ba83a1461060a5780634144d9e41461061f576102b9565b806318160ddd1161026b57806318160ddd1461044c5780631d7ef879146104615780631ff53b601461049457806323b872dd146104c75780632d8381191461050a578063313ce56714610534576102b9565b8063061c82d0146102be57806306fdde03146102ea578063095ea7b3146103745780630a1f8ea8146103c157806313114a9d146103f45780631694505e1461041b576102b9565b366102b957005b600080fd5b3480156102ca57600080fd5b506102e8600480360360208110156102e157600080fd5b5035610acc565b005b3480156102f657600080fd5b506102ff610b29565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610339578181015183820152602001610321565b50505050905090810190601f1680156103665780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561038057600080fd5b506103ad6004803603604081101561039757600080fd5b506001600160a01b038135169060200135610bbf565b604080519115158252519081900360200190f35b3480156103cd57600080fd5b506102e8600480360360208110156103e457600080fd5b50356001600160a01b0316610bdd565b34801561040057600080fd5b50610409610c57565b60408051918252519081900360200190f35b34801561042757600080fd5b50610430610c5d565b604080516001600160a01b039092168252519081900360200190f35b34801561045857600080fd5b50610409610c6c565b34801561046d57600080fd5b506102e86004803603602081101561048457600080fd5b50356001600160a01b0316610c72565b3480156104a057600080fd5b506102e8600480360360208110156104b757600080fd5b50356001600160a01b0316610dfa565b3480156104d357600080fd5b506103ad600480360360608110156104ea57600080fd5b506001600160a01b03813581169160208101359091169060400135610e74565b34801561051657600080fd5b506104096004803603602081101561052d57600080fd5b5035610efb565b34801561054057600080fd5b50610549610f5d565b6040805160ff9092168252519081900360200190f35b34801561056b57600080fd5b506102e86004803603602081101561058257600080fd5b50356001600160a01b0316610f66565b34801561059e57600080fd5b506103ad600480360360408110156105b557600080fd5b506001600160a01b038135169060200135611127565b3480156105d757600080fd5b50610409611175565b3480156105ec57600080fd5b506102e86004803603602081101561060357600080fd5b503561117b565b34801561061657600080fd5b506102e8611255565b34801561062b57600080fd5b506104306112f1565b34801561064057600080fd5b506102e86004803603602081101561065757600080fd5b50356001600160a01b0316611300565b34801561067357600080fd5b506102e86004803603602081101561068a57600080fd5b50356001600160a01b03166114ea565b3480156106a657600080fd5b50610409600480360360408110156106bd57600080fd5b50803590602001351515611566565b3480156106d857600080fd5b506104306115f8565b3480156106ed57600080fd5b506103ad611607565b34801561070257600080fd5b506102e86004803603602081101561071957600080fd5b50356001600160a01b0316611617565b34801561073557600080fd5b506103ad6004803603602081101561074c57600080fd5b50356001600160a01b031661179d565b34801561076857600080fd5b506103ad6117bb565b34801561077d57600080fd5b506104096117c4565b34801561079257600080fd5b50610409600480360360208110156107a957600080fd5b50356001600160a01b03166117ca565b3480156107c557600080fd5b506102e861182c565b3480156107da57600080fd5b506104306118bc565b3480156107ef57600080fd5b506104096118cb565b34801561080457600080fd5b506102e86118d1565b34801561081957600080fd5b506103ad6004803603602081101561083057600080fd5b50356001600160a01b0316611971565b34801561084c57600080fd5b5061043061198f565b34801561086157600080fd5b506102e86004803603602081101561087857600080fd5b503561199e565b34801561088b57600080fd5b506102ff6119fb565b3480156108a057600080fd5b506103ad600480360360408110156108b757600080fd5b506001600160a01b038135169060200135611a5c565b3480156108d957600080fd5b506102e8611ac4565b3480156108ee57600080fd5b506103ad6004803603604081101561090557600080fd5b506001600160a01b038135169060200135611bb2565b34801561092757600080fd5b506102e86004803603602081101561093e57600080fd5b50356001600160a01b0316611bc6565b34801561095a57600080fd5b50610430611d53565b34801561096f57600080fd5b50610409611d62565b34801561098457600080fd5b506102e86004803603602081101561099b57600080fd5b50351515611d68565b3480156109b057600080fd5b506102e8600480360360208110156109c757600080fd5b50356001600160a01b0316611e13565b3480156109e357600080fd5b506102e8600480360360208110156109fa57600080fd5b5035611e8d565b348015610a0d57600080fd5b506102e860048036036020811015610a2457600080fd5b5035611f0b565b348015610a3757600080fd5b5061040960048036036040811015610a4e57600080fd5b506001600160a01b0381358116916020013516611fa9565b348015610a7257600080fd5b506102e860048036036020811015610a8957600080fd5b50356001600160a01b0316611fd4565b348015610aa557600080fd5b506102e860048036036020811015610abc57600080fd5b50356001600160a01b031661204d565b610ad4612133565b6000546001600160a01b03908116911614610b24576040805162461bcd60e51b8152602060048201819052602482015260008051602061337e833981519152604482015290519081900360640190fd5b601255565b600f8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bb55780601f10610b8a57610100808354040283529160200191610bb5565b820191906000526020600020905b815481529060010190602001808311610b9857829003601f168201915b5050505050905090565b6000610bd3610bcc612133565b8484612137565b5060015b92915050565b610be5612133565b6000546001600160a01b03908116911614610c35576040805162461bcd60e51b8152602060048201819052602482015260008051602061337e833981519152604482015290519081900360640190fd5b601a80546001600160a01b0319166001600160a01b0392909216919091179055565b600e5490565b6016546001600160a01b031681565b600c5490565b610c7a612133565b6000546001600160a01b03908116911614610cca576040805162461bcd60e51b8152602060048201819052602482015260008051602061337e833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610d265760405162461bcd60e51b81526004018080602001828103825260228152602001806133346022913960400191505060405180910390fd5b6001600160a01b0381166000908152600a602052604090205460ff1615610d94576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600a60205260408120805460ff19166001908117909155600b805491820181559091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319169091179055565b610e02612133565b6000546001600160a01b03908116911614610e52576040805162461bcd60e51b8152602060048201819052602482015260008051602061337e833981519152604482015290519081900360640190fd5b601980546001600160a01b0319166001600160a01b0392909216919091179055565b6000610e81848484612223565b610ef184610e8d612133565b610eec85604051806060016040528060288152602001613356602891396001600160a01b038a16600090815260066020526040812090610ecb612133565b6001600160a01b031681526020810191909152604001600020549190612568565b612137565b5060019392505050565b6000600d54821115610f3e5760405162461bcd60e51b815260040180806020018281038252602a815260200180613279602a913960400191505060405180910390fd5b6000610f486125ff565b9050610f548382612622565b9150505b919050565b60115460ff1690565b610f6e612133565b6000546001600160a01b03908116911614610fbe576040805162461bcd60e51b8152602060048201819052602482015260008051602061337e833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526008602052604090205460ff1661102b576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b60095481101561112357816001600160a01b03166009828154811061104f57fe5b6000918252602090912001546001600160a01b0316141561111b5760098054600019810190811061107c57fe5b600091825260209091200154600980546001600160a01b0390921691839081106110a257fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600582526040808220829055600890925220805460ff1916905560098054806110f457fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611123565b60010161102e565b5050565b6000610bd3611134612133565b84610eec8560066000611145612133565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061266b565b60125481565b6000611185612133565b6001600160a01b03811660009081526008602052604090205490915060ff16156111e05760405162461bcd60e51b815260040180806020018281038252602c815260200180613430602c913960400191505060405180910390fd5b60006111eb836126c5565b505050506001600160a01b03841660009081526004602052604090205491925061121791905082612714565b6001600160a01b038316600090815260046020526040902055600d5461123d9082612714565b600d55600e5461124d908461266b565b600e55505050565b61125d612133565b6000546001600160a01b039081169116146112ad576040805162461bcd60e51b8152602060048201819052602482015260008051602061337e833981519152604482015290519081900360640190fd5b60035460ff166112bc57600080fd5b6003805460ff191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b6019546001600160a01b031681565b611308612133565b6000546001600160a01b03908116911614611358576040805162461bcd60e51b8152602060048201819052602482015260008051602061337e833981519152604482015290519081900360640190fd5b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b15801561139657600080fd5b505afa1580156113aa573d6000803e3d6000fd5b505050506040513d60208110156113c057600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b15801561141057600080fd5b505afa158015611424573d6000803e3d6000fd5b505050506040513d602081101561143a57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b15801561148c57600080fd5b505af11580156114a0573d6000803e3d6000fd5b505050506040513d60208110156114b657600080fd5b5051601780546001600160a01b039283166001600160a01b0319918216179091556016805493909216921691909117905550565b6114f2612133565b6000546001600160a01b03908116911614611542576040805162461bcd60e51b8152602060048201819052602482015260008051602061337e833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b6000600c548311156115bf576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816115de5760006115cf846126c5565b50939550610bd7945050505050565b60006115e9846126c5565b50929550610bd7945050505050565b6017546001600160a01b031681565b601a54600160a81b900460ff1681565b61161f612133565b6000546001600160a01b0390811691161461166f576040805162461bcd60e51b8152602060048201819052602482015260008051602061337e833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526008602052604090205460ff16156116dd576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205415611737576001600160a01b03811660009081526004602052604090205461171d90610efb565b6001600160a01b0382166000908152600560205260409020555b6001600160a01b03166000818152600860205260408120805460ff191660019081179091556009805491820181559091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0180546001600160a01b0319169091179055565b6001600160a01b031660009081526007602052604090205460ff1690565b60035460ff1681565b60145481565b6001600160a01b03811660009081526008602052604081205460ff161561180a57506001600160a01b038116600090815260056020526040902054610f58565b6001600160a01b038216600090815260046020526040902054610bd790610efb565b611834612133565b6000546001600160a01b03908116911614611884576040805162461bcd60e51b8152602060048201819052602482015260008051602061337e833981519152604482015290519081900360640190fd5b600080546040516001600160a01b039091169060008051602061339e833981519152908390a3600080546001600160a01b0319169055565b6018546001600160a01b031681565b601b5481565b6118d9612133565b6000546001600160a01b03908116911614611929576040805162461bcd60e51b8152602060048201819052602482015260008051602061337e833981519152604482015290519081900360640190fd5b60035460ff161561193957600080fd5b6003805460ff191660011790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b6001600160a01b031660009081526008602052604090205460ff1690565b6000546001600160a01b031690565b6119a6612133565b6000546001600160a01b039081169116146119f6576040805162461bcd60e51b8152602060048201819052602482015260008051602061337e833981519152604482015290519081900360640190fd5b601455565b60108054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bb55780601f10610b8a57610100808354040283529160200191610bb5565b6000610bd3611a69612133565b84610eec8560405180606001604052806025815260200161347f6025913960066000611a93612133565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612568565b6001546001600160a01b03163314611b0d5760405162461bcd60e51b815260040180806020018281038252602381526020018061345c6023913960400191505060405180910390fd5b6002544211611b63576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b03938416939091169160008051602061339e83398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610bd3611bbf612133565b8484612223565b611bce612133565b6000546001600160a01b03908116911614611c1e576040805162461bcd60e51b8152602060048201819052602482015260008051602061337e833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff16611c8b576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600b5481101561112357816001600160a01b0316600b8281548110611caf57fe5b6000918252602090912001546001600160a01b03161415611d4b57600b80546000198101908110611cdc57fe5b600091825260209091200154600b80546001600160a01b039092169183908110611d0257fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600a90915260409020805460ff19169055600b8054806110f457fe5b600101611c8e565b601a546001600160a01b031681565b60025490565b611d70612133565b6000546001600160a01b03908116911614611dc0576040805162461bcd60e51b8152602060048201819052602482015260008051602061337e833981519152604482015290519081900360640190fd5b601a8054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b611e1b612133565b6000546001600160a01b03908116911614611e6b576040805162461bcd60e51b8152602060048201819052602482015260008051602061337e833981519152604482015290519081900360640190fd5b601880546001600160a01b0319166001600160a01b0392909216919091179055565b611e95612133565b6000546001600160a01b03908116911614611ee5576040805162461bcd60e51b8152602060048201819052602482015260008051602061337e833981519152604482015290519081900360640190fd5b611f056064611eff83600c5461275690919063ffffffff16565b90612622565b601b5550565b611f13612133565b6000546001600160a01b03908116911614611f63576040805162461bcd60e51b8152602060048201819052602482015260008051602061337e833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b03841617909155168155428201600255604051819060008051602061339e833981519152908290a350565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b611fdc612133565b6000546001600160a01b0390811691161461202c576040805162461bcd60e51b8152602060048201819052602482015260008051602061337e833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760205260409020805460ff19169055565b612055612133565b6000546001600160a01b039081169116146120a5576040805162461bcd60e51b8152602060048201819052602482015260008051602061337e833981519152604482015290519081900360640190fd5b6001600160a01b0381166120ea5760405162461bcd60e51b81526004018080602001828103825260268152602001806132a36026913960400191505060405180910390fd5b600080546040516001600160a01b038085169392169160008051602061339e83398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b03831661217c5760405162461bcd60e51b815260040180806020018281038252602481526020018061340c6024913960400191505060405180910390fd5b6001600160a01b0382166121c15760405162461bcd60e51b81526004018080602001828103825260228152602001806132c96022913960400191505060405180910390fd5b6001600160a01b03808416600081815260066020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166122685760405162461bcd60e51b81526004018080602001828103825260258152602001806133e76025913960400191505060405180910390fd5b6001600160a01b0382166122ad5760405162461bcd60e51b81526004018080602001828103825260238152602001806132566023913960400191505060405180910390fd5b600081116122ec5760405162461bcd60e51b81526004018080602001828103825260298152602001806133be6029913960400191505060405180910390fd5b6001600160a01b0382166000908152600a602052604090205460ff1615612350576040805162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b604482015290519081900360640190fd5b336000908152600a602052604090205460ff16156123ab576040805162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b604482015290519081900360640190fd5b326000908152600a602052604090205460ff1615612406576040805162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b604482015290519081900360640190fd5b61240e61198f565b6001600160a01b0316836001600160a01b031614158015612448575061243261198f565b6001600160a01b0316826001600160a01b031614155b1561248e57601b5481111561248e5760405162461bcd60e51b81526004018080602001828103825260288152602001806132eb6028913960400191505060405180910390fd5b6000612499306117ca565b9050601b5481106124a95750601b545b601c54811080159081906124c75750601a54600160a01b900460ff16155b80156124e157506017546001600160a01b03868116911614155b80156124f65750601a54600160a81b900460ff165b1561250957601c549150612509826127af565b6001600160a01b03851660009081526007602052604090205460019060ff168061254b57506001600160a01b03851660009081526007602052604090205460ff165b15612554575060005b61256086868684612872565b505050505050565b600081848411156125f75760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156125bc5781810151838201526020016125a4565b50505050905090810190601f1680156125e95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600061260c6129e6565b909250905061261b8282612622565b9250505090565b600061266483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612b49565b9392505050565b600082820183811015612664576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006126dc8a612bae565b92509250925060008060006126fa8d86866126f56125ff565b612bf0565b919f909e50909c50959a5093985091965092945050505050565b600061266483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612568565b60008261276557506000610bd7565b8282028284828161277257fe5b04146126645760405162461bcd60e51b81526004018080602001828103825260218152602001806133136021913960400191505060405180910390fd5b601a805460ff60a01b1916600160a01b17905560006127da60146127d4846032612622565b90612756565b905060006127ee60146127d4856032612622565b9050600061280260146127d4866064612622565b905061280d83612c40565b61281681612c82565b61281f82612cc4565b604080518481526020810183905280820184905290517f2b3815017a53df0f7a02daff8930fa0330e6091a501c5de817e0df95894bab1d9181900360600190a15050601a805460ff60a01b191690555050565b8061287f5761287f612d06565b6001600160a01b03841660009081526008602052604090205460ff1680156128c057506001600160a01b03831660009081526008602052604090205460ff16155b156128d5576128d0848484612d38565b6129d3565b6001600160a01b03841660009081526008602052604090205460ff1615801561291657506001600160a01b03831660009081526008602052604090205460ff165b15612926576128d0848484612e5c565b6001600160a01b03841660009081526008602052604090205460ff1615801561296857506001600160a01b03831660009081526008602052604090205460ff16155b15612978576128d0848484612f05565b6001600160a01b03841660009081526008602052604090205460ff1680156129b857506001600160a01b03831660009081526008602052604090205460ff165b156129c8576128d0848484612f49565b6129d3848484612f05565b806129e0576129e0612fbc565b50505050565b600d54600c546000918291825b600954811015612b1757826004600060098481548110612a0f57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612a745750816005600060098481548110612a4d57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15612a8b57600d54600c5494509450505050612b45565b612acb6004600060098481548110612a9f57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612714565b9250612b0d6005600060098481548110612ae157fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612714565b91506001016129f3565b50600c54600d54612b2791612622565b821015612b3f57600d54600c54935093505050612b45565b90925090505b9091565b60008183612b985760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156125bc5781810151838201526020016125a4565b506000838581612ba457fe5b0495945050505050565b600080600080612bbd85612fca565b90506000612bca86612fe6565b90506000612be282612bdc8986612714565b90612714565b979296509094509092505050565b6000808080612bff8886612756565b90506000612c0d8887612756565b90506000612c1b8888612756565b90506000612c2d82612bdc8686612714565b939b939a50919850919650505050505050565b612c4981613002565b6018546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611123573d6000803e3d6000fd5b612c8b81613002565b6019546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611123573d6000803e3d6000fd5b612ccd81613002565b601a546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611123573d6000803e3d6000fd5b601254158015612d165750601454155b15612d2057612d36565b6012805460135560148054601555600091829055555b565b600080600080600080612d4a876126c5565b6001600160a01b038f16600090815260056020526040902054959b50939950919750955093509150612d7c9088612714565b6001600160a01b038a16600090815260056020908152604080832093909355600490522054612dab9087612714565b6001600160a01b03808b1660009081526004602052604080822093909355908a1681522054612dda908661266b565b6001600160a01b038916600090815260046020526040902055612dfc816131a8565b612e068483613231565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080612e6e876126c5565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612ea09087612714565b6001600160a01b03808b16600090815260046020908152604080832094909455918b16815260059091522054612ed6908461266b565b6001600160a01b038916600090815260056020908152604080832093909355600490522054612dda908661266b565b600080600080600080612f17876126c5565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612dab9087612714565b600080600080600080612f5b876126c5565b6001600160a01b038f16600090815260056020526040902054959b50939950919750955093509150612f8d9088612714565b6001600160a01b038a16600090815260056020908152604080832093909355600490522054612ea09087612714565b601354601255601554601455565b6000610bd76064611eff6012548561275690919063ffffffff16565b6000610bd76064611eff6014548561275690919063ffffffff16565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061303057fe5b6001600160a01b03928316602091820292909201810191909152601654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561308457600080fd5b505afa158015613098573d6000803e3d6000fd5b505050506040513d60208110156130ae57600080fd5b50518151829060019081106130bf57fe5b6001600160a01b0392831660209182029290920101526016546130e59130911684612137565b60165460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b8381101561316b578181015183820152602001613153565b505050509050019650505050505050600060405180830381600087803b15801561319457600080fd5b505af1158015612560573d6000803e3d6000fd5b60006131b26125ff565b905060006131c08383612756565b306000908152600460205260409020549091506131dd908261266b565b3060009081526004602090815260408083209390935560089052205460ff161561322c573060009081526005602052604090205461321b908461266b565b306000908152600560205260409020555b505050565b600d5461323e9083612714565b600d55600e5461324e908261266b565b600e55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7757652063616e6e6f7420626c61636b6c69737420556e695377617020726f7574657245524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d9d36c042d0c971e7decfd0d2af47aaa38147be5ed6e1723f8cfe74797487b9e64736f6c634300060c0033000000000000000000000000f4dbaaf5912ca1d7b966031e4ee331c39247b86c0000000000000000000000005c61b8b0c9e163ddc6e4b84a4cffcd2fab44d0fb00000000000000000000000025c7fcfad0f26b0976cab3b6ba223f39133452ca

Deployed Bytecode

0x6080604052600436106102b25760003560e01c80635342acb411610175578063a457c2d7116100dc578063c49b9a8011610095578063dd4670641161006f578063dd46706414610a01578063dd62ed3e14610a2b578063ea2f0b3714610a66578063f2fde38b14610a99576102b9565b8063c49b9a8014610978578063d047e4b7146109a4578063d543dbeb146109d7576102b9565b8063a457c2d714610894578063a69df4b5146108cd578063a9059cbb146108e2578063b030b34a1461091b578063b425bac31461094e578063b6c5232414610963576102b9565b80637d1db4a51161012e5780637d1db4a5146107e35780638456cb59146107f857806388f820201461080d5780638da5cb5b146108405780638ee88c531461085557806395d89b411461087f576102b9565b80635342acb4146107295780635c975abb1461075c5780636bc87c3a1461077157806370a0823114610786578063715018a6146107b957806376d4ab99146107ce576102b9565b80633685d4191161021957806341cb87fc116101d257806341cb87fc14610634578063437823ec146106675780634549b0391461069a57806349bd5a5e146106cc5780634a74bb02146106e157806352390c02146106f6576102b9565b80633685d4191461055f57806339509351146105925780633b124fe7146105cb5780633bd5d173146105e05780633f4ba83a1461060a5780634144d9e41461061f576102b9565b806318160ddd1161026b57806318160ddd1461044c5780631d7ef879146104615780631ff53b601461049457806323b872dd146104c75780632d8381191461050a578063313ce56714610534576102b9565b8063061c82d0146102be57806306fdde03146102ea578063095ea7b3146103745780630a1f8ea8146103c157806313114a9d146103f45780631694505e1461041b576102b9565b366102b957005b600080fd5b3480156102ca57600080fd5b506102e8600480360360208110156102e157600080fd5b5035610acc565b005b3480156102f657600080fd5b506102ff610b29565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610339578181015183820152602001610321565b50505050905090810190601f1680156103665780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561038057600080fd5b506103ad6004803603604081101561039757600080fd5b506001600160a01b038135169060200135610bbf565b604080519115158252519081900360200190f35b3480156103cd57600080fd5b506102e8600480360360208110156103e457600080fd5b50356001600160a01b0316610bdd565b34801561040057600080fd5b50610409610c57565b60408051918252519081900360200190f35b34801561042757600080fd5b50610430610c5d565b604080516001600160a01b039092168252519081900360200190f35b34801561045857600080fd5b50610409610c6c565b34801561046d57600080fd5b506102e86004803603602081101561048457600080fd5b50356001600160a01b0316610c72565b3480156104a057600080fd5b506102e8600480360360208110156104b757600080fd5b50356001600160a01b0316610dfa565b3480156104d357600080fd5b506103ad600480360360608110156104ea57600080fd5b506001600160a01b03813581169160208101359091169060400135610e74565b34801561051657600080fd5b506104096004803603602081101561052d57600080fd5b5035610efb565b34801561054057600080fd5b50610549610f5d565b6040805160ff9092168252519081900360200190f35b34801561056b57600080fd5b506102e86004803603602081101561058257600080fd5b50356001600160a01b0316610f66565b34801561059e57600080fd5b506103ad600480360360408110156105b557600080fd5b506001600160a01b038135169060200135611127565b3480156105d757600080fd5b50610409611175565b3480156105ec57600080fd5b506102e86004803603602081101561060357600080fd5b503561117b565b34801561061657600080fd5b506102e8611255565b34801561062b57600080fd5b506104306112f1565b34801561064057600080fd5b506102e86004803603602081101561065757600080fd5b50356001600160a01b0316611300565b34801561067357600080fd5b506102e86004803603602081101561068a57600080fd5b50356001600160a01b03166114ea565b3480156106a657600080fd5b50610409600480360360408110156106bd57600080fd5b50803590602001351515611566565b3480156106d857600080fd5b506104306115f8565b3480156106ed57600080fd5b506103ad611607565b34801561070257600080fd5b506102e86004803603602081101561071957600080fd5b50356001600160a01b0316611617565b34801561073557600080fd5b506103ad6004803603602081101561074c57600080fd5b50356001600160a01b031661179d565b34801561076857600080fd5b506103ad6117bb565b34801561077d57600080fd5b506104096117c4565b34801561079257600080fd5b50610409600480360360208110156107a957600080fd5b50356001600160a01b03166117ca565b3480156107c557600080fd5b506102e861182c565b3480156107da57600080fd5b506104306118bc565b3480156107ef57600080fd5b506104096118cb565b34801561080457600080fd5b506102e86118d1565b34801561081957600080fd5b506103ad6004803603602081101561083057600080fd5b50356001600160a01b0316611971565b34801561084c57600080fd5b5061043061198f565b34801561086157600080fd5b506102e86004803603602081101561087857600080fd5b503561199e565b34801561088b57600080fd5b506102ff6119fb565b3480156108a057600080fd5b506103ad600480360360408110156108b757600080fd5b506001600160a01b038135169060200135611a5c565b3480156108d957600080fd5b506102e8611ac4565b3480156108ee57600080fd5b506103ad6004803603604081101561090557600080fd5b506001600160a01b038135169060200135611bb2565b34801561092757600080fd5b506102e86004803603602081101561093e57600080fd5b50356001600160a01b0316611bc6565b34801561095a57600080fd5b50610430611d53565b34801561096f57600080fd5b50610409611d62565b34801561098457600080fd5b506102e86004803603602081101561099b57600080fd5b50351515611d68565b3480156109b057600080fd5b506102e8600480360360208110156109c757600080fd5b50356001600160a01b0316611e13565b3480156109e357600080fd5b506102e8600480360360208110156109fa57600080fd5b5035611e8d565b348015610a0d57600080fd5b506102e860048036036020811015610a2457600080fd5b5035611f0b565b348015610a3757600080fd5b5061040960048036036040811015610a4e57600080fd5b506001600160a01b0381358116916020013516611fa9565b348015610a7257600080fd5b506102e860048036036020811015610a8957600080fd5b50356001600160a01b0316611fd4565b348015610aa557600080fd5b506102e860048036036020811015610abc57600080fd5b50356001600160a01b031661204d565b610ad4612133565b6000546001600160a01b03908116911614610b24576040805162461bcd60e51b8152602060048201819052602482015260008051602061337e833981519152604482015290519081900360640190fd5b601255565b600f8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bb55780601f10610b8a57610100808354040283529160200191610bb5565b820191906000526020600020905b815481529060010190602001808311610b9857829003601f168201915b5050505050905090565b6000610bd3610bcc612133565b8484612137565b5060015b92915050565b610be5612133565b6000546001600160a01b03908116911614610c35576040805162461bcd60e51b8152602060048201819052602482015260008051602061337e833981519152604482015290519081900360640190fd5b601a80546001600160a01b0319166001600160a01b0392909216919091179055565b600e5490565b6016546001600160a01b031681565b600c5490565b610c7a612133565b6000546001600160a01b03908116911614610cca576040805162461bcd60e51b8152602060048201819052602482015260008051602061337e833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610d265760405162461bcd60e51b81526004018080602001828103825260228152602001806133346022913960400191505060405180910390fd5b6001600160a01b0381166000908152600a602052604090205460ff1615610d94576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600a60205260408120805460ff19166001908117909155600b805491820181559091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319169091179055565b610e02612133565b6000546001600160a01b03908116911614610e52576040805162461bcd60e51b8152602060048201819052602482015260008051602061337e833981519152604482015290519081900360640190fd5b601980546001600160a01b0319166001600160a01b0392909216919091179055565b6000610e81848484612223565b610ef184610e8d612133565b610eec85604051806060016040528060288152602001613356602891396001600160a01b038a16600090815260066020526040812090610ecb612133565b6001600160a01b031681526020810191909152604001600020549190612568565b612137565b5060019392505050565b6000600d54821115610f3e5760405162461bcd60e51b815260040180806020018281038252602a815260200180613279602a913960400191505060405180910390fd5b6000610f486125ff565b9050610f548382612622565b9150505b919050565b60115460ff1690565b610f6e612133565b6000546001600160a01b03908116911614610fbe576040805162461bcd60e51b8152602060048201819052602482015260008051602061337e833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526008602052604090205460ff1661102b576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b60095481101561112357816001600160a01b03166009828154811061104f57fe5b6000918252602090912001546001600160a01b0316141561111b5760098054600019810190811061107c57fe5b600091825260209091200154600980546001600160a01b0390921691839081106110a257fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600582526040808220829055600890925220805460ff1916905560098054806110f457fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611123565b60010161102e565b5050565b6000610bd3611134612133565b84610eec8560066000611145612133565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061266b565b60125481565b6000611185612133565b6001600160a01b03811660009081526008602052604090205490915060ff16156111e05760405162461bcd60e51b815260040180806020018281038252602c815260200180613430602c913960400191505060405180910390fd5b60006111eb836126c5565b505050506001600160a01b03841660009081526004602052604090205491925061121791905082612714565b6001600160a01b038316600090815260046020526040902055600d5461123d9082612714565b600d55600e5461124d908461266b565b600e55505050565b61125d612133565b6000546001600160a01b039081169116146112ad576040805162461bcd60e51b8152602060048201819052602482015260008051602061337e833981519152604482015290519081900360640190fd5b60035460ff166112bc57600080fd5b6003805460ff191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b6019546001600160a01b031681565b611308612133565b6000546001600160a01b03908116911614611358576040805162461bcd60e51b8152602060048201819052602482015260008051602061337e833981519152604482015290519081900360640190fd5b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b15801561139657600080fd5b505afa1580156113aa573d6000803e3d6000fd5b505050506040513d60208110156113c057600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b15801561141057600080fd5b505afa158015611424573d6000803e3d6000fd5b505050506040513d602081101561143a57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b15801561148c57600080fd5b505af11580156114a0573d6000803e3d6000fd5b505050506040513d60208110156114b657600080fd5b5051601780546001600160a01b039283166001600160a01b0319918216179091556016805493909216921691909117905550565b6114f2612133565b6000546001600160a01b03908116911614611542576040805162461bcd60e51b8152602060048201819052602482015260008051602061337e833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b6000600c548311156115bf576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816115de5760006115cf846126c5565b50939550610bd7945050505050565b60006115e9846126c5565b50929550610bd7945050505050565b6017546001600160a01b031681565b601a54600160a81b900460ff1681565b61161f612133565b6000546001600160a01b0390811691161461166f576040805162461bcd60e51b8152602060048201819052602482015260008051602061337e833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526008602052604090205460ff16156116dd576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205415611737576001600160a01b03811660009081526004602052604090205461171d90610efb565b6001600160a01b0382166000908152600560205260409020555b6001600160a01b03166000818152600860205260408120805460ff191660019081179091556009805491820181559091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0180546001600160a01b0319169091179055565b6001600160a01b031660009081526007602052604090205460ff1690565b60035460ff1681565b60145481565b6001600160a01b03811660009081526008602052604081205460ff161561180a57506001600160a01b038116600090815260056020526040902054610f58565b6001600160a01b038216600090815260046020526040902054610bd790610efb565b611834612133565b6000546001600160a01b03908116911614611884576040805162461bcd60e51b8152602060048201819052602482015260008051602061337e833981519152604482015290519081900360640190fd5b600080546040516001600160a01b039091169060008051602061339e833981519152908390a3600080546001600160a01b0319169055565b6018546001600160a01b031681565b601b5481565b6118d9612133565b6000546001600160a01b03908116911614611929576040805162461bcd60e51b8152602060048201819052602482015260008051602061337e833981519152604482015290519081900360640190fd5b60035460ff161561193957600080fd5b6003805460ff191660011790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b6001600160a01b031660009081526008602052604090205460ff1690565b6000546001600160a01b031690565b6119a6612133565b6000546001600160a01b039081169116146119f6576040805162461bcd60e51b8152602060048201819052602482015260008051602061337e833981519152604482015290519081900360640190fd5b601455565b60108054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bb55780601f10610b8a57610100808354040283529160200191610bb5565b6000610bd3611a69612133565b84610eec8560405180606001604052806025815260200161347f6025913960066000611a93612133565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612568565b6001546001600160a01b03163314611b0d5760405162461bcd60e51b815260040180806020018281038252602381526020018061345c6023913960400191505060405180910390fd5b6002544211611b63576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b03938416939091169160008051602061339e83398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610bd3611bbf612133565b8484612223565b611bce612133565b6000546001600160a01b03908116911614611c1e576040805162461bcd60e51b8152602060048201819052602482015260008051602061337e833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff16611c8b576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600b5481101561112357816001600160a01b0316600b8281548110611caf57fe5b6000918252602090912001546001600160a01b03161415611d4b57600b80546000198101908110611cdc57fe5b600091825260209091200154600b80546001600160a01b039092169183908110611d0257fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600a90915260409020805460ff19169055600b8054806110f457fe5b600101611c8e565b601a546001600160a01b031681565b60025490565b611d70612133565b6000546001600160a01b03908116911614611dc0576040805162461bcd60e51b8152602060048201819052602482015260008051602061337e833981519152604482015290519081900360640190fd5b601a8054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b611e1b612133565b6000546001600160a01b03908116911614611e6b576040805162461bcd60e51b8152602060048201819052602482015260008051602061337e833981519152604482015290519081900360640190fd5b601880546001600160a01b0319166001600160a01b0392909216919091179055565b611e95612133565b6000546001600160a01b03908116911614611ee5576040805162461bcd60e51b8152602060048201819052602482015260008051602061337e833981519152604482015290519081900360640190fd5b611f056064611eff83600c5461275690919063ffffffff16565b90612622565b601b5550565b611f13612133565b6000546001600160a01b03908116911614611f63576040805162461bcd60e51b8152602060048201819052602482015260008051602061337e833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b03841617909155168155428201600255604051819060008051602061339e833981519152908290a350565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b611fdc612133565b6000546001600160a01b0390811691161461202c576040805162461bcd60e51b8152602060048201819052602482015260008051602061337e833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760205260409020805460ff19169055565b612055612133565b6000546001600160a01b039081169116146120a5576040805162461bcd60e51b8152602060048201819052602482015260008051602061337e833981519152604482015290519081900360640190fd5b6001600160a01b0381166120ea5760405162461bcd60e51b81526004018080602001828103825260268152602001806132a36026913960400191505060405180910390fd5b600080546040516001600160a01b038085169392169160008051602061339e83398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b03831661217c5760405162461bcd60e51b815260040180806020018281038252602481526020018061340c6024913960400191505060405180910390fd5b6001600160a01b0382166121c15760405162461bcd60e51b81526004018080602001828103825260228152602001806132c96022913960400191505060405180910390fd5b6001600160a01b03808416600081815260066020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166122685760405162461bcd60e51b81526004018080602001828103825260258152602001806133e76025913960400191505060405180910390fd5b6001600160a01b0382166122ad5760405162461bcd60e51b81526004018080602001828103825260238152602001806132566023913960400191505060405180910390fd5b600081116122ec5760405162461bcd60e51b81526004018080602001828103825260298152602001806133be6029913960400191505060405180910390fd5b6001600160a01b0382166000908152600a602052604090205460ff1615612350576040805162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b604482015290519081900360640190fd5b336000908152600a602052604090205460ff16156123ab576040805162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b604482015290519081900360640190fd5b326000908152600a602052604090205460ff1615612406576040805162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b604482015290519081900360640190fd5b61240e61198f565b6001600160a01b0316836001600160a01b031614158015612448575061243261198f565b6001600160a01b0316826001600160a01b031614155b1561248e57601b5481111561248e5760405162461bcd60e51b81526004018080602001828103825260288152602001806132eb6028913960400191505060405180910390fd5b6000612499306117ca565b9050601b5481106124a95750601b545b601c54811080159081906124c75750601a54600160a01b900460ff16155b80156124e157506017546001600160a01b03868116911614155b80156124f65750601a54600160a81b900460ff165b1561250957601c549150612509826127af565b6001600160a01b03851660009081526007602052604090205460019060ff168061254b57506001600160a01b03851660009081526007602052604090205460ff165b15612554575060005b61256086868684612872565b505050505050565b600081848411156125f75760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156125bc5781810151838201526020016125a4565b50505050905090810190601f1680156125e95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600061260c6129e6565b909250905061261b8282612622565b9250505090565b600061266483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612b49565b9392505050565b600082820183811015612664576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006126dc8a612bae565b92509250925060008060006126fa8d86866126f56125ff565b612bf0565b919f909e50909c50959a5093985091965092945050505050565b600061266483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612568565b60008261276557506000610bd7565b8282028284828161277257fe5b04146126645760405162461bcd60e51b81526004018080602001828103825260218152602001806133136021913960400191505060405180910390fd5b601a805460ff60a01b1916600160a01b17905560006127da60146127d4846032612622565b90612756565b905060006127ee60146127d4856032612622565b9050600061280260146127d4866064612622565b905061280d83612c40565b61281681612c82565b61281f82612cc4565b604080518481526020810183905280820184905290517f2b3815017a53df0f7a02daff8930fa0330e6091a501c5de817e0df95894bab1d9181900360600190a15050601a805460ff60a01b191690555050565b8061287f5761287f612d06565b6001600160a01b03841660009081526008602052604090205460ff1680156128c057506001600160a01b03831660009081526008602052604090205460ff16155b156128d5576128d0848484612d38565b6129d3565b6001600160a01b03841660009081526008602052604090205460ff1615801561291657506001600160a01b03831660009081526008602052604090205460ff165b15612926576128d0848484612e5c565b6001600160a01b03841660009081526008602052604090205460ff1615801561296857506001600160a01b03831660009081526008602052604090205460ff16155b15612978576128d0848484612f05565b6001600160a01b03841660009081526008602052604090205460ff1680156129b857506001600160a01b03831660009081526008602052604090205460ff165b156129c8576128d0848484612f49565b6129d3848484612f05565b806129e0576129e0612fbc565b50505050565b600d54600c546000918291825b600954811015612b1757826004600060098481548110612a0f57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612a745750816005600060098481548110612a4d57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15612a8b57600d54600c5494509450505050612b45565b612acb6004600060098481548110612a9f57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612714565b9250612b0d6005600060098481548110612ae157fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612714565b91506001016129f3565b50600c54600d54612b2791612622565b821015612b3f57600d54600c54935093505050612b45565b90925090505b9091565b60008183612b985760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156125bc5781810151838201526020016125a4565b506000838581612ba457fe5b0495945050505050565b600080600080612bbd85612fca565b90506000612bca86612fe6565b90506000612be282612bdc8986612714565b90612714565b979296509094509092505050565b6000808080612bff8886612756565b90506000612c0d8887612756565b90506000612c1b8888612756565b90506000612c2d82612bdc8686612714565b939b939a50919850919650505050505050565b612c4981613002565b6018546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611123573d6000803e3d6000fd5b612c8b81613002565b6019546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611123573d6000803e3d6000fd5b612ccd81613002565b601a546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611123573d6000803e3d6000fd5b601254158015612d165750601454155b15612d2057612d36565b6012805460135560148054601555600091829055555b565b600080600080600080612d4a876126c5565b6001600160a01b038f16600090815260056020526040902054959b50939950919750955093509150612d7c9088612714565b6001600160a01b038a16600090815260056020908152604080832093909355600490522054612dab9087612714565b6001600160a01b03808b1660009081526004602052604080822093909355908a1681522054612dda908661266b565b6001600160a01b038916600090815260046020526040902055612dfc816131a8565b612e068483613231565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080612e6e876126c5565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612ea09087612714565b6001600160a01b03808b16600090815260046020908152604080832094909455918b16815260059091522054612ed6908461266b565b6001600160a01b038916600090815260056020908152604080832093909355600490522054612dda908661266b565b600080600080600080612f17876126c5565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612dab9087612714565b600080600080600080612f5b876126c5565b6001600160a01b038f16600090815260056020526040902054959b50939950919750955093509150612f8d9088612714565b6001600160a01b038a16600090815260056020908152604080832093909355600490522054612ea09087612714565b601354601255601554601455565b6000610bd76064611eff6012548561275690919063ffffffff16565b6000610bd76064611eff6014548561275690919063ffffffff16565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061303057fe5b6001600160a01b03928316602091820292909201810191909152601654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561308457600080fd5b505afa158015613098573d6000803e3d6000fd5b505050506040513d60208110156130ae57600080fd5b50518151829060019081106130bf57fe5b6001600160a01b0392831660209182029290920101526016546130e59130911684612137565b60165460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b8381101561316b578181015183820152602001613153565b505050509050019650505050505050600060405180830381600087803b15801561319457600080fd5b505af1158015612560573d6000803e3d6000fd5b60006131b26125ff565b905060006131c08383612756565b306000908152600460205260409020549091506131dd908261266b565b3060009081526004602090815260408083209390935560089052205460ff161561322c573060009081526005602052604090205461321b908461266b565b306000908152600560205260409020555b505050565b600d5461323e9083612714565b600d55600e5461324e908261266b565b600e55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7757652063616e6e6f7420626c61636b6c69737420556e695377617020726f7574657245524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d9d36c042d0c971e7decfd0d2af47aaa38147be5ed6e1723f8cfe74797487b9e64736f6c634300060c0033

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

000000000000000000000000f4dbaaf5912ca1d7b966031e4ee331c39247b86c0000000000000000000000005c61b8b0c9e163ddc6e4b84a4cffcd2fab44d0fb00000000000000000000000025c7fcfad0f26b0976cab3b6ba223f39133452ca

-----Decoded View---------------
Arg [0] : charityWalletAddress (address): 0xF4DbaAF5912CA1D7b966031e4ee331c39247B86C
Arg [1] : marketingWalletAddress (address): 0x5C61b8B0C9E163dDc6e4b84A4cfFCd2faB44D0fB
Arg [2] : devWalletAddress (address): 0x25C7fcFAd0f26b0976CaB3B6Ba223F39133452cA

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000f4dbaaf5912ca1d7b966031e4ee331c39247b86c
Arg [1] : 0000000000000000000000005c61b8b0c9e163ddc6e4b84a4cffcd2fab44d0fb
Arg [2] : 00000000000000000000000025c7fcfad0f26b0976cab3b6ba223f39133452ca


Deployed Bytecode Sourcemap

28827:22256:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39037:98;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39037:98:0;;:::i;:::-;;31986:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32971:193;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32971:193:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44256:156;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44256:156:0;-1:-1:-1;;;;;44256:156:0;;:::i;34470:87::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;29879:41;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;29879:41:0;;;;;;;;;;;;;;32263:95;;;;;;;;;;;;;:::i;36752:387::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36752:387:0;-1:-1:-1;;;;;36752:387:0;;:::i;43899:180::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43899:180:0;-1:-1:-1;;;;;43899:180:0;;:::i;33172:446::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33172:446:0;;;;;;;;;;;;;;;;;:::i;36422:322::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36422:322:0;;:::i;32172:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35448:479;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35448:479:0;-1:-1:-1;;;;;35448:479:0;;:::i;33626:300::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33626:300:0;;;;;;;;:::i;29695:26::-;;;;;;;;;;;;;:::i;34565:419::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34565:419:0;;:::i;28715:105::-;;;;;;;;;;;;;:::i;30013:46::-;;;;;;;;;;;;;:::i;37695:332::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37695:332:0;-1:-1:-1;;;;;37695:332:0;;:::i;38035:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38035:111:0;-1:-1:-1;;;;;38035:111:0;;:::i;35935:479::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35935:479:0;;;;;;;;;:::i;29927:28::-;;;;;;;;;;;;;:::i;30143:40::-;;;;;;;;;;;;;:::i;34992:448::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34992:448:0;-1:-1:-1;;;;;34992:448:0;;:::i;43422:124::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43422:124:0;-1:-1:-1;;;;;43422:124:0;;:::i;28034:26::-;;;;;;;;;;;;;:::i;29778:32::-;;;;;;;;;;;;;:::i;32366:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32366:198:0;-1:-1:-1;;;;;32366:198:0;;:::i;17022:148::-;;;;;;;;;;;;;:::i;29962:44::-;;;;;;;;;;;;;:::i;30192:57::-;;;;;;;;;;;;;:::i;28517:103::-;;;;;;;;;;;;;:::i;34342:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34342:120:0;-1:-1:-1;;;;;34342:120:0;;:::i;16380:79::-;;;;;;;;;;;;;:::i;39143:122::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39143:122:0;;:::i;32077:87::-;;;;;;;;;;;;;:::i;33934:400::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33934:400:0;;;;;;;;:::i;18065:329::-;;;;;;;;;;;;;:::i;32572:199::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32572:199:0;;;;;;;;:::i;37147:540::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37147:540:0;-1:-1:-1;;;;;37147:540:0;;:::i;30066:40::-;;;;;;;;;;;;;:::i;17614:89::-;;;;;;;;;;;;;:::i;39419:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39419:171:0;;;;:::i;43554:172::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43554:172:0;-1:-1:-1;;;;;43554:172:0;;:::i;39273:138::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39273:138:0;;:::i;17779:214::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17779:214:0;;:::i;32779:184::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32779:184:0;;;;;;;;;;:::i;38919:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38919:110:0;-1:-1:-1;;;;;38919:110:0;;:::i;17325:281::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17325:281:0;-1:-1:-1;;;;;17325:281:0;;:::i;39037:98::-;16602:12;:10;:12::i;:::-;16592:6;;-1:-1:-1;;;;;16592:6:0;;;:22;;;16584:67;;;;;-1:-1:-1;;;16584:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16584:67:0;;;;;;;;;;;;;;;39111:7:::1;:16:::0;39037:98::o;31986:83::-;32056:5;32049:12;;;;;;;;-1:-1:-1;;32049:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32023:13;;32049:12;;32056:5;;32049:12;;32056:5;32049:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31986:83;:::o;32971:193::-;33073:4;33095:39;33104:12;:10;:12::i;:::-;33118:7;33127:6;33095:8;:39::i;:::-;-1:-1:-1;33152:4:0;32971:193;;;;;:::o;44256:156::-;16602:12;:10;:12::i;:::-;16592:6;;-1:-1:-1;;;;;16592:6:0;;;:22;;;16584:67;;;;;-1:-1:-1;;;16584:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16584:67:0;;;;;;;;;;;;;;;44368:17:::1;:36:::0;;-1:-1:-1;;;;;;44368:36:0::1;-1:-1:-1::0;;;;;44368:36:0;;;::::1;::::0;;;::::1;::::0;;44256:156::o;34470:87::-;34539:10;;34470:87;:::o;29879:41::-;;;-1:-1:-1;;;;;29879:41:0;;:::o;32263:95::-;32343:7;;32263:95;:::o;36752:387::-;16602:12;:10;:12::i;:::-;16592:6;;-1:-1:-1;;;;;16592:6:0;;;:22;;;16584:67;;;;;-1:-1:-1;;;16584:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16584:67:0;;;;;;;;;;;;;;;36861:42:::1;-1:-1:-1::0;;;;;36850:53:0;::::1;;;36828:137;;;;-1:-1:-1::0;;;36828:137:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;36985:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;36984:27;36976:70;;;::::0;;-1:-1:-1;;;36976:70:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;37057:26:0::1;;::::0;;;:17:::1;:26;::::0;;;;:33;;-1:-1:-1;;37057:33:0::1;37086:4;37057:33:::0;;::::1;::::0;;;37101:16:::1;:30:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;37101:30:0::1;::::0;;::::1;::::0;;36752:387::o;43899:180::-;16602:12;:10;:12::i;:::-;16592:6;;-1:-1:-1;;;;;16592:6:0;;;:22;;;16584:67;;;;;-1:-1:-1;;;16584:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16584:67:0;;;;;;;;;;;;;;;44023:23:::1;:48:::0;;-1:-1:-1;;;;;;44023:48:0::1;-1:-1:-1::0;;;;;44023:48:0;;;::::1;::::0;;;::::1;::::0;;43899:180::o;33172:446::-;33304:4;33321:36;33331:6;33339:9;33350:6;33321:9;:36::i;:::-;33368:220;33391:6;33412:12;:10;:12::i;:::-;33439:138;33495:6;33439:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33439:19:0;;;;;;:11;:19;;;;;;33459:12;:10;:12::i;:::-;-1:-1:-1;;;;;33439:33:0;;;;;;;;;;;;-1:-1:-1;33439:33:0;;;:138;:37;:138::i;:::-;33368:8;:220::i;:::-;-1:-1:-1;33606:4:0;33172:446;;;;;:::o;36422:322::-;36516:7;36574;;36563;:18;;36541:110;;;;-1:-1:-1;;;36541:110:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36662:19;36684:10;:8;:10::i;:::-;36662:32;-1:-1:-1;36712:24:0;:7;36662:32;36712:11;:24::i;:::-;36705:31;;;36422:322;;;;:::o;32172:83::-;32238:9;;;;32172:83;:::o;35448:479::-;16602:12;:10;:12::i;:::-;16592:6;;-1:-1:-1;;;;;16592:6:0;;;:22;;;16584:67;;;;;-1:-1:-1;;;16584:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16584:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;35530:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;35522:60;;;::::0;;-1:-1:-1;;;35522:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;35598:9;35593:327;35617:9;:16:::0;35613:20;::::1;35593:327;;;35675:7;-1:-1:-1::0;;;;;35659:23:0::1;:9;35669:1;35659:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;35659:12:0::1;:23;35655:254;;;35718:9;35728:16:::0;;-1:-1:-1;;35728:20:0;;;35718:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;35703:9:::1;:12:::0;;-1:-1:-1;;;;;35718:31:0;;::::1;::::0;35713:1;;35703:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;35703:46:0::1;-1:-1:-1::0;;;;;35703:46:0;;::::1;;::::0;;35768:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;35807:11:::1;:20:::0;;;;:28;;-1:-1:-1;;35807:28:0::1;::::0;;35854:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;35854:15:0;;;;;-1:-1:-1;;;;;;35854:15:0::1;::::0;;;;;35888:5:::1;;35655:254;35635:3;;35593:327;;;;35448:479:::0;:::o;33626:300::-;33741:4;33763:133;33786:12;:10;:12::i;:::-;33813:7;33835:50;33874:10;33835:11;:25;33847:12;:10;:12::i;:::-;-1:-1:-1;;;;;33835:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;33835:25:0;;;:34;;;;;;;;;;;:38;:50::i;29695:26::-;;;;:::o;34565:419::-;34617:14;34634:12;:10;:12::i;:::-;-1:-1:-1;;;;;34680:19:0;;;;;;:11;:19;;;;;;34617:29;;-1:-1:-1;34680:19:0;;34679:20;34657:114;;;;-1:-1:-1;;;34657:114:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34783:15;34812:19;34823:7;34812:10;:19::i;:::-;-1:-1:-1;;;;;;;;;34860:15:0;;;;;;:7;:15;;;;;;34782:49;;-1:-1:-1;34860:28:0;;:15;-1:-1:-1;34782:49:0;34860:19;:28::i;:::-;-1:-1:-1;;;;;34842:15:0;;;;;;:7;:15;;;;;:46;34909:7;;:20;;34921:7;34909:11;:20::i;:::-;34899:7;:30;34953:10;;:23;;34968:7;34953:14;:23::i;:::-;34940:10;:36;-1:-1:-1;;;34565:419:0:o;28715:105::-;16602:12;:10;:12::i;:::-;16592:6;;-1:-1:-1;;;;;16592:6:0;;;:22;;;16584:67;;;;;-1:-1:-1;;;16584:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16584:67:0;;;;;;;;;;;;;;;28398:6:::1;::::0;::::1;;28390:15;;;::::0;::::1;;28773:6:::2;:14:::0;;-1:-1:-1;;28773:14:0::2;::::0;;28803:9:::2;::::0;::::2;::::0;28782:5:::2;::::0;28803:9:::2;28715:105::o:0;30013:46::-;;;-1:-1:-1;;;;;30013:46:0;;:::o;37695:332::-;16602:12;:10;:12::i;:::-;16592:6;;-1:-1:-1;;;;;16592:6:0;;;:22;;;16584:67;;;;;-1:-1:-1;;;16584:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16584:67:0;;;;;;;;;;;;;;;37770:36:::1;37828:9;37770:68;;37883:17;-1:-1:-1::0;;;;;37883:25:0::1;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;37883:27:0;37948:24:::1;::::0;;-1:-1:-1;;;37948:24:0;;;;-1:-1:-1;;;;;37865:67:0;;::::1;::::0;::::1;::::0;37941:4:::1;::::0;37948:22;;::::1;::::0;::::1;::::0;:24:::1;::::0;;::::1;::::0;37883:27:::1;::::0;37948:24;;;;;;;;:22;:24;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;37948:24:0;37865:108:::1;::::0;;-1:-1:-1;;;;;;37865:108:0::1;::::0;;;;;;-1:-1:-1;;;;;37865:108:0;;::::1;;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;37948:24:::1;::::0;37865:108;;;;;;;-1:-1:-1;37865:108:0;;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;37865:108:0;37849:13:::1;:124:::0;;-1:-1:-1;;;;;37849:124:0;;::::1;-1:-1:-1::0;;;;;;37849:124:0;;::::1;;::::0;;;37984:15:::1;:35:::0;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;-1:-1:-1;37695:332:0:o;38035:111::-;16602:12;:10;:12::i;:::-;16592:6;;-1:-1:-1;;;;;16592:6:0;;;:22;;;16584:67;;;;;-1:-1:-1;;;16584:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16584:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;38104:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;38104:34:0::1;38134:4;38104:34;::::0;;38035:111::o;35935:479::-;36053:7;36097;;36086;:18;;36078:62;;;;;-1:-1:-1;;;36078:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;36156:17;36151:256;;36191:15;36220:19;36231:7;36220:10;:19::i;:::-;-1:-1:-1;36190:49:0;;-1:-1:-1;36254:14:0;;-1:-1:-1;;;;;36254:14:0;36151:256;36304:23;36339:19;36350:7;36339:10;:19::i;:::-;-1:-1:-1;36301:57:0;;-1:-1:-1;36373:22:0;;-1:-1:-1;;;;;36373:22:0;29927:28;;;-1:-1:-1;;;;;29927:28:0;;:::o;30143:40::-;;;-1:-1:-1;;;30143:40:0;;;;;:::o;34992:448::-;16602:12;:10;:12::i;:::-;16592:6;;-1:-1:-1;;;;;16592:6:0;;;:22;;;16584:67;;;;;-1:-1:-1;;;16584:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16584:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;35189:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;35188:21;35180:61;;;::::0;;-1:-1:-1;;;35180:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;35256:16:0;::::1;35275:1;35256:16:::0;;;:7:::1;:16;::::0;;;;;:20;35252:109:::1;;-1:-1:-1::0;;;;;35332:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;35312:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;35293:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;35252:109:::1;-1:-1:-1::0;;;;;35371:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;35371:27:0::1;35394:4;35371:27:::0;;::::1;::::0;;;35409:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;35409:23:0::1;::::0;;::::1;::::0;;34992:448::o;43422:124::-;-1:-1:-1;;;;;43511:27:0;43487:4;43511:27;;;:18;:27;;;;;;;;;43422:124::o;28034:26::-;;;;;;:::o;29778:32::-;;;;:::o;32366:198::-;-1:-1:-1;;;;;32456:20:0;;32432:7;32456:20;;;:11;:20;;;;;;;;32452:49;;;-1:-1:-1;;;;;;32485:16:0;;;;;;:7;:16;;;;;;32478:23;;32452:49;-1:-1:-1;;;;;32539:16:0;;;;;;:7;:16;;;;;;32519:37;;:19;:37::i;17022:148::-;16602:12;:10;:12::i;:::-;16592:6;;-1:-1:-1;;;;;16592:6:0;;;:22;;;16584:67;;;;;-1:-1:-1;;;16584:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16584:67:0;;;;;;;;;;;;;;;17129:1:::1;17113:6:::0;;17092:40:::1;::::0;-1:-1:-1;;;;;17113:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;17092:40:0;17129:1;;17092:40:::1;17160:1;17143:19:::0;;-1:-1:-1;;;;;;17143:19:0::1;::::0;;17022:148::o;29962:44::-;;;-1:-1:-1;;;;;29962:44:0;;:::o;30192:57::-;;;;:::o;28517:103::-;16602:12;:10;:12::i;:::-;16592:6;;-1:-1:-1;;;;;16592:6:0;;;:22;;;16584:67;;;;;-1:-1:-1;;;16584:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16584:67:0;;;;;;;;;;;;;;;28220:6:::1;::::0;::::1;;28219:7;28211:16;;;::::0;::::1;;28576:6:::2;:13:::0;;-1:-1:-1;;28576:13:0::2;28585:4;28576:13;::::0;;28605:7:::2;::::0;::::2;::::0;28576:6:::2;::::0;28605:7:::2;28517:103::o:0;34342:120::-;-1:-1:-1;;;;;34434:20:0;34410:4;34434:20;;;:11;:20;;;;;;;;;34342:120::o;16380:79::-;16418:7;16445:6;-1:-1:-1;;;;;16445:6:0;16380:79;:::o;39143:122::-;16602:12;:10;:12::i;:::-;16592:6;;-1:-1:-1;;;;;16592:6:0;;;:22;;;16584:67;;;;;-1:-1:-1;;;16584:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16584:67:0;;;;;;;;;;;;;;;39229:13:::1;:28:::0;39143:122::o;32077:87::-;32149:7;32142:14;;;;;;;;-1:-1:-1;;32142:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32116:13;;32142:14;;32149:7;;32142:14;;32149:7;32142:14;;;;;;;;;;;;;;;;;;;;;;;;33934:400;34054:4;34076:228;34099:12;:10;:12::i;:::-;34126:7;34148:145;34205:15;34148:145;;;;;;;;;;;;;;;;;:11;:25;34160:12;:10;:12::i;:::-;-1:-1:-1;;;;;34148:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;34148:25:0;;;:34;;;;;;;;;;;:145;:38;:145::i;18065:329::-;18131:14;;-1:-1:-1;;;;;18131:14:0;18149:10;18131:28;18109:113;;;;-1:-1:-1;;;18109:113:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18247:9;;18241:3;:15;18233:59;;;;;-1:-1:-1;;;18233:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18337:14;;;18329:6;;18308:44;;-1:-1:-1;;;;;18337:14:0;;;;18329:6;;;;-1:-1:-1;;;;;;;;;;;18308:44:0;;18372:14;;;18363:23;;-1:-1:-1;;;;;;18363:23:0;-1:-1:-1;;;;;18372:14:0;;;18363:23;;;;;;18065:329::o;32572:199::-;32677:4;32699:42;32709:12;:10;:12::i;:::-;32723:9;32734:6;32699:9;:42::i;37147:540::-;16602:12;:10;:12::i;:::-;16592:6;;-1:-1:-1;;;;;16592:6:0;;;:22;;;16584:67;;;;;-1:-1:-1;;;16584:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16584:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;37236:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;37228:65;;;::::0;;-1:-1:-1;;;37228:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;37309:9;37304:376;37328:16;:23:::0;37324:27;::::1;37304:376;;;37400:7;-1:-1:-1::0;;;;;37377:30:0::1;:16;37394:1;37377:19;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;37377:19:0::1;:30;37373:296;;;37450:16;37489:23:::0;;-1:-1:-1;;37489:27:0;;;37450:85;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;37428:16:::1;:19:::0;;-1:-1:-1;;;;;37450:85:0;;::::1;::::0;37445:1;;37428:19;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:107:::0;;-1:-1:-1;;;;;;37428:107:0::1;-1:-1:-1::0;;;;;37428:107:0;;::::1;;::::0;;37554:26;;::::1;::::0;;:17:::1;:26:::0;;;;;;:34;;-1:-1:-1;;37554:34:0::1;::::0;;37607:16:::1;:22:::0;;;::::1;;;37373:296;37353:3;;37304:376;;30066:40:::0;;;-1:-1:-1;;;;;30066:40:0;;:::o;17614:89::-;17686:9;;17614:89;:::o;39419:171::-;16602:12;:10;:12::i;:::-;16592:6;;-1:-1:-1;;;;;16592:6:0;;;:22;;;16584:67;;;;;-1:-1:-1;;;16584:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16584:67:0;;;;;;;;;;;;;;;39496:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;39496:32:0;::::1;-1:-1:-1::0;;;;39496:32:0;;::::1;::::0;;;::::1;::::0;;;39544:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;39419:171:::0;:::o;43554:172::-;16602:12;:10;:12::i;:::-;16592:6;;-1:-1:-1;;;;;16592:6:0;;;:22;;;16584:67;;;;;-1:-1:-1;;;16584:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16584:67:0;;;;;;;;;;;;;;;43674:21:::1;:44:::0;;-1:-1:-1;;;;;;43674:44:0::1;-1:-1:-1::0;;;;;43674:44:0;;;::::1;::::0;;;::::1;::::0;;43554:172::o;39273:138::-;16602:12;:10;:12::i;:::-;16592:6;;-1:-1:-1;;;;;16592:6:0;;;:22;;;16584:67;;;;;-1:-1:-1;;;16584:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16584:67:0;;;;;;;;;;;;;;;39367:36:::1;39397:5;39367:25;39379:12;39367:7;;:11;;:25;;;;:::i;:::-;:29:::0;::::1;:36::i;:::-;39352:12;:51:::0;-1:-1:-1;39273:138:0:o;17779:214::-;16602:12;:10;:12::i;:::-;16592:6;;-1:-1:-1;;;;;16592:6:0;;;:22;;;16584:67;;;;;-1:-1:-1;;;16584:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16584:67:0;;;;;;;;;;;;;;;17860:6:::1;::::0;;;17843:23;;-1:-1:-1;;;;;;17843:23:0;;::::1;-1:-1:-1::0;;;;;17860:6:0;::::1;17843:23;::::0;;;17877:19:::1;::::0;;17919:3:::1;:10:::0;::::1;17907:9;:22:::0;17945:40:::1;::::0;17860:6;;-1:-1:-1;;;;;;;;;;;17945:40:0;17860:6;;17945:40:::1;17779:214:::0;:::o;32779:184::-;-1:-1:-1;;;;;32928:18:0;;;32896:7;32928:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;32779:184::o;38919:110::-;16602:12;:10;:12::i;:::-;16592:6;;-1:-1:-1;;;;;16592:6:0;;;:22;;;16584:67;;;;;-1:-1:-1;;;16584:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16584:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;38986:27:0::1;39016:5;38986:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;38986:35:0::1;::::0;;38919:110::o;17325:281::-;16602:12;:10;:12::i;:::-;16592:6;;-1:-1:-1;;;;;16592:6:0;;;:22;;;16584:67;;;;;-1:-1:-1;;;16584:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16584:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;17428:22:0;::::1;17406:110;;;;-1:-1:-1::0;;;17406:110:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17553:6;::::0;;17532:38:::1;::::0;-1:-1:-1;;;;;17532:38:0;;::::1;::::0;17553:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;17532:38:0;::::1;17581:6;:17:::0;;-1:-1:-1;;;;;;17581:17:0::1;-1:-1:-1::0;;;;;17581:17:0;;;::::1;::::0;;;::::1;::::0;;17325:281::o;8320:106::-;8408:10;8320:106;:::o;44577:371::-;-1:-1:-1;;;;;44704:19:0;;44696:68;;;;-1:-1:-1;;;44696:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44783:21:0;;44775:68;;;;-1:-1:-1;;;44775:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44856:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;44908:32;;;;;;;;;;;;;;;;;44577:371;;;:::o;44956:2043::-;-1:-1:-1;;;;;45078:18:0;;45070:68;;;;-1:-1:-1;;;45070:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45157:16:0;;45149:64;;;;-1:-1:-1;;;45149:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45241:1;45232:6;:10;45224:64;;;;-1:-1:-1;;;45224:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45308:21:0;;;;;;:17;:21;;;;;;;;45307:22;45299:54;;;;;-1:-1:-1;;;45299:54:0;;;;;;;;;;;;-1:-1:-1;;;45299:54:0;;;;;;;;;;;;;;;45391:10;45373:29;;;;:17;:29;;;;;;;;45372:30;45364:62;;;;;-1:-1:-1;;;45364:62:0;;;;;;;;;;;;-1:-1:-1;;;45364:62:0;;;;;;;;;;;;;;;45464:9;45446:28;;;;:17;:28;;;;;;;;45445:29;45437:61;;;;;-1:-1:-1;;;45437:61:0;;;;;;;;;;;;-1:-1:-1;;;45437:61:0;;;;;;;;;;;;;;;45521:7;:5;:7::i;:::-;-1:-1:-1;;;;;45513:15:0;:4;-1:-1:-1;;;;;45513:15:0;;;:32;;;;;45538:7;:5;:7::i;:::-;-1:-1:-1;;;;;45532:13:0;:2;-1:-1:-1;;;;;45532:13:0;;;45513:32;45509:175;;;45596:12;;45586:6;:22;;45560:124;;;;-1:-1:-1;;;45560:124:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45979:28;46010:24;46028:4;46010:9;:24::i;:::-;45979:55;;46075:12;;46051:20;:36;46047:104;;-1:-1:-1;46127:12:0;;46047:104;46227:29;;46190:66;;;;;;;46285:53;;-1:-1:-1;46322:16:0;;-1:-1:-1;;;46322:16:0;;;;46321:17;46285:53;:91;;;;-1:-1:-1;46363:13:0;;-1:-1:-1;;;;;46355:21:0;;;46363:13;;46355:21;;46285:91;:129;;;;-1:-1:-1;46393:21:0;;-1:-1:-1;;;46393:21:0;;;;46285:129;46267:318;;;46464:29;;46441:52;;46537:36;46552:20;46537:14;:36::i;:::-;-1:-1:-1;;;;;46778:24:0;;46658:12;46778:24;;;:18;:24;;;;;;46673:4;;46778:24;;;:50;;-1:-1:-1;;;;;;46806:22:0;;;;;;:18;:22;;;;;;;;46778:50;46774:98;;;-1:-1:-1;46855:5:0;46774:98;46950:41;46965:4;46971:2;46975:6;46983:7;46950:14;:41::i;:::-;44956:2043;;;;;;:::o;4628:226::-;4748:7;4784:12;4776:6;;;;4768:29;;;;-1:-1:-1;;;4768:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4820:5:0;;;4628:226::o;41578:164::-;41620:7;41641:15;41658;41677:19;:17;:19::i;:::-;41640:56;;-1:-1:-1;41640:56:0;-1:-1:-1;41714:20:0;41640:56;;41714:11;:20::i;:::-;41707:27;;;;41578:164;:::o;6060:132::-;6118:7;6145:39;6149:1;6152;6145:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6138:46;6060:132;-1:-1:-1;;;6060:132:0:o;3725:181::-;3783:7;3815:5;;;3839:6;;;;3831:46;;;;;-1:-1:-1;;;3831:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;39846:742;39946:7;39968;39990;40012;40034;40056;40106:23;40144:12;40171:18;40203:20;40215:7;40203:11;:20::i;:::-;40091:132;;;;;;40235:15;40252:23;40277:12;40293:113;40319:7;40341:4;40360:10;40385;:8;:10::i;:::-;40293:11;:113::i;:::-;40234:172;;;;-1:-1:-1;40234:172:0;;-1:-1:-1;40510:15:0;;-1:-1:-1;40540:4:0;;-1:-1:-1;40559:10:0;;-1:-1:-1;39846:742:0;;-1:-1:-1;;;;;39846:742:0:o;4189:136::-;4247:7;4274:43;4278:1;4281;4274:43;;;;;;;;;;;;;;;;;:3;:43::i;5113:471::-;5171:7;5416:6;5412:47;;-1:-1:-1;5446:1:0;5439:8;;5412:47;5483:5;;;5487:1;5483;:5;:1;5507:5;;;;;:10;5499:56;;;;-1:-1:-1;;;5499:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47007:552;30633:16;:23;;-1:-1:-1;;;;30633:23:0;-1:-1:-1;;;30633:23:0;;;;47120:36:::1;30633:16:::0;47120:28:::1;:20:::0;47145:2:::1;47120:24;:28::i;:::-;:32:::0;::::1;:36::i;:::-;47092:64:::0;-1:-1:-1;47167:21:0::1;47191:36;47224:2;47191:28;:20:::0;47216:2:::1;47191:24;:28::i;:36::-;47167:60:::0;-1:-1:-1;47238:20:0::1;47261:37;47295:2;47261:29;:20:::0;47286:3:::1;47261:24;:29::i;:37::-;47238:60;;47352:35;47369:17;47352:16;:35::i;:::-;47398:32;47417:12;47398:18;:32::i;:::-;47441:27;47454:13;47441:12;:27::i;:::-;47486:65;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;;30679:16:0;:24;;-1:-1:-1;;;;30679:24:0;;;-1:-1:-1;;47007:552:0:o;48209:838::-;48365:7;48360:28;;48374:14;:12;:14::i;:::-;-1:-1:-1;;;;;48405:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;48429:22:0;;;;;;:11;:22;;;;;;;;48428:23;48405:46;48401:597;;;48468:48;48490:6;48498:9;48509:6;48468:21;:48::i;:::-;48401:597;;;-1:-1:-1;;;;;48539:19:0;;;;;;:11;:19;;;;;;;;48538:20;:46;;;;-1:-1:-1;;;;;;48562:22:0;;;;;;:11;:22;;;;;;;;48538:46;48534:464;;;48601:46;48621:6;48629:9;48640:6;48601:19;:46::i;48534:464::-;-1:-1:-1;;;;;48670:19:0;;;;;;:11;:19;;;;;;;;48669:20;:47;;;;-1:-1:-1;;;;;;48694:22:0;;;;;;:11;:22;;;;;;;;48693:23;48669:47;48665:333;;;48733:44;48751:6;48759:9;48770:6;48733:17;:44::i;48665:333::-;-1:-1:-1;;;;;48799:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;48822:22:0;;;;;;:11;:22;;;;;;;;48799:45;48795:203;;;48861:48;48883:6;48891:9;48902:6;48861:21;:48::i;48795:203::-;48942:44;48960:6;48968:9;48979:6;48942:17;:44::i;:::-;49015:7;49010:29;;49024:15;:13;:15::i;:::-;48209:838;;;;:::o;41750:605::-;41848:7;;41884;;41801;;;;;41902:338;41926:9;:16;41922:20;;41902:338;;;42010:7;41986;:21;41994:9;42004:1;41994:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41994:12:0;41986:21;;;;;;;;;;;;;:31;;:83;;;42062:7;42038;:21;42046:9;42056:1;42046:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42046:12:0;42038:21;;;;;;;;;;;;;:31;41986:83;41964:146;;;42093:7;;42102;;42085:25;;;;;;;;;41964:146;42135:34;42147:7;:21;42155:9;42165:1;42155:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42155:12:0;42147:21;;;;;;;;;;;;;42135:7;;:11;:34::i;:::-;42125:44;;42194:34;42206:7;:21;42214:9;42224:1;42214:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42214:12:0;42206:21;;;;;;;;;;;;;42194:7;;:11;:34::i;:::-;42184:44;-1:-1:-1;41944:3:0;;41902:338;;;-1:-1:-1;42276:7:0;;42264;;:20;;:11;:20::i;:::-;42254:7;:30;42250:61;;;42294:7;;42303;;42286:25;;;;;;;;42250:61;42330:7;;-1:-1:-1;42339:7:0;-1:-1:-1;41750:605:0;;;:::o;6688:312::-;6808:7;6843:12;6836:5;6828:28;;;;-1:-1:-1;;;6828:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6867:9;6883:1;6879;:5;;;;;;;6688:312;-1:-1:-1;;;;;6688:312:0:o;40596:412::-;40697:7;40719;40741;40776:12;40791:24;40807:7;40791:15;:24::i;:::-;40776:39;;40826:18;40847:30;40869:7;40847:21;:30::i;:::-;40826:51;-1:-1:-1;40888:23:0;40914:33;40826:51;40914:17;:7;40926:4;40914:11;:17::i;:::-;:21;;:33::i;:::-;40888:59;40983:4;;-1:-1:-1;40989:10:0;;-1:-1:-1;40596:412:0;;-1:-1:-1;;;40596:412:0:o;41016:554::-;41215:7;;;;41312:24;:7;41324:11;41312;:24::i;:::-;41294:42;-1:-1:-1;41347:12:0;41362:21;:4;41371:11;41362:8;:21::i;:::-;41347:36;-1:-1:-1;41394:18:0;41415:27;:10;41430:11;41415:14;:27::i;:::-;41394:48;-1:-1:-1;41453:23:0;41479:33;41394:48;41479:17;:7;41491:4;41479:11;:17::i;:33::-;41531:7;;;;-1:-1:-1;41557:4:0;;-1:-1:-1;41016:554:0;;-1:-1:-1;;;;;;;41016:554:0:o;43734:157::-;43795:24;43812:6;43795:16;:24::i;:::-;43830:21;;:53;;-1:-1:-1;;;;;43830:21:0;;;;43861;43830:53;;;;;:21;:53;:21;:53;43861:21;43830;:53;;;;;;;;;;;;;;;;;;;44087:161;44150:24;44167:6;44150:16;:24::i;:::-;44185:23;;:55;;-1:-1:-1;;;;;44185:23:0;;;;44218:21;44185:55;;;;;:23;:55;:23;:55;44218:21;44185:23;:55;;;;;;;;;;;;;;;;;;;44420:149;44477:24;44494:6;44477:16;:24::i;:::-;44512:17;;:49;;-1:-1:-1;;;;;44512:17:0;;;;44539:21;44512:49;;;;;:17;:49;:17;:49;44539:21;44512:17;:49;;;;;;;;;;;;;;;;;;;43046:235;43093:7;;:12;:34;;;;-1:-1:-1;43109:13:0;;:18;43093:34;43089:47;;;43129:7;;43089:47;43166:7;;;43148:15;:25;43208:13;;;43184:21;:37;-1:-1:-1;43234:11:0;;;;43256:17;43046:235;:::o;49688:686::-;49839:15;49869:23;49907:12;49934:23;49972:12;49999:18;50031:19;50042:7;50031:10;:19::i;:::-;-1:-1:-1;;;;;50079:15:0;;;;;;:7;:15;;;;;;49824:226;;-1:-1:-1;49824:226:0;;-1:-1:-1;49824:226:0;;-1:-1:-1;49824:226:0;-1:-1:-1;49824:226:0;-1:-1:-1;49824:226:0;-1:-1:-1;50079:28:0;;50099:7;50079:19;:28::i;:::-;-1:-1:-1;;;;;50061:15:0;;;;;;:7;:15;;;;;;;;:46;;;;50136:7;:15;;;;:28;;50156:7;50136:19;:28::i;:::-;-1:-1:-1;;;;;50118:15:0;;;;;;;:7;:15;;;;;;:46;;;;50196:18;;;;;;;:39;;50219:15;50196:22;:39::i;:::-;-1:-1:-1;;;;;50175:18:0;;;;;;:7;:18;;;;;:60;50246:26;50261:10;50246:14;:26::i;:::-;50283:23;50295:4;50301;50283:11;:23::i;:::-;50339:9;-1:-1:-1;;;;;50322:44:0;50331:6;-1:-1:-1;;;;;50322:44:0;;50350:15;50322:44;;;;;;;;;;;;;;;;;;49688:686;;;;;;;;;:::o;50382:698::-;50531:15;50561:23;50599:12;50626:23;50664:12;50691:18;50723:19;50734:7;50723:10;:19::i;:::-;-1:-1:-1;;;;;50771:15:0;;;;;;:7;:15;;;;;;50516:226;;-1:-1:-1;50516:226:0;;-1:-1:-1;50516:226:0;;-1:-1:-1;50516:226:0;-1:-1:-1;50516:226:0;-1:-1:-1;50516:226:0;-1:-1:-1;50771:28:0;;50516:226;50771:19;:28::i;:::-;-1:-1:-1;;;;;50753:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;50831:18;;;;;:7;:18;;;;;:39;;50854:15;50831:22;:39::i;:::-;-1:-1:-1;;;;;50810:18:0;;;;;;:7;:18;;;;;;;;:60;;;;50902:7;:18;;;;:39;;50925:15;50902:22;:39::i;49055:625::-;49202:15;49232:23;49270:12;49297:23;49335:12;49362:18;49394:19;49405:7;49394:10;:19::i;:::-;-1:-1:-1;;;;;49442:15:0;;;;;;:7;:15;;;;;;49187:226;;-1:-1:-1;49187:226:0;;-1:-1:-1;49187:226:0;;-1:-1:-1;49187:226:0;-1:-1:-1;49187:226:0;-1:-1:-1;49187:226:0;-1:-1:-1;49442:28:0;;49187:226;49442:19;:28::i;38154:757::-;38305:15;38335:23;38373:12;38400:23;38438:12;38465:18;38497:19;38508:7;38497:10;:19::i;:::-;-1:-1:-1;;;;;38545:15:0;;;;;;:7;:15;;;;;;38290:226;;-1:-1:-1;38290:226:0;;-1:-1:-1;38290:226:0;;-1:-1:-1;38290:226:0;-1:-1:-1;38290:226:0;-1:-1:-1;38290:226:0;-1:-1:-1;38545:28:0;;38565:7;38545:19;:28::i;:::-;-1:-1:-1;;;;;38527:15:0;;;;;;:7;:15;;;;;;;;:46;;;;38602:7;:15;;;;:28;;38622:7;38602:19;:28::i;43289:125::-;43343:15;;43333:7;:25;43385:21;;43369:13;:37;43289:125::o;42726:130::-;42790:7;42817:31;42842:5;42817:20;42829:7;;42817;:11;;:20;;;;:::i;42864:174::-;42961:7;42993:37;43024:5;42993:26;43005:13;;42993:7;:11;;:26;;;;:::i;47567:561::-;47717:16;;;47731:1;47717:16;;;47693:21;47717:16;;;;;47693:21;47717:16;;;;;;;;;;-1:-1:-1;47717:16:0;47693:40;;47762:4;47744;47749:1;47744:7;;;;;;;;-1:-1:-1;;;;;47744:23:0;;;:7;;;;;;;;;;:23;;;;47788:15;;:22;;;-1:-1:-1;;;47788:22:0;;;;:15;;;;;:20;;:22;;;;;47744:7;;47788:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47788:22:0;47778:7;;:4;;47783:1;;47778:7;;;;;;-1:-1:-1;;;;;47778:32:0;;;:7;;;;;;;;;:32;47855:15;;47823:62;;47840:4;;47855:15;47873:11;47823:8;:62::i;:::-;47924:15;;:196;;-1:-1:-1;;;47924:196:0;;;;;;;;:15;:196;;;;;;48074:4;47924:196;;;;;;48094:15;47924:196;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47924:15:0;;;;:66;;48005:11;;48047:4;;48074;48094:15;47924:196;;;;;;;;;;;;;;;;:15;:196;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42363:355;42426:19;42448:10;:8;:10::i;:::-;42426:32;-1:-1:-1;42469:18:0;42490:27;:10;42426:32;42490:14;:27::i;:::-;42569:4;42553:22;;;;:7;:22;;;;;;42469:48;;-1:-1:-1;42553:38:0;;42469:48;42553:26;:38::i;:::-;42544:4;42528:22;;;;:7;:22;;;;;;;;:63;;;;42606:11;:26;;;;;;42602:108;;;42688:4;42672:22;;;;:7;:22;;;;;;:38;;42699:10;42672:26;:38::i;:::-;42663:4;42647:22;;;;:7;:22;;;;;:63;42602:108;42363:355;;;:::o;39691:147::-;39769:7;;:17;;39781:4;39769:11;:17::i;:::-;39759:7;:27;39810:10;;:20;;39825:4;39810:14;:20::i;:::-;39797:10;:33;-1:-1:-1;;39691:147:0:o

Swarm Source

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