ETH Price: $3,387.22 (+4.70%)
Gas: 3 Gwei

Token

Eco Doge (ECODOGE)
 

Overview

Max Total Supply

1,000,000,000,000 ECODOGE

Holders

119

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
3,560,316.252876859 ECODOGE

Value
$0.00
0x56b10e4dbc5f6ee7d3b5b4c27049a320d038c4f1
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:
EcoDoge

Compiler Version
v0.8.4+commit.c7e474f2

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-18
*/

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

interface IERC20 {
    /**
    * @dev Returns the amount of tokens in existence.
    */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
    * @dev Returns the addition of two unsigned integers, with an overflow flag.
    *
    * _Available since v3.4._
    */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
    * @dev Returns the substraction of two unsigned integers, with an overflow flag.
    *
    * _Available since v3.4._
    */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
    * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
    *
    * _Available since v3.4._
    */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // 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 (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
    * @dev Returns the division of two unsigned integers, with a division by zero flag.
    *
    * _Available since v3.4._
    */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
    * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
    *
    * _Available since v3.4._
    */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
    * @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) {
        return a + b;
    }

    /**
    * @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 a - b;
    }

    /**
    * @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) {
        return a * b;
    }

    /**
    * @dev Returns the integer division of two unsigned integers, reverting on
    * division by zero. The result is rounded towards zero.
    *
    * Counterpart to Solidity's `/` operator.
    *
    * Requirements:
    *
    * - The divisor cannot be zero.
    */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
    * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
    * reverting 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 a % b;
    }

    /**
    * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
    * overflow (when the result is negative).
    *
    * CAUTION: This function is deprecated because it requires allocating memory for the error
    * message unnecessarily. For custom revert reasons use {trySub}.
    *
    * Counterpart to Solidity's `-` operator.
    *
    * Requirements:
    *
    * - Subtraction cannot overflow.
    */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
    * @dev Returns the integer division of two unsigned integers, reverting with custom message on
    * division by zero. The result is rounded towards 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).
    *
    * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
    * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
    * reverting with custom message when dividing by zero.
    *
    * CAUTION: This function is deprecated because it requires allocating memory for the error
    * message unnecessarily. For custom revert reasons use {tryMod}.
    *
    * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        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) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
    * @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");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
    * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
    * but performing a static call.
    *
    * _Available since v3.3._
    */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
    * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
    * but performing a static call.
    *
    * _Available since v3.3._
    */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
    * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
    * but performing a delegate call.
    *
    * _Available since v3.4._
    */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
    * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
    * but performing a delegate call.
    *
    * _Available since v3.4._
    */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        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.
 */
abstract 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 () {
        _owner = _msgSender();
        emit OwnershipTransferred(address(0), _owner);
    }

    /**
    * @dev Returns the address of the current owner.
    */
    function owner() public view virtual 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 = block.timestamp + 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(block.timestamp > _lockTime , "Contract is locked until 7 days");
        emit OwnershipTransferred(_owner, _previousOwner);
        _owner = _previousOwner;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

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

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

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

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

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

// contract implementation
contract EcoDoge is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

    uint8 private _decimals = 9;

    string private _name = "Eco Doge";
    string private _symbol = "ECODOGE";
    uint256 private _tTotal = 1000000000000 * 10**9; // 1T

    // % to holders
    uint256 public defaultTaxFee = 2;
    uint256 public _taxFee = defaultTaxFee;
    uint256 private _previousTaxFee = _taxFee;

    // % to swap & send to marketing wallet
    uint256 public defaultMarketingFee = 13; //buying only
    uint256 public _marketingFee = defaultMarketingFee;
    uint256 private _previousMarketingFee = _marketingFee;

    uint256 public _marketingFee4Sellers = 13; //selling only

    bool public feesOnSellersAndBuyers = true;

    uint256 public _maxTxAmount = 50000000 * 10**2 * 10**9; // max transaction amount
    uint256 public numTokensToExchangeForMarketing = _tTotal.div(100).div(100); // contract balance to trigger swap & send

    address payable private _teamWalletAddress;
    address payable private _marketingWalletAddress;

    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;
    
    mapping (address => bool) private _isBlackListedBot;
    address[] private _blackListedBots;

    address[] private _excluded;
    uint256 private constant MAX = ~uint256(0);

    uint256 private _tFeeTotal;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool inSwapAndSend;
    bool public SwapAndSendEnabled = true;        
    bool public tradingEnabled = false;

    event SwapAndSendEnabledUpdated(bool enabled);
//------

    bool private cooldownEnabled = false;
    uint256 private _numOfTokensToExchangeForTeam = 5 * 10**6; // 5M

    bool private isCooldownEnabled = true;
    mapping(address => uint256) private buycooldown;
    mapping(address => uint256) private sellcooldown;
    mapping(address => uint256) private firstsell;
    mapping(address => uint256) private sellnumber;

    mapping (address => bool) private bots;

    event MaxTxAmountUpdated(uint _maxTxAmount);
    mapping (address => bool) private _isBlacklisted;

//------
    modifier lockTheSwap {
        inSwapAndSend = true;
        _;
        inSwapAndSend = false;
    }

    constructor (address payable teamWalletAddress, address payable marketingWalletAddress) {
        
        _teamWalletAddress = teamWalletAddress;
        _marketingWalletAddress = marketingWalletAddress;
        
        _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;

        _isBlackListedBot[address(0x7589319ED0fD750017159fb4E4d96C63966173C1)] = true;
        _blackListedBots.push(address(0x7589319ED0fD750017159fb4E4d96C63966173C1));
        
        _isBlackListedBot[address(0x65A67DF75CCbF57828185c7C050e34De64d859d0)] = true;
        _blackListedBots.push(address(0x65A67DF75CCbF57828185c7C050e34De64d859d0));
        
        _isBlackListedBot[address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce)] = true;
        _blackListedBots.push(address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce));
        
        _isBlackListedBot[address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce)] = true;
        _blackListedBots.push(address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce));

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

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

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

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

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

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

        _isBlackListedBot[address(0x27F9Adb26D532a41D97e00206114e429ad58c679)] = true;
        _blackListedBots.push(address(0x27F9Adb26D532a41D97e00206114e429ad58c679));
        
        _isBlackListedBot[address(0x9282dc5c422FA91Ff2F6fF3a0b45B7BF97CF78E7)] = true;
        _blackListedBots.push(address(0x9282dc5c422FA91Ff2F6fF3a0b45B7BF97CF78E7));
        
        _isBlackListedBot[address(0xfad95B6089c53A0D1d861eabFaadd8901b0F8533)] = true;
        _blackListedBots.push(address(0xfad95B6089c53A0D1d861eabFaadd8901b0F8533));
        
        _isBlackListedBot[address(0x1d6E8BAC6EA3730825bde4B005ed7B2B39A2932d)] = true;
        _blackListedBots.push(address(0x1d6E8BAC6EA3730825bde4B005ed7B2B39A2932d));
        
        _isBlackListedBot[address(0x000000000000084e91743124a982076C59f10084)] = true;
        _blackListedBots.push(address(0x000000000000084e91743124a982076C59f10084));

        _isBlackListedBot[address(0x6dA4bEa09C3aA0761b09b19837D9105a52254303)] = true;
        _blackListedBots.push(address(0x6dA4bEa09C3aA0761b09b19837D9105a52254303));
        
        _isBlackListedBot[address(0x323b7F37d382A68B0195b873aF17CeA5B67cd595)] = true;
        _blackListedBots.push(address(0x323b7F37d382A68B0195b873aF17CeA5B67cd595));
        
        _isBlackListedBot[address(0x000000005804B22091aa9830E50459A15E7C9241)] = true;
        _blackListedBots.push(address(0x000000005804B22091aa9830E50459A15E7C9241));
        
        _isBlackListedBot[address(0xA3b0e79935815730d942A444A84d4Bd14A339553)] = true;
        _blackListedBots.push(address(0xA3b0e79935815730d942A444A84d4Bd14A339553));
        
        _isBlackListedBot[address(0xf6da21E95D74767009acCB145b96897aC3630BaD)] = true;
        _blackListedBots.push(address(0xf6da21E95D74767009acCB145b96897aC3630BaD));
        
        _isBlackListedBot[address(0x0000000000007673393729D5618DC555FD13f9aA)] = true;
        _blackListedBots.push(address(0x0000000000007673393729D5618DC555FD13f9aA));
        
        _isBlackListedBot[address(0x00000000000003441d59DdE9A90BFfb1CD3fABf1)] = true;
        _blackListedBots.push(address(0x00000000000003441d59DdE9A90BFfb1CD3fABf1));
        
        _isBlackListedBot[address(0x59903993Ae67Bf48F10832E9BE28935FEE04d6F6)] = true;
        _blackListedBots.push(address(0x59903993Ae67Bf48F10832E9BE28935FEE04d6F6));
        
        _isBlackListedBot[address(0x000000917de6037d52b1F0a306eeCD208405f7cd)] = true;
        _blackListedBots.push(address(0x000000917de6037d52b1F0a306eeCD208405f7cd));
        
        _isBlackListedBot[address(0x7100e690554B1c2FD01E8648db88bE235C1E6514)] = true;
        _blackListedBots.push(address(0x7100e690554B1c2FD01E8648db88bE235C1E6514));
        
        _isBlackListedBot[address(0x72b30cDc1583224381132D379A052A6B10725415)] = true;
        _blackListedBots.push(address(0x72b30cDc1583224381132D379A052A6B10725415));
        
        _isBlackListedBot[address(0x9eDD647D7d6Eceae6bB61D7785Ef66c5055A9bEE)] = true;
        _blackListedBots.push(address(0x9eDD647D7d6Eceae6bB61D7785Ef66c5055A9bEE));

        _isBlackListedBot[address(0xfe9d99ef02E905127239E85A611c29ad32c31c2F)] = true;
        _blackListedBots.push(address(0xfe9d99ef02E905127239E85A611c29ad32c31c2F));
        
        _isBlackListedBot[address(0x39608b6f20704889C51C0Ae28b1FCA8F36A5239b)] = true;
        _blackListedBots.push(address(0x39608b6f20704889C51C0Ae28b1FCA8F36A5239b));
        
        _isBlackListedBot[address(0xc496D84215d5018f6F53E7F6f12E45c9b5e8e8A9)] = true;
        _blackListedBots.push(address(0xc496D84215d5018f6F53E7F6f12E45c9b5e8e8A9));

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

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

        _isBlackListedBot[address(0x4aEB32e16DcaC00B092596ADc6CD4955EfdEE290)] = true;
        _blackListedBots.push(address(0x4aEB32e16DcaC00B092596ADc6CD4955EfdEE290));
        
        _isBlackListedBot[address(0x136F4B5b6A306091b280E3F251fa0E21b1280Cd5)] = true;
        _blackListedBots.push(address(0x136F4B5b6A306091b280E3F251fa0E21b1280Cd5));
        
        _isBlackListedBot[address(0x39608b6f20704889C51C0Ae28b1FCA8F36A5239b)] = true;
        _blackListedBots.push(address(0x39608b6f20704889C51C0Ae28b1FCA8F36A5239b));
        
        _isBlackListedBot[address(0x5B83A351500B631cc2a20a665ee17f0dC66e3dB7)] = true;
        _blackListedBots.push(address(0x5B83A351500B631cc2a20a665ee17f0dC66e3dB7));
  
        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 addBotToBlackList(address account) external onlyOwner() {
        require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not 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 isBlackListed(address account) public view returns (bool) {
        return _isBlackListedBot[account];
    }

    function setCooldownEnabled(bool onoff) external onlyOwner() {
        cooldownEnabled = onoff;
    }

    function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() {
        require(maxTxPercent > 0, "Amount must be greater than 0");
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(10**2);
        emit MaxTxAmountUpdated(_maxTxAmount);
    }
    
    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 reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 rAmount,,,,,) = _getValues(tAmount);
            return rAmount;
        } else {
            (,uint256 rTransferAmount,,,,) = _getValues(tAmount);
            return rTransferAmount;
        }
    }

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

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

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

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

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

    function removeAllFee() private {
        if(_taxFee == 0 && _marketingFee == 0) return;

        _previousTaxFee = _taxFee;
        _previousMarketingFee = _marketingFee;

        _taxFee = 0;
        _marketingFee = 0;
    }

    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _marketingFee = _previousMarketingFee;
    }

    //to recieve ETH 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 tMarketing) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tMarketing, _getRate());
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tMarketing);
    }

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

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tMarketing, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rMarketing = tMarketing.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rMarketing);
        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 _takeMarketing(uint256 tMarketing) private {
        uint256 currentRate =  _getRate();
        uint256 rMarketing = tMarketing.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rMarketing);
        if(_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tMarketing);
    }

    function calculateTaxFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_taxFee).div(
            10**2
        );
    }

    function calculateMarketingFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_marketingFee).div(
            10**2
        );
    }

    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }

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

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        require(!_isBlackListedBot[to], "You have no power here!");
        require(!_isBlackListedBot[from], "You have no power here!");
        require(_isBlacklisted[from] == false || to == address(0), "You are banned");
        require(_isBlacklisted[to] == false, "The recipient is banned");

        if(from != owner() && to != owner()) {
            require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
            if (from == uniswapV2Pair || to == uniswapV2Pair) {
                require(tradingEnabled, "Trading is not enabled yet");
            }
            require(!bots[from] && !bots[to]);
            if (from == uniswapV2Pair && to != address(uniswapV2Router) && !_isExcludedFromFee[to] && cooldownEnabled) {
                require(tradingEnabled);
                require(amount <= _maxTxAmount);
                require(buycooldown[to] < block.timestamp);
                buycooldown[to] = block.timestamp + (2 minutes);
                defaultMarketingFee = 15;
                _marketingFee4Sellers = 15;
            }
        }

        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + send lock?
        // also, don't get caught in a circular sending event.
        // also, don't swap & liquify if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));
        bool overMinTokenBalance = contractTokenBalance >= numTokensToExchangeForMarketing;

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

        if (
            overMinTokenBalance &&
            !inSwapAndSend &&
            from != uniswapV2Pair &&
            SwapAndSendEnabled
        ) {
            SwapAndSend(contractTokenBalance);
        }

        if(feesOnSellersAndBuyers) {
            setFees(to);
        }

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

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

    function setFees(address recipient) private {
        _taxFee = defaultTaxFee;
        _marketingFee = defaultMarketingFee;
        if (recipient == uniswapV2Pair) { // sell
            _marketingFee = _marketingFee4Sellers;
        }
    }

    function SwapAndSend(uint256 contractTokenBalance) private lockTheSwap {
        // 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), contractTokenBalance);

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

        uint256 contractETHBalance = address(this).balance;
        if(contractETHBalance > 0) {
             _teamWalletAddress.transfer(contractETHBalance.div(2));
            _marketingWalletAddress.transfer(contractETHBalance.div(2));
        }
    }

    //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 tMarketing) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeMarketing(tMarketing);
        _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 tMarketing) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeMarketing(tMarketing);
        _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 tMarketing) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeMarketing(tMarketing);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tMarketing) = _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);
        _takeMarketing(tMarketing);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function setDefaultMarketingFee(uint256 marketingFee) external onlyOwner() {
        defaultMarketingFee = marketingFee;
    }

    function setMarketingFee4Sellers(uint256 marketingFee4Sellers) external onlyOwner() {
        _marketingFee4Sellers = marketingFee4Sellers;
    }

    function setFeesOnSellersAndBuyers(bool _enabled) public onlyOwner() {
        feesOnSellersAndBuyers = _enabled;
    }

    function setSwapAndSendEnabled(bool _enabled) public onlyOwner() {
        SwapAndSendEnabled = _enabled;
        emit SwapAndSendEnabledUpdated(_enabled);
    }
    
    function LetTradingBegin(bool _tradingEnabled) external onlyOwner() {
         tradingEnabled = _tradingEnabled;
    }

    function blacklistSingleWallet(address addresses) public onlyOwner(){
        if(_isBlacklisted[addresses] == true) return;
        _isBlacklisted[addresses] = true;
    }

    function blacklistMultipleWallets(address[] calldata addresses) public onlyOwner(){
        for (uint256 i; i < addresses.length; ++i) {
            _isBlacklisted[addresses[i]] = true;
        }
    }
    
    function isBlacklisted(address addresses) public view returns (bool){
        if(_isBlacklisted[addresses] == true) return true;
        else return false;
    }
    
    
    function unBlacklistSingleWallet(address addresses) external onlyOwner(){
         if(_isBlacklisted[addresses] == false) return;
        _isBlacklisted[addresses] = false;
    }

    function unBlacklistMultipleWallets(address[] calldata addresses) public onlyOwner(){
        for (uint256 i; i < addresses.length; ++i) {
            _isBlacklisted[addresses[i]] = false;
        }
    }

    function setnumTokensToExchangeForMarketing(uint256 _numTokensToExchangeForMarketing) public onlyOwner() {
        numTokensToExchangeForMarketing = _numTokensToExchangeForMarketing;
    }

    function _setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() {
        _maxTxAmount = maxTxAmount;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"teamWalletAddress","type":"address"},{"internalType":"address payable","name":"marketingWalletAddress","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":"_maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndSendEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"bool","name":"_tradingEnabled","type":"bool"}],"name":"LetTradingBegin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"SwapAndSendEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingFee4Sellers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"_setMaxTxAmount","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":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"blacklistMultipleWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addresses","type":"address"}],"name":"blacklistSingleWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"defaultMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaultTaxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"feesOnSellersAndBuyers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"isBlackListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addresses","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"numTokensToExchangeForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBotFromBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"setCooldownEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee","type":"uint256"}],"name":"setDefaultMarketingFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setFeesOnSellersAndBuyers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee4Sellers","type":"uint256"}],"name":"setMarketingFee4Sellers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndSendEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numTokensToExchangeForMarketing","type":"uint256"}],"name":"setnumTokensToExchangeForMarketing","outputs":[],"stateMutability":"nonpayable","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":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"unBlacklistMultipleWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addresses","type":"address"}],"name":"unBlacklistSingleWallet","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"},{"stateMutability":"payable","type":"receive"}]

