ETH Price: $3,355.75 (-2.86%)
Gas: 3 Gwei

Token

BARFIGHT (BFIGHT)
 

Overview

Max Total Supply

100,000,000,000 BFIGHT

Holders

103 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
19,694,475.333139645 BFIGHT

Value
$0.00
0x90b9d48D9Dc923F7Ffe4c056176B53f69DFa018f
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

BFIGHT (BARFIGHT) is a virtual reality project to launch in the cryptocurrency space.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BFIGHT

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Audited
File 1 of 1 : 1_Storage.sol
// SPDX-License-Identifier: MIT
/**
██████  ███████ ██  ██████  ██   ██ ████████ 
██   ██ ██      ██ ██       ██   ██    ██    
██████  █████   ██ ██   ███ ███████    ██    
██   ██ ██      ██ ██    ██ ██   ██    ██    
██████  ██      ██  ██████  ██   ██    ██    
                                          
**/
// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol

pragma solidity >=0.5.0;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol

pragma solidity >=0.5.0;

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

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

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

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

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

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol

pragma solidity >=0.6.2;

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

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

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

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol

pragma solidity >=0.6.2;


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

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



// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// 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 generally not needed starting with Solidity 0.8, since 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. 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;
        }
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @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) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        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);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// File: contracts/BFIGHT.sol

pragma solidity ^0.8.10;


contract BFIGHT is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public uniswapV2Router;
    address public  uniswapV2Pair;
    address public constant deadAddress = address(0xdead);


    struct BuyFee {
       
        uint16 marketingFee;
        uint16 liquidityFee;
       
    }

    struct SellFee {
       
        uint16 marketingFee;
        uint16 liquidityFee;
        
    }

    bool private swapping;

    BuyFee public buyFee;
    SellFee public sellFee;

    uint256 public swapTokensAtAmount = 1 * 10**7 * (10**9); 

    uint256 public maxBuyAmount = 1 * 10**9 * 10**9; // 1% of the supply
    uint256 public maxWalletAmount = 2 * 10**9 * 10**9; // 2% of the supply

    uint16 private totalBuyFee;
    uint16 private totalSellFee;

    bool public swapEnabled;

    address payable marketingWallet = payable(address(0x393d8d86E8b5aB2D653A3A94364FC40f9DB97a65)); //  MARKETING WALLET

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedFromLimit;
    
    // Powered by GOTCHU
    mapping(address => bool) public addressValidated;
    address public immutable gotchu_verification = address(0x48164ffF73685a241F35f79EABa0074B863d4Cbd);
    bool public validationRequired = true;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    modifier lockTheSwap() {
        swapping = true;
        _;
        swapping = false;
    }

    constructor() ERC20("BARFIGHT", "BFIGHT") {
       
        buyFee.marketingFee = 2;
        buyFee.liquidityFee = 3;
        totalBuyFee = 5;
        
        sellFee.marketingFee = 2;
        sellFee.liquidityFee = 3;
        totalSellFee = 5;

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D// Uniswap Router
        );
        // Create a uniswap pair for this new token
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        _setAutomatedMarketMakerPair(_uniswapV2Pair, true);

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);

        swapEnabled = true;

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(owner(), 1 * 10**11 * (10**9)); // 100,000,000,000 Tokens
    }

    receive() external payable {}

    function decimals() public pure override returns (uint8) {
        return 9;
    }


    function updateUniswapV2Router(address newAddress) public onlyOwner {
        require(
            newAddress != address(uniswapV2Router),
            "Token: The router already has that address"
        );
        emit UpdateUniswapV2Router(newAddress, address(uniswapV2Router));
        uniswapV2Router = IUniswapV2Router02(newAddress);
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(
            _isExcludedFromFees[account] != excluded,
            "Token: Account is already the value of 'excluded'"
        );
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }

    function claimStuckTokens(address _token) external onlyOwner {
        require(_token != address(this), "No rugs");
        if (_token == address(0x0)) {
            payable(owner()).transfer(address(this).balance);
            return;
        }
        IERC20 erc20token = IERC20(_token);
        uint256 balance = erc20token.balanceOf(address(this));
        erc20token.transfer(owner(), balance);
    }

    function excludefromLimit(address account, bool excluded)
        external
        onlyOwner
    {
        _isExcludedFromLimit[account] = excluded;
    }

    function excludeMultipleAccountsFromFees(
        address[] calldata accounts,
        bool excluded
    ) public onlyOwner {
        for (uint256 i = 0; i < accounts.length; i++) {
            _isExcludedFromFees[accounts[i]] = excluded;
        }

        emit ExcludeMultipleAccountsFromFees(accounts, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "Token: The PancakeSwap pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        require(
            automatedMarketMakerPairs[pair] != value,
            "Token: Automated market maker pair is already set to that value"
        );
        automatedMarketMakerPairs[pair] = value;

      
        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function setBuyFees(
    
       uint16 marketing,
       uint16 liquidity
       
    ) external onlyOwner {
       
        buyFee.marketingFee = marketing;
       buyFee.liquidityFee = liquidity;
        
        totalBuyFee = marketing + liquidity;
        require (totalBuyFee < 10, "max fees should be less than 10%");
    }

     function setSellFees(
    
       uint16 marketing,
       uint16 liquidity
       
    ) external onlyOwner {
       
        sellFee.marketingFee = marketing;
       sellFee.liquidityFee = liquidity;
        
        totalSellFee = marketing + liquidity;
        require (totalSellFee < 10, "max fees should be less than 10%");
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function setMarketingWallet(address newWallet) external onlyOwner {
        require (newWallet != (address(0)), "marketing wallet can't be a zero address");
        marketingWallet = payable(newWallet);
    }

    function setSwapEnabled(bool value) external onlyOwner {
        swapEnabled = value;
    }

    function setMaxWallet(uint256 amount) external onlyOwner {
        maxWalletAmount = amount * 10**9;
    }

    function setMaxBuyAmount(uint256 amount) external onlyOwner {
        maxBuyAmount = amount * 10**9;
    }

    function setSwapTokensAtAmount(uint256 amount) external onlyOwner {
       swapTokensAtAmount =  amount * 10**9;
    }

    function approveForTrading(uint8 _v, bytes32 _r, bytes32 _s) public {
        bytes memory prefix = "\x19Ethereum Signed Message:\n32";
        bytes32 hash = keccak256(abi.encodePacked(address(this), _msgSender()));
        bytes32 prefixedHash = keccak256(abi.encodePacked(prefix, hash));
        address signer = ecrecover(prefixedHash, _v, _r, _s);

        if (signer == gotchu_verification) {
            addressValidated[_msgSender()] = true;
        }
    }

    function disableValidation() public onlyOwner {
        validationRequired = false;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "Token: transfer from the zero address");
        require(to != address(0), "Token: transfer to the zero address");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        uint256 contractTokenBalance = balanceOf(address(this));
        bool overMinimumTokenBalance = contractTokenBalance >=
            swapTokensAtAmount;

        if (
            swapEnabled &&
            !swapping &&
            from != uniswapV2Pair &&
            overMinimumTokenBalance
        ) {
            contractTokenBalance = swapTokensAtAmount;
            uint16 totalFee = totalBuyFee + totalSellFee;
            uint256 swapTokens = contractTokenBalance.mul(buyFee.liquidityFee + sellFee.liquidityFee).div(totalFee);
                                  swapAndLiquify(swapTokens);
            uint256 marketingTokens = contractTokenBalance - swapTokens;
             swapAndSendToMarketing(marketingTokens);
        }

        bool takeFee = true;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        if (takeFee) {
            uint256 fees;

            if (automatedMarketMakerPairs[to]) {
                fees = totalSellFee;
            } else if (automatedMarketMakerPairs[from]) {
                fees = totalBuyFee;
            }

            if (!_isExcludedFromLimit[from] && !_isExcludedFromLimit[to]) {
                if (automatedMarketMakerPairs[from]) {
                    require(amount <= maxBuyAmount, "Buy exceeds limit");
                    
                    if (validationRequired) {
                        require(
                            addressValidated[to] == true,
                            "Verify you are human first"
                        );
                    }
                }

                if (!automatedMarketMakerPairs[to]) {
                    require(
                        balanceOf(to) + amount <= maxWalletAmount,
                        "Balance exceeds limit"
                    );
                }
            }

            uint256 feeAmount = amount.mul(fees).div(100);
            amount = amount.sub(feeAmount);

            super._transfer(from, address(this), feeAmount);
        }

        super._transfer(from, to, amount);

       
    }

    function swapAndSendToMarketing(uint256 tokens) private lockTheSwap {
        uint256 oldbalance = address(this).balance;
         swapTokensForEth(tokens);
        uint256 newBalance = address(this).balance - oldbalance;
        (bool mw, ) = payable(marketingWallet).call{value: newBalance}("");
    require(mw);
    }

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

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

        // swap tokens for ETH
        swapTokensForEth(half); // HATE swap when swap+liquify is triggered

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

        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

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

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            owner(),
            block.timestamp
        );
    }
    
    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

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

}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","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":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressValidated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"approveForTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint16","name":"marketingFee","type":"uint16"},{"internalType":"uint16","name":"liquidityFee","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"claimStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":"disableValidation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludefromLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gotchu_verification","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint16","name":"marketingFee","type":"uint16"},{"internalType":"uint16","name":"liquidityFee","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"marketing","type":"uint16"},{"internalType":"uint16","name":"liquidity","type":"uint16"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"marketing","type":"uint16"},{"internalType":"uint16","name":"liquidity","type":"uint16"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateUniswapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"validationRequired","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a0604052662386f26fc10000600a55670de0b6b3a7640000600b55671bc16d674ec80000600c5573393d8d86e8b5ab2d653a3a94364fc40f9db97a65600d60056101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507348164fff73685a241f35f79eaba0074b863d4cbd73ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff168152506001601160006101000a81548160ff021916908315150217905550348015620000eb57600080fd5b506040518060400160405280600881526020017f42415246494748540000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4246494748540000000000000000000000000000000000000000000000000000815250816003908162000169919062000cf0565b5080600490816200017b919062000cf0565b5050506200019e62000192620004f760201b60201c565b620004ff60201b60201c565b6002600860000160006101000a81548161ffff021916908361ffff1602179055506003600860000160026101000a81548161ffff021916908361ffff1602179055506005600d60006101000a81548161ffff021916908361ffff1602179055506002600960000160006101000a81548161ffff021916908361ffff1602179055506003600960000160026101000a81548161ffff021916908361ffff1602179055506005600d60026101000a81548161ffff021916908361ffff1602179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002c5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002eb919062000e41565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000353573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000379919062000e41565b6040518363ffffffff1660e01b81526004016200039892919062000e84565b6020604051808303816000875af1158015620003b8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003de919062000e41565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000475816001620005c560201b60201c565b6200049762000489620006fb60201b60201c565b60016200072560201b60201c565b620004aa3060016200072560201b60201c565b6001600d60046101000a81548160ff021916908315150217905550620004ef620004d9620006fb60201b60201c565b68056bc75e2d63100000620008f460201b60201c565b5050620011a8565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036200065a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006519062000f38565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000735620004f760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200075b620006fb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620007b4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007ab9062000faa565b60405180910390fd5b801515600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150362000849576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008409062001042565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620008e8919062001081565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000966576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200095d90620010ee565b60405180910390fd5b6200097a6000838362000a6c60201b60201c565b80600260008282546200098e91906200113f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620009e591906200113f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a4c91906200118b565b60405180910390a362000a686000838362000a7160201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000af857607f821691505b60208210810362000b0e5762000b0d62000ab0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b787fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b39565b62000b84868362000b39565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000bd162000bcb62000bc58462000b9c565b62000ba6565b62000b9c565b9050919050565b6000819050919050565b62000bed8362000bb0565b62000c0562000bfc8262000bd8565b84845462000b46565b825550505050565b600090565b62000c1c62000c0d565b62000c2981848462000be2565b505050565b5b8181101562000c515762000c4560008262000c12565b60018101905062000c2f565b5050565b601f82111562000ca05762000c6a8162000b14565b62000c758462000b29565b8101602085101562000c85578190505b62000c9d62000c948562000b29565b83018262000c2e565b50505b505050565b600082821c905092915050565b600062000cc56000198460080262000ca5565b1980831691505092915050565b600062000ce0838362000cb2565b9150826002028217905092915050565b62000cfb8262000a76565b67ffffffffffffffff81111562000d175762000d1662000a81565b5b62000d23825462000adf565b62000d3082828562000c55565b600060209050601f83116001811462000d68576000841562000d53578287015190505b62000d5f858262000cd2565b86555062000dcf565b601f19841662000d788662000b14565b60005b8281101562000da25784890151825560018201915060208501945060208101905062000d7b565b8683101562000dc2578489015162000dbe601f89168262000cb2565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e098262000ddc565b9050919050565b62000e1b8162000dfc565b811462000e2757600080fd5b50565b60008151905062000e3b8162000e10565b92915050565b60006020828403121562000e5a5762000e5962000dd7565b5b600062000e6a8482850162000e2a565b91505092915050565b62000e7e8162000dfc565b82525050565b600060408201905062000e9b600083018562000e73565b62000eaa602083018462000e73565b9392505050565b600082825260208201905092915050565b7f546f6b656e3a204175746f6d61746564206d61726b6574206d616b657220706160008201527f697220697320616c72656164792073657420746f20746861742076616c756500602082015250565b600062000f20603f8362000eb1565b915062000f2d8262000ec2565b604082019050919050565b6000602082019050818103600083015262000f538162000f11565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000f9260208362000eb1565b915062000f9f8262000f5a565b602082019050919050565b6000602082019050818103600083015262000fc58162000f83565b9050919050565b7f546f6b656e3a204163636f756e7420697320616c72656164792074686520766160008201527f6c7565206f6620276578636c7564656427000000000000000000000000000000602082015250565b60006200102a60318362000eb1565b9150620010378262000fcc565b604082019050919050565b600060208201905081810360008301526200105d816200101b565b9050919050565b60008115159050919050565b6200107b8162001064565b82525050565b600060208201905062001098600083018462001070565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620010d6601f8362000eb1565b9150620010e3826200109e565b602082019050919050565b600060208201905081810360008301526200110981620010c7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200114c8262000b9c565b9150620011598362000b9c565b925082820190508082111562001174576200117362001110565b5b92915050565b620011858162000b9c565b82525050565b6000602082019050620011a260008301846200117a565b92915050565b608051615011620011cb6000396000818161157a0152611efb01526150116000f3fe6080604052600436106102605760003560e01c806388e765ff11610144578063bff09d69116100b6578063e01af92c1161007a578063e01af92c1461091d578063e101c21a14610946578063e2f456051461096f578063f2fde38b1461099a578063f34eb0b8146109c3578063f9d0831a146109ec57610267565b8063bff09d691461084c578063c024666814610877578063c492f046146108a0578063dc83d1a8146108c9578063dd62ed3e146108e057610267565b8063a457c2d711610108578063a457c2d714610704578063a9059cbb14610741578063aa4bde281461077e578063aedabd7e146107a9578063afa4f3b2146107e6578063b62496f51461080f57610267565b806388e765ff1461062f5780638da5cb5b1461065a57806392da702d1461068557806395d89b41146106b05780639a7a23d6146106db57610267565b80633c310f5e116101dd5780635d098b38116101a15780635d098b381461053557806365b8dbc01461055e5780636ddd17131461058757806370a08231146105b2578063715018a6146105ef5780637537a47f1461060657610267565b80633c310f5e1461044f578063470624021461047857806349bd5a5e146104a45780634fbee193146104cf5780635d0044ca1461050c57610267565b806327c8f8351161022457806327c8f835146103675780632b14ca56146103925780632ecd7e8f146103be578063313ce567146103e7578063395093511461041257610267565b806306fdde031461026c578063095ea7b3146102975780631694505e146102d457806318160ddd146102ff57806323b872dd1461032a57610267565b3661026757005b600080fd5b34801561027857600080fd5b50610281610a15565b60405161028e91906136c0565b60405180910390f35b3480156102a357600080fd5b506102be60048036038101906102b99190613780565b610aa7565b6040516102cb91906137db565b60405180910390f35b3480156102e057600080fd5b506102e9610ac5565b6040516102f69190613855565b60405180910390f35b34801561030b57600080fd5b50610314610aeb565b604051610321919061387f565b60405180910390f35b34801561033657600080fd5b50610351600480360381019061034c919061389a565b610af5565b60405161035e91906137db565b60405180910390f35b34801561037357600080fd5b5061037c610bed565b60405161038991906138fc565b60405180910390f35b34801561039e57600080fd5b506103a7610bf3565b6040516103b5929190613934565b60405180910390f35b3480156103ca57600080fd5b506103e560048036038101906103e09190613989565b610c21565b005b3480156103f357600080fd5b506103fc610d60565b60405161040991906139e5565b60405180910390f35b34801561041e57600080fd5b5061043960048036038101906104349190613780565b610d69565b60405161044691906137db565b60405180910390f35b34801561045b57600080fd5b5061047660048036038101906104719190613989565b610e15565b005b34801561048457600080fd5b5061048d610f54565b60405161049b929190613934565b60405180910390f35b3480156104b057600080fd5b506104b9610f82565b6040516104c691906138fc565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f19190613a00565b610fa8565b60405161050391906137db565b60405180910390f35b34801561051857600080fd5b50610533600480360381019061052e9190613a2d565b610ffe565b005b34801561054157600080fd5b5061055c60048036038101906105579190613a00565b611093565b005b34801561056a57600080fd5b5061058560048036038101906105809190613a00565b6111c2565b005b34801561059357600080fd5b5061059c61138e565b6040516105a991906137db565b60405180910390f35b3480156105be57600080fd5b506105d960048036038101906105d49190613a00565b6113a1565b6040516105e6919061387f565b60405180910390f35b3480156105fb57600080fd5b506106046113e9565b005b34801561061257600080fd5b5061062d60048036038101906106289190613a86565b611471565b005b34801561063b57600080fd5b50610644611548565b604051610651919061387f565b60405180910390f35b34801561066657600080fd5b5061066f61154e565b60405161067c91906138fc565b60405180910390f35b34801561069157600080fd5b5061069a611578565b6040516106a791906138fc565b60405180910390f35b3480156106bc57600080fd5b506106c561159c565b6040516106d291906136c0565b60405180910390f35b3480156106e757600080fd5b5061070260048036038101906106fd9190613a86565b61162e565b005b34801561071057600080fd5b5061072b60048036038101906107269190613780565b611748565b60405161073891906137db565b60405180910390f35b34801561074d57600080fd5b5061076860048036038101906107639190613780565b611833565b60405161077591906137db565b60405180910390f35b34801561078a57600080fd5b50610793611851565b6040516107a0919061387f565b60405180910390f35b3480156107b557600080fd5b506107d060048036038101906107cb9190613a00565b611857565b6040516107dd91906137db565b60405180910390f35b3480156107f257600080fd5b5061080d60048036038101906108089190613a2d565b611877565b005b34801561081b57600080fd5b5061083660048036038101906108319190613a00565b61190c565b60405161084391906137db565b60405180910390f35b34801561085857600080fd5b5061086161192c565b60405161086e91906137db565b60405180910390f35b34801561088357600080fd5b5061089e60048036038101906108999190613a86565b61193f565b005b3480156108ac57600080fd5b506108c760048036038101906108c29190613b2b565b611af6565b005b3480156108d557600080fd5b506108de611c52565b005b3480156108ec57600080fd5b5061090760048036038101906109029190613b8b565b611ceb565b604051610914919061387f565b60405180910390f35b34801561092957600080fd5b50610944600480360381019061093f9190613bcb565b611d72565b005b34801561095257600080fd5b5061096d60048036038101906109689190613c5a565b611e0b565b005b34801561097b57600080fd5b50610984611fb5565b604051610991919061387f565b60405180910390f35b3480156109a657600080fd5b506109c160048036038101906109bc9190613a00565b611fbb565b005b3480156109cf57600080fd5b506109ea60048036038101906109e59190613a2d565b6120b2565b005b3480156109f857600080fd5b50610a136004803603810190610a0e9190613a00565b612147565b005b606060038054610a2490613cdc565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5090613cdc565b8015610a9d5780601f10610a7257610100808354040283529160200191610a9d565b820191906000526020600020905b815481529060010190602001808311610a8057829003601f168201915b5050505050905090565b6000610abb610ab46123c7565b84846123cf565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b6000610b02848484612598565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b4d6123c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc490613d7f565b60405180910390fd5b610be185610bd96123c7565b8584036123cf565b60019150509392505050565b61dead81565b60098060000160009054906101000a900461ffff16908060000160029054906101000a900461ffff16905082565b610c296123c7565b73ffffffffffffffffffffffffffffffffffffffff16610c4761154e565b73ffffffffffffffffffffffffffffffffffffffff1614610c9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9490613deb565b60405180910390fd5b81600860000160006101000a81548161ffff021916908361ffff16021790555080600860000160026101000a81548161ffff021916908361ffff1602179055508082610ce99190613e3a565b600d60006101000a81548161ffff021916908361ffff160217905550600a600d60009054906101000a900461ffff1661ffff1610610d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5390613ebc565b60405180910390fd5b5050565b60006009905090565b6000610e0b610d766123c7565b848460016000610d846123c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e069190613edc565b6123cf565b6001905092915050565b610e1d6123c7565b73ffffffffffffffffffffffffffffffffffffffff16610e3b61154e565b73ffffffffffffffffffffffffffffffffffffffff1614610e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8890613deb565b60405180910390fd5b81600960000160006101000a81548161ffff021916908361ffff16021790555080600960000160026101000a81548161ffff021916908361ffff1602179055508082610edd9190613e3a565b600d60026101000a81548161ffff021916908361ffff160217905550600a600d60029054906101000a900461ffff1661ffff1610610f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4790613ebc565b60405180910390fd5b5050565b60088060000160009054906101000a900461ffff16908060000160029054906101000a900461ffff16905082565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6110066123c7565b73ffffffffffffffffffffffffffffffffffffffff1661102461154e565b73ffffffffffffffffffffffffffffffffffffffff161461107a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107190613deb565b60405180910390fd5b633b9aca008161108a9190613f10565b600c8190555050565b61109b6123c7565b73ffffffffffffffffffffffffffffffffffffffff166110b961154e565b73ffffffffffffffffffffffffffffffffffffffff161461110f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110690613deb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361117e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117590613fc4565b60405180910390fd5b80600d60056101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6111ca6123c7565b73ffffffffffffffffffffffffffffffffffffffff166111e861154e565b73ffffffffffffffffffffffffffffffffffffffff161461123e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123590613deb565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c590614056565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600d60049054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113f16123c7565b73ffffffffffffffffffffffffffffffffffffffff1661140f61154e565b73ffffffffffffffffffffffffffffffffffffffff1614611465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145c90613deb565b60405180910390fd5b61146f6000612c7c565b565b6114796123c7565b73ffffffffffffffffffffffffffffffffffffffff1661149761154e565b73ffffffffffffffffffffffffffffffffffffffff16146114ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e490613deb565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600b5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6060600480546115ab90613cdc565b80601f01602080910402602001604051908101604052809291908181526020018280546115d790613cdc565b80156116245780601f106115f957610100808354040283529160200191611624565b820191906000526020600020905b81548152906001019060200180831161160757829003601f168201915b5050505050905090565b6116366123c7565b73ffffffffffffffffffffffffffffffffffffffff1661165461154e565b73ffffffffffffffffffffffffffffffffffffffff16146116aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a190613deb565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361173a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117319061410e565b60405180910390fd5b6117448282612d42565b5050565b600080600160006117576123c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180b906141a0565b60405180910390fd5b61182861181f6123c7565b858584036123cf565b600191505092915050565b60006118476118406123c7565b8484612598565b6001905092915050565b600c5481565b60106020528060005260406000206000915054906101000a900460ff1681565b61187f6123c7565b73ffffffffffffffffffffffffffffffffffffffff1661189d61154e565b73ffffffffffffffffffffffffffffffffffffffff16146118f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ea90613deb565b60405180910390fd5b633b9aca00816119039190613f10565b600a8190555050565b60126020528060005260406000206000915054906101000a900460ff1681565b601160009054906101000a900460ff1681565b6119476123c7565b73ffffffffffffffffffffffffffffffffffffffff1661196561154e565b73ffffffffffffffffffffffffffffffffffffffff16146119bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b290613deb565b60405180910390fd5b801515600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503611a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4490614232565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611aea91906137db565b60405180910390a25050565b611afe6123c7565b73ffffffffffffffffffffffffffffffffffffffff16611b1c61154e565b73ffffffffffffffffffffffffffffffffffffffff1614611b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6990613deb565b60405180910390fd5b60005b83839050811015611c115781600e6000868685818110611b9857611b97614252565b5b9050602002016020810190611bad9190613a00565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611c0990614281565b915050611b75565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051611c459392919061438c565b60405180910390a1505050565b611c5a6123c7565b73ffffffffffffffffffffffffffffffffffffffff16611c7861154e565b73ffffffffffffffffffffffffffffffffffffffff1614611cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc590613deb565b60405180910390fd5b6000601160006101000a81548160ff021916908315150217905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611d7a6123c7565b73ffffffffffffffffffffffffffffffffffffffff16611d9861154e565b73ffffffffffffffffffffffffffffffffffffffff1614611dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de590613deb565b60405180910390fd5b80600d60046101000a81548160ff02191690831515021790555050565b60006040518060400160405280601c81526020017f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152509050600030611e506123c7565b604051602001611e61929190614406565b60405160208183030381529060405280519060200120905060008282604051602001611e8e92919061449a565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051611ecb94939291906144d1565b6020604051602081039080840390855afa158015611eed573d6000803e3d6000fd5b5050506020604051035190507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611fac57600160106000611f5a6123c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b50505050505050565b600a5481565b611fc36123c7565b73ffffffffffffffffffffffffffffffffffffffff16611fe161154e565b73ffffffffffffffffffffffffffffffffffffffff1614612037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202e90613deb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036120a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209d90614588565b60405180910390fd5b6120af81612c7c565b50565b6120ba6123c7565b73ffffffffffffffffffffffffffffffffffffffff166120d861154e565b73ffffffffffffffffffffffffffffffffffffffff161461212e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212590613deb565b60405180910390fd5b633b9aca008161213e9190613f10565b600b8190555050565b61214f6123c7565b73ffffffffffffffffffffffffffffffffffffffff1661216d61154e565b73ffffffffffffffffffffffffffffffffffffffff16146121c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ba90613deb565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612231576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612228906145f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036122b85761226d61154e565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156122b2573d6000803e3d6000fd5b506123c4565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016122f891906138fc565b602060405180830381865afa158015612315573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123399190614629565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61235f61154e565b836040518363ffffffff1660e01b815260040161237d929190614656565b6020604051808303816000875af115801561239c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123c09190614694565b5050505b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361243e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243590614733565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036124ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a4906147c5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161258b919061387f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fe90614857565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266d906148e9565b60405180910390fd5b6000810361268f5761268a83836000612e75565b612c77565b600061269a306113a1565b90506000600a548210159050600d60049054906101000a900460ff1680156126cf5750600760149054906101000a900460ff16155b80156127295750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156127325750805b156127f457600a5491506000600d60029054906101000a900461ffff16600d60009054906101000a900461ffff1661276a9190613e3a565b905060006127cc8261ffff166127be600960000160029054906101000a900461ffff16600860000160029054906101000a900461ffff166127ab9190613e3a565b61ffff16876130f490919063ffffffff16565b61310a90919063ffffffff16565b90506127d781613120565b600081856127e59190614909565b90506127f0816131f6565b5050505b600060019050600e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061289b5750600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156128a557600090505b8015612c68576000601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561291b57600d60029054906101000a900461ffff1661ffff169050612986565b601260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561298557600d60009054906101000a900461ffff1661ffff1690505b5b600f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612a2a5750600f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c1b57601260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612b7057600b54851115612ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abd90614989565b60405180910390fd5b601160009054906101000a900460ff1615612b6f5760011515601060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514612b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b65906149f5565b60405180910390fd5b5b5b601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612c1a57600c5485612bce886113a1565b612bd89190613edc565b1115612c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1090614a61565b60405180910390fd5b5b5b6000612c436064612c3584896130f490919063ffffffff16565b61310a90919063ffffffff16565b9050612c5881876132e890919063ffffffff16565b9550612c65883083612e75565b50505b612c73868686612e75565b5050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503612dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dcb90614af3565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612edb90614b85565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4a90614c17565b60405180910390fd5b612f5e8383836132fe565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fdb90614ca9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130779190613edc565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516130db919061387f565b60405180910390a36130ee848484613303565b50505050565b600081836131029190613f10565b905092915050565b600081836131189190614cf8565b905092915050565b6001600760146101000a81548160ff021916908315150217905550600061315160028361310a90919063ffffffff16565b9050600061316882846132e890919063ffffffff16565b9050600047905061317883613308565b600061318d82476132e890919063ffffffff16565b9050613199838261354b565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618482856040516131cc93929190614d29565b60405180910390a1505050506000600760146101000a81548160ff02191690831515021790555050565b6001600760146101000a81548160ff021916908315150217905550600047905061321f82613308565b6000814761322d9190614909565b90506000600d60059054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161327790614d86565b60006040518083038185875af1925050503d80600081146132b4576040519150601f19603f3d011682016040523d82523d6000602084013e6132b9565b606091505b50509050806132c757600080fd5b5050506000600760146101000a81548160ff02191690831515021790555050565b600081836132f69190614909565b905092915050565b505050565b505050565b6000600267ffffffffffffffff81111561332557613324614d9b565b5b6040519080825280602002602001820160405280156133535781602001602082028036833780820191505090505b509050308160008151811061336b5761336a614252565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613412573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134369190614ddf565b8160018151811061344a57613449614252565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506134b130600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846123cf565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613515959493929190614ecd565b600060405180830381600087803b15801561352f57600080fd5b505af1158015613543573d6000803e3d6000fd5b505050505050565b61357830600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846123cf565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806135c461154e565b426040518863ffffffff1660e01b81526004016135e696959493929190614f27565b60606040518083038185885af1158015613604573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906136299190614f88565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561366a57808201518184015260208101905061364f565b60008484015250505050565b6000601f19601f8301169050919050565b600061369282613630565b61369c818561363b565b93506136ac81856020860161364c565b6136b581613676565b840191505092915050565b600060208201905081810360008301526136da8184613687565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613717826136ec565b9050919050565b6137278161370c565b811461373257600080fd5b50565b6000813590506137448161371e565b92915050565b6000819050919050565b61375d8161374a565b811461376857600080fd5b50565b60008135905061377a81613754565b92915050565b60008060408385031215613797576137966136e2565b5b60006137a585828601613735565b92505060206137b68582860161376b565b9150509250929050565b60008115159050919050565b6137d5816137c0565b82525050565b60006020820190506137f060008301846137cc565b92915050565b6000819050919050565b600061381b613816613811846136ec565b6137f6565b6136ec565b9050919050565b600061382d82613800565b9050919050565b600061383f82613822565b9050919050565b61384f81613834565b82525050565b600060208201905061386a6000830184613846565b92915050565b6138798161374a565b82525050565b60006020820190506138946000830184613870565b92915050565b6000806000606084860312156138b3576138b26136e2565b5b60006138c186828701613735565b93505060206138d286828701613735565b92505060406138e38682870161376b565b9150509250925092565b6138f68161370c565b82525050565b600060208201905061391160008301846138ed565b92915050565b600061ffff82169050919050565b61392e81613917565b82525050565b60006040820190506139496000830185613925565b6139566020830184613925565b9392505050565b61396681613917565b811461397157600080fd5b50565b6000813590506139838161395d565b92915050565b600080604083850312156139a05761399f6136e2565b5b60006139ae85828601613974565b92505060206139bf85828601613974565b9150509250929050565b600060ff82169050919050565b6139df816139c9565b82525050565b60006020820190506139fa60008301846139d6565b92915050565b600060208284031215613a1657613a156136e2565b5b6000613a2484828501613735565b91505092915050565b600060208284031215613a4357613a426136e2565b5b6000613a518482850161376b565b91505092915050565b613a63816137c0565b8114613a6e57600080fd5b50565b600081359050613a8081613a5a565b92915050565b60008060408385031215613a9d57613a9c6136e2565b5b6000613aab85828601613735565b9250506020613abc85828601613a71565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112613aeb57613aea613ac6565b5b8235905067ffffffffffffffff811115613b0857613b07613acb565b5b602083019150836020820283011115613b2457613b23613ad0565b5b9250929050565b600080600060408486031215613b4457613b436136e2565b5b600084013567ffffffffffffffff811115613b6257613b616136e7565b5b613b6e86828701613ad5565b93509350506020613b8186828701613a71565b9150509250925092565b60008060408385031215613ba257613ba16136e2565b5b6000613bb085828601613735565b9250506020613bc185828601613735565b9150509250929050565b600060208284031215613be157613be06136e2565b5b6000613bef84828501613a71565b91505092915050565b613c01816139c9565b8114613c0c57600080fd5b50565b600081359050613c1e81613bf8565b92915050565b6000819050919050565b613c3781613c24565b8114613c4257600080fd5b50565b600081359050613c5481613c2e565b92915050565b600080600060608486031215613c7357613c726136e2565b5b6000613c8186828701613c0f565b9350506020613c9286828701613c45565b9250506040613ca386828701613c45565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613cf457607f821691505b602082108103613d0757613d06613cad565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613d6960288361363b565b9150613d7482613d0d565b604082019050919050565b60006020820190508181036000830152613d9881613d5c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613dd560208361363b565b9150613de082613d9f565b602082019050919050565b60006020820190508181036000830152613e0481613dc8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613e4582613917565b9150613e5083613917565b9250828201905061ffff811115613e6a57613e69613e0b565b5b92915050565b7f6d617820666565732073686f756c64206265206c657373207468616e20313025600082015250565b6000613ea660208361363b565b9150613eb182613e70565b602082019050919050565b60006020820190508181036000830152613ed581613e99565b9050919050565b6000613ee78261374a565b9150613ef28361374a565b9250828201905080821115613f0a57613f09613e0b565b5b92915050565b6000613f1b8261374a565b9150613f268361374a565b9250828202613f348161374a565b91508282048414831517613f4b57613f4a613e0b565b5b5092915050565b7f6d61726b6574696e672077616c6c65742063616e27742062652061207a65726f60008201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b6000613fae60288361363b565b9150613fb982613f52565b604082019050919050565b60006020820190508181036000830152613fdd81613fa1565b9050919050565b7f546f6b656e3a2054686520726f7574657220616c72656164792068617320746860008201527f6174206164647265737300000000000000000000000000000000000000000000602082015250565b6000614040602a8361363b565b915061404b82613fe4565b604082019050919050565b6000602082019050818103600083015261406f81614033565b9050919050565b7f546f6b656e3a205468652050616e63616b655377617020706169722063616e6e60008201527f6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b60208201527f65744d616b657250616972730000000000000000000000000000000000000000604082015250565b60006140f8604c8361363b565b915061410382614076565b606082019050919050565b60006020820190508181036000830152614127816140eb565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061418a60258361363b565b91506141958261412e565b604082019050919050565b600060208201905081810360008301526141b98161417d565b9050919050565b7f546f6b656e3a204163636f756e7420697320616c72656164792074686520766160008201527f6c7565206f6620276578636c7564656427000000000000000000000000000000602082015250565b600061421c60318361363b565b9150614227826141c0565b604082019050919050565b6000602082019050818103600083015261424b8161420f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061428c8261374a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036142be576142bd613e0b565b5b600182019050919050565b600082825260208201905092915050565b6000819050919050565b6142ed8161370c565b82525050565b60006142ff83836142e4565b60208301905092915050565b600061431a6020840184613735565b905092915050565b6000602082019050919050565b600061433b83856142c9565b9350614346826142da565b8060005b8581101561437f5761435c828461430b565b61436688826142f3565b975061437183614322565b92505060018101905061434a565b5085925050509392505050565b600060408201905081810360008301526143a781858761432f565b90506143b660208301846137cc565b949350505050565b60008160601b9050919050565b60006143d6826143be565b9050919050565b60006143e8826143cb565b9050919050565b6144006143fb8261370c565b6143dd565b82525050565b600061441282856143ef565b60148201915061442282846143ef565b6014820191508190509392505050565b600081519050919050565b600081905092915050565b600061445382614432565b61445d818561443d565b935061446d81856020860161364c565b80840191505092915050565b6000819050919050565b61449461448f82613c24565b614479565b82525050565b60006144a68285614448565b91506144b28284614483565b6020820191508190509392505050565b6144cb81613c24565b82525050565b60006080820190506144e660008301876144c2565b6144f360208301866139d6565b61450060408301856144c2565b61450d60608301846144c2565b95945050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061457260268361363b565b915061457d82614516565b604082019050919050565b600060208201905081810360008301526145a181614565565b9050919050565b7f4e6f207275677300000000000000000000000000000000000000000000000000600082015250565b60006145de60078361363b565b91506145e9826145a8565b602082019050919050565b6000602082019050818103600083015261460d816145d1565b9050919050565b60008151905061462381613754565b92915050565b60006020828403121561463f5761463e6136e2565b5b600061464d84828501614614565b91505092915050565b600060408201905061466b60008301856138ed565b6146786020830184613870565b9392505050565b60008151905061468e81613a5a565b92915050565b6000602082840312156146aa576146a96136e2565b5b60006146b88482850161467f565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061471d60248361363b565b9150614728826146c1565b604082019050919050565b6000602082019050818103600083015261474c81614710565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006147af60228361363b565b91506147ba82614753565b604082019050919050565b600060208201905081810360008301526147de816147a2565b9050919050565b7f546f6b656e3a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061484160258361363b565b915061484c826147e5565b604082019050919050565b6000602082019050818103600083015261487081614834565b9050919050565b7f546f6b656e3a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006148d360238361363b565b91506148de82614877565b604082019050919050565b60006020820190508181036000830152614902816148c6565b9050919050565b60006149148261374a565b915061491f8361374a565b925082820390508181111561493757614936613e0b565b5b92915050565b7f4275792065786365656473206c696d6974000000000000000000000000000000600082015250565b600061497360118361363b565b915061497e8261493d565b602082019050919050565b600060208201905081810360008301526149a281614966565b9050919050565b7f56657269667920796f75206172652068756d616e206669727374000000000000600082015250565b60006149df601a8361363b565b91506149ea826149a9565b602082019050919050565b60006020820190508181036000830152614a0e816149d2565b9050919050565b7f42616c616e63652065786365656473206c696d69740000000000000000000000600082015250565b6000614a4b60158361363b565b9150614a5682614a15565b602082019050919050565b60006020820190508181036000830152614a7a81614a3e565b9050919050565b7f546f6b656e3a204175746f6d61746564206d61726b6574206d616b657220706160008201527f697220697320616c72656164792073657420746f20746861742076616c756500602082015250565b6000614add603f8361363b565b9150614ae882614a81565b604082019050919050565b60006020820190508181036000830152614b0c81614ad0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614b6f60258361363b565b9150614b7a82614b13565b604082019050919050565b60006020820190508181036000830152614b9e81614b62565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614c0160238361363b565b9150614c0c82614ba5565b604082019050919050565b60006020820190508181036000830152614c3081614bf4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614c9360268361363b565b9150614c9e82614c37565b604082019050919050565b60006020820190508181036000830152614cc281614c86565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614d038261374a565b9150614d0e8361374a565b925082614d1e57614d1d614cc9565b5b828204905092915050565b6000606082019050614d3e6000830186613870565b614d4b6020830185613870565b614d586040830184613870565b949350505050565b50565b6000614d7060008361443d565b9150614d7b82614d60565b600082019050919050565b6000614d9182614d63565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050614dd98161371e565b92915050565b600060208284031215614df557614df46136e2565b5b6000614e0384828501614dca565b91505092915050565b6000819050919050565b6000614e31614e2c614e2784614e0c565b6137f6565b61374a565b9050919050565b614e4181614e16565b82525050565b600081519050919050565b6000819050602082019050919050565b6000602082019050919050565b6000614e7a82614e47565b614e8481856142c9565b9350614e8f83614e52565b8060005b83811015614ec0578151614ea788826142f3565b9750614eb283614e62565b925050600181019050614e93565b5085935050505092915050565b600060a082019050614ee26000830188613870565b614eef6020830187614e38565b8181036040830152614f018186614e6f565b9050614f1060608301856138ed565b614f1d6080830184613870565b9695505050505050565b600060c082019050614f3c60008301896138ed565b614f496020830188613870565b614f566040830187614e38565b614f636060830186614e38565b614f7060808301856138ed565b614f7d60a0830184613870565b979650505050505050565b600080600060608486031215614fa157614fa06136e2565b5b6000614faf86828701614614565b9350506020614fc086828701614614565b9250506040614fd186828701614614565b915050925092509256fea2646970667358221220fa5a912fe81290057ef4353dc111cde8421c3d4a9f1da274b1d6e2ff73e1c66064736f6c63430008110033

Deployed Bytecode

0x6080604052600436106102605760003560e01c806388e765ff11610144578063bff09d69116100b6578063e01af92c1161007a578063e01af92c1461091d578063e101c21a14610946578063e2f456051461096f578063f2fde38b1461099a578063f34eb0b8146109c3578063f9d0831a146109ec57610267565b8063bff09d691461084c578063c024666814610877578063c492f046146108a0578063dc83d1a8146108c9578063dd62ed3e146108e057610267565b8063a457c2d711610108578063a457c2d714610704578063a9059cbb14610741578063aa4bde281461077e578063aedabd7e146107a9578063afa4f3b2146107e6578063b62496f51461080f57610267565b806388e765ff1461062f5780638da5cb5b1461065a57806392da702d1461068557806395d89b41146106b05780639a7a23d6146106db57610267565b80633c310f5e116101dd5780635d098b38116101a15780635d098b381461053557806365b8dbc01461055e5780636ddd17131461058757806370a08231146105b2578063715018a6146105ef5780637537a47f1461060657610267565b80633c310f5e1461044f578063470624021461047857806349bd5a5e146104a45780634fbee193146104cf5780635d0044ca1461050c57610267565b806327c8f8351161022457806327c8f835146103675780632b14ca56146103925780632ecd7e8f146103be578063313ce567146103e7578063395093511461041257610267565b806306fdde031461026c578063095ea7b3146102975780631694505e146102d457806318160ddd146102ff57806323b872dd1461032a57610267565b3661026757005b600080fd5b34801561027857600080fd5b50610281610a15565b60405161028e91906136c0565b60405180910390f35b3480156102a357600080fd5b506102be60048036038101906102b99190613780565b610aa7565b6040516102cb91906137db565b60405180910390f35b3480156102e057600080fd5b506102e9610ac5565b6040516102f69190613855565b60405180910390f35b34801561030b57600080fd5b50610314610aeb565b604051610321919061387f565b60405180910390f35b34801561033657600080fd5b50610351600480360381019061034c919061389a565b610af5565b60405161035e91906137db565b60405180910390f35b34801561037357600080fd5b5061037c610bed565b60405161038991906138fc565b60405180910390f35b34801561039e57600080fd5b506103a7610bf3565b6040516103b5929190613934565b60405180910390f35b3480156103ca57600080fd5b506103e560048036038101906103e09190613989565b610c21565b005b3480156103f357600080fd5b506103fc610d60565b60405161040991906139e5565b60405180910390f35b34801561041e57600080fd5b5061043960048036038101906104349190613780565b610d69565b60405161044691906137db565b60405180910390f35b34801561045b57600080fd5b5061047660048036038101906104719190613989565b610e15565b005b34801561048457600080fd5b5061048d610f54565b60405161049b929190613934565b60405180910390f35b3480156104b057600080fd5b506104b9610f82565b6040516104c691906138fc565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f19190613a00565b610fa8565b60405161050391906137db565b60405180910390f35b34801561051857600080fd5b50610533600480360381019061052e9190613a2d565b610ffe565b005b34801561054157600080fd5b5061055c60048036038101906105579190613a00565b611093565b005b34801561056a57600080fd5b5061058560048036038101906105809190613a00565b6111c2565b005b34801561059357600080fd5b5061059c61138e565b6040516105a991906137db565b60405180910390f35b3480156105be57600080fd5b506105d960048036038101906105d49190613a00565b6113a1565b6040516105e6919061387f565b60405180910390f35b3480156105fb57600080fd5b506106046113e9565b005b34801561061257600080fd5b5061062d60048036038101906106289190613a86565b611471565b005b34801561063b57600080fd5b50610644611548565b604051610651919061387f565b60405180910390f35b34801561066657600080fd5b5061066f61154e565b60405161067c91906138fc565b60405180910390f35b34801561069157600080fd5b5061069a611578565b6040516106a791906138fc565b60405180910390f35b3480156106bc57600080fd5b506106c561159c565b6040516106d291906136c0565b60405180910390f35b3480156106e757600080fd5b5061070260048036038101906106fd9190613a86565b61162e565b005b34801561071057600080fd5b5061072b60048036038101906107269190613780565b611748565b60405161073891906137db565b60405180910390f35b34801561074d57600080fd5b5061076860048036038101906107639190613780565b611833565b60405161077591906137db565b60405180910390f35b34801561078a57600080fd5b50610793611851565b6040516107a0919061387f565b60405180910390f35b3480156107b557600080fd5b506107d060048036038101906107cb9190613a00565b611857565b6040516107dd91906137db565b60405180910390f35b3480156107f257600080fd5b5061080d60048036038101906108089190613a2d565b611877565b005b34801561081b57600080fd5b5061083660048036038101906108319190613a00565b61190c565b60405161084391906137db565b60405180910390f35b34801561085857600080fd5b5061086161192c565b60405161086e91906137db565b60405180910390f35b34801561088357600080fd5b5061089e60048036038101906108999190613a86565b61193f565b005b3480156108ac57600080fd5b506108c760048036038101906108c29190613b2b565b611af6565b005b3480156108d557600080fd5b506108de611c52565b005b3480156108ec57600080fd5b5061090760048036038101906109029190613b8b565b611ceb565b604051610914919061387f565b60405180910390f35b34801561092957600080fd5b50610944600480360381019061093f9190613bcb565b611d72565b005b34801561095257600080fd5b5061096d60048036038101906109689190613c5a565b611e0b565b005b34801561097b57600080fd5b50610984611fb5565b604051610991919061387f565b60405180910390f35b3480156109a657600080fd5b506109c160048036038101906109bc9190613a00565b611fbb565b005b3480156109cf57600080fd5b506109ea60048036038101906109e59190613a2d565b6120b2565b005b3480156109f857600080fd5b50610a136004803603810190610a0e9190613a00565b612147565b005b606060038054610a2490613cdc565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5090613cdc565b8015610a9d5780601f10610a7257610100808354040283529160200191610a9d565b820191906000526020600020905b815481529060010190602001808311610a8057829003601f168201915b5050505050905090565b6000610abb610ab46123c7565b84846123cf565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b6000610b02848484612598565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b4d6123c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc490613d7f565b60405180910390fd5b610be185610bd96123c7565b8584036123cf565b60019150509392505050565b61dead81565b60098060000160009054906101000a900461ffff16908060000160029054906101000a900461ffff16905082565b610c296123c7565b73ffffffffffffffffffffffffffffffffffffffff16610c4761154e565b73ffffffffffffffffffffffffffffffffffffffff1614610c9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9490613deb565b60405180910390fd5b81600860000160006101000a81548161ffff021916908361ffff16021790555080600860000160026101000a81548161ffff021916908361ffff1602179055508082610ce99190613e3a565b600d60006101000a81548161ffff021916908361ffff160217905550600a600d60009054906101000a900461ffff1661ffff1610610d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5390613ebc565b60405180910390fd5b5050565b60006009905090565b6000610e0b610d766123c7565b848460016000610d846123c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e069190613edc565b6123cf565b6001905092915050565b610e1d6123c7565b73ffffffffffffffffffffffffffffffffffffffff16610e3b61154e565b73ffffffffffffffffffffffffffffffffffffffff1614610e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8890613deb565b60405180910390fd5b81600960000160006101000a81548161ffff021916908361ffff16021790555080600960000160026101000a81548161ffff021916908361ffff1602179055508082610edd9190613e3a565b600d60026101000a81548161ffff021916908361ffff160217905550600a600d60029054906101000a900461ffff1661ffff1610610f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4790613ebc565b60405180910390fd5b5050565b60088060000160009054906101000a900461ffff16908060000160029054906101000a900461ffff16905082565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6110066123c7565b73ffffffffffffffffffffffffffffffffffffffff1661102461154e565b73ffffffffffffffffffffffffffffffffffffffff161461107a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107190613deb565b60405180910390fd5b633b9aca008161108a9190613f10565b600c8190555050565b61109b6123c7565b73ffffffffffffffffffffffffffffffffffffffff166110b961154e565b73ffffffffffffffffffffffffffffffffffffffff161461110f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110690613deb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361117e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117590613fc4565b60405180910390fd5b80600d60056101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6111ca6123c7565b73ffffffffffffffffffffffffffffffffffffffff166111e861154e565b73ffffffffffffffffffffffffffffffffffffffff161461123e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123590613deb565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c590614056565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600d60049054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113f16123c7565b73ffffffffffffffffffffffffffffffffffffffff1661140f61154e565b73ffffffffffffffffffffffffffffffffffffffff1614611465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145c90613deb565b60405180910390fd5b61146f6000612c7c565b565b6114796123c7565b73ffffffffffffffffffffffffffffffffffffffff1661149761154e565b73ffffffffffffffffffffffffffffffffffffffff16146114ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e490613deb565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600b5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f00000000000000000000000048164fff73685a241f35f79eaba0074b863d4cbd81565b6060600480546115ab90613cdc565b80601f01602080910402602001604051908101604052809291908181526020018280546115d790613cdc565b80156116245780601f106115f957610100808354040283529160200191611624565b820191906000526020600020905b81548152906001019060200180831161160757829003601f168201915b5050505050905090565b6116366123c7565b73ffffffffffffffffffffffffffffffffffffffff1661165461154e565b73ffffffffffffffffffffffffffffffffffffffff16146116aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a190613deb565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361173a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117319061410e565b60405180910390fd5b6117448282612d42565b5050565b600080600160006117576123c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180b906141a0565b60405180910390fd5b61182861181f6123c7565b858584036123cf565b600191505092915050565b60006118476118406123c7565b8484612598565b6001905092915050565b600c5481565b60106020528060005260406000206000915054906101000a900460ff1681565b61187f6123c7565b73ffffffffffffffffffffffffffffffffffffffff1661189d61154e565b73ffffffffffffffffffffffffffffffffffffffff16146118f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ea90613deb565b60405180910390fd5b633b9aca00816119039190613f10565b600a8190555050565b60126020528060005260406000206000915054906101000a900460ff1681565b601160009054906101000a900460ff1681565b6119476123c7565b73ffffffffffffffffffffffffffffffffffffffff1661196561154e565b73ffffffffffffffffffffffffffffffffffffffff16146119bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b290613deb565b60405180910390fd5b801515600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503611a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4490614232565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611aea91906137db565b60405180910390a25050565b611afe6123c7565b73ffffffffffffffffffffffffffffffffffffffff16611b1c61154e565b73ffffffffffffffffffffffffffffffffffffffff1614611b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6990613deb565b60405180910390fd5b60005b83839050811015611c115781600e6000868685818110611b9857611b97614252565b5b9050602002016020810190611bad9190613a00565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611c0990614281565b915050611b75565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051611c459392919061438c565b60405180910390a1505050565b611c5a6123c7565b73ffffffffffffffffffffffffffffffffffffffff16611c7861154e565b73ffffffffffffffffffffffffffffffffffffffff1614611cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc590613deb565b60405180910390fd5b6000601160006101000a81548160ff021916908315150217905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611d7a6123c7565b73ffffffffffffffffffffffffffffffffffffffff16611d9861154e565b73ffffffffffffffffffffffffffffffffffffffff1614611dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de590613deb565b60405180910390fd5b80600d60046101000a81548160ff02191690831515021790555050565b60006040518060400160405280601c81526020017f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152509050600030611e506123c7565b604051602001611e61929190614406565b60405160208183030381529060405280519060200120905060008282604051602001611e8e92919061449a565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051611ecb94939291906144d1565b6020604051602081039080840390855afa158015611eed573d6000803e3d6000fd5b5050506020604051035190507f00000000000000000000000048164fff73685a241f35f79eaba0074b863d4cbd73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611fac57600160106000611f5a6123c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b50505050505050565b600a5481565b611fc36123c7565b73ffffffffffffffffffffffffffffffffffffffff16611fe161154e565b73ffffffffffffffffffffffffffffffffffffffff1614612037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202e90613deb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036120a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209d90614588565b60405180910390fd5b6120af81612c7c565b50565b6120ba6123c7565b73ffffffffffffffffffffffffffffffffffffffff166120d861154e565b73ffffffffffffffffffffffffffffffffffffffff161461212e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212590613deb565b60405180910390fd5b633b9aca008161213e9190613f10565b600b8190555050565b61214f6123c7565b73ffffffffffffffffffffffffffffffffffffffff1661216d61154e565b73ffffffffffffffffffffffffffffffffffffffff16146121c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ba90613deb565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612231576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612228906145f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036122b85761226d61154e565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156122b2573d6000803e3d6000fd5b506123c4565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016122f891906138fc565b602060405180830381865afa158015612315573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123399190614629565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61235f61154e565b836040518363ffffffff1660e01b815260040161237d929190614656565b6020604051808303816000875af115801561239c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123c09190614694565b5050505b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361243e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243590614733565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036124ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a4906147c5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161258b919061387f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fe90614857565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266d906148e9565b60405180910390fd5b6000810361268f5761268a83836000612e75565b612c77565b600061269a306113a1565b90506000600a548210159050600d60049054906101000a900460ff1680156126cf5750600760149054906101000a900460ff16155b80156127295750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156127325750805b156127f457600a5491506000600d60029054906101000a900461ffff16600d60009054906101000a900461ffff1661276a9190613e3a565b905060006127cc8261ffff166127be600960000160029054906101000a900461ffff16600860000160029054906101000a900461ffff166127ab9190613e3a565b61ffff16876130f490919063ffffffff16565b61310a90919063ffffffff16565b90506127d781613120565b600081856127e59190614909565b90506127f0816131f6565b5050505b600060019050600e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061289b5750600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156128a557600090505b8015612c68576000601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561291b57600d60029054906101000a900461ffff1661ffff169050612986565b601260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561298557600d60009054906101000a900461ffff1661ffff1690505b5b600f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612a2a5750600f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c1b57601260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612b7057600b54851115612ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abd90614989565b60405180910390fd5b601160009054906101000a900460ff1615612b6f5760011515601060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514612b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b65906149f5565b60405180910390fd5b5b5b601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612c1a57600c5485612bce886113a1565b612bd89190613edc565b1115612c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1090614a61565b60405180910390fd5b5b5b6000612c436064612c3584896130f490919063ffffffff16565b61310a90919063ffffffff16565b9050612c5881876132e890919063ffffffff16565b9550612c65883083612e75565b50505b612c73868686612e75565b5050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503612dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dcb90614af3565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612edb90614b85565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4a90614c17565b60405180910390fd5b612f5e8383836132fe565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fdb90614ca9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130779190613edc565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516130db919061387f565b60405180910390a36130ee848484613303565b50505050565b600081836131029190613f10565b905092915050565b600081836131189190614cf8565b905092915050565b6001600760146101000a81548160ff021916908315150217905550600061315160028361310a90919063ffffffff16565b9050600061316882846132e890919063ffffffff16565b9050600047905061317883613308565b600061318d82476132e890919063ffffffff16565b9050613199838261354b565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618482856040516131cc93929190614d29565b60405180910390a1505050506000600760146101000a81548160ff02191690831515021790555050565b6001600760146101000a81548160ff021916908315150217905550600047905061321f82613308565b6000814761322d9190614909565b90506000600d60059054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161327790614d86565b60006040518083038185875af1925050503d80600081146132b4576040519150601f19603f3d011682016040523d82523d6000602084013e6132b9565b606091505b50509050806132c757600080fd5b5050506000600760146101000a81548160ff02191690831515021790555050565b600081836132f69190614909565b905092915050565b505050565b505050565b6000600267ffffffffffffffff81111561332557613324614d9b565b5b6040519080825280602002602001820160405280156133535781602001602082028036833780820191505090505b509050308160008151811061336b5761336a614252565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613412573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134369190614ddf565b8160018151811061344a57613449614252565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506134b130600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846123cf565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613515959493929190614ecd565b600060405180830381600087803b15801561352f57600080fd5b505af1158015613543573d6000803e3d6000fd5b505050505050565b61357830600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846123cf565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806135c461154e565b426040518863ffffffff1660e01b81526004016135e696959493929190614f27565b60606040518083038185885af1158015613604573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906136299190614f88565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561366a57808201518184015260208101905061364f565b60008484015250505050565b6000601f19601f8301169050919050565b600061369282613630565b61369c818561363b565b93506136ac81856020860161364c565b6136b581613676565b840191505092915050565b600060208201905081810360008301526136da8184613687565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613717826136ec565b9050919050565b6137278161370c565b811461373257600080fd5b50565b6000813590506137448161371e565b92915050565b6000819050919050565b61375d8161374a565b811461376857600080fd5b50565b60008135905061377a81613754565b92915050565b60008060408385031215613797576137966136e2565b5b60006137a585828601613735565b92505060206137b68582860161376b565b9150509250929050565b60008115159050919050565b6137d5816137c0565b82525050565b60006020820190506137f060008301846137cc565b92915050565b6000819050919050565b600061381b613816613811846136ec565b6137f6565b6136ec565b9050919050565b600061382d82613800565b9050919050565b600061383f82613822565b9050919050565b61384f81613834565b82525050565b600060208201905061386a6000830184613846565b92915050565b6138798161374a565b82525050565b60006020820190506138946000830184613870565b92915050565b6000806000606084860312156138b3576138b26136e2565b5b60006138c186828701613735565b93505060206138d286828701613735565b92505060406138e38682870161376b565b9150509250925092565b6138f68161370c565b82525050565b600060208201905061391160008301846138ed565b92915050565b600061ffff82169050919050565b61392e81613917565b82525050565b60006040820190506139496000830185613925565b6139566020830184613925565b9392505050565b61396681613917565b811461397157600080fd5b50565b6000813590506139838161395d565b92915050565b600080604083850312156139a05761399f6136e2565b5b60006139ae85828601613974565b92505060206139bf85828601613974565b9150509250929050565b600060ff82169050919050565b6139df816139c9565b82525050565b60006020820190506139fa60008301846139d6565b92915050565b600060208284031215613a1657613a156136e2565b5b6000613a2484828501613735565b91505092915050565b600060208284031215613a4357613a426136e2565b5b6000613a518482850161376b565b91505092915050565b613a63816137c0565b8114613a6e57600080fd5b50565b600081359050613a8081613a5a565b92915050565b60008060408385031215613a9d57613a9c6136e2565b5b6000613aab85828601613735565b9250506020613abc85828601613a71565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112613aeb57613aea613ac6565b5b8235905067ffffffffffffffff811115613b0857613b07613acb565b5b602083019150836020820283011115613b2457613b23613ad0565b5b9250929050565b600080600060408486031215613b4457613b436136e2565b5b600084013567ffffffffffffffff811115613b6257613b616136e7565b5b613b6e86828701613ad5565b93509350506020613b8186828701613a71565b9150509250925092565b60008060408385031215613ba257613ba16136e2565b5b6000613bb085828601613735565b9250506020613bc185828601613735565b9150509250929050565b600060208284031215613be157613be06136e2565b5b6000613bef84828501613a71565b91505092915050565b613c01816139c9565b8114613c0c57600080fd5b50565b600081359050613c1e81613bf8565b92915050565b6000819050919050565b613c3781613c24565b8114613c4257600080fd5b50565b600081359050613c5481613c2e565b92915050565b600080600060608486031215613c7357613c726136e2565b5b6000613c8186828701613c0f565b9350506020613c9286828701613c45565b9250506040613ca386828701613c45565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613cf457607f821691505b602082108103613d0757613d06613cad565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613d6960288361363b565b9150613d7482613d0d565b604082019050919050565b60006020820190508181036000830152613d9881613d5c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613dd560208361363b565b9150613de082613d9f565b602082019050919050565b60006020820190508181036000830152613e0481613dc8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613e4582613917565b9150613e5083613917565b9250828201905061ffff811115613e6a57613e69613e0b565b5b92915050565b7f6d617820666565732073686f756c64206265206c657373207468616e20313025600082015250565b6000613ea660208361363b565b9150613eb182613e70565b602082019050919050565b60006020820190508181036000830152613ed581613e99565b9050919050565b6000613ee78261374a565b9150613ef28361374a565b9250828201905080821115613f0a57613f09613e0b565b5b92915050565b6000613f1b8261374a565b9150613f268361374a565b9250828202613f348161374a565b91508282048414831517613f4b57613f4a613e0b565b5b5092915050565b7f6d61726b6574696e672077616c6c65742063616e27742062652061207a65726f60008201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b6000613fae60288361363b565b9150613fb982613f52565b604082019050919050565b60006020820190508181036000830152613fdd81613fa1565b9050919050565b7f546f6b656e3a2054686520726f7574657220616c72656164792068617320746860008201527f6174206164647265737300000000000000000000000000000000000000000000602082015250565b6000614040602a8361363b565b915061404b82613fe4565b604082019050919050565b6000602082019050818103600083015261406f81614033565b9050919050565b7f546f6b656e3a205468652050616e63616b655377617020706169722063616e6e60008201527f6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b60208201527f65744d616b657250616972730000000000000000000000000000000000000000604082015250565b60006140f8604c8361363b565b915061410382614076565b606082019050919050565b60006020820190508181036000830152614127816140eb565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061418a60258361363b565b91506141958261412e565b604082019050919050565b600060208201905081810360008301526141b98161417d565b9050919050565b7f546f6b656e3a204163636f756e7420697320616c72656164792074686520766160008201527f6c7565206f6620276578636c7564656427000000000000000000000000000000602082015250565b600061421c60318361363b565b9150614227826141c0565b604082019050919050565b6000602082019050818103600083015261424b8161420f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061428c8261374a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036142be576142bd613e0b565b5b600182019050919050565b600082825260208201905092915050565b6000819050919050565b6142ed8161370c565b82525050565b60006142ff83836142e4565b60208301905092915050565b600061431a6020840184613735565b905092915050565b6000602082019050919050565b600061433b83856142c9565b9350614346826142da565b8060005b8581101561437f5761435c828461430b565b61436688826142f3565b975061437183614322565b92505060018101905061434a565b5085925050509392505050565b600060408201905081810360008301526143a781858761432f565b90506143b660208301846137cc565b949350505050565b60008160601b9050919050565b60006143d6826143be565b9050919050565b60006143e8826143cb565b9050919050565b6144006143fb8261370c565b6143dd565b82525050565b600061441282856143ef565b60148201915061442282846143ef565b6014820191508190509392505050565b600081519050919050565b600081905092915050565b600061445382614432565b61445d818561443d565b935061446d81856020860161364c565b80840191505092915050565b6000819050919050565b61449461448f82613c24565b614479565b82525050565b60006144a68285614448565b91506144b28284614483565b6020820191508190509392505050565b6144cb81613c24565b82525050565b60006080820190506144e660008301876144c2565b6144f360208301866139d6565b61450060408301856144c2565b61450d60608301846144c2565b95945050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061457260268361363b565b915061457d82614516565b604082019050919050565b600060208201905081810360008301526145a181614565565b9050919050565b7f4e6f207275677300000000000000000000000000000000000000000000000000600082015250565b60006145de60078361363b565b91506145e9826145a8565b602082019050919050565b6000602082019050818103600083015261460d816145d1565b9050919050565b60008151905061462381613754565b92915050565b60006020828403121561463f5761463e6136e2565b5b600061464d84828501614614565b91505092915050565b600060408201905061466b60008301856138ed565b6146786020830184613870565b9392505050565b60008151905061468e81613a5a565b92915050565b6000602082840312156146aa576146a96136e2565b5b60006146b88482850161467f565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061471d60248361363b565b9150614728826146c1565b604082019050919050565b6000602082019050818103600083015261474c81614710565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006147af60228361363b565b91506147ba82614753565b604082019050919050565b600060208201905081810360008301526147de816147a2565b9050919050565b7f546f6b656e3a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061484160258361363b565b915061484c826147e5565b604082019050919050565b6000602082019050818103600083015261487081614834565b9050919050565b7f546f6b656e3a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006148d360238361363b565b91506148de82614877565b604082019050919050565b60006020820190508181036000830152614902816148c6565b9050919050565b60006149148261374a565b915061491f8361374a565b925082820390508181111561493757614936613e0b565b5b92915050565b7f4275792065786365656473206c696d6974000000000000000000000000000000600082015250565b600061497360118361363b565b915061497e8261493d565b602082019050919050565b600060208201905081810360008301526149a281614966565b9050919050565b7f56657269667920796f75206172652068756d616e206669727374000000000000600082015250565b60006149df601a8361363b565b91506149ea826149a9565b602082019050919050565b60006020820190508181036000830152614a0e816149d2565b9050919050565b7f42616c616e63652065786365656473206c696d69740000000000000000000000600082015250565b6000614a4b60158361363b565b9150614a5682614a15565b602082019050919050565b60006020820190508181036000830152614a7a81614a3e565b9050919050565b7f546f6b656e3a204175746f6d61746564206d61726b6574206d616b657220706160008201527f697220697320616c72656164792073657420746f20746861742076616c756500602082015250565b6000614add603f8361363b565b9150614ae882614a81565b604082019050919050565b60006020820190508181036000830152614b0c81614ad0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614b6f60258361363b565b9150614b7a82614b13565b604082019050919050565b60006020820190508181036000830152614b9e81614b62565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614c0160238361363b565b9150614c0c82614ba5565b604082019050919050565b60006020820190508181036000830152614c3081614bf4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614c9360268361363b565b9150614c9e82614c37565b604082019050919050565b60006020820190508181036000830152614cc281614c86565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614d038261374a565b9150614d0e8361374a565b925082614d1e57614d1d614cc9565b5b828204905092915050565b6000606082019050614d3e6000830186613870565b614d4b6020830185613870565b614d586040830184613870565b949350505050565b50565b6000614d7060008361443d565b9150614d7b82614d60565b600082019050919050565b6000614d9182614d63565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050614dd98161371e565b92915050565b600060208284031215614df557614df46136e2565b5b6000614e0384828501614dca565b91505092915050565b6000819050919050565b6000614e31614e2c614e2784614e0c565b6137f6565b61374a565b9050919050565b614e4181614e16565b82525050565b600081519050919050565b6000819050602082019050919050565b6000602082019050919050565b6000614e7a82614e47565b614e8481856142c9565b9350614e8f83614e52565b8060005b83811015614ec0578151614ea788826142f3565b9750614eb283614e62565b925050600181019050614e93565b5085935050505092915050565b600060a082019050614ee26000830188613870565b614eef6020830187614e38565b8181036040830152614f018186614e6f565b9050614f1060608301856138ed565b614f1d6080830184613870565b9695505050505050565b600060c082019050614f3c60008301896138ed565b614f496020830188613870565b614f566040830187614e38565b614f636060830186614e38565b614f7060808301856138ed565b614f7d60a0830184613870565b979650505050505050565b600080600060608486031215614fa157614fa06136e2565b5b6000614faf86828701614614565b9350506020614fc086828701614614565b9250506040614fd186828701614614565b915050925092509256fea2646970667358221220fa5a912fe81290057ef4353dc111cde8421c3d4a9f1da274b1d6e2ff73e1c66064736f6c63430008110033

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.