6003805460ff19166009179055610100604052600860c08190526745636f20446f676560c01b60e090815262000039916004919062000f40565b506040805180820190915260078082526645434f444f474560c81b60209092019182526200006a9160059162000f40565b50683635c9adc5dea000006006819055600260078190556008819055600955600d600a819055600b819055600c8190558055600e8054600160ff19909116179055674563918244f40000600f55620000eb90606490620000d7908262000f2b602090811b62001ccf17901c565b62000f2b60201b62001ccf1790919060201c565b601055600654620000ff90600019620010bb565b6200010d906000196200105a565b601c55601d805463ffffff001916610100179055624c4b40601e55601f805460ff191660011790553480156200014257600080fd5b506040516200454638038062004546833981016040819052620001659162001005565b600080546001600160a01b0319163390811782556040519091907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3601180546001600160a01b038085166001600160a01b0319928316179092556012805492841692909116919091179055601c5460136000620001e33390565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200025a57600080fd5b505afa1580156200026f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000295919062000fe6565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620002de57600080fd5b505afa158015620002f3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000319919062000fe6565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200036257600080fd5b505af115801562000377573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200039d919062000fe6565b6001600160601b0319606091821b811660a0529082901b16608052600160166000620003d16000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526016835290812080548416600190811790915560189092527ff3c21155109034c4f865baf0e7eee467028b2fd56494a84a6901c4b26362712680548416831790556019805480840182557f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c969590810180546001600160a01b0319908116737589319ed0fd750017159fb4e4d96c63966173c1179091557f98cf344db794137aadb247f59f336cb87e09d1a0b43a1bc718e554d625e4fc3a8054871686179055825480860184558201805482167365a67df75ccbf57828185c7c050e34de64d859d01790557fa5fb03c010d87509daa42238513c9083e0d8730ada5d13cdd0ced1ffdb38d64f80548716861781558354808701855583018054831673e031b36b53e53a292a20c5f08fd1658cddf74fce9081179091558154881687179091558354808701855583018054831690911790557fe9dd42cd3a4ca7666900f7af36b9148b12cac90c067c37b1c7fc45be5763593580548716861790558254808601845582018054821673e516bdee55b0b4e9bacaf6285130de15589b13451790557fcd2082335ca7dde8eeee8174182502a1672443a62e633f15deff133fb1d78f5480548716861790558254808601845582018054821673a1cec245c456dd1bd9f2815a6955fef44eb4191b1790557ffaa7f43953ff76548c5b19048c3ac59bdebaa1ea596e9c0574f4e32642f95eb580548716861790558254808601845582018054821673d7d3ee77d35d0a56f91542d4905b1a2b1cd7cf951790557fc7356d0ab185a32cbdd6da4094742b9d19399e93f8b742951b6b20b76a25998980548716861790558254808601845582018054821673fe76f05dc59fec04184fa0245ad0c3cf9a57b9641790557fd1927567d1ef5983ef1e10038f29e84c1dc47f1f522de0dd8f00b16253bff94c80548716861790558254808601845582018054821673dc81a3450817a58d00f45c86d0368290088db8481790557fd0143573f906643686fed1bdca2fdc3309a84a93797a227b91d49d38aebe4f408054871686179055825480860184558201805482167345fd07c63e5c316540f14b2002b085aee78e38811790557fe2ff8f02df4019a8ccd30459b014f32756332bb812bf2293ebef0b8bc6f2960c8054871686179055825480860184558201805482167327f9adb26d532a41d97e00206114e429ad58c6791790557f0f2d3f126ae56a863652fdb18cd9b8a754351c376dd6870e1f135ffad397cc42805487168617905582548086018455820180548216739282dc5c422fa91ff2f6ff3a0b45b7bf97cf78e71790557fed676ef5a95091a114d150415c5ce1d3055d2457b97255cdf4c0b31004770c8880548716861790558254808601845582018054821673fad95b6089c53a0d1d861eabfaadd8901b0f85331790557f4e961b53601e7ee6c53c4fa7102278f17afcedcfeaecf89633ca19083841d242805487168617905582548086018455820180548216731d6e8bac6ea3730825bde4b005ed7b2b39a2932d1790557f17eb17bdeec553a3fff59b73f25a9cc13d87c2736a60142f077fe2f3ce26d06c8054871686179055825480860184558201805482166d084e91743124a982076c59f100841790557f050ffd2baa810a10b6e8950f907ec97d97d49b6ed74da6cac783c007a2b75eee805487168617905582548086018455820180548216736da4bea09c3aa0761b09b19837d9105a522543031790557fade4d24035273c895acff34fbc9709578cc106c8d329af3162dd85cf8faabfc580548716861790558254808601845582018054821673323b7f37d382a68b0195b873af17cea5b67cd5951790557ffb031accdc91e5e8447846aad6ee276d42d0bff57f0119138ec663da3ac9e7fa8054871686179055825480860184558201805482166f5804b22091aa9830e50459a15e7c92411790557f4946b544376b1187ee9e9fe144a5af86cdd8552ae68f25343108d5f492d97fdc80548716861790558254808601845582018054821673a3b0e79935815730d942a444a84d4bd14a3395531790557f3322a1279fd9db141d016fdc44f529f628c0242199c8d351e4c9c96cc07f4eab80548716861790558254808601845582018054821673f6da21e95d74767009accb145b96897ac3630bad1790557fafbd7d6567ec10ed09573e3ba8d53842d234e5f0fcf327c4679bdeb9ca219d468054871686179055825480860184558201805482166d7673393729d5618dc555fd13f9aa1790557f2996cb23a0a8c7020697625c6ea731681935bf7cf0a186ed30cd1fc6d1ccb03b8054871686179055825480860184558201805482166d03441d59dde9a90bffb1cd3fabf11790557fc6e4f2067e74c22bec5226c9f40e2e90b7b3d5c52448e8dd6976654cdbece0f08054871686179055825480860184558201805482167359903993ae67bf48f10832e9be28935fee04d6f61790557f81d876694bd21d49e7fb92773ce2d825e56a994caa0970ebf96d797a05a95ae780548716861790558254808601845582018054821670917de6037d52b1f0a306eecd208405f7cd1790557fb6c5ce9773fe80079590a6b5177a2fd5dee1ec3e3e910116dae76f87161fb720805487168617905582548086018455820180548216737100e690554b1c2fd01e8648db88be235c1e65141790557fbd436eb89bdfb81186246848ed2423980c743f4857762fa726826b9671825de68054871686179055825480860184558201805482167372b30cdc1583224381132d379a052a6b107254151790557f2e3077ea527a8f99fe5b7d83414c150bcb4570d5ee72d84d58fa545708701c38805487168617905582548086018455820180548216739edd647d7d6eceae6bb61d7785ef66c5055a9bee1790557f3c68455f85b3a995a243aab30f061920b30660b5a866f857df2ada7fe77118e680548716861790558254808601845582018054821673fe9d99ef02e905127239e85a611c29ad32c31c2f1790557f03d3d2711f2e597a8ed757468fb3ba4bc8d31e5a33b6c30f8b95b720aeda91458054871686178155835480870185558301805483167339608b6f20704889c51c0ae28b1fca8f36a5239b9081179091557fde6c924ec3a072d5deda7af0026f5c2b5e787889bbf0f619014d5255d503bbb180548916881790558454808801865584018054841673c496d84215d5018f6f53e7f6f12e45c9b5e8e8a91790557f98c96e183ac6b360282073213fb5d2d2d6f25390558cb9932a6196718f94dead8054891688179055845480880186558401805484167359341bc6b4f3ace878574b05914f43309dd678c71790557f03d5a1d3d18078d17c82964933ba32384ad46786da05a2c62e5c4aabaef90b6480548916881790558454808801865584018054841673e986d48efee9ec1b8f66cd0b0ae8e3d18f091bdf1790557fd7c3f1f9d9360e0f3810727b9c6afe7a9d8530280ad30beac39d87f9d9611382805489168817905584548088018655840180548416734aeb32e16dcac00b092596adc6cd4955efdee2901790557f4062a1c33b8ebce7725b1f3c46e002afb4023609058471f3b4fd2e18cb79b2cb80548916881790558454808801865584018054841673136f4b5b6a306091b280e3f251fa0e21b1280cd51790558154881687179091558354808701855583018054831690911790557f6579a4ff36458df0061db244cf11546af143b54311731d3e8af52cb66d53d32480549096168517909555815493840182559152018054909116735b83a351500b631cc2a20a665ee17f0dc66e3db717905562000ed23390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60065460405162000f1a91815260200190565b60405180910390a350505062001101565b600062000f39828462001043565b9392505050565b82805462000f4e906200107e565b90600052602060002090601f01602090048101928262000f72576000855562000fbd565b82601f1062000f8d57805160ff191683800117855562000fbd565b8280016001018555821562000fbd579182015b8281111562000fbd57825182559160200191906001019062000fa0565b5062000fcb92915062000fcf565b5090565b5b8082111562000fcb576000815560010162000fd0565b60006020828403121562000ff8578081fd5b815162000f3981620010e8565b6000806040838503121562001018578081fd5b82516200102581620010e8565b60208401519092506200103881620010e8565b809150509250929050565b600082620010555762001055620010d2565b500490565b6000828210156200107957634e487b7160e01b81526011600452602481fd5b500390565b600181811c908216806200109357607f821691505b60208210811415620010b557634e487b7160e01b600052602260045260246000fd5b50919050565b600082620010cd57620010cd620010d2565b500690565b634e487b7160e01b600052601260045260246000fd5b6001600160a01b0381168114620010fe57600080fd5b50565b60805160601c60a05160601c6133da6200116c600039600081816105bd015281816121580152818161219301528181612271015281816123d301526127f30152600081816103ec015281816122ad015281816125c40152818161269a01526126d601526133da6000f3fe6080604052600436106103545760003560e01c80637ded4d6a116101c6578063bc951f98116100f7578063dd46706411610095578063ea2f0b371161006f578063ea2f0b3714610a09578063f157ce4014610a29578063f2fde38b14610a49578063fe575a8714610a6957600080fd5b8063dd4670641461096a578063dd62ed3e1461098a578063e47d6060146109d057600080fd5b8063cba851b3116100d1578063cba851b3146108f4578063d543dbeb1461090a578063d54994db1461092a578063dab522a81461094a57600080fd5b8063bc951f98146108a4578063c537bd8f146108ba578063cad6ebf9146108d457600080fd5b8063a1bdc39911610164578063a69df4b51161013e578063a69df4b51461083a578063a9059cbb1461084f578063abdef31d1461086f578063b6c523241461088f57600080fd5b8063a1bdc399146107e4578063a386443014610804578063a457c2d71461081a57600080fd5b806395d89b41116101a057806395d89b411461077a5780639f6462141461078f578063a062e3ba146107a5578063a08f6760146107c457600080fd5b80637ded4d6a1461070357806388f82020146107235780638da5cb5b1461075c57600080fd5b80633b124fe7116102a05780635342acb41161023e57806370a082311161021857806370a0823114610698578063715018a6146106b8578063772558ce146106cd5780637d1db4a5146106ed57600080fd5b80635342acb41461061f57806357e0a1d0146106585780635932ead11461067857600080fd5b80634549b0391161027a5780634549b0391461058b57806349bd5a5e146105ab5780634ada218b146105df57806352390c02146105ff57600080fd5b80633b124fe7146105355780634303443d1461054b578063437823ec1461056b57600080fd5b806322976e0d1161030d5780632d838119116102e75780632d838119146104b3578063313ce567146104d35780633685d419146104f5578063395093511461051557600080fd5b806322976e0d1461045d57806323b872dd146104735780632663236f1461049357600080fd5b806306fdde0314610360578063095ea7b31461038b57806313114a9d146103bb5780631694505e146103da57806318160ddd146104265780631bbae6e01461043b57600080fd5b3661035b57005b600080fd5b34801561036c57600080fd5b50610375610a89565b6040516103829190613150565b60405180910390f35b34801561039757600080fd5b506103ab6103a6366004613058565b610b1b565b6040519015158152602001610382565b3480156103c757600080fd5b50601b545b604051908152602001610382565b3480156103e657600080fd5b5061040e7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610382565b34801561043257600080fd5b506006546103cc565b34801561044757600080fd5b5061045b61045636600461310d565b610b32565b005b34801561046957600080fd5b506103cc600b5481565b34801561047f57600080fd5b506103ab61048e366004613018565b610b6a565b34801561049f57600080fd5b5061045b6104ae3660046130f3565b610bd3565b3480156104bf57600080fd5b506103cc6104ce36600461310d565b610c51565b3480156104df57600080fd5b5060035460405160ff9091168152602001610382565b34801561050157600080fd5b5061045b610510366004612fa8565b610cd5565b34801561052157600080fd5b506103ab610530366004613058565b610ec4565b34801561054157600080fd5b506103cc60085481565b34801561055757600080fd5b5061045b610566366004612fa8565b610efa565b34801561057757600080fd5b5061045b610586366004612fa8565b61106c565b34801561059757600080fd5b506103cc6105a6366004613125565b6110ba565b3480156105b757600080fd5b5061040e7f000000000000000000000000000000000000000000000000000000000000000081565b3480156105eb57600080fd5b50601d546103ab9062010000900460ff1681565b34801561060b57600080fd5b5061045b61061a366004612fa8565b611147565b34801561062b57600080fd5b506103ab61063a366004612fa8565b6001600160a01b031660009081526016602052604090205460ff1690565b34801561066457600080fd5b5061045b6106733660046130f3565b61129a565b34801561068457600080fd5b5061045b6106933660046130f3565b6112d7565b3480156106a457600080fd5b506103cc6106b3366004612fa8565b61131f565b3480156106c457600080fd5b5061045b61137e565b3480156106d957600080fd5b5061045b6106e8366004613083565b6113e0565b3480156106f957600080fd5b506103cc600f5481565b34801561070f57600080fd5b5061045b61071e366004612fa8565b61148d565b34801561072f57600080fd5b506103ab61073e366004612fa8565b6001600160a01b031660009081526017602052604090205460ff1690565b34801561076857600080fd5b506000546001600160a01b031661040e565b34801561078657600080fd5b50610375611649565b34801561079b57600080fd5b506103cc600a5481565b3480156107b157600080fd5b50601d546103ab90610100900460ff1681565b3480156107d057600080fd5b5061045b6107df36600461310d565b611658565b3480156107f057600080fd5b5061045b6107ff366004613083565b611687565b34801561081057600080fd5b506103cc60105481565b34801561082657600080fd5b506103ab610835366004613058565b61172f565b34801561084657600080fd5b5061045b61177e565b34801561085b57600080fd5b506103ab61086a366004613058565b611884565b34801561087b57600080fd5b5061045b61088a3660046130f3565b611891565b34801561089b57600080fd5b506002546103cc565b3480156108b057600080fd5b506103cc600d5481565b3480156108c657600080fd5b50600e546103ab9060ff1681565b3480156108e057600080fd5b5061045b6108ef366004612fa8565b6118d7565b34801561090057600080fd5b506103cc60075481565b34801561091657600080fd5b5061045b61092536600461310d565b611951565b34801561093657600080fd5b5061045b61094536600461310d565b611a20565b34801561095657600080fd5b5061045b61096536600461310d565b611a4f565b34801561097657600080fd5b5061045b61098536600461310d565b611a7e565b34801561099657600080fd5b506103cc6109a5366004612fe0565b6001600160a01b03918216600090815260156020908152604080832093909416825291909152205490565b3480156109dc57600080fd5b506103ab6109eb366004612fa8565b6001600160a01b031660009081526018602052604090205460ff1690565b348015610a1557600080fd5b5061045b610a24366004612fa8565b611b03565b348015610a3557600080fd5b5061045b610a44366004612fa8565b611b4e565b348015610a5557600080fd5b5061045b610a64366004612fa8565b611bbc565b348015610a7557600080fd5b506103ab610a84366004612fa8565b611c94565b606060048054610a98906132b6565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac4906132b6565b8015610b115780601f10610ae657610100808354040283529160200191610b11565b820191906000526020600020905b815481529060010190602001808311610af457829003601f168201915b5050505050905090565b6000610b28338484611cdb565b5060015b92915050565b6000546001600160a01b03163314610b655760405162461bcd60e51b8152600401610b5c906131a3565b60405180910390fd5b600f55565b6000610b77848484611dff565b610bc98433610bc485604051806060016040528060288152602001613338602891396001600160a01b038a166000908152601560209081526040808320338452909152902054919061249c565b611cdb565b5060019392505050565b6000546001600160a01b03163314610bfd5760405162461bcd60e51b8152600401610b5c906131a3565b601d80548215156101000261ff00199091161790556040517f3efb3f9ce66ef48ce5be6bff57df61c60b91f67f10f414ed7cd767b1c9cdad7d90610c4690831515815260200190565b60405180910390a150565b6000601c54821115610cb85760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610b5c565b6000610cc26124c8565b9050610cce8382611ccf565b9392505050565b6000546001600160a01b03163314610cff5760405162461bcd60e51b8152600401610b5c906131a3565b6001600160a01b03811660009081526017602052604090205460ff16610d675760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610b5c565b60005b601a54811015610ec057816001600160a01b0316601a8281548110610d9f57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610eae57601a8054610dca9060019061329f565b81548110610de857634e487b7160e01b600052603260045260246000fd5b600091825260209091200154601a80546001600160a01b039092169183908110610e2257634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152601482526040808220829055601790925220805460ff19169055601a805480610e8857634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610eb8816132f1565b915050610d6a565b5050565b3360008181526015602090815260408083206001600160a01b03871684529091528120549091610b28918590610bc490866124eb565b6000546001600160a01b03163314610f245760405162461bcd60e51b8152600401610b5c906131a3565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610f9d5760405162461bcd60e51b8152602060048201526024808201527f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f756044820152633a32b91760e11b6064820152608401610b5c565b6001600160a01b03811660009081526018602052604090205460ff16156110065760405162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c697374656400006044820152606401610b5c565b6001600160a01b03166000818152601860205260408120805460ff191660019081179091556019805491820181559091527f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c96950180546001600160a01b0319169091179055565b6000546001600160a01b031633146110965760405162461bcd60e51b8152600401610b5c906131a3565b6001600160a01b03166000908152601660205260409020805460ff19166001179055565b600060065483111561110e5760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610b5c565b8161112d57600061111e846124f7565b50939550610b2c945050505050565b6000611138846124f7565b50929550610b2c945050505050565b6000546001600160a01b031633146111715760405162461bcd60e51b8152600401610b5c906131a3565b6001600160a01b03811660009081526017602052604090205460ff16156111da5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610b5c565b6001600160a01b03811660009081526013602052604090205415611234576001600160a01b03811660009081526013602052604090205461121a90610c51565b6001600160a01b0382166000908152601460205260409020555b6001600160a01b03166000818152601760205260408120805460ff19166001908117909155601a805491820181559091527f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff63e0180546001600160a01b0319169091179055565b6000546001600160a01b031633146112c45760405162461bcd60e51b8152600401610b5c906131a3565b600e805460ff1916911515919091179055565b6000546001600160a01b031633146113015760405162461bcd60e51b8152600401610b5c906131a3565b601d805491151563010000000263ff00000019909216919091179055565b6001600160a01b03811660009081526017602052604081205460ff161561135c57506001600160a01b031660009081526014602052604090205490565b6001600160a01b038216600090815260136020526040902054610b2c90610c51565b6000546001600160a01b031633146113a85760405162461bcd60e51b8152600401610b5c906131a3565b600080546040516001600160a01b0390911690600080516020613360833981519152908390a3600080546001600160a01b0319169055565b6000546001600160a01b0316331461140a5760405162461bcd60e51b8152600401610b5c906131a3565b60005b818110156114885760016025600085858581811061143b57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906114509190612fa8565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055611481816132f1565b905061140d565b505050565b6000546001600160a01b031633146114b75760405162461bcd60e51b8152600401610b5c906131a3565b6001600160a01b03811660009081526018602052604090205460ff1661151f5760405162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c69737465640000000000006044820152606401610b5c565b60005b601954811015610ec057816001600160a01b03166019828154811061155757634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316141561163757601980546115829060019061329f565b815481106115a057634e487b7160e01b600052603260045260246000fd5b600091825260209091200154601980546001600160a01b0390921691839081106115da57634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152601890915260409020805460ff191690556019805480610e8857634e487b7160e01b600052603160045260246000fd5b80611641816132f1565b915050611522565b606060058054610a98906132b6565b6000546001600160a01b031633146116825760405162461bcd60e51b8152600401610b5c906131a3565b600d55565b6000546001600160a01b031633146116b15760405162461bcd60e51b8152600401610b5c906131a3565b60005b81811015611488576000602560008585858181106116e257634e487b7160e01b600052603260045260246000fd5b90506020020160208101906116f79190612fa8565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055611728816132f1565b90506116b4565b6000610b283384610bc485604051806060016040528060258152602001613380602591393360009081526015602090815260408083206001600160a01b038d168452909152902054919061249c565b6001546001600160a01b031633146117e45760405162461bcd60e51b815260206004820152602360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6044820152626f636b60e81b6064820152608401610b5c565b60025442116118355760405162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c20372064617973006044820152606401610b5c565b600154600080546040516001600160a01b03938416939091169160008051602061336083398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610b28338484611dff565b6000546001600160a01b031633146118bb5760405162461bcd60e51b8152600401610b5c906131a3565b601d8054911515620100000262ff000019909216919091179055565b6000546001600160a01b031633146119015760405162461bcd60e51b8152600401610b5c906131a3565b6001600160a01b03811660009081526025602052604090205460ff1615156001141561192a5750565b6001600160a01b0381166000908152602560205260409020805460ff191660011790555b50565b6000546001600160a01b0316331461197b5760405162461bcd60e51b8152600401610b5c906131a3565b600081116119cb5760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610b5c565b6119eb60646119e58360065461254690919063ffffffff16565b90611ccf565b600f8190556040519081527f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf90602001610c46565b6000546001600160a01b03163314611a4a5760405162461bcd60e51b8152600401610b5c906131a3565b600a55565b6000546001600160a01b03163314611a795760405162461bcd60e51b8152600401610b5c906131a3565b601055565b6000546001600160a01b03163314611aa85760405162461bcd60e51b8152600401610b5c906131a3565b60008054600180546001600160a01b03199081166001600160a01b03841617909155169055611ad78142613248565b600255600080546040516001600160a01b0390911690600080516020613360833981519152908390a350565b6000546001600160a01b03163314611b2d5760405162461bcd60e51b8152600401610b5c906131a3565b6001600160a01b03166000908152601660205260409020805460ff19169055565b6000546001600160a01b03163314611b785760405162461bcd60e51b8152600401610b5c906131a3565b6001600160a01b03811660009081526025602052604090205460ff16611b9b5750565b6001600160a01b03166000908152602560205260409020805460ff19169055565b6000546001600160a01b03163314611be65760405162461bcd60e51b8152600401610b5c906131a3565b6001600160a01b038116611c4b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b5c565b600080546040516001600160a01b038085169392169160008051602061336083398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526025602052604081205460ff16151560011415611cc257506001919050565b506000919050565b919050565b6000610cce8284613260565b6001600160a01b038316611d3d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b5c565b6001600160a01b038216611d9e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b5c565b6001600160a01b0383811660008181526015602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611e635760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610b5c565b6001600160a01b038216611ec55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610b5c565b60008111611f275760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610b5c565b6001600160a01b03821660009081526018602052604090205460ff1615611f8a5760405162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b6044820152606401610b5c565b6001600160a01b03831660009081526018602052604090205460ff1615611fed5760405162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b6044820152606401610b5c565b6001600160a01b03831660009081526025602052604090205460ff16158061201c57506001600160a01b038216155b6120595760405162461bcd60e51b815260206004820152600e60248201526d165bdd48185c994818985b9b995960921b6044820152606401610b5c565b6001600160a01b03821660009081526025602052604090205460ff16156120c25760405162461bcd60e51b815260206004820152601760248201527f54686520726563697069656e742069732062616e6e65640000000000000000006044820152606401610b5c565b6000546001600160a01b038481169116148015906120ee57506000546001600160a01b03838116911614155b1561239657600f548111156121565760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610b5c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614806121c757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316145b1561222457601d5462010000900460ff166122245760405162461bcd60e51b815260206004820152601a60248201527f54726164696e67206973206e6f7420656e61626c6564207965740000000000006044820152606401610b5c565b6001600160a01b03831660009081526024602052604090205460ff1615801561226657506001600160a01b03821660009081526024602052604090205460ff16155b61226f57600080fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480156122e257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b801561230757506001600160a01b03821660009081526016602052604090205460ff16155b801561231c5750601d546301000000900460ff165b1561239657601d5462010000900460ff1661233657600080fd5b600f5481111561234557600080fd5b6001600160a01b0382166000908152602080526040902054421161236857600080fd5b612373426078613248565b6001600160a01b0383166000908152602080526040902055600f600a819055600d555b60006123a13061131f565b601054600f549192508210159082106123ba57600f5491505b8080156123ca5750601d5460ff16155b801561240857507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b801561241b5750601d54610100900460ff165b156124295761242982612552565b600e5460ff161561243d5761243d846127e5565b6001600160a01b03851660009081526016602052604090205460019060ff168061247f57506001600160a01b03851660009081526016602052604090205460ff165b15612488575060005b6124948686868461282f565b505050505050565b600081848411156124c05760405162461bcd60e51b8152600401610b5c9190613150565b505050900390565b60008060006124d56129ac565b90925090506124e48282611ccf565b9250505090565b6000610cce8284613248565b600080600080600080600080600061250e8a612b66565b925092509250600080600061252c8d86866125276124c8565b612ba8565b919f909e50909c50959a5093985091965092945050505050565b6000610cce8284613280565b601d805460ff1916600117905560408051600280825260608201835260009260208301908036833701905050905030816000815181106125a257634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561261b57600080fd5b505afa15801561262f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126539190612fc4565b8160018151811061267457634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b0316815250506126bf307f000000000000000000000000000000000000000000000000000000000000000084611cdb565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906127149085906000908690309042906004016131d8565b600060405180830381600087803b15801561272e57600080fd5b505af1158015612742573d6000803e3d6000fd5b5047925050811590506127d6576011546001600160a01b03166108fc612769836002611ccf565b6040518115909202916000818181858888f19350505050158015612791573d6000803e3d6000fd5b506012546001600160a01b03166108fc6127ac836002611ccf565b6040518115909202916000818181858888f193505050501580156127d4573d6000803e3d6000fd5b505b5050601d805460ff1916905550565b600754600855600a54600b557f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03908116908216141561194e57600d54600b5550565b8061283c5761283c612bf8565b6001600160a01b03841660009081526017602052604090205460ff16801561287d57506001600160a01b03831660009081526017602052604090205460ff16155b156128925761288d848484612c26565b612990565b6001600160a01b03841660009081526017602052604090205460ff161580156128d357506001600160a01b03831660009081526017602052604090205460ff165b156128e35761288d848484612d4c565b6001600160a01b03841660009081526017602052604090205460ff1615801561292557506001600160a01b03831660009081526017602052604090205460ff16155b156129355761288d848484612df5565b6001600160a01b03841660009081526017602052604090205460ff16801561297557506001600160a01b03831660009081526017602052604090205460ff165b156129855761288d848484612e39565b612990848484612df5565b806129a6576129a6600954600855600c54600b55565b50505050565b601c546006546000918291825b601a54811015612b36578260136000601a84815481106129e957634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612a6257508160146000601a8481548110612a3b57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15612a7857601c54600654945094505050509091565b612acc60136000601a8481548110612aa057634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612ea8565b9250612b2260146000601a8481548110612af657634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612ea8565b915080612b2e816132f1565b9150506129b9565b50600654601c54612b4691611ccf565b821015612b5d57601c546006549350935050509091565b90939092509050565b600080600080612b7585612eb4565b90506000612b8286612ed0565b90506000612b9a82612b948986612ea8565b90612ea8565b979296509094509092505050565b6000808080612bb78886612546565b90506000612bc58887612546565b90506000612bd38888612546565b90506000612be582612b948686612ea8565b939b939a50919850919650505050505050565b600854158015612c085750600b54155b15612c0f57565b60088054600955600b8054600c5560009182905555565b600080600080600080612c38876124f7565b6001600160a01b038f16600090815260146020526040902054959b50939950919750955093509150612c6a9088612ea8565b6001600160a01b038a16600090815260146020908152604080832093909355601390522054612c999087612ea8565b6001600160a01b03808b1660009081526013602052604080822093909355908a1681522054612cc890866124eb565b6001600160a01b038916600090815260136020526040902055612cea81612eec565b612cf48483612f74565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051612d3991815260200190565b60405180910390a3505050505050505050565b600080600080600080612d5e876124f7565b6001600160a01b038f16600090815260136020526040902054959b50939950919750955093509150612d909087612ea8565b6001600160a01b03808b16600090815260136020908152604080832094909455918b16815260149091522054612dc690846124eb565b6001600160a01b038916600090815260146020908152604080832093909355601390522054612cc890866124eb565b600080600080600080612e07876124f7565b6001600160a01b038f16600090815260136020526040902054959b50939950919750955093509150612c999087612ea8565b600080600080600080612e4b876124f7565b6001600160a01b038f16600090815260146020526040902054959b50939950919750955093509150612e7d9088612ea8565b6001600160a01b038a16600090815260146020908152604080832093909355601390522054612d9090875b6000610cce828461329f565b6000610b2c60646119e56008548561254690919063ffffffff16565b6000610b2c60646119e5600b548561254690919063ffffffff16565b6000612ef66124c8565b90506000612f048383612546565b30600090815260136020526040902054909150612f2190826124eb565b3060009081526013602090815260408083209390935560179052205460ff16156114885730600090815260146020526040902054612f5f90846124eb565b30600090815260146020526040902055505050565b601c54612f819083612ea8565b601c55601b54612f9190826124eb565b601b555050565b80358015158114611cca57600080fd5b600060208284031215612fb9578081fd5b8135610cce81613322565b600060208284031215612fd5578081fd5b8151610cce81613322565b60008060408385031215612ff2578081fd5b8235612ffd81613322565b9150602083013561300d81613322565b809150509250929050565b60008060006060848603121561302c578081fd5b833561303781613322565b9250602084013561304781613322565b929592945050506040919091013590565b6000806040838503121561306a578182fd5b823561307581613322565b946020939093013593505050565b60008060208385031215613095578182fd5b823567ffffffffffffffff808211156130ac578384fd5b818501915085601f8301126130bf578384fd5b8135818111156130cd578485fd5b8660208260051b85010111156130e1578485fd5b60209290920196919550909350505050565b600060208284031215613104578081fd5b610cce82612f98565b60006020828403121561311e578081fd5b5035919050565b60008060408385031215613137578182fd5b8235915061314760208401612f98565b90509250929050565b6000602080835283518082850152825b8181101561317c57858101830151858201604001528201613160565b8181111561318d5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156132275784516001600160a01b031683529383019391830191600101613202565b50506001600160a01b03969096166060850152505050608001529392505050565b6000821982111561325b5761325b61330c565b500190565b60008261327b57634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561329a5761329a61330c565b500290565b6000828210156132b1576132b161330c565b500390565b600181811c908216806132ca57607f821691505b602082108114156132eb57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156133055761330561330c565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461194e57600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220924d1efa6a40d1bdc387a3227977434f6846571c0f26a5046a194c8bb24770b764736f6c63430008040033000000000000000000000000144e1efe7674ec6cbf76d4dd21ad8c44dabdc7c2000000000000000000000000e51de8956c9dfb02eca0b9ab12fb87df49f668bd

Deployed Bytecode

0x6080604052600436106103545760003560e01c80637ded4d6a116101c6578063bc951f98116100f7578063dd46706411610095578063ea2f0b371161006f578063ea2f0b3714610a09578063f157ce4014610a29578063f2fde38b14610a49578063fe575a8714610a6957600080fd5b8063dd4670641461096a578063dd62ed3e1461098a578063e47d6060146109d057600080fd5b8063cba851b3116100d1578063cba851b3146108f4578063d543dbeb1461090a578063d54994db1461092a578063dab522a81461094a57600080fd5b8063bc951f98146108a4578063c537bd8f146108ba578063cad6ebf9146108d457600080fd5b8063a1bdc39911610164578063a69df4b51161013e578063a69df4b51461083a578063a9059cbb1461084f578063abdef31d1461086f578063b6c523241461088f57600080fd5b8063a1bdc399146107e4578063a386443014610804578063a457c2d71461081a57600080fd5b806395d89b41116101a057806395d89b411461077a5780639f6462141461078f578063a062e3ba146107a5578063a08f6760146107c457600080fd5b80637ded4d6a1461070357806388f82020146107235780638da5cb5b1461075c57600080fd5b80633b124fe7116102a05780635342acb41161023e57806370a082311161021857806370a0823114610698578063715018a6146106b8578063772558ce146106cd5780637d1db4a5146106ed57600080fd5b80635342acb41461061f57806357e0a1d0146106585780635932ead11461067857600080fd5b80634549b0391161027a5780634549b0391461058b57806349bd5a5e146105ab5780634ada218b146105df57806352390c02146105ff57600080fd5b80633b124fe7146105355780634303443d1461054b578063437823ec1461056b57600080fd5b806322976e0d1161030d5780632d838119116102e75780632d838119146104b3578063313ce567146104d35780633685d419146104f5578063395093511461051557600080fd5b806322976e0d1461045d57806323b872dd146104735780632663236f1461049357600080fd5b806306fdde0314610360578063095ea7b31461038b57806313114a9d146103bb5780631694505e146103da57806318160ddd146104265780631bbae6e01461043b57600080fd5b3661035b57005b600080fd5b34801561036c57600080fd5b50610375610a89565b6040516103829190613150565b60405180910390f35b34801561039757600080fd5b506103ab6103a6366004613058565b610b1b565b6040519015158152602001610382565b3480156103c757600080fd5b50601b545b604051908152602001610382565b3480156103e657600080fd5b5061040e7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610382565b34801561043257600080fd5b506006546103cc565b34801561044757600080fd5b5061045b61045636600461310d565b610b32565b005b34801561046957600080fd5b506103cc600b5481565b34801561047f57600080fd5b506103ab61048e366004613018565b610b6a565b34801561049f57600080fd5b5061045b6104ae3660046130f3565b610bd3565b3480156104bf57600080fd5b506103cc6104ce36600461310d565b610c51565b3480156104df57600080fd5b5060035460405160ff9091168152602001610382565b34801561050157600080fd5b5061045b610510366004612fa8565b610cd5565b34801561052157600080fd5b506103ab610530366004613058565b610ec4565b34801561054157600080fd5b506103cc60085481565b34801561055757600080fd5b5061045b610566366004612fa8565b610efa565b34801561057757600080fd5b5061045b610586366004612fa8565b61106c565b34801561059757600080fd5b506103cc6105a6366004613125565b6110ba565b3480156105b757600080fd5b5061040e7f000000000000000000000000fa67545c5b1f0bd7bbc6cf05262d15063166ad5a81565b3480156105eb57600080fd5b50601d546103ab9062010000900460ff1681565b34801561060b57600080fd5b5061045b61061a366004612fa8565b611147565b34801561062b57600080fd5b506103ab61063a366004612fa8565b6001600160a01b031660009081526016602052604090205460ff1690565b34801561066457600080fd5b5061045b6106733660046130f3565b61129a565b34801561068457600080fd5b5061045b6106933660046130f3565b6112d7565b3480156106a457600080fd5b506103cc6106b3366004612fa8565b61131f565b3480156106c457600080fd5b5061045b61137e565b3480156106d957600080fd5b5061045b6106e8366004613083565b6113e0565b3480156106f957600080fd5b506103cc600f5481565b34801561070f57600080fd5b5061045b61071e366004612fa8565b61148d565b34801561072f57600080fd5b506103ab61073e366004612fa8565b6001600160a01b031660009081526017602052604090205460ff1690565b34801561076857600080fd5b506000546001600160a01b031661040e565b34801561078657600080fd5b50610375611649565b34801561079b57600080fd5b506103cc600a5481565b3480156107b157600080fd5b50601d546103ab90610100900460ff1681565b3480156107d057600080fd5b5061045b6107df36600461310d565b611658565b3480156107f057600080fd5b5061045b6107ff366004613083565b611687565b34801561081057600080fd5b506103cc60105481565b34801561082657600080fd5b506103ab610835366004613058565b61172f565b34801561084657600080fd5b5061045b61177e565b34801561085b57600080fd5b506103ab61086a366004613058565b611884565b34801561087b57600080fd5b5061045b61088a3660046130f3565b611891565b34801561089b57600080fd5b506002546103cc565b3480156108b057600080fd5b506103cc600d5481565b3480156108c657600080fd5b50600e546103ab9060ff1681565b3480156108e057600080fd5b5061045b6108ef366004612fa8565b6118d7565b34801561090057600080fd5b506103cc60075481565b34801561091657600080fd5b5061045b61092536600461310d565b611951565b34801561093657600080fd5b5061045b61094536600461310d565b611a20565b34801561095657600080fd5b5061045b61096536600461310d565b611a4f565b34801561097657600080fd5b5061045b61098536600461310d565b611a7e565b34801561099657600080fd5b506103cc6109a5366004612fe0565b6001600160a01b03918216600090815260156020908152604080832093909416825291909152205490565b3480156109dc57600080fd5b506103ab6109eb366004612fa8565b6001600160a01b031660009081526018602052604090205460ff1690565b348015610a1557600080fd5b5061045b610a24366004612fa8565b611b03565b348015610a3557600080fd5b5061045b610a44366004612fa8565b611b4e565b348015610a5557600080fd5b5061045b610a64366004612fa8565b611bbc565b348015610a7557600080fd5b506103ab610a84366004612fa8565b611c94565b606060048054610a98906132b6565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac4906132b6565b8015610b115780601f10610ae657610100808354040283529160200191610b11565b820191906000526020600020905b815481529060010190602001808311610af457829003601f168201915b5050505050905090565b6000610b28338484611cdb565b5060015b92915050565b6000546001600160a01b03163314610b655760405162461bcd60e51b8152600401610b5c906131a3565b60405180910390fd5b600f55565b6000610b77848484611dff565b610bc98433610bc485604051806060016040528060288152602001613338602891396001600160a01b038a166000908152601560209081526040808320338452909152902054919061249c565b611cdb565b5060019392505050565b6000546001600160a01b03163314610bfd5760405162461bcd60e51b8152600401610b5c906131a3565b601d80548215156101000261ff00199091161790556040517f3efb3f9ce66ef48ce5be6bff57df61c60b91f67f10f414ed7cd767b1c9cdad7d90610c4690831515815260200190565b60405180910390a150565b6000601c54821115610cb85760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610b5c565b6000610cc26124c8565b9050610cce8382611ccf565b9392505050565b6000546001600160a01b03163314610cff5760405162461bcd60e51b8152600401610b5c906131a3565b6001600160a01b03811660009081526017602052604090205460ff16610d675760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610b5c565b60005b601a54811015610ec057816001600160a01b0316601a8281548110610d9f57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610eae57601a8054610dca9060019061329f565b81548110610de857634e487b7160e01b600052603260045260246000fd5b600091825260209091200154601a80546001600160a01b039092169183908110610e2257634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152601482526040808220829055601790925220805460ff19169055601a805480610e8857634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610eb8816132f1565b915050610d6a565b5050565b3360008181526015602090815260408083206001600160a01b03871684529091528120549091610b28918590610bc490866124eb565b6000546001600160a01b03163314610f245760405162461bcd60e51b8152600401610b5c906131a3565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610f9d5760405162461bcd60e51b8152602060048201526024808201527f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f756044820152633a32b91760e11b6064820152608401610b5c565b6001600160a01b03811660009081526018602052604090205460ff16156110065760405162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c697374656400006044820152606401610b5c565b6001600160a01b03166000818152601860205260408120805460ff191660019081179091556019805491820181559091527f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c96950180546001600160a01b0319169091179055565b6000546001600160a01b031633146110965760405162461bcd60e51b8152600401610b5c906131a3565b6001600160a01b03166000908152601660205260409020805460ff19166001179055565b600060065483111561110e5760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610b5c565b8161112d57600061111e846124f7565b50939550610b2c945050505050565b6000611138846124f7565b50929550610b2c945050505050565b6000546001600160a01b031633146111715760405162461bcd60e51b8152600401610b5c906131a3565b6001600160a01b03811660009081526017602052604090205460ff16156111da5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610b5c565b6001600160a01b03811660009081526013602052604090205415611234576001600160a01b03811660009081526013602052604090205461121a90610c51565b6001600160a01b0382166000908152601460205260409020555b6001600160a01b03166000818152601760205260408120805460ff19166001908117909155601a805491820181559091527f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff63e0180546001600160a01b0319169091179055565b6000546001600160a01b031633146112c45760405162461bcd60e51b8152600401610b5c906131a3565b600e805460ff1916911515919091179055565b6000546001600160a01b031633146113015760405162461bcd60e51b8152600401610b5c906131a3565b601d805491151563010000000263ff00000019909216919091179055565b6001600160a01b03811660009081526017602052604081205460ff161561135c57506001600160a01b031660009081526014602052604090205490565b6001600160a01b038216600090815260136020526040902054610b2c90610c51565b6000546001600160a01b031633146113a85760405162461bcd60e51b8152600401610b5c906131a3565b600080546040516001600160a01b0390911690600080516020613360833981519152908390a3600080546001600160a01b0319169055565b6000546001600160a01b0316331461140a5760405162461bcd60e51b8152600401610b5c906131a3565b60005b818110156114885760016025600085858581811061143b57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906114509190612fa8565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055611481816132f1565b905061140d565b505050565b6000546001600160a01b031633146114b75760405162461bcd60e51b8152600401610b5c906131a3565b6001600160a01b03811660009081526018602052604090205460ff1661151f5760405162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c69737465640000000000006044820152606401610b5c565b60005b601954811015610ec057816001600160a01b03166019828154811061155757634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316141561163757601980546115829060019061329f565b815481106115a057634e487b7160e01b600052603260045260246000fd5b600091825260209091200154601980546001600160a01b0390921691839081106115da57634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152601890915260409020805460ff191690556019805480610e8857634e487b7160e01b600052603160045260246000fd5b80611641816132f1565b915050611522565b606060058054610a98906132b6565b6000546001600160a01b031633146116825760405162461bcd60e51b8152600401610b5c906131a3565b600d55565b6000546001600160a01b031633146116b15760405162461bcd60e51b8152600401610b5c906131a3565b60005b81811015611488576000602560008585858181106116e257634e487b7160e01b600052603260045260246000fd5b90506020020160208101906116f79190612fa8565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055611728816132f1565b90506116b4565b6000610b283384610bc485604051806060016040528060258152602001613380602591393360009081526015602090815260408083206001600160a01b038d168452909152902054919061249c565b6001546001600160a01b031633146117e45760405162461bcd60e51b815260206004820152602360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6044820152626f636b60e81b6064820152608401610b5c565b60025442116118355760405162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c20372064617973006044820152606401610b5c565b600154600080546040516001600160a01b03938416939091169160008051602061336083398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610b28338484611dff565b6000546001600160a01b031633146118bb5760405162461bcd60e51b8152600401610b5c906131a3565b601d8054911515620100000262ff000019909216919091179055565b6000546001600160a01b031633146119015760405162461bcd60e51b8152600401610b5c906131a3565b6001600160a01b03811660009081526025602052604090205460ff1615156001141561192a5750565b6001600160a01b0381166000908152602560205260409020805460ff191660011790555b50565b6000546001600160a01b0316331461197b5760405162461bcd60e51b8152600401610b5c906131a3565b600081116119cb5760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610b5c565b6119eb60646119e58360065461254690919063ffffffff16565b90611ccf565b600f8190556040519081527f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf90602001610c46565b6000546001600160a01b03163314611a4a5760405162461bcd60e51b8152600401610b5c906131a3565b600a55565b6000546001600160a01b03163314611a795760405162461bcd60e51b8152600401610b5c906131a3565b601055565b6000546001600160a01b03163314611aa85760405162461bcd60e51b8152600401610b5c906131a3565b60008054600180546001600160a01b03199081166001600160a01b03841617909155169055611ad78142613248565b600255600080546040516001600160a01b0390911690600080516020613360833981519152908390a350565b6000546001600160a01b03163314611b2d5760405162461bcd60e51b8152600401610b5c906131a3565b6001600160a01b03166000908152601660205260409020805460ff19169055565b6000546001600160a01b03163314611b785760405162461bcd60e51b8152600401610b5c906131a3565b6001600160a01b03811660009081526025602052604090205460ff16611b9b5750565b6001600160a01b03166000908152602560205260409020805460ff19169055565b6000546001600160a01b03163314611be65760405162461bcd60e51b8152600401610b5c906131a3565b6001600160a01b038116611c4b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b5c565b600080546040516001600160a01b038085169392169160008051602061336083398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526025602052604081205460ff16151560011415611cc257506001919050565b506000919050565b919050565b6000610cce8284613260565b6001600160a01b038316611d3d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b5c565b6001600160a01b038216611d9e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b5c565b6001600160a01b0383811660008181526015602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611e635760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610b5c565b6001600160a01b038216611ec55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610b5c565b60008111611f275760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610b5c565b6001600160a01b03821660009081526018602052604090205460ff1615611f8a5760405162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b6044820152606401610b5c565b6001600160a01b03831660009081526018602052604090205460ff1615611fed5760405162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b6044820152606401610b5c565b6001600160a01b03831660009081526025602052604090205460ff16158061201c57506001600160a01b038216155b6120595760405162461bcd60e51b815260206004820152600e60248201526d165bdd48185c994818985b9b995960921b6044820152606401610b5c565b6001600160a01b03821660009081526025602052604090205460ff16156120c25760405162461bcd60e51b815260206004820152601760248201527f54686520726563697069656e742069732062616e6e65640000000000000000006044820152606401610b5c565b6000546001600160a01b038481169116148015906120ee57506000546001600160a01b03838116911614155b1561239657600f548111156121565760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610b5c565b7f000000000000000000000000fa67545c5b1f0bd7bbc6cf05262d15063166ad5a6001600160a01b0316836001600160a01b031614806121c757507f000000000000000000000000fa67545c5b1f0bd7bbc6cf05262d15063166ad5a6001600160a01b0316826001600160a01b0316145b1561222457601d5462010000900460ff166122245760405162461bcd60e51b815260206004820152601a60248201527f54726164696e67206973206e6f7420656e61626c6564207965740000000000006044820152606401610b5c565b6001600160a01b03831660009081526024602052604090205460ff1615801561226657506001600160a01b03821660009081526024602052604090205460ff16155b61226f57600080fd5b7f000000000000000000000000fa67545c5b1f0bd7bbc6cf05262d15063166ad5a6001600160a01b0316836001600160a01b03161480156122e257507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b801561230757506001600160a01b03821660009081526016602052604090205460ff16155b801561231c5750601d546301000000900460ff165b1561239657601d5462010000900460ff1661233657600080fd5b600f5481111561234557600080fd5b6001600160a01b0382166000908152602080526040902054421161236857600080fd5b612373426078613248565b6001600160a01b0383166000908152602080526040902055600f600a819055600d555b60006123a13061131f565b601054600f549192508210159082106123ba57600f5491505b8080156123ca5750601d5460ff16155b801561240857507f000000000000000000000000fa67545c5b1f0bd7bbc6cf05262d15063166ad5a6001600160a01b0316856001600160a01b031614155b801561241b5750601d54610100900460ff165b156124295761242982612552565b600e5460ff161561243d5761243d846127e5565b6001600160a01b03851660009081526016602052604090205460019060ff168061247f57506001600160a01b03851660009081526016602052604090205460ff165b15612488575060005b6124948686868461282f565b505050505050565b600081848411156124c05760405162461bcd60e51b8152600401610b5c9190613150565b505050900390565b60008060006124d56129ac565b90925090506124e48282611ccf565b9250505090565b6000610cce8284613248565b600080600080600080600080600061250e8a612b66565b925092509250600080600061252c8d86866125276124c8565b612ba8565b919f909e50909c50959a5093985091965092945050505050565b6000610cce8284613280565b601d805460ff1916600117905560408051600280825260608201835260009260208301908036833701905050905030816000815181106125a257634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561261b57600080fd5b505afa15801561262f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126539190612fc4565b8160018151811061267457634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b0316815250506126bf307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611cdb565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906127149085906000908690309042906004016131d8565b600060405180830381600087803b15801561272e57600080fd5b505af1158015612742573d6000803e3d6000fd5b5047925050811590506127d6576011546001600160a01b03166108fc612769836002611ccf565b6040518115909202916000818181858888f19350505050158015612791573d6000803e3d6000fd5b506012546001600160a01b03166108fc6127ac836002611ccf565b6040518115909202916000818181858888f193505050501580156127d4573d6000803e3d6000fd5b505b5050601d805460ff1916905550565b600754600855600a54600b557f000000000000000000000000fa67545c5b1f0bd7bbc6cf05262d15063166ad5a6001600160a01b03908116908216141561194e57600d54600b5550565b8061283c5761283c612bf8565b6001600160a01b03841660009081526017602052604090205460ff16801561287d57506001600160a01b03831660009081526017602052604090205460ff16155b156128925761288d848484612c26565b612990565b6001600160a01b03841660009081526017602052604090205460ff161580156128d357506001600160a01b03831660009081526017602052604090205460ff165b156128e35761288d848484612d4c565b6001600160a01b03841660009081526017602052604090205460ff1615801561292557506001600160a01b03831660009081526017602052604090205460ff16155b156129355761288d848484612df5565b6001600160a01b03841660009081526017602052604090205460ff16801561297557506001600160a01b03831660009081526017602052604090205460ff165b156129855761288d848484612e39565b612990848484612df5565b806129a6576129a6600954600855600c54600b55565b50505050565b601c546006546000918291825b601a54811015612b36578260136000601a84815481106129e957634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612a6257508160146000601a8481548110612a3b57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15612a7857601c54600654945094505050509091565b612acc60136000601a8481548110612aa057634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612ea8565b9250612b2260146000601a8481548110612af657634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612ea8565b915080612b2e816132f1565b9150506129b9565b50600654601c54612b4691611ccf565b821015612b5d57601c546006549350935050509091565b90939092509050565b600080600080612b7585612eb4565b90506000612b8286612ed0565b90506000612b9a82612b948986612ea8565b90612ea8565b979296509094509092505050565b6000808080612bb78886612546565b90506000612bc58887612546565b90506000612bd38888612546565b90506000612be582612b948686612ea8565b939b939a50919850919650505050505050565b600854158015612c085750600b54155b15612c0f57565b60088054600955600b8054600c5560009182905555565b600080600080600080612c38876124f7565b6001600160a01b038f16600090815260146020526040902054959b50939950919750955093509150612c6a9088612ea8565b6001600160a01b038a16600090815260146020908152604080832093909355601390522054612c999087612ea8565b6001600160a01b03808b1660009081526013602052604080822093909355908a1681522054612cc890866124eb565b6001600160a01b038916600090815260136020526040902055612cea81612eec565b612cf48483612f74565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051612d3991815260200190565b60405180910390a3505050505050505050565b600080600080600080612d5e876124f7565b6001600160a01b038f16600090815260136020526040902054959b50939950919750955093509150612d909087612ea8565b6001600160a01b03808b16600090815260136020908152604080832094909455918b16815260149091522054612dc690846124eb565b6001600160a01b038916600090815260146020908152604080832093909355601390522054612cc890866124eb565b600080600080600080612e07876124f7565b6001600160a01b038f16600090815260136020526040902054959b50939950919750955093509150612c999087612ea8565b600080600080600080612e4b876124f7565b6001600160a01b038f16600090815260146020526040902054959b50939950919750955093509150612e7d9088612ea8565b6001600160a01b038a16600090815260146020908152604080832093909355601390522054612d9090875b6000610cce828461329f565b6000610b2c60646119e56008548561254690919063ffffffff16565b6000610b2c60646119e5600b548561254690919063ffffffff16565b6000612ef66124c8565b90506000612f048383612546565b30600090815260136020526040902054909150612f2190826124eb565b3060009081526013602090815260408083209390935560179052205460ff16156114885730600090815260146020526040902054612f5f90846124eb565b30600090815260146020526040902055505050565b601c54612f819083612ea8565b601c55601b54612f9190826124eb565b601b555050565b80358015158114611cca57600080fd5b600060208284031215612fb9578081fd5b8135610cce81613322565b600060208284031215612fd5578081fd5b8151610cce81613322565b60008060408385031215612ff2578081fd5b8235612ffd81613322565b9150602083013561300d81613322565b809150509250929050565b60008060006060848603121561302c578081fd5b833561303781613322565b9250602084013561304781613322565b929592945050506040919091013590565b6000806040838503121561306a578182fd5b823561307581613322565b946020939093013593505050565b60008060208385031215613095578182fd5b823567ffffffffffffffff808211156130ac578384fd5b818501915085601f8301126130bf578384fd5b8135818111156130cd578485fd5b8660208260051b85010111156130e1578485fd5b60209290920196919550909350505050565b600060208284031215613104578081fd5b610cce82612f98565b60006020828403121561311e578081fd5b5035919050565b60008060408385031215613137578182fd5b8235915061314760208401612f98565b90509250929050565b6000602080835283518082850152825b8181101561317c57858101830151858201604001528201613160565b8181111561318d5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156132275784516001600160a01b031683529383019391830191600101613202565b50506001600160a01b03969096166060850152505050608001529392505050565b6000821982111561325b5761325b61330c565b500190565b60008261327b57634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561329a5761329a61330c565b500290565b6000828210156132b1576132b161330c565b500390565b600181811c908216806132ca57607f821691505b602082108114156132eb57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156133055761330561330c565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461194e57600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220924d1efa6a40d1bdc387a3227977434f6846571c0f26a5046a194c8bb24770b764736f6c63430008040033

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

000000000000000000000000144e1efe7674ec6cbf76d4dd21ad8c44dabdc7c2000000000000000000000000e51de8956c9dfb02eca0b9ab12fb87df49f668bd

-----Decoded View---------------
Arg [0] : teamWalletAddress (address): 0x144E1EFE7674eC6Cbf76D4dD21ad8C44DABDC7C2
Arg [1] : marketingWalletAddress (address): 0xE51dE8956C9DfB02eCa0b9aB12fb87df49f668bD

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000144e1efe7674ec6cbf76d4dd21ad8c44dabdc7c2
Arg [1] : 000000000000000000000000e51de8956c9dfb02eca0b9ab12fb87df49f668bd


Deployed Bytecode Sourcemap

29282:28117:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39281:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40193:161;;;;;;;;;;-1:-1:-1;40193:161:0;;;;;:::i;:::-;;:::i;:::-;;;3607:14:1;;3600:22;3582:41;;3570:2;3555:18;40193:161:0;3537:92:1;42691:87:0;;;;;;;;;;-1:-1:-1;42760:10:0;;42691:87;;;12598:25:1;;;12586:2;12571:18;42691:87:0;12553:76:1;30968:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3398:32:1;;;3380:51;;3368:2;3353:18;30968:51:0;3335:102:1;39558:95:0;;;;;;;;;;-1:-1:-1;39638:7:0;;39558:95;;57284:112;;;;;;;;;;-1:-1:-1;57284:112:0;;;;;:::i;:::-;;:::i;:::-;;29840:50;;;;;;;;;;;;;;;;40362:313;;;;;;;;;;-1:-1:-1;40362:313:0;;;;;:::i;:::-;;:::i;55796:164::-;;;;;;;;;;-1:-1:-1;55796:164:0;;;;;:::i;:::-;;:::i;43230:253::-;;;;;;;;;;-1:-1:-1;43230:253:0;;;;;:::i;:::-;;:::i;39467:83::-;;;;;;;;;;-1:-1:-1;39533:9:0;;39467:83;;39533:9;;;;13764:36:1;;13752:2;13737:18;39467:83:0;13719:87:1;43946:479:0;;;;;;;;;;-1:-1:-1;43946:479:0;;;;;:::i;:::-;;:::i;42060:218::-;;;;;;;;;;-1:-1:-1;42060:218:0;;;;;:::i;:::-;;:::i;29640:38::-;;;;;;;;;;;;;;;;40683:352;;;;;;;;;;-1:-1:-1;40683:352:0;;;;;:::i;:::-;;:::i;44433:113::-;;;;;;;;;;-1:-1:-1;44433:113:0;;;;;:::i;:::-;;:::i;42786:436::-;;;;;;;;;;-1:-1:-1;42786:436:0;;;;;:::i;:::-;;:::i;31026:38::-;;;;;;;;;;;;;;;31150:34;;;;;;;;;;-1:-1:-1;31150:34:0;;;;;;;;;;;43491:447;;;;;;;;;;-1:-1:-1;43491:447:0;;;;;:::i;:::-;;:::i;47911:123::-;;;;;;;;;;-1:-1:-1;47911:123:0;;;;;:::i;:::-;-1:-1:-1;;;;;47999:27:0;47975:4;47999:27;;;:18;:27;;;;;;;;;47911:123;55667:121;;;;;;;;;;-1:-1:-1;55667:121:0;;;;;:::i;:::-;;:::i;41682:103::-;;;;;;;;;;-1:-1:-1;41682:103:0;;;;;:::i;:::-;;:::i;39661:198::-;;;;;;;;;;-1:-1:-1;39661:198:0;;;;;:::i;:::-;;:::i;19956:148::-;;;;;;;;;;;;;:::i;56282:205::-;;;;;;;;;;-1:-1:-1;56282:205:0;;;;;:::i;:::-;;:::i;30074:54::-;;;;;;;;;;;;;;;;41047:500;;;;;;;;;;-1:-1:-1;41047:500:0;;;;;:::i;:::-;;:::i;42563:120::-;;;;;;;;;;-1:-1:-1;42563:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;42655:20:0;42631:4;42655:20;;;:11;:20;;;;;;;;;42563:120;19313:87;;;;;;;;;;-1:-1:-1;19359:7:0;19386:6;-1:-1:-1;;;;;19386:6:0;19313:87;;39372;;;;;;;;;;;;;:::i;29780:39::-;;;;;;;;;;;;;;;;31098:37;;;;;;;;;;-1:-1:-1;31098:37:0;;;;;;;;;;;55512:147;;;;;;;;;;-1:-1:-1;55512:147:0;;;;;:::i;:::-;;:::i;56870:208::-;;;;;;;;;;-1:-1:-1;56870:208:0;;;;;:::i;:::-;;:::i;30161:74::-;;;;;;;;;;;;;;;;42286:269;;;;;;;;;;-1:-1:-1;42286:269:0;;;;;:::i;:::-;;:::i;20979:305::-;;;;;;;;;;;;;:::i;39867:167::-;;;;;;;;;;-1:-1:-1;39867:167:0;;;;;:::i;:::-;;:::i;55972:120::-;;;;;;;;;;-1:-1:-1;55972:120:0;;;;;:::i;:::-;;:::i;20512:89::-;;;;;;;;;;-1:-1:-1;20584:9:0;;20512:89;;29959:41;;;;;;;;;;;;;;;;30024;;;;;;;;;;-1:-1:-1;30024:41:0;;;;;;;;56100:174;;;;;;;;;;-1:-1:-1;56100:174:0;;;;;:::i;:::-;;:::i;29601:32::-;;;;;;;;;;;;;;;;41793:255;;;;;;;;;;-1:-1:-1;41793:255:0;;;;;:::i;:::-;;:::i;55376:128::-;;;;;;;;;;-1:-1:-1;55376:128:0;;;;;:::i;:::-;;:::i;57086:190::-;;;;;;;;;;-1:-1:-1;57086:190:0;;;;;:::i;:::-;;:::i;20677:226::-;;;;;;;;;;-1:-1:-1;20677:226:0;;;;;:::i;:::-;;:::i;40042:143::-;;;;;;;;;;-1:-1:-1;40042:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;40150:18:0;;;40123:7;40150:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;40042:143;41555:119;;;;;;;;;;-1:-1:-1;41555:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;41640:26:0;41616:4;41640:26;;;:17;:26;;;;;;;;;41555:119;44554:112;;;;;;;;;;-1:-1:-1;44554:112:0;;;;;:::i;:::-;;:::i;56681:181::-;;;;;;;;;;-1:-1:-1;56681:181:0;;;;;:::i;:::-;;:::i;20256:244::-;;;;;;;;;;-1:-1:-1;20256:244:0;;;;;:::i;:::-;;:::i;56499:164::-;;;;;;;;;;-1:-1:-1;56499:164:0;;;;;:::i;:::-;;:::i;39281:83::-;39318:13;39351:5;39344:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39281:83;:::o;40193:161::-;40268:4;40285:39;10163:10;40308:7;40317:6;40285:8;:39::i;:::-;-1:-1:-1;40342:4:0;40193:161;;;;;:::o;57284:112::-;19359:7;19386:6;-1:-1:-1;;;;;19386:6:0;10163:10;19531:23;19523:68;;;;-1:-1:-1;;;19523:68:0;;;;;;;:::i;:::-;;;;;;;;;57362:12:::1;:26:::0;57284:112::o;40362:313::-;40460:4;40477:36;40487:6;40495:9;40506:6;40477:9;:36::i;:::-;40524:121;40533:6;10163:10;40555:89;40593:6;40555:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40555:19:0;;;;;;:11;:19;;;;;;;;10163:10;40555:33;;;;;;;;;;:37;:89::i;:::-;40524:8;:121::i;:::-;-1:-1:-1;40663:4:0;40362:313;;;;;:::o;55796:164::-;19359:7;19386:6;-1:-1:-1;;;;;19386:6:0;10163:10;19531:23;19523:68;;;;-1:-1:-1;;;19523:68:0;;;;;;;:::i;:::-;55872:18:::1;:29:::0;;;::::1;;;;-1:-1:-1::0;;55872:29:0;;::::1;;::::0;;55917:35:::1;::::0;::::1;::::0;::::1;::::0;55893:8;3607:14:1;3600:22;3582:41;;3570:2;3555:18;;3537:92;55917:35:0::1;;;;;;;;55796:164:::0;:::o;43230:253::-;43296:7;43335;;43324;:18;;43316:73;;;;-1:-1:-1;;;43316:73:0;;5438:2:1;43316:73:0;;;5420:21:1;5477:2;5457:18;;;5450:30;5516:34;5496:18;;;5489:62;-1:-1:-1;;;5567:18:1;;;5560:40;5617:19;;43316:73:0;5410:232:1;43316:73:0;43400:19;43423:10;:8;:10::i;:::-;43400:33;-1:-1:-1;43451:24:0;:7;43400:33;43451:11;:24::i;:::-;43444:31;43230:253;-1:-1:-1;;;43230:253:0:o;43946:479::-;19359:7;19386:6;-1:-1:-1;;;;;19386:6:0;10163:10;19531:23;19523:68;;;;-1:-1:-1;;;19523:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44028:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;44020:60;;;::::0;-1:-1:-1;;;44020:60:0;;7369:2:1;44020:60:0::1;::::0;::::1;7351:21:1::0;7408:2;7388:18;;;7381:30;7447:29;7427:18;;;7420:57;7494:18;;44020:60:0::1;7341:177:1::0;44020:60:0::1;44096:9;44091:327;44115:9;:16:::0;44111:20;::::1;44091:327;;;44173:7;-1:-1:-1::0;;;;;44157:23:0::1;:9;44167:1;44157:12;;;;;;-1:-1:-1::0;;;44157:12:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;44157:12:0::1;:23;44153:254;;;44216:9;44226:16:::0;;:20:::1;::::0;44245:1:::1;::::0;44226:20:::1;:::i;:::-;44216:31;;;;;;-1:-1:-1::0;;;44216:31:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;44201:9:::1;:12:::0;;-1:-1:-1;;;;;44216:31:0;;::::1;::::0;44211:1;;44201:12;::::1;;;-1:-1:-1::0;;;44201:12:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;44201:46:0::1;-1:-1:-1::0;;;;;44201:46:0;;::::1;;::::0;;44266:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;44305:11:::1;:20:::0;;;;:28;;-1:-1:-1;;44305:28:0::1;::::0;;44352:9:::1;:15:::0;;;::::1;;-1:-1:-1::0;;;44352:15:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;44352:15:0;;;;;-1:-1:-1;;;;;;44352:15:0::1;::::0;;;;;44091:327:::1;43946:479:::0;:::o;44153:254::-:1;44133:3:::0;::::1;::::0;::::1;:::i;:::-;;;;44091:327;;;;43946:479:::0;:::o;42060:218::-;10163:10;42148:4;42197:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;42197:34:0;;;;;;;;;;42148:4;;42165:83;;42188:7;;42197:50;;42236:10;42197:38;:50::i;40683:352::-;19359:7;19386:6;-1:-1:-1;;;;;19386:6:0;10163:10;19531:23;19523:68;;;;-1:-1:-1;;;19523:68:0;;;;;;;:::i;:::-;40778:42:::1;-1:-1:-1::0;;;;;40767:53:0;::::1;;;40759:102;;;::::0;-1:-1:-1;;;40759:102:0;;10322:2:1;40759:102:0::1;::::0;::::1;10304:21:1::0;10361:2;10341:18;;;10334:30;10400:34;10380:18;;;10373:62;-1:-1:-1;;;10451:18:1;;;10444:34;10495:19;;40759:102:0::1;10294:226:1::0;40759:102:0::1;-1:-1:-1::0;;;;;40881:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;40880:27;40872:70;;;::::0;-1:-1:-1;;;40872:70:0;;7725:2:1;40872:70:0::1;::::0;::::1;7707:21:1::0;7764:2;7744:18;;;7737:30;7803:32;7783:18;;;7776:60;7853:18;;40872:70:0::1;7697:180:1::0;40872:70:0::1;-1:-1:-1::0;;;;;40953:26:0::1;;::::0;;;:17:::1;:26;::::0;;;;:33;;-1:-1:-1;;40953:33:0::1;40982:4;40953:33:::0;;::::1;::::0;;;40997:16:::1;:30:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;40997:30:0::1;::::0;;::::1;::::0;;40683:352::o;44433:113::-;19359:7;19386:6;-1:-1:-1;;;;;19386:6:0;10163:10;19531:23;19523:68;;;;-1:-1:-1;;;19523:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44504:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;44504:34:0::1;44534:4;44504:34;::::0;;44433:113::o;42786:436::-;42876:7;42915;;42904;:18;;42896:62;;;;-1:-1:-1;;;42896:62:0;;8084:2:1;42896:62:0;;;8066:21:1;8123:2;8103:18;;;8096:30;8162:33;8142:18;;;8135:61;8213:18;;42896:62:0;8056:181:1;42896:62:0;42974:17;42969:246;;43009:15;43033:19;43044:7;43033:10;:19::i;:::-;-1:-1:-1;43008:44:0;;-1:-1:-1;43067:14:0;;-1:-1:-1;;;;;43067:14:0;42969:246;43116:23;43147:19;43158:7;43147:10;:19::i;:::-;-1:-1:-1;43114:52:0;;-1:-1:-1;43181:22:0;;-1:-1:-1;;;;;43181:22:0;43491:447;19359:7;19386:6;-1:-1:-1;;;;;19386:6:0;10163:10;19531:23;19523:68;;;;-1:-1:-1;;;19523:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43688:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;43687:21;43679:61;;;::::0;-1:-1:-1;;;43679:61:0;;7369:2:1;43679:61:0::1;::::0;::::1;7351:21:1::0;7408:2;7388:18;;;7381:30;7447:29;7427:18;;;7420:57;7494:18;;43679:61:0::1;7341:177:1::0;43679:61:0::1;-1:-1:-1::0;;;;;43754:16:0;::::1;43773:1;43754:16:::0;;;:7:::1;:16;::::0;;;;;:20;43751:108:::1;;-1:-1:-1::0;;;;;43830:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;43810:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;43791:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;43751:108:::1;-1:-1:-1::0;;;;;43869:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;43869:27:0::1;43892:4;43869:27:::0;;::::1;::::0;;;43907:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;43907:23:0::1;::::0;;::::1;::::0;;43491:447::o;55667:121::-;19359:7;19386:6;-1:-1:-1;;;;;19386:6:0;10163:10;19531:23;19523:68;;;;-1:-1:-1;;;19523:68:0;;;;;;;:::i;:::-;55747:22:::1;:33:::0;;-1:-1:-1;;55747:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;55667:121::o;41682:103::-;19359:7;19386:6;-1:-1:-1;;;;;19386:6:0;10163:10;19531:23;19523:68;;;;-1:-1:-1;;;19523:68:0;;;;;;;:::i;:::-;41754:15:::1;:23:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;41754:23:0;;::::1;::::0;;;::::1;::::0;;41682:103::o;39661:198::-;-1:-1:-1;;;;;39751:20:0;;39727:7;39751:20;;;:11;:20;;;;;;;;39747:49;;;-1:-1:-1;;;;;;39780:16:0;;;;;:7;:16;;;;;;;39661:198::o;39747:49::-;-1:-1:-1;;;;;39834:16:0;;;;;;:7;:16;;;;;;39814:37;;:19;:37::i;19956:148::-;19359:7;19386:6;-1:-1:-1;;;;;19386:6:0;10163:10;19531:23;19523:68;;;;-1:-1:-1;;;19523:68:0;;;;;;;:::i;:::-;20063:1:::1;20047:6:::0;;20026:40:::1;::::0;-1:-1:-1;;;;;20047:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;20026:40:0;20063:1;;20026:40:::1;20094:1;20077:19:::0;;-1:-1:-1;;;;;;20077:19:0::1;::::0;;19956:148::o;56282:205::-;19359:7;19386:6;-1:-1:-1;;;;;19386:6:0;10163:10;19531:23;19523:68;;;;-1:-1:-1;;;19523:68:0;;;;;;;:::i;:::-;56380:9:::1;56375:105;56391:20:::0;;::::1;56375:105;;;56464:4;56433:14;:28;56448:9;;56458:1;56448:12;;;;;-1:-1:-1::0;;;56448:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;56433:28:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;56433:28:0;:35;;-1:-1:-1;;56433:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;56413:3:::1;::::0;::::1;:::i;:::-;;;56375:105;;;;56282:205:::0;;:::o;41047:500::-;19359:7;19386:6;-1:-1:-1;;;;;19386:6:0;10163:10;19531:23;19523:68;;;;-1:-1:-1;;;19523:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41136:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;41128:65;;;::::0;-1:-1:-1;;;41128:65:0;;9967:2:1;41128:65:0::1;::::0;::::1;9949:21:1::0;10006:2;9986:18;;;9979:30;10045:28;10025:18;;;10018:56;10091:18;;41128:65:0::1;9939:176:1::0;41128:65:0::1;41209:9;41204:336;41228:16;:23:::0;41224:27;::::1;41204:336;;;41300:7;-1:-1:-1::0;;;;;41277:30:0::1;:16;41294:1;41277:19;;;;;;-1:-1:-1::0;;;41277:19:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;41277:19:0::1;:30;41273:256;;;41350:16;41367:23:::0;;:27:::1;::::0;41393:1:::1;::::0;41367:27:::1;:::i;:::-;41350:45;;;;;;-1:-1:-1::0;;;41350:45:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;41328:16:::1;:19:::0;;-1:-1:-1;;;;;41350:45:0;;::::1;::::0;41345:1;;41328:19;::::1;;;-1:-1:-1::0;;;41328:19:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:67:::0;;-1:-1:-1;;;;;;41328:67:0::1;-1:-1:-1::0;;;;;41328:67:0;;::::1;;::::0;;41414:26;;::::1;::::0;;:17:::1;:26:::0;;;;;;:34;;-1:-1:-1;;41414:34:0::1;::::0;;41467:16:::1;:22:::0;;;::::1;;-1:-1:-1::0;;;41467:22:0::1;;;;;;;;41273:256;41253:3:::0;::::1;::::0;::::1;:::i;:::-;;;;41204:336;;39372:87:::0;39411:13;39444:7;39437:14;;;;;:::i;55512:147::-;19359:7;19386:6;-1:-1:-1;;;;;19386:6:0;10163:10;19531:23;19523:68;;;;-1:-1:-1;;;19523:68:0;;;;;;;:::i;:::-;55607:21:::1;:44:::0;55512:147::o;56870:208::-;19359:7;19386:6;-1:-1:-1;;;;;19386:6:0;10163:10;19531:23;19523:68;;;;-1:-1:-1;;;19523:68:0;;;;;;;:::i;:::-;56970:9:::1;56965:106;56981:20:::0;;::::1;56965:106;;;57054:5;57023:14;:28;57038:9;;57048:1;57038:12;;;;;-1:-1:-1::0;;;57038:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;57023:28:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;57023:28:0;:36;;-1:-1:-1;;57023:36:0::1;::::0;::::1;;::::0;;;::::1;::::0;;57003:3:::1;::::0;::::1;:::i;:::-;;;56965:106;;42286:269:::0;42379:4;42396:129;10163:10;42419:7;42428:96;42467:15;42428:96;;;;;;;;;;;;;;;;;10163:10;42428:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;42428:34:0;;;;;;;;;;;;:38;:96::i;20979:305::-;21031:14;;-1:-1:-1;;;;;21031:14:0;21049:10;21031:28;21023:76;;;;-1:-1:-1;;;21023:76:0;;11898:2:1;21023:76:0;;;11880:21:1;11937:2;11917:18;;;11910:30;11976:34;11956:18;;;11949:62;-1:-1:-1;;;12027:18:1;;;12020:33;12070:19;;21023:76:0;11870:225:1;21023:76:0;21136:9;;21118:15;:27;21110:72;;;;-1:-1:-1;;;21110:72:0;;11538:2:1;21110:72:0;;;11520:21:1;11577:2;11557:18;;;11550:30;11616:33;11596:18;;;11589:61;11667:18;;21110:72:0;11510:181:1;21110:72:0;21227:14;;;21219:6;;21198:44;;-1:-1:-1;;;;;21227:14:0;;;;21219:6;;;;-1:-1:-1;;;;;;;;;;;21198:44:0;;21262:14;;;21253:23;;-1:-1:-1;;;;;;21253:23:0;-1:-1:-1;;;;;21262:14:0;;;21253:23;;;;;;20979:305::o;39867:167::-;39945:4;39962:42;10163:10;39986:9;39997:6;39962:9;:42::i;55972:120::-;19359:7;19386:6;-1:-1:-1;;;;;19386:6:0;10163:10;19531:23;19523:68;;;;-1:-1:-1;;;19523:68:0;;;;;;;:::i;:::-;56052:14:::1;:32:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;56052:32:0;;::::1;::::0;;;::::1;::::0;;55972:120::o;56100:174::-;19359:7;19386:6;-1:-1:-1;;;;;19386:6:0;10163:10;19531:23;19523:68;;;;-1:-1:-1;;;19523:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;56182:25:0;::::1;;::::0;;;:14:::1;:25;::::0;;;;;::::1;;:33;;:25:::0;:33:::1;56179:45;;;56100:174:::0;:::o;56179:45::-:1;-1:-1:-1::0;;;;;56234:25:0;::::1;;::::0;;;:14:::1;:25;::::0;;;;:32;;-1:-1:-1;;56234:32:0::1;56262:4;56234:32;::::0;;19602:1:::1;56100:174:::0;:::o;41793:255::-;19359:7;19386:6;-1:-1:-1;;;;;19386:6:0;10163:10;19531:23;19523:68;;;;-1:-1:-1;;;19523:68:0;;;;;;;:::i;:::-;41895:1:::1;41880:12;:16;41872:58;;;::::0;-1:-1:-1;;;41872:58:0;;7011:2:1;41872:58:0::1;::::0;::::1;6993:21:1::0;7050:2;7030:18;;;7023:30;7089:31;7069:18;;;7062:59;7138:18;;41872:58:0::1;6983:179:1::0;41872:58:0::1;41956:36;41986:5;41956:25;41968:12;41956:7;;:11;;:25;;;;:::i;:::-;:29:::0;::::1;:36::i;:::-;41941:12;:51:::0;;;42008:32:::1;::::0;12598:25:1;;;42008:32:0::1;::::0;12586:2:1;12571:18;42008:32:0::1;12553:76:1::0;55376:128:0;19359:7;19386:6;-1:-1:-1;;;;;19386:6:0;10163:10;19531:23;19523:68;;;;-1:-1:-1;;;19523:68:0;;;;;;;:::i;:::-;55462:19:::1;:34:::0;55376:128::o;57086:190::-;19359:7;19386:6;-1:-1:-1;;;;;19386:6:0;10163:10;19531:23;19523:68;;;;-1:-1:-1;;;19523:68:0;;;;;;;:::i;:::-;57202:31:::1;:66:::0;57086:190::o;20677:226::-;19359:7;19386:6;-1:-1:-1;;;;;19386:6:0;10163:10;19531:23;19523:68;;;;-1:-1:-1;;;19523:68:0;;;;;;;:::i;:::-;20758:6:::1;::::0;;;20741:23;;-1:-1:-1;;;;;;20741:23:0;;::::1;-1:-1:-1::0;;;;;20758:6:0;::::1;20741:23;::::0;;;20775:19:::1;::::0;;20817:22:::1;20835:4:::0;20817:15:::1;:22;:::i;:::-;20805:9;:34:::0;20892:1:::1;20876:6:::0;;20855:40:::1;::::0;-1:-1:-1;;;;;20876:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;20855:40:0;20892:1;;20855:40:::1;20677:226:::0;:::o;44554:112::-;19359:7;19386:6;-1:-1:-1;;;;;19386:6:0;10163:10;19531:23;19523:68;;;;-1:-1:-1;;;19523:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44623:27:0::1;44653:5;44623:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;44623:35:0::1;::::0;;44554:112::o;56681:181::-;19359:7;19386:6;-1:-1:-1;;;;;19386:6:0;10163:10;19531:23;19523:68;;;;-1:-1:-1;;;19523:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;56768:25:0;::::1;;::::0;;;:14:::1;:25;::::0;;;;;::::1;;56765:46;;56100:174:::0;:::o;56765:46::-:1;-1:-1:-1::0;;;;;56821:25:0::1;56849:5;56821:25:::0;;;:14:::1;:25;::::0;;;;:33;;-1:-1:-1;;56821:33:0::1;::::0;;56681:181::o;20256:244::-;19359:7;19386:6;-1:-1:-1;;;;;19386:6:0;10163:10;19531:23;19523:68;;;;-1:-1:-1;;;19523:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20345:22:0;::::1;20337:73;;;::::0;-1:-1:-1;;;20337:73:0;;5849:2:1;20337:73:0::1;::::0;::::1;5831:21:1::0;5888:2;5868:18;;;5861:30;5927:34;5907:18;;;5900:62;-1:-1:-1;;;5978:18:1;;;5971:36;6024:19;;20337:73:0::1;5821:228:1::0;20337:73:0::1;20447:6;::::0;;20426:38:::1;::::0;-1:-1:-1;;;;;20426:38:0;;::::1;::::0;20447:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;20426:38:0;::::1;20475:6;:17:::0;;-1:-1:-1;;;;;;20475:17:0::1;-1:-1:-1::0;;;;;20475:17:0;;;::::1;::::0;;;::::1;::::0;;20256:244::o;56499:164::-;-1:-1:-1;;;;;56581:25:0;;56562:4;56581:25;;;:14;:25;;;;;;;;:33;;:25;:33;56578:77;;;-1:-1:-1;56623:4:0;;56499:164;-1:-1:-1;56499:164:0:o;56578:77::-;-1:-1:-1;56650:5:0;;56499:164;-1:-1:-1;56499:164:0:o;56578:77::-;56499:164;;;:::o;6443:98::-;6501:7;6528:5;6532:1;6528;:5;:::i;48042:337::-;-1:-1:-1;;;;;48135:19:0;;48127:68;;;;-1:-1:-1;;;48127:68:0;;11133:2:1;48127:68:0;;;11115:21:1;11172:2;11152:18;;;11145:30;11211:34;11191:18;;;11184:62;-1:-1:-1;;;11262:18:1;;;11255:34;11306:19;;48127:68:0;11105:226:1;48127:68:0;-1:-1:-1;;;;;48214:21:0;;48206:68;;;;-1:-1:-1;;;48206:68:0;;6256:2:1;48206:68:0;;;6238:21:1;6295:2;6275:18;;;6268:30;6334:34;6314:18;;;6307:62;-1:-1:-1;;;6385:18:1;;;6378:32;6427:19;;48206:68:0;6228:224:1;48206:68:0;-1:-1:-1;;;;;48287:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;48339:32;;12598:25:1;;;48339:32:0;;12571:18:1;48339:32:0;;;;;;;48042:337;;;:::o;48387:2635::-;-1:-1:-1;;;;;48509:18:0;;48501:68;;;;-1:-1:-1;;;48501:68:0;;10727:2:1;48501:68:0;;;10709:21:1;10766:2;10746:18;;;10739:30;10805:34;10785:18;;;10778:62;-1:-1:-1;;;10856:18:1;;;10849:35;10901:19;;48501:68:0;10699:227:1;48501:68:0;-1:-1:-1;;;;;48588:16:0;;48580:64;;;;-1:-1:-1;;;48580:64:0;;4679:2:1;48580:64:0;;;4661:21:1;4718:2;4698:18;;;4691:30;4757:34;4737:18;;;4730:62;-1:-1:-1;;;4808:18:1;;;4801:33;4851:19;;48580:64:0;4651:225:1;48580:64:0;48672:1;48663:6;:10;48655:64;;;;-1:-1:-1;;;48655:64:0;;9557:2:1;48655:64:0;;;9539:21:1;9596:2;9576:18;;;9569:30;9635:34;9615:18;;;9608:62;-1:-1:-1;;;9686:18:1;;;9679:39;9735:19;;48655:64:0;9529:231:1;48655:64:0;-1:-1:-1;;;;;48739:21:0;;;;;;:17;:21;;;;;;;;48738:22;48730:58;;;;-1:-1:-1;;;48730:58:0;;12302:2:1;48730:58:0;;;12284:21:1;12341:2;12321:18;;;12314:30;-1:-1:-1;;;12360:18:1;;;12353:53;12423:18;;48730:58:0;12274:173:1;48730:58:0;-1:-1:-1;;;;;48808:23:0;;;;;;:17;:23;;;;;;;;48807:24;48799:60;;;;-1:-1:-1;;;48799:60:0;;12302:2:1;48799:60:0;;;12284:21:1;12341:2;12321:18;;;12314:30;-1:-1:-1;;;12360:18:1;;;12353:53;12423:18;;48799:60:0;12274:173:1;48799:60:0;-1:-1:-1;;;;;48878:20:0;;;;;;:14;:20;;;;;;;;:29;;:49;;-1:-1:-1;;;;;;48911:16:0;;;48878:49;48870:76;;;;-1:-1:-1;;;48870:76:0;;8444:2:1;48870:76:0;;;8426:21:1;8483:2;8463:18;;;8456:30;-1:-1:-1;;;8502:18:1;;;8495:44;8556:18;;48870:76:0;8416:164:1;48870:76:0;-1:-1:-1;;;;;48965:18:0;;;;;;:14;:18;;;;;;;;:27;48957:63;;;;-1:-1:-1;;;48957:63:0;;6659:2:1;48957:63:0;;;6641:21:1;6698:2;6678:18;;;6671:30;6737:25;6717:18;;;6710:53;6780:18;;48957:63:0;6631:173:1;48957:63:0;19359:7;19386:6;-1:-1:-1;;;;;49036:15:0;;;19386:6;;49036:15;;;;:32;;-1:-1:-1;19359:7:0;19386:6;-1:-1:-1;;;;;49055:13:0;;;19386:6;;49055:13;;49036:32;49033:783;;;49103:12;;49093:6;:22;;49085:75;;;;-1:-1:-1;;;49085:75:0;;8787:2:1;49085:75:0;;;8769:21:1;8826:2;8806:18;;;8799:30;8865:34;8845:18;;;8838:62;-1:-1:-1;;;8916:18:1;;;8909:38;8964:19;;49085:75:0;8759:230:1;49085:75:0;49187:13;-1:-1:-1;;;;;49179:21:0;:4;-1:-1:-1;;;;;49179:21:0;;:44;;;;49210:13;-1:-1:-1;;;;;49204:19:0;:2;-1:-1:-1;;;;;49204:19:0;;49179:44;49175:138;;;49252:14;;;;;;;49244:53;;;;-1:-1:-1;;;49244:53:0;;5083:2:1;49244:53:0;;;5065:21:1;5122:2;5102:18;;;5095:30;5161:28;5141:18;;;5134:56;5207:18;;49244:53:0;5055:176:1;49244:53:0;-1:-1:-1;;;;;49336:10:0;;;;;;:4;:10;;;;;;;;49335:11;:24;;;;-1:-1:-1;;;;;;49351:8:0;;;;;;:4;:8;;;;;;;;49350:9;49335:24;49327:33;;;;;;49387:13;-1:-1:-1;;;;;49379:21:0;:4;-1:-1:-1;;;;;49379:21:0;;:55;;;;;49418:15;-1:-1:-1;;;;;49404:30:0;:2;-1:-1:-1;;;;;49404:30:0;;;49379:55;:82;;;;-1:-1:-1;;;;;;49439:22:0;;;;;;:18;:22;;;;;;;;49438:23;49379:82;:101;;;;-1:-1:-1;49465:15:0;;;;;;;49379:101;49375:430;;;49509:14;;;;;;;49501:23;;;;;;49561:12;;49551:6;:22;;49543:31;;;;;;-1:-1:-1;;;;;49601:15:0;;;;;;:11;:15;;;;;;49619;-1:-1:-1;49593:42:0;;;;;;49672:29;:15;49691:9;49672:29;:::i;:::-;-1:-1:-1;;;;;49654:15:0;;;;;;:11;:15;;;;;:47;49742:2;49720:19;:24;;;49763:21;:26;49375:430;50103:28;50134:24;50152:4;50134:9;:24::i;:::-;50220:31;;50291:12;;50103:55;;-1:-1:-1;50196:55:0;;;;50267:36;;50264:112;;50352:12;;50329:35;;50264:112;50406:19;:50;;;;-1:-1:-1;50443:13:0;;;;50442:14;50406:50;:88;;;;;50481:13;-1:-1:-1;;;;;50473:21:0;:4;-1:-1:-1;;;;;50473:21:0;;;50406:88;:123;;;;-1:-1:-1;50511:18:0;;;;;;;50406:123;50388:213;;;50556:33;50568:20;50556:11;:33::i;:::-;50616:22;;;;50613:65;;;50655:11;50663:2;50655:7;:11::i;:::-;-1:-1:-1;;;;;50870:24:0;;50751:12;50870:24;;;:18;:24;;;;;;50766:4;;50870:24;;;:50;;-1:-1:-1;;;;;;50898:22:0;;;;;;:18;:22;;;;;;;;50870:50;50867:97;;;-1:-1:-1;50947:5:0;50867:97;50976:38;50991:4;50996:2;50999:6;51006:7;50976:14;:38::i;:::-;48387:2635;;;;;;:::o;7562:206::-;7648:7;7709:12;7701:6;;;;7693:29;;;;-1:-1:-1;;;7693:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;7744:5:0;;;7562:206::o;46478:163::-;46519:7;46540:15;46557;46576:19;:17;:19::i;:::-;46539:56;;-1:-1:-1;46539:56:0;-1:-1:-1;46613:20:0;46539:56;;46613:11;:20::i;:::-;46606:27;;;;46478:163;:::o;5333:98::-;5391:7;5418:5;5422:1;5418;:5;:::i;45276:419::-;45335:7;45344;45353;45362;45371;45380;45401:23;45426:12;45440:18;45462:20;45474:7;45462:11;:20::i;:::-;45400:82;;;;;;45494:15;45511:23;45536:12;45552:50;45564:7;45573:4;45579:10;45591;:8;:10::i;:::-;45552:11;:50::i;:::-;45493:109;;;;-1:-1:-1;45493:109:0;;-1:-1:-1;45653:15:0;;-1:-1:-1;45670:4:0;;-1:-1:-1;45676:10:0;;-1:-1:-1;45276:419:0;;-1:-1:-1;;;;;45276:419:0:o;6053:98::-;6111:7;6138:5;6142:1;6138;:5;:::i;51284:879::-;31828:13;:20;;-1:-1:-1;;31828:20:0;31844:4;31828:20;;;51450:16:::1;::::0;;51464:1:::1;51450:16:::0;;;;;::::1;::::0;;-1:-1:-1;;51450:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;51450:16:0::1;51426:40;;51495:4;51477;51482:1;51477:7;;;;;;-1:-1:-1::0;;;51477:7:0::1;;;;;;;;;;;;;;:23;-1:-1:-1::0;;;;;51477:23:0::1;;;-1:-1:-1::0;;;;;51477:23:0::1;;;::::0;::::1;51521:15;-1:-1:-1::0;;;;;51521:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51511:4;51516:1;51511:7;;;;;;-1:-1:-1::0;;;51511:7:0::1;;;;;;;;;;;;;;:32;-1:-1:-1::0;;;;;51511:32:0::1;;;-1:-1:-1::0;;;;;51511:32:0::1;;;::::0;::::1;51556:71;51573:4;51588:15;51606:20;51556:8;:71::i;:::-;51666:233;::::0;-1:-1:-1;;;51666:233:0;;-1:-1:-1;;;;;51666:15:0::1;:66;::::0;::::1;::::0;:233:::1;::::0;51747:20;;51782:1:::1;::::0;51826:4;;51853::::1;::::0;51873:15:::1;::::0;51666:233:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;51941:21:0::1;::::0;-1:-1:-1;;51976:22:0;;;-1:-1:-1;51973:183:0::1;;52016:18;::::0;-1:-1:-1;;;;;52016:18:0::1;:54;52044:25;:18:::0;52067:1:::1;52044:22;:25::i;:::-;52016:54;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;52085:23:0::1;::::0;-1:-1:-1;;;;;52085:23:0::1;:59;52118:25;:18:::0;52141:1:::1;52118:22;:25::i;:::-;52085:59;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;51973:183;-1:-1:-1::0;;31871:13:0;:21;;-1:-1:-1;;31871:21:0;;;-1:-1:-1;51284:879:0:o;51030:246::-;51095:13;;51085:7;:23;51135:19;;51119:13;:35;51182:13;-1:-1:-1;;;;;51169:26:0;;;;;;;51165:104;;;51236:21;;51220:13;:37;51030:246;:::o;52244:818::-;52355:7;52351:40;;52377:14;:12;:14::i;:::-;-1:-1:-1;;;;;52408:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;52432:22:0;;;;;;:11;:22;;;;;;;;52431:23;52408:46;52404:597;;;52471:48;52493:6;52501:9;52512:6;52471:21;:48::i;:::-;52404:597;;;-1:-1:-1;;;;;52542:19:0;;;;;;:11;:19;;;;;;;;52541:20;:46;;;;-1:-1:-1;;;;;;52565:22:0;;;;;;:11;:22;;;;;;;;52541:46;52537:464;;;52604:46;52624:6;52632:9;52643:6;52604:19;:46::i;52537:464::-;-1:-1:-1;;;;;52673:19:0;;;;;;:11;:19;;;;;;;;52672:20;:47;;;;-1:-1:-1;;;;;;52697:22:0;;;;;;:11;:22;;;;;;;;52696:23;52672:47;52668:333;;;52736:44;52754:6;52762:9;52773:6;52736:17;:44::i;52668:333::-;-1:-1:-1;;;;;52802:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;52825:22:0;;;;;;:11;:22;;;;;;;;52802:45;52798:203;;;52864:48;52886:6;52894:9;52905:6;52864:21;:48::i;52798:203::-;52945:44;52963:6;52971:9;52982:6;52945:17;:44::i;:::-;53017:7;53013:41;;53039:15;44970;;44960:7;:25;45012:21;;44996:13;:37;44916:125;53039:15;52244:818;;;;:::o;46649:555::-;46746:7;;46782;;46699;;;;;46800:289;46824:9;:16;46820:20;;46800:289;;;46890:7;46866;:21;46874:9;46884:1;46874:12;;;;;;-1:-1:-1;;;46874:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46874:12:0;46866:21;;;;;;;;;;;;;:31;;:66;;;46925:7;46901;:21;46909:9;46919:1;46909:12;;;;;;-1:-1:-1;;;46909:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46909:12:0;46901:21;;;;;;;;;;;;;:31;46866:66;46862:97;;;46942:7;;46951;;46934:25;;;;;;;46649:555;;:::o;46862:97::-;46984:34;46996:7;:21;47004:9;47014:1;47004:12;;;;;;-1:-1:-1;;;47004:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47004:12:0;46996:21;;;;;;;;;;;;;46984:7;;:11;:34::i;:::-;46974:44;;47043:34;47055:7;:21;47063:9;47073:1;47063:12;;;;;;-1:-1:-1;;;47063:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47063:12:0;47055:21;;;;;;;;;;;;;47043:7;;:11;:34::i;:::-;47033:44;-1:-1:-1;46842:3:0;;;;:::i;:::-;;;;46800:289;;;-1:-1:-1;47125:7:0;;47113;;:20;;:11;:20::i;:::-;47103:7;:30;47099:61;;;47143:7;;47152;;47135:25;;;;;;46649:555;;:::o;47099:61::-;47179:7;;47188;;-1:-1:-1;46649:555:0;-1:-1:-1;46649:555:0:o;45703:330::-;45763:7;45772;45781;45801:12;45816:24;45832:7;45816:15;:24::i;:::-;45801:39;;45851:18;45872:30;45894:7;45872:21;:30::i;:::-;45851:51;-1:-1:-1;45913:23:0;45939:33;45851:51;45939:17;:7;45951:4;45939:11;:17::i;:::-;:21;;:33::i;:::-;45913:59;46008:4;;-1:-1:-1;46014:10:0;;-1:-1:-1;45703:330:0;;-1:-1:-1;;;45703:330:0:o;46041:429::-;46156:7;;;;46212:24;:7;46224:11;46212;:24::i;:::-;46194:42;-1:-1:-1;46247:12:0;46262:21;:4;46271:11;46262:8;:21::i;:::-;46247:36;-1:-1:-1;46294:18:0;46315:27;:10;46330:11;46315:14;:27::i;:::-;46294:48;-1:-1:-1;46353:23:0;46379:33;46294:48;46379:17;:7;46391:4;46379:11;:17::i;:33::-;46431:7;;;;-1:-1:-1;46457:4:0;;-1:-1:-1;46041:429:0;;-1:-1:-1;;;;;;;46041:429:0:o;44674:234::-;44720:7;;:12;:34;;;;-1:-1:-1;44736:13:0;;:18;44720:34;44717:46;;;44674:234::o;44717:46::-;44793:7;;;44775:15;:25;44835:13;;;44811:21;:37;-1:-1:-1;44861:11:0;;;;44883:17;44674:234::o;54163:563::-;54266:15;54283:23;54308:12;54322:23;54347:12;54361:18;54383:19;54394:7;54383:10;:19::i;:::-;-1:-1:-1;;;;;54431:15:0;;;;;;:7;:15;;;;;;54265:137;;-1:-1:-1;54265:137:0;;-1:-1:-1;54265:137:0;;-1:-1:-1;54265:137:0;-1:-1:-1;54265:137:0;-1:-1:-1;54265:137:0;-1:-1:-1;54431:28:0;;54451:7;54431:19;:28::i;:::-;-1:-1:-1;;;;;54413:15:0;;;;;;:7;:15;;;;;;;;:46;;;;54488:7;:15;;;;:28;;54508:7;54488:19;:28::i;:::-;-1:-1:-1;;;;;54470:15:0;;;;;;;:7;:15;;;;;;:46;;;;54548:18;;;;;;;:39;;54571:15;54548:22;:39::i;:::-;-1:-1:-1;;;;;54527:18:0;;;;;;:7;:18;;;;;:60;54598:26;54613:10;54598:14;:26::i;:::-;54635:23;54647:4;54653;54635:11;:23::i;:::-;54691:9;-1:-1:-1;;;;;54674:44:0;54683:6;-1:-1:-1;;;;;54674:44:0;;54702:15;54674:44;;;;12598:25:1;;12586:2;12571:18;;12553:76;54674:44:0;;;;;;;;54163:563;;;;;;;;;:::o;53580:575::-;53681:15;53698:23;53723:12;53737:23;53762:12;53776:18;53798:19;53809:7;53798:10;:19::i;:::-;-1:-1:-1;;;;;53846:15:0;;;;;;:7;:15;;;;;;53680:137;;-1:-1:-1;53680:137:0;;-1:-1:-1;53680:137:0;;-1:-1:-1;53680:137:0;-1:-1:-1;53680:137:0;-1:-1:-1;53680:137:0;-1:-1:-1;53846:28:0;;53680:137;53846:19;:28::i;:::-;-1:-1:-1;;;;;53828:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;53906:18;;;;;:7;:18;;;;;:39;;53929:15;53906:22;:39::i;:::-;-1:-1:-1;;;;;53885:18:0;;;;;;:7;:18;;;;;;;;:60;;;;53977:7;:18;;;;:39;;54000:15;53977:22;:39::i;53070:502::-;53169:15;53186:23;53211:12;53225:23;53250:12;53264:18;53286:19;53297:7;53286:10;:19::i;:::-;-1:-1:-1;;;;;53334:15:0;;;;;;:7;:15;;;;;;53168:137;;-1:-1:-1;53168:137:0;;-1:-1:-1;53168:137:0;;-1:-1:-1;53168:137:0;-1:-1:-1;53168:137:0;-1:-1:-1;53168:137:0;-1:-1:-1;53334:28:0;;53168:137;53334:19;:28::i;54734:634::-;54837:15;54854:23;54879:12;54893:23;54918:12;54932:18;54954:19;54965:7;54954:10;:19::i;:::-;-1:-1:-1;;;;;55002:15:0;;;;;;:7;:15;;;;;;54836:137;;-1:-1:-1;54836:137:0;;-1:-1:-1;54836:137:0;;-1:-1:-1;54836:137:0;-1:-1:-1;54836:137:0;-1:-1:-1;54836:137:0;-1:-1:-1;55002:28:0;;55022:7;55002:19;:28::i;:::-;-1:-1:-1;;;;;54984:15:0;;;;;;:7;:15;;;;;;;;:46;;;;55059:7;:15;;;;:28;;55079:7;5705:98;5763:7;5790:5;5794:1;5790;:5;:::i;47575:154::-;47639:7;47666:55;47705:5;47666:20;47678:7;;47666;:11;;:20;;;;:::i;47737:166::-;47807:7;47834:61;47879:5;47834:26;47846:13;;47834:7;:11;;:26;;;;:::i;47212:355::-;47275:19;47298:10;:8;:10::i;:::-;47275:33;-1:-1:-1;47319:18:0;47340:27;:10;47275:33;47340:14;:27::i;:::-;47419:4;47403:22;;;;:7;:22;;;;;;47319:48;;-1:-1:-1;47403:38:0;;47319:48;47403:26;:38::i;:::-;47394:4;47378:22;;;;:7;:22;;;;;;;;:63;;;;47455:11;:26;;;;;;47452:107;;;47537:4;47521:22;;;;:7;:22;;;;;;:38;;47548:10;47521:26;:38::i;:::-;47512:4;47496:22;;;;:7;:22;;;;;:63;47212:355;;;:::o;45121:147::-;45199:7;;:17;;45211:4;45199:11;:17::i;:::-;45189:7;:27;45240:10;;:20;;45255:4;45240:14;:20::i;:::-;45227:10;:33;-1:-1:-1;;45121:147:0:o;14:160:1:-;79:20;;135:13;;128:21;118:32;;108:2;;164:1;161;154:12;179:257;238:6;291:2;279:9;270:7;266:23;262:32;259:2;;;312:6;304;297:22;259:2;356:9;343:23;375:31;400:5;375:31;:::i;441:261::-;511:6;564:2;552:9;543:7;539:23;535:32;532:2;;;585:6;577;570:22;532:2;622:9;616:16;641:31;666:5;641:31;:::i;707:398::-;775:6;783;836:2;824:9;815:7;811:23;807:32;804:2;;;857:6;849;842:22;804:2;901:9;888:23;920:31;945:5;920:31;:::i;:::-;970:5;-1:-1:-1;1027:2:1;1012:18;;999:32;1040:33;999:32;1040:33;:::i;:::-;1092:7;1082:17;;;794:311;;;;;:::o;1110:466::-;1187:6;1195;1203;1256:2;1244:9;1235:7;1231:23;1227:32;1224:2;;;1277:6;1269;1262:22;1224:2;1321:9;1308:23;1340:31;1365:5;1340:31;:::i;:::-;1390:5;-1:-1:-1;1447:2:1;1432:18;;1419:32;1460:33;1419:32;1460:33;:::i;:::-;1214:362;;1512:7;;-1:-1:-1;;;1566:2:1;1551:18;;;;1538:32;;1214:362::o;1581:325::-;1649:6;1657;1710:2;1698:9;1689:7;1685:23;1681:32;1678:2;;;1731:6;1723;1716:22;1678:2;1775:9;1762:23;1794:31;1819:5;1794:31;:::i;:::-;1844:5;1896:2;1881:18;;;;1868:32;;-1:-1:-1;;;1668:238:1:o;1911:665::-;1997:6;2005;2058:2;2046:9;2037:7;2033:23;2029:32;2026:2;;;2079:6;2071;2064:22;2026:2;2124:9;2111:23;2153:18;2194:2;2186:6;2183:14;2180:2;;;2215:6;2207;2200:22;2180:2;2258:6;2247:9;2243:22;2233:32;;2303:7;2296:4;2292:2;2288:13;2284:27;2274:2;;2330:6;2322;2315:22;2274:2;2375;2362:16;2401:2;2393:6;2390:14;2387:2;;;2422:6;2414;2407:22;2387:2;2480:7;2475:2;2465:6;2462:1;2458:14;2454:2;2450:23;2446:32;2443:45;2440:2;;;2506:6;2498;2491:22;2440:2;2542;2534:11;;;;;2564:6;;-1:-1:-1;2016:560:1;;-1:-1:-1;;;;2016:560:1:o;2581:190::-;2637:6;2690:2;2678:9;2669:7;2665:23;2661:32;2658:2;;;2711:6;2703;2696:22;2658:2;2739:26;2755:9;2739:26;:::i;2776:190::-;2835:6;2888:2;2876:9;2867:7;2863:23;2859:32;2856:2;;;2909:6;2901;2894:22;2856:2;-1:-1:-1;2937:23:1;;2846:120;-1:-1:-1;2846:120:1:o;2971:258::-;3036:6;3044;3097:2;3085:9;3076:7;3072:23;3068:32;3065:2;;;3118:6;3110;3103:22;3065:2;3159:9;3146:23;3136:33;;3188:35;3219:2;3208:9;3204:18;3188:35;:::i;:::-;3178:45;;3055:174;;;;;:::o;3869:603::-;3981:4;4010:2;4039;4028:9;4021:21;4071:6;4065:13;4114:6;4109:2;4098:9;4094:18;4087:34;4139:4;4152:140;4166:6;4163:1;4160:13;4152:140;;;4261:14;;;4257:23;;4251:30;4227:17;;;4246:2;4223:26;4216:66;4181:10;;4152:140;;;4310:6;4307:1;4304:13;4301:2;;;4380:4;4375:2;4366:6;4355:9;4351:22;4347:31;4340:45;4301:2;-1:-1:-1;4456:2:1;4435:15;-1:-1:-1;;4431:29:1;4416:45;;;;4463:2;4412:54;;3990:482;-1:-1:-1;;;3990:482:1:o;8994:356::-;9196:2;9178:21;;;9215:18;;;9208:30;9274:34;9269:2;9254:18;;9247:62;9341:2;9326:18;;9168:182::o;12634:983::-;12896:4;12944:3;12933:9;12929:19;12975:6;12964:9;12957:25;13001:2;13039:6;13034:2;13023:9;13019:18;13012:34;13082:3;13077:2;13066:9;13062:18;13055:31;13106:6;13141;13135:13;13172:6;13164;13157:22;13210:3;13199:9;13195:19;13188:26;;13249:2;13241:6;13237:15;13223:29;;13270:4;13283:195;13297:6;13294:1;13291:13;13283:195;;;13362:13;;-1:-1:-1;;;;;13358:39:1;13346:52;;13453:15;;;;13418:12;;;;13394:1;13312:9;13283:195;;;-1:-1:-1;;;;;;;13534:32:1;;;;13529:2;13514:18;;13507:60;-1:-1:-1;;;13598:3:1;13583:19;13576:35;13495:3;12905:712;-1:-1:-1;;;12905:712:1:o;13811:128::-;13851:3;13882:1;13878:6;13875:1;13872:13;13869:2;;;13888:18;;:::i;:::-;-1:-1:-1;13924:9:1;;13859:80::o;13944:217::-;13984:1;14010;14000:2;;-1:-1:-1;;;14035:31:1;;14089:4;14086:1;14079:15;14117:4;14042:1;14107:15;14000:2;-1:-1:-1;14146:9:1;;13990:171::o;14166:168::-;14206:7;14272:1;14268;14264:6;14260:14;14257:1;14254:21;14249:1;14242:9;14235:17;14231:45;14228:2;;;14279:18;;:::i;:::-;-1:-1:-1;14319:9:1;;14218:116::o;14339:125::-;14379:4;14407:1;14404;14401:8;14398:2;;;14412:18;;:::i;:::-;-1:-1:-1;14449:9:1;;14388:76::o;14469:380::-;14548:1;14544:12;;;;14591;;;14612:2;;14666:4;14658:6;14654:17;14644:27;;14612:2;14719;14711:6;14708:14;14688:18;14685:38;14682:2;;;14765:10;14760:3;14756:20;14753:1;14746:31;14800:4;14797:1;14790:15;14828:4;14825:1;14818:15;14682:2;;14524:325;;;:::o;14854:135::-;14893:3;-1:-1:-1;;14914:17:1;;14911:2;;;14934:18;;:::i;:::-;-1:-1:-1;14981:1:1;14970:13;;14901:88::o;14994:127::-;15055:10;15050:3;15046:20;15043:1;15036:31;15086:4;15083:1;15076:15;15110:4;15107:1;15100:15;15126:131;-1:-1:-1;;;;;15201:31:1;;15191:42;;15181:2;;15247:1;15244;15237:12

Swarm Source

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