ETH Price: $2,683.78 (+0.57%)

Token

RuneBlock (RBK)
 

Overview

Max Total Supply

100,000,000 RBK

Holders

59

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
44,474.717881079009889331 RBK

Value
$0.00
0xEc6fe748a72BF390e9a057a7157e372f5A2e0f68
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
RBK

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
File 1 of 1 : RBK.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;

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

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

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

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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 upd 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 upd 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 upd 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 {}
}

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

interface IDexFactory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IDexRouter {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

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

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

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

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

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

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

    IDexRouter public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    // Swap back
    bool private swapping;

    bool private swapbackEnabled = false;
    uint256 private swapBackValueMin;
    uint256 private swapBackValueMax;

    //Anti-whale
    bool private limitsEnabled = true;
    bool private transferDelayEnabled = false;
    uint256 public maxWallet;
    uint256 public maxTx;
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch

    bool public tradingEnabled = false;

    // Fee receivers
    address private marketingWallet;
    address private projectWallet;

    uint256 private buyTaxTotal;
    uint256 private buyMarketingTax;
    uint256 private buyProjectTax;

    uint256 private sellTaxTotal;
    uint256 private sellMarketingTax;
    uint256 private sellProjectTax;

    uint256 private tokensForMarketing;
    uint256 private tokensForProject;

    /******************/

    // exclude from fees and max transaction amount
    mapping(address => bool) private transferTaxExempt;
    mapping(address => bool) private transferLimitExempt;
    mapping(address => bool) private automatedMarketMakerPairs;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount

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

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludeFromLimits(address indexed account, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event TradingEnabled(uint256 indexed timestamp);
    event LimitsRemoved(uint256 indexed timestamp);
    event DisabledTransferDelay(uint256 indexed timestamp);

    event SwapbackSettingsUpdated(
        bool enabled,
        uint256 swapBackValueMin,
        uint256 swapBackValueMax
    );
    event MaxTxUpdated(uint256 maxTx);
    event MaxWalletUpdated(uint256 maxWallet);

    event MarketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event ProjectWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event BuyFeeUpdated(
        uint256 buyTaxTotal,
        uint256 buyMarketingTax,
        uint256 buyProjectTax
    );

    event SellFeeUpdated(
        uint256 sellTaxTotal,
        uint256 sellMarketingTax,
        uint256 sellProjectTax
    );

    constructor() ERC20("RuneBlock","RBK") {
        
        IDexRouter _dexRouter;
        
        if (block.chainid == 1 || block.chainid == 5) {
            _dexRouter = IDexRouter(
                0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
            );
        } else if (block.chainid == 11155111) {
            _dexRouter = IDexRouter(
                0xC532a74256D3Db42D0Bf7a0400fEFDbad7694008
            );
        } else if (block.chainid == 8453) {
            _dexRouter = IDexRouter(
                0x4752ba5DBc23f44D87826276BF6Fd6b1C372aD24
            );
        } else if (block.chainid == 56) {
            _dexRouter = IDexRouter(
                0x10ED43C718714eb63d5aA57B78B54704E256024E
            );
        }

        exemptFromLimits(address(_dexRouter), true);
        uniswapV2Router = _dexRouter;

        uniswapV2Pair = IDexFactory(_dexRouter.factory()).createPair(
            address(this),
            _dexRouter.WETH()
        );
        exemptFromLimits(address(uniswapV2Pair), true);
        _setMarketPair(address(uniswapV2Pair), true);

        uint256 _buyMarketingTax = 12;
        uint256 _buyProjectTax = 6;

        uint256 _sellMarketingTax = 30;
        uint256 _sellProjectTax = 25;

        uint256 _totalSupply = 100_000_000 * 10 ** decimals();

        maxTx = (_totalSupply * 20) / 1000;
        maxWallet = (_totalSupply * 20) / 1000;

        swapBackValueMin = (_totalSupply * 1) / 1000;
        swapBackValueMax = (_totalSupply * 3) / 1000;

        buyMarketingTax = _buyMarketingTax;
        buyProjectTax = _buyProjectTax;
        buyTaxTotal = buyMarketingTax + buyProjectTax;

        sellMarketingTax = _sellMarketingTax;
        sellProjectTax = _sellProjectTax;
        sellTaxTotal = sellMarketingTax + sellProjectTax;

        marketingWallet = address(msg.sender);
        projectWallet = address(msg.sender);

        // exclude from paying fees or having max transaction amount
        exemptFromFees(msg.sender, true);
        exemptFromFees(address(this), true);
        exemptFromFees(address(0xdead), true);
        exemptFromFees(marketingWallet, true);

        exemptFromLimits(msg.sender, true);
        exemptFromLimits(address(this), true);
        exemptFromLimits(address(0xdead), true);
        exemptFromLimits(marketingWallet, true);

        transferOwnership(msg.sender);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, _totalSupply);
    }

    

    /**
     * @notice  Opens public trading for the token
     * @dev     onlyOwner.
     */
    function enableTrading() external onlyOwner {
        tradingEnabled = true;
        swapbackEnabled = true;
        emit TradingEnabled(block.timestamp);
    }

    /**
     * @notice Removes the max wallet and max transaction limits
     * @dev onlyOwner.
     * Emits an {LimitsRemoved} event
     */
    function removeAllLimits() external onlyOwner {
        limitsEnabled = false;
        emit LimitsRemoved(block.timestamp);
    }

    /**
     * @notice Removes the transfer delay
     * @dev onlyOwner.
     * Emits an {DisabledTransferDelay} event
     */
    function disableTransferDelaygvz() external onlyOwner {
        transferDelayEnabled = false;
        emit DisabledTransferDelay(block.timestamp);
    }

    /**
     * @notice sets if swapback is enabled and sets the minimum and maximum amounts
     * @dev onlyOwner.
     * Emits an {SwapbackSettingsUpdated} event
     * @param _enabled If swapback is enabled
     * @param _min The minimum amount of tokens the contract must have before swapping tokens for ETH. Base 10000, so 1% = 100.
     * @param _max The maximum amount of tokens the contract can swap for ETH. Base 10000, so 1% = 100.
     */
    function setSwapBackSettingsgvz(
        bool _enabled,
        uint256 _min,
        uint256 _max
    ) external onlyOwner {
        require(
            _min >= 1,
            "Swap amount cannot be lower than 0.01% total supply."
        );
        require(_max >= _min, "maximum amount cant be higher than minimum");

        swapbackEnabled = _enabled;
        swapBackValueMin = (totalSupply() * _min) / 10000;
        swapBackValueMax = (totalSupply() * _max) / 10000;
        emit SwapbackSettingsUpdated(_enabled, _min, _max);
    }

    /**
     * @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction
     * @dev onlyOwner.
     * Emits an {MaxTxUpdated} event
     * @param newNum Base 1000, so 1% = 10
     */
    function setTheMaxTxgvz(uint256 newNum) external onlyOwner {
        require(newNum >= 2, "Cannot set maxTx lower than 0.2%");
        maxTx = (newNum * totalSupply()) / 1000;
        emit MaxTxUpdated(maxTx);
    }

    /**
     * @notice Changes the maximum amount of tokens a wallet can hold
     * @dev onlyOwner.
     * Emits an {MaxWalletUpdated} event
     * @param newNum Base 1000, so 1% = 10
     */
    function setTheMaxWalletgvz(uint256 newNum) external onlyOwner {
        require(newNum >= 5, "Cannot set maxWallet lower than 0.5%");
        maxWallet = (newNum * totalSupply()) / 1000;
        emit MaxWalletUpdated(maxWallet);
    }

    /**
     * @notice Sets if a wallet is excluded from the max wallet and tx limits
     * @dev onlyOwner.
     * Emits an {ExcludeFromLimits} event
     * @param updAds The wallet to update
     * @param isEx If the wallet is excluded or not
     */
    function exemptFromLimits(
        address updAds,
        bool isEx
    ) public onlyOwner {
        transferLimitExempt[updAds] = isEx;
        emit ExcludeFromLimits(updAds, isEx);
    }

    /**
     * @notice Sets the fees for buys
     * @dev onlyOwner.
     * Emits a {BuyFeeUpdated} event
     * All fees added up must be less than 100
     * @param _marketingFee The fee for the marketing wallet
     * @param _devFee The fee for the dev wallet
     */
    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingTax = _marketingFee;
        buyProjectTax = _devFee;
        buyTaxTotal = buyMarketingTax + buyProjectTax;
        require(buyTaxTotal <= 100, "Total buy fee cannot be higher than 100%");
        emit BuyFeeUpdated(buyTaxTotal, buyMarketingTax, buyProjectTax);
    }

    /**
     * @notice Sets the fees for sells
     * @dev onlyOwner.
     * Emits a {SellFeeUpdated} event
     * All fees added up must be less than 100
     * @param _marketingFee The fee for the marketing wallet
     * @param _devFee The fee for the dev wallet
     */
    function updateSellFees(
        uint256 _marketingFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingTax = _marketingFee;
        sellProjectTax = _devFee;
        sellTaxTotal = sellMarketingTax + sellProjectTax;
        require(
            sellTaxTotal <= 100,
            "Total sell fee cannot be higher than 100%"
        );
        emit SellFeeUpdated(sellTaxTotal, sellMarketingTax, sellProjectTax);
    }

    /**
     * @notice Sets if an address is excluded from fees
     * @dev onlyOwner.
     * Emits an {ExcludeFromFees} event
     * @param account The wallet to update
     * @param excluded If the wallet is excluded or not
     */
    function exemptFromFees(address account, bool excluded) public onlyOwner {
        transferTaxExempt[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    /**
     * @notice Sets an address as a new liquidity pair. You probably dont want to do this.
     * @dev onlyOwner.
     * Emits a {SetAutomatedMarketMakerPair} event
     * @param pair the address of the pair
     * @param value If the pair is a automated market maker pair or not
     */
    function setMarketPair(
        address pair,
        bool value
    ) public onlyOwner returns (bool){
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setMarketPair(pair, value);
        return true;
    }

    function _setMarketPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    /**
     * @notice Sets the marketing wallet
     * @dev onlyOwner.
     * Emits an {MarketingWalletUpdated} event
     * @param newWallet The new marketing wallet
     */
    function changeMarketingWalletgvz(address newWallet) external onlyOwner {
        emit MarketingWalletUpdated(newWallet, marketingWallet);
        marketingWallet = newWallet;
    }

    /**
     * @notice Sets the project wallet
     * @dev onlyOwner.
     * Emits an {ProjectWalletUpdated} event
     * @param newWallet The new dev wallet
     */
    function changeProjectWalletgvz(address newWallet) external onlyOwner {
        emit ProjectWalletUpdated(newWallet, projectWallet);
        projectWallet = newWallet;
    }


    /**
     * @notice  Information about the anti whale parameters
     * @return  _limitsEnabled  if the wallet limits are in effect
     * @return  _transferDelayEnabled  if the transfer delay is enabled
     * @return  _maxWallet  The maximum amount of tokens that can be held by a wallet
     * @return  _maxTx  The maximum amount of tokens that can be bought or sold in a single transaction
     */
    function maxTxValuesgvz()
        external
        view
        returns (
            bool _limitsEnabled,
            bool _transferDelayEnabled,
            uint256 _maxWallet,
            uint256 _maxTx
        )
    {
        _limitsEnabled = limitsEnabled;
        _transferDelayEnabled = transferDelayEnabled;
        _maxWallet = maxWallet;
        _maxTx = maxTx;
    }

    /**
     * @notice The wallets that receive the collected fees
     * @return _marketingWallet The wallet that receives the marketing fees
     * @return _projectWallet The wallet that receives the dev fees
     */
    function receiverwalletsgvz()
        external
        view
        returns (address _marketingWallet, address _projectWallet)
    {
        return (marketingWallet, projectWallet);
    }

    /**
     * @notice Fees for buys, sells, and transfers
     * @return _buyTaxTotal The total fee for buys
     * @return _buyMarketingTax The fee for buys that gets sent to marketing
     * @return _buyProjectTax The fee for buys that gets sent to dev
     * @return _sellTaxTotal The total fee for sells
     * @return _sellMarketingTax The fee for sells that gets sent to marketing
     * @return _sellProjectTax The fee for sells that gets sent to dev
     */
    function taxValuesgvz()
        external
        view
        returns (
            uint256 _buyTaxTotal,
            uint256 _buyMarketingTax,
            uint256 _buyProjectTax,
            uint256 _sellTaxTotal,
            uint256 _sellMarketingTax,
            uint256 _sellProjectTax
        )
    {
        _buyTaxTotal = buyTaxTotal;
        _buyMarketingTax = buyMarketingTax;
        _buyProjectTax = buyProjectTax;
        _sellTaxTotal = sellTaxTotal;
        _sellMarketingTax = sellMarketingTax;
        _sellProjectTax = sellProjectTax;
    }

    /**
     * @notice  If the wallet is excluded from fees and max transaction amount and if the wallet is a automated market maker pair
     * @param   _target  The wallet to check
     * @return  _transferTaxExempt  If the wallet is excluded from fees
     * @return  _transferLimitExempt  If the wallet is excluded from max transaction amount
     * @return  _automatedMarketMakerPairs If the wallet is a automated market maker pair
     */
    function checkMappingsgvz(
        address _target
    )
        external
        view
        returns (
            bool _transferTaxExempt,
            bool _transferLimitExempt,
            bool _automatedMarketMakerPairs
        )
    {
        _transferTaxExempt = transferTaxExempt[_target];
        _transferLimitExempt = transferLimitExempt[_target];
        _automatedMarketMakerPairs = automatedMarketMakerPairs[_target];
    }

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

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

        if (limitsEnabled) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingEnabled) {
                    require(
                        transferTaxExempt[from] || transferTaxExempt[to],
                        "_transfer:: Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] && !transferLimitExempt[to]
                ) {
                    require(
                        amount <= maxTx,
                        "Buy transfer amount exceeds the maxTx."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] && !transferLimitExempt[from]
                ) {
                    require(
                        amount <= maxTx,
                        "Sell transfer amount exceeds the maxTx."
                    );
                } else if (!transferLimitExempt[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapBackValueMin;

        if (
            canSwap &&
            swapbackEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !transferTaxExempt[from] &&
            !transferTaxExempt[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTaxTotal > 0) {
                fees = amount.mul(sellTaxTotal).div(100);
                tokensForProject += (fees * sellProjectTax) / sellTaxTotal;
                tokensForMarketing += (fees * sellMarketingTax) / sellTaxTotal;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTaxTotal > 0) {
                fees = amount.mul(buyTaxTotal).div(100);
                tokensForProject += (fees * buyProjectTax) / buyTaxTotal;
                tokensForMarketing += (fees * buyMarketingTax) / buyTaxTotal;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private returns(bool) {
        // 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
        );
        return true;
    }



    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = contractBalance;
        bool success;

        if (contractBalance == 0) {
            return;
        }

        if (contractBalance > swapBackValueMax) {
            contractBalance = swapBackValueMax;
        }

        uint256 amountToSwapForETH = contractBalance;

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForDev = ethBalance.mul(tokensForProject).div(
            totalTokensToSwap
        );

        tokensForMarketing = 0;
        tokensForProject = 0;

        (success, ) = address(projectWallet).call{value: ethForDev}("");

        (success, ) = address(marketingWallet).call{
            value: address(this).balance
        }("");
    }

    receive() external payable {}
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"buyTaxTotal","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyMarketingTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyProjectTax","type":"uint256"}],"name":"BuyFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"DisabledTransferDelay","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":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"LimitsRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"MarketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTx","type":"uint256"}],"name":"MaxTxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWallet","type":"uint256"}],"name":"MaxWalletUpdated","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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"ProjectWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"sellTaxTotal","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellMarketingTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellProjectTax","type":"uint256"}],"name":"SellFeeUpdated","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":"bool","name":"enabled","type":"bool"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMax","type":"uint256"}],"name":"SwapbackSettingsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TradingEnabled","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":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeMarketingWalletgvz","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeProjectWalletgvz","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_target","type":"address"}],"name":"checkMappingsgvz","outputs":[{"internalType":"bool","name":"_transferTaxExempt","type":"bool"},{"internalType":"bool","name":"_transferLimitExempt","type":"bool"},{"internalType":"bool","name":"_automatedMarketMakerPairs","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTransferDelaygvz","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"exemptFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"exemptFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxValuesgvz","outputs":[{"internalType":"bool","name":"_limitsEnabled","type":"bool"},{"internalType":"bool","name":"_transferDelayEnabled","type":"bool"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"},{"internalType":"uint256","name":"_maxTx","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"receiverwalletsgvz","outputs":[{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_projectWallet","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeAllLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setMarketPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"},{"internalType":"uint256","name":"_min","type":"uint256"},{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setSwapBackSettingsgvz","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setTheMaxTxgvz","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setTheMaxWalletgvz","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxValuesgvz","outputs":[{"internalType":"uint256","name":"_buyTaxTotal","type":"uint256"},{"internalType":"uint256","name":"_buyMarketingTax","type":"uint256"},{"internalType":"uint256","name":"_buyProjectTax","type":"uint256"},{"internalType":"uint256","name":"_sellTaxTotal","type":"uint256"},{"internalType":"uint256","name":"_sellMarketingTax","type":"uint256"},{"internalType":"uint256","name":"_sellProjectTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IDexRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526000600560156101000a81548160ff0219169083151502179055506001600860006101000a81548160ff0219169083151502179055506000600860016101000a81548160ff0219169083151502179055506000600c60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600981526020017f52756e65426c6f636b00000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f52424b00000000000000000000000000000000000000000000000000000000008152508160039081620000fb919062000fc0565b5080600490816200010d919062000fc0565b50505062000130620001246200069960201b60201c565b620006a160201b60201c565b60006001461480620001425750600546145b156200016557737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001d8565b62aa36a746036200018d5773c532a74256d3db42d0bf7a0400fefdbad76940089050620001d7565b6121054603620001b457734752ba5dbc23f44d87826276bf6fd6b1c372ad249050620001d6565b60384603620001d5577310ed43c718714eb63d5aa57b78b54704e256024e90505b5b5b5b620001eb8160016200076760201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200026b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000291919062001111565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002f9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200031f919062001111565b6040518363ffffffff1660e01b81526004016200033e92919062001154565b6020604051808303816000875af11580156200035e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000384919062001111565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050620003cc60a05160016200076760201b60201c565b620003e160a0516001620008a160201b60201c565b6000600c90506000600690506000601e905060006019905060006200040b6200094260201b60201c565b600a62000419919062001311565b6305f5e1006200042a919062001362565b90506103e86014826200043e919062001362565b6200044a9190620013dc565b600a819055506103e860148262000462919062001362565b6200046e9190620013dc565b6009819055506103e860018262000486919062001362565b620004929190620013dc565b6006819055506103e8600382620004aa919062001362565b620004b69190620013dc565b60078190555084600f8190555083601081905550601054600f54620004dc919062001414565b600e81905550826012819055508160138190555060135460125462000502919062001414565b60118190555033600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200059d3360016200094b60201b60201c565b620005b03060016200094b60201b60201c565b620005c561dead60016200094b60201b60201c565b620005fa600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200094b60201b60201c565b6200060d3360016200076760201b60201c565b620006203060016200076760201b60201c565b6200063561dead60016200076760201b60201c565b6200066a600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200076760201b60201c565b6200067b3362000a8560201b60201c565b6200068d338262000b9a60201b60201c565b50505050505062001644565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620007776200069960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200079d62000d1260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620007f6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007ed90620014b0565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9282604051620008959190620014ef565b60405180910390a25050565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60006012905090565b6200095b6200069960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200098162000d1260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620009da576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009d190620014b0565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000a799190620014ef565b60405180910390a25050565b62000a956200069960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000abb62000d1260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000b14576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b0b90620014b0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000b86576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b7d9062001582565b60405180910390fd5b62000b9781620006a160201b60201c565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000c0c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c0390620015f4565b60405180910390fd5b62000c206000838362000d3c60201b60201c565b806002600082825462000c34919062001414565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000c8b919062001414565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000cf2919062001627565b60405180910390a362000d0e6000838362000d4160201b60201c565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000dc857607f821691505b60208210810362000dde5762000ddd62000d80565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000e487fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000e09565b62000e54868362000e09565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000ea162000e9b62000e958462000e6c565b62000e76565b62000e6c565b9050919050565b6000819050919050565b62000ebd8362000e80565b62000ed562000ecc8262000ea8565b84845462000e16565b825550505050565b600090565b62000eec62000edd565b62000ef981848462000eb2565b505050565b5b8181101562000f215762000f1560008262000ee2565b60018101905062000eff565b5050565b601f82111562000f705762000f3a8162000de4565b62000f458462000df9565b8101602085101562000f55578190505b62000f6d62000f648562000df9565b83018262000efe565b50505b505050565b600082821c905092915050565b600062000f956000198460080262000f75565b1980831691505092915050565b600062000fb0838362000f82565b9150826002028217905092915050565b62000fcb8262000d46565b67ffffffffffffffff81111562000fe75762000fe662000d51565b5b62000ff3825462000daf565b6200100082828562000f25565b600060209050601f83116001811462001038576000841562001023578287015190505b6200102f858262000fa2565b8655506200109f565b601f198416620010488662000de4565b60005b8281101562001072578489015182556001820191506020850194506020810190506200104b565b868310156200109257848901516200108e601f89168262000f82565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620010d982620010ac565b9050919050565b620010eb81620010cc565b8114620010f757600080fd5b50565b6000815190506200110b81620010e0565b92915050565b6000602082840312156200112a5762001129620010a7565b5b60006200113a84828501620010fa565b91505092915050565b6200114e81620010cc565b82525050565b60006040820190506200116b600083018562001143565b6200117a602083018462001143565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200120f57808604811115620011e757620011e662001181565b5b6001851615620011f75780820291505b80810290506200120785620011b0565b9450620011c7565b94509492505050565b6000826200122a5760019050620012fd565b816200123a5760009050620012fd565b81600181146200125357600281146200125e5762001294565b6001915050620012fd565b60ff84111562001273576200127262001181565b5b8360020a9150848211156200128d576200128c62001181565b5b50620012fd565b5060208310610133831016604e8410600b8410161715620012ce5782820a905083811115620012c857620012c762001181565b5b620012fd565b620012dd8484846001620011bd565b92509050818404811115620012f757620012f662001181565b5b81810290505b9392505050565b600060ff82169050919050565b60006200131e8262000e6c565b91506200132b8362001304565b92506200135a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462001218565b905092915050565b60006200136f8262000e6c565b91506200137c8362000e6c565b92508282026200138c8162000e6c565b91508282048414831517620013a657620013a562001181565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620013e98262000e6c565b9150620013f68362000e6c565b925082620014095762001408620013ad565b5b828204905092915050565b6000620014218262000e6c565b91506200142e8362000e6c565b925082820190508082111562001449576200144862001181565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620014986020836200144f565b9150620014a58262001460565b602082019050919050565b60006020820190508181036000830152620014cb8162001489565b9050919050565b60008115159050919050565b620014e981620014d2565b82525050565b6000602082019050620015066000830184620014de565b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006200156a6026836200144f565b915062001577826200150c565b604082019050919050565b600060208201905081810360008301526200159d816200155b565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620015dc601f836200144f565b9150620015e982620015a4565b602082019050919050565b600060208201905081810360008301526200160f81620015cd565b9050919050565b620016218162000e6c565b82525050565b60006020820190506200163e600083018462001616565b92915050565b60805160a051614bad6200169460003960008181610e90015281816119910152612520015260008181610b4a015281816124c801528181613417015281816134f8015261351f0152614bad6000f3fe6080604052600436106102135760003560e01c806375e4087311610118578063be336cbf116100a0578063ea5153461161006f578063ea515346146107a2578063f2fde38b146107cb578063f8b45b05146107f4578063fcbb76071461081f578063fe85a011146108485761021a565b8063be336cbf146106e8578063c16dd4a414610711578063db05e5cb1461074e578063dd62ed3e146107655761021a565b80639191a161116100e75780639191a161146105ec57806395d89b411461061a5780639b6b549914610645578063a457c2d71461066e578063a9059cbb146106ab5761021a565b806375e408731461056a578063897aefbe146105935780638a8c523c146105aa5780638da5cb5b146105c15761021a565b8063395093511161019b57806353b8f13d1161016a57806353b8f13d1461049957806366ca9b83146104c257806370a08231146104eb578063715018a6146105285780637437681e1461053f5761021a565b806339509351146103dd578063460491c71461041a57806349bd5a5e146104435780634ada218b1461046e5761021a565b80631694505e116101e25780631694505e146102ef57806318160ddd1461031a57806323b872dd14610345578063313ce56714610382578063346b7ef0146103ad5761021a565b806302dbd8f81461021f57806306fdde0314610248578063095ea7b3146102735780630c32f6bc146102b05761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b506102466004803603810190610241919061360c565b610874565b005b34801561025457600080fd5b5061025d61099f565b60405161026a91906136dc565b60405180910390f35b34801561027f57600080fd5b5061029a6004803603810190610295919061375c565b610a31565b6040516102a791906137b7565b60405180910390f35b3480156102bc57600080fd5b506102d760048036038101906102d291906137d2565b610a4f565b6040516102e6939291906137ff565b60405180910390f35b3480156102fb57600080fd5b50610304610b48565b6040516103119190613895565b60405180910390f35b34801561032657600080fd5b5061032f610b6c565b60405161033c91906138bf565b60405180910390f35b34801561035157600080fd5b5061036c600480360381019061036791906138da565b610b76565b60405161037991906137b7565b60405180910390f35b34801561038e57600080fd5b50610397610c6e565b6040516103a49190613949565b60405180910390f35b3480156103b957600080fd5b506103c2610c77565b6040516103d496959493929190613964565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff919061375c565b610ca6565b60405161041191906137b7565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c91906137d2565b610d52565b005b34801561044f57600080fd5b50610458610e8e565b60405161046591906139d4565b60405180910390f35b34801561047a57600080fd5b50610483610eb2565b60405161049091906137b7565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb91906139ef565b610ec5565b005b3480156104ce57600080fd5b506104e960048036038101906104e4919061360c565b610fe7565b005b3480156104f757600080fd5b50610512600480360381019061050d91906137d2565b611112565b60405161051f91906138bf565b60405180910390f35b34801561053457600080fd5b5061053d61115a565b005b34801561054b57600080fd5b506105546111e2565b60405161056191906138bf565b60405180910390f35b34801561057657600080fd5b50610591600480360381019061058c91906139ef565b6111e8565b005b34801561059f57600080fd5b506105a861130a565b005b3480156105b657600080fd5b506105bf6113d0565b005b3480156105cd57600080fd5b506105d66114b1565b6040516105e391906139d4565b60405180910390f35b3480156105f857600080fd5b506106016114db565b6040516106119493929190613a1c565b60405180910390f35b34801561062657600080fd5b5061062f611515565b60405161063c91906136dc565b60405180910390f35b34801561065157600080fd5b5061066c60048036038101906106679190613a8d565b6115a7565b005b34801561067a57600080fd5b506106956004803603810190610690919061375c565b6116cc565b6040516106a291906137b7565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd919061375c565b6117b7565b6040516106df91906137b7565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a91906137d2565b6117d5565b005b34801561071d57600080fd5b5061073860048036038101906107339190613a8d565b611911565b60405161074591906137b7565b60405180910390f35b34801561075a57600080fd5b50610763611a31565b005b34801561077157600080fd5b5061078c60048036038101906107879190613acd565b611af7565b60405161079991906138bf565b60405180910390f35b3480156107ae57600080fd5b506107c960048036038101906107c49190613b0d565b611b7e565b005b3480156107d757600080fd5b506107f260048036038101906107ed91906137d2565b611d27565b005b34801561080057600080fd5b50610809611e1e565b60405161081691906138bf565b60405180910390f35b34801561082b57600080fd5b5061084660048036038101906108419190613a8d565b611e24565b005b34801561085457600080fd5b5061085d611f49565b60405161086b929190613b60565b60405180910390f35b61087c611f9a565b73ffffffffffffffffffffffffffffffffffffffff1661089a6114b1565b73ffffffffffffffffffffffffffffffffffffffff16146108f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e790613bd5565b60405180910390fd5b816012819055508060138190555060135460125461090e9190613c24565b6011819055506064601154111561095a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095190613cca565b60405180910390fd5b7fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f160115460125460135460405161099393929190613cea565b60405180910390a15050565b6060600380546109ae90613d50565b80601f01602080910402602001604051908101604052809291908181526020018280546109da90613d50565b8015610a275780601f106109fc57610100808354040283529160200191610a27565b820191906000526020600020905b815481529060010190602001808311610a0a57829003601f168201915b5050505050905090565b6000610a45610a3e611f9a565b8484611fa2565b6001905092915050565b6000806000601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169250601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169150601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690509193909250565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6000610b8384848461216b565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610bce611f9a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4590613df3565b60405180910390fd5b610c6285610c5a611f9a565b858403611fa2565b60019150509392505050565b60006012905090565b600080600080600080600e549550600f5494506010549350601154925060125491506013549050909192939495565b6000610d48610cb3611f9a565b848460016000610cc1611f9a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d439190613c24565b611fa2565b6001905092915050565b610d5a611f9a565b73ffffffffffffffffffffffffffffffffffffffff16610d786114b1565b73ffffffffffffffffffffffffffffffffffffffff1614610dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc590613bd5565b60405180910390fd5b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6760405160405180910390a380600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600c60009054906101000a900460ff1681565b610ecd611f9a565b73ffffffffffffffffffffffffffffffffffffffff16610eeb6114b1565b73ffffffffffffffffffffffffffffffffffffffff1614610f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3890613bd5565b60405180910390fd5b6005811015610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c90613e85565b60405180910390fd5b6103e8610f90610b6c565b82610f9b9190613ea5565b610fa59190613f16565b6009819055507f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace600954604051610fdc91906138bf565b60405180910390a150565b610fef611f9a565b73ffffffffffffffffffffffffffffffffffffffff1661100d6114b1565b73ffffffffffffffffffffffffffffffffffffffff1614611063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105a90613bd5565b60405180910390fd5b81600f8190555080601081905550601054600f546110819190613c24565b600e819055506064600e5411156110cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c490613fb9565b60405180910390fd5b7f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e600e54600f5460105460405161110693929190613cea565b60405180910390a15050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611162611f9a565b73ffffffffffffffffffffffffffffffffffffffff166111806114b1565b73ffffffffffffffffffffffffffffffffffffffff16146111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd90613bd5565b60405180910390fd5b6111e06000612d9c565b565b600a5481565b6111f0611f9a565b73ffffffffffffffffffffffffffffffffffffffff1661120e6114b1565b73ffffffffffffffffffffffffffffffffffffffff1614611264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125b90613bd5565b60405180910390fd5b60028110156112a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129f90614025565b60405180910390fd5b6103e86112b3610b6c565b826112be9190613ea5565b6112c89190613f16565b600a819055507fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a600a546040516112ff91906138bf565b60405180910390a150565b611312611f9a565b73ffffffffffffffffffffffffffffffffffffffff166113306114b1565b73ffffffffffffffffffffffffffffffffffffffff1614611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d90613bd5565b60405180910390fd5b6000600860016101000a81548160ff021916908315150217905550427f26e776fcf7ca20aa79b5b946e9b5111f47205539ece9d7a7995271dd6a8b5bad60405160405180910390a2565b6113d8611f9a565b73ffffffffffffffffffffffffffffffffffffffff166113f66114b1565b73ffffffffffffffffffffffffffffffffffffffff161461144c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144390613bd5565b60405180910390fd5b6001600c60006101000a81548160ff0219169083151502179055506001600560156101000a81548160ff021916908315150217905550427fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92360405160405180910390a2565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080600080600860009054906101000a900460ff169350600860019054906101000a900460ff1692506009549150600a54905090919293565b60606004805461152490613d50565b80601f016020809104026020016040519081016040528092919081815260200182805461155090613d50565b801561159d5780601f106115725761010080835404028352916020019161159d565b820191906000526020600020905b81548152906001019060200180831161158057829003601f168201915b5050505050905090565b6115af611f9a565b73ffffffffffffffffffffffffffffffffffffffff166115cd6114b1565b73ffffffffffffffffffffffffffffffffffffffff1614611623576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161a90613bd5565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516116c091906137b7565b60405180910390a25050565b600080600160006116db611f9a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f906140b7565b60405180910390fd5b6117ac6117a3611f9a565b85858403611fa2565b600191505092915050565b60006117cb6117c4611f9a565b848461216b565b6001905092915050565b6117dd611f9a565b73ffffffffffffffffffffffffffffffffffffffff166117fb6114b1565b73ffffffffffffffffffffffffffffffffffffffff1614611851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184890613bd5565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fb91dbdeaf34f885ccae2d8abc3967cb03c079b6af2c7944e3893fd29427d75e760405160405180910390a380600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061191b611f9a565b73ffffffffffffffffffffffffffffffffffffffff166119396114b1565b73ffffffffffffffffffffffffffffffffffffffff161461198f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198690613bd5565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1490614149565b60405180910390fd5b611a278383612e62565b6001905092915050565b611a39611f9a565b73ffffffffffffffffffffffffffffffffffffffff16611a576114b1565b73ffffffffffffffffffffffffffffffffffffffff1614611aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa490613bd5565b60405180910390fd5b6000600860006101000a81548160ff021916908315150217905550427ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261660405160405180910390a2565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611b86611f9a565b73ffffffffffffffffffffffffffffffffffffffff16611ba46114b1565b73ffffffffffffffffffffffffffffffffffffffff1614611bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf190613bd5565b60405180910390fd5b6001821015611c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c35906141db565b60405180910390fd5b81811015611c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c789061426d565b60405180910390fd5b82600560156101000a81548160ff02191690831515021790555061271082611ca7610b6c565b611cb19190613ea5565b611cbb9190613f16565b60068190555061271081611ccd610b6c565b611cd79190613ea5565b611ce19190613f16565b6007819055507f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c779838383604051611d1a9392919061428d565b60405180910390a1505050565b611d2f611f9a565b73ffffffffffffffffffffffffffffffffffffffff16611d4d6114b1565b73ffffffffffffffffffffffffffffffffffffffff1614611da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9a90613bd5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0990614336565b60405180910390fd5b611e1b81612d9c565b50565b60095481565b611e2c611f9a565b73ffffffffffffffffffffffffffffffffffffffff16611e4a6114b1565b73ffffffffffffffffffffffffffffffffffffffff1614611ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9790613bd5565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9282604051611f3d91906137b7565b60405180910390a25050565b600080600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16915091509091565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612011576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612008906143c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120779061445a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161215e91906138bf565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d1906144ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612249576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122409061457e565b60405180910390fd5b600081036122625761225d83836000612f03565b612d97565b600860009054906101000a900460ff16156129255761227f6114b1565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156122ed57506122bd6114b1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123265750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612360575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123795750600560149054906101000a900460ff16155b1561292457600c60009054906101000a900460ff1661247357601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806124335750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612472576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246990614610565b60405180910390fd5b5b600860019054906101000a900460ff161561263b576124906114b1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561251757507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561256f57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561263a5743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106125f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ec906146c8565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126de5750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561278557600a54811115612728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271f9061475a565b60405180910390fd5b60095461273483611112565b8261273f9190613c24565b1115612780576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612777906147c6565b60405180910390fd5b612923565b601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128285750601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561287757600a54811115612872576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286990614858565b60405180910390fd5b612922565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612921576009546128d483611112565b826128df9190613c24565b1115612920576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612917906147c6565b60405180910390fd5b5b5b5b5b5b600061293030611112565b9050600060065482101590508080156129555750600560159054906101000a900460ff165b801561296e5750600560149054906101000a900460ff16155b80156129c45750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a1a5750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a705750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ab4576001600560146101000a81548160ff021916908315150217905550612a98613182565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b6a5750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612b7457600090505b60008115612d8757601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612bd757506000601154115b15612c7157612c046064612bf66011548861334190919063ffffffff16565b61335790919063ffffffff16565b905060115460135482612c179190613ea5565b612c219190613f16565b60156000828254612c329190613c24565b9250508190555060115460125482612c4a9190613ea5565b612c549190613f16565b60146000828254612c659190613c24565b92505081905550612d63565b601860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ccc57506000600e54115b15612d6257612cf96064612ceb600e548861334190919063ffffffff16565b61335790919063ffffffff16565b9050600e5460105482612d0c9190613ea5565b612d169190613f16565b60156000828254612d279190613c24565b92505081905550600e54600f5482612d3f9190613ea5565b612d499190613f16565b60146000828254612d5a9190613c24565b925050819055505b5b6000811115612d7857612d77873083612f03565b5b8085612d849190614878565b94505b612d92878787612f03565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f69906144ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd89061457e565b60405180910390fd5b612fec83838361336d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613072576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130699061491e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131059190613c24565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161316991906138bf565b60405180910390a361317c848484613372565b50505050565b600061318d30611112565b9050600081905060008083036131a55750505061333f565b6007548311156131b55760075492505b600083905060004790506131c882613377565b5060006131de82476135bb90919063ffffffff16565b90506000613209866131fb6015548561334190919063ffffffff16565b61335790919063ffffffff16565b905060006014819055506000601581905550600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16816040516132619061496f565b60006040518083038185875af1925050503d806000811461329e576040519150601f19603f3d011682016040523d82523d6000602084013e6132a3565b606091505b505080955050600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516132ef9061496f565b60006040518083038185875af1925050503d806000811461332c576040519150601f19603f3d011682016040523d82523d6000602084013e613331565b606091505b505080955050505050505050505b565b6000818361334f9190613ea5565b905092915050565b600081836133659190613f16565b905092915050565b505050565b505050565b600080600267ffffffffffffffff81111561339557613394614984565b5b6040519080825280602002602001820160405280156133c35781602001602082028036833780820191505090505b50905030816000815181106133db576133da6149b3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613480573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134a491906149f7565b816001815181106134b8576134b76149b3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061351d307f000000000000000000000000000000000000000000000000000000000000000085611fa2565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478460008430426040518663ffffffff1660e01b815260040161357f959493929190614b1d565b600060405180830381600087803b15801561359957600080fd5b505af11580156135ad573d6000803e3d6000fd5b505050506001915050919050565b600081836135c99190614878565b905092915050565b600080fd5b6000819050919050565b6135e9816135d6565b81146135f457600080fd5b50565b600081359050613606816135e0565b92915050565b60008060408385031215613623576136226135d1565b5b6000613631858286016135f7565b9250506020613642858286016135f7565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561368657808201518184015260208101905061366b565b60008484015250505050565b6000601f19601f8301169050919050565b60006136ae8261364c565b6136b88185613657565b93506136c8818560208601613668565b6136d181613692565b840191505092915050565b600060208201905081810360008301526136f681846136a3565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613729826136fe565b9050919050565b6137398161371e565b811461374457600080fd5b50565b60008135905061375681613730565b92915050565b60008060408385031215613773576137726135d1565b5b600061378185828601613747565b9250506020613792858286016135f7565b9150509250929050565b60008115159050919050565b6137b18161379c565b82525050565b60006020820190506137cc60008301846137a8565b92915050565b6000602082840312156137e8576137e76135d1565b5b60006137f684828501613747565b91505092915050565b600060608201905061381460008301866137a8565b61382160208301856137a8565b61382e60408301846137a8565b949350505050565b6000819050919050565b600061385b613856613851846136fe565b613836565b6136fe565b9050919050565b600061386d82613840565b9050919050565b600061387f82613862565b9050919050565b61388f81613874565b82525050565b60006020820190506138aa6000830184613886565b92915050565b6138b9816135d6565b82525050565b60006020820190506138d460008301846138b0565b92915050565b6000806000606084860312156138f3576138f26135d1565b5b600061390186828701613747565b935050602061391286828701613747565b9250506040613923868287016135f7565b9150509250925092565b600060ff82169050919050565b6139438161392d565b82525050565b600060208201905061395e600083018461393a565b92915050565b600060c08201905061397960008301896138b0565b61398660208301886138b0565b61399360408301876138b0565b6139a060608301866138b0565b6139ad60808301856138b0565b6139ba60a08301846138b0565b979650505050505050565b6139ce8161371e565b82525050565b60006020820190506139e960008301846139c5565b92915050565b600060208284031215613a0557613a046135d1565b5b6000613a13848285016135f7565b91505092915050565b6000608082019050613a3160008301876137a8565b613a3e60208301866137a8565b613a4b60408301856138b0565b613a5860608301846138b0565b95945050505050565b613a6a8161379c565b8114613a7557600080fd5b50565b600081359050613a8781613a61565b92915050565b60008060408385031215613aa457613aa36135d1565b5b6000613ab285828601613747565b9250506020613ac385828601613a78565b9150509250929050565b60008060408385031215613ae457613ae36135d1565b5b6000613af285828601613747565b9250506020613b0385828601613747565b9150509250929050565b600080600060608486031215613b2657613b256135d1565b5b6000613b3486828701613a78565b9350506020613b45868287016135f7565b9250506040613b56868287016135f7565b9150509250925092565b6000604082019050613b7560008301856139c5565b613b8260208301846139c5565b9392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613bbf602083613657565b9150613bca82613b89565b602082019050919050565b60006020820190508181036000830152613bee81613bb2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613c2f826135d6565b9150613c3a836135d6565b9250828201905080821115613c5257613c51613bf5565b5b92915050565b7f546f74616c2073656c6c206665652063616e6e6f74206265206869676865722060008201527f7468616e20313030250000000000000000000000000000000000000000000000602082015250565b6000613cb4602983613657565b9150613cbf82613c58565b604082019050919050565b60006020820190508181036000830152613ce381613ca7565b9050919050565b6000606082019050613cff60008301866138b0565b613d0c60208301856138b0565b613d1960408301846138b0565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d6857607f821691505b602082108103613d7b57613d7a613d21565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613ddd602883613657565b9150613de882613d81565b604082019050919050565b60006020820190508181036000830152613e0c81613dd0565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000613e6f602483613657565b9150613e7a82613e13565b604082019050919050565b60006020820190508181036000830152613e9e81613e62565b9050919050565b6000613eb0826135d6565b9150613ebb836135d6565b9250828202613ec9816135d6565b91508282048414831517613ee057613edf613bf5565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f21826135d6565b9150613f2c836135d6565b925082613f3c57613f3b613ee7565b5b828204905092915050565b7f546f74616c20627579206665652063616e6e6f7420626520686967686572207460008201527f68616e2031303025000000000000000000000000000000000000000000000000602082015250565b6000613fa3602883613657565b9150613fae82613f47565b604082019050919050565b60006020820190508181036000830152613fd281613f96565b9050919050565b7f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e3225600082015250565b600061400f602083613657565b915061401a82613fd9565b602082019050919050565b6000602082019050818103600083015261403e81614002565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006140a1602583613657565b91506140ac82614045565b604082019050919050565b600060208201905081810360008301526140d081614094565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614133603983613657565b915061413e826140d7565b604082019050919050565b6000602082019050818103600083015261416281614126565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e30312520746f74616c20737570706c792e000000000000000000000000602082015250565b60006141c5603483613657565b91506141d082614169565b604082019050919050565b600060208201905081810360008301526141f4816141b8565b9050919050565b7f6d6178696d756d20616d6f756e742063616e742062652068696768657220746860008201527f616e206d696e696d756d00000000000000000000000000000000000000000000602082015250565b6000614257602a83613657565b9150614262826141fb565b604082019050919050565b600060208201905081810360008301526142868161424a565b9050919050565b60006060820190506142a260008301866137a8565b6142af60208301856138b0565b6142bc60408301846138b0565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614320602683613657565b915061432b826142c4565b604082019050919050565b6000602082019050818103600083015261434f81614313565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006143b2602483613657565b91506143bd82614356565b604082019050919050565b600060208201905081810360008301526143e1816143a5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614444602283613657565b915061444f826143e8565b604082019050919050565b6000602082019050818103600083015261447381614437565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006144d6602583613657565b91506144e18261447a565b604082019050919050565b60006020820190508181036000830152614505816144c9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614568602383613657565b91506145738261450c565b604082019050919050565b600060208201905081810360008301526145978161455b565b9050919050565b7f5f7472616e736665723a3a2054726164696e67206973206e6f7420616374697660008201527f652e000000000000000000000000000000000000000000000000000000000000602082015250565b60006145fa602283613657565b91506146058261459e565b604082019050919050565b60006020820190508181036000830152614629816145ed565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006146b2604983613657565b91506146bd82614630565b606082019050919050565b600060208201905081810360008301526146e1816146a5565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d617854782e0000000000000000000000000000000000000000000000000000602082015250565b6000614744602683613657565b915061474f826146e8565b604082019050919050565b6000602082019050818103600083015261477381614737565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006147b0601383613657565b91506147bb8261477a565b602082019050919050565b600060208201905081810360008301526147df816147a3565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d617854782e00000000000000000000000000000000000000000000000000602082015250565b6000614842602783613657565b915061484d826147e6565b604082019050919050565b6000602082019050818103600083015261487181614835565b9050919050565b6000614883826135d6565b915061488e836135d6565b92508282039050818111156148a6576148a5613bf5565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614908602683613657565b9150614913826148ac565b604082019050919050565b60006020820190508181036000830152614937816148fb565b9050919050565b600081905092915050565b50565b600061495960008361493e565b915061496482614949565b600082019050919050565b600061497a8261494c565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506149f181613730565b92915050565b600060208284031215614a0d57614a0c6135d1565b5b6000614a1b848285016149e2565b91505092915050565b6000819050919050565b6000614a49614a44614a3f84614a24565b613836565b6135d6565b9050919050565b614a5981614a2e565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614a948161371e565b82525050565b6000614aa68383614a8b565b60208301905092915050565b6000602082019050919050565b6000614aca82614a5f565b614ad48185614a6a565b9350614adf83614a7b565b8060005b83811015614b10578151614af78882614a9a565b9750614b0283614ab2565b925050600181019050614ae3565b5085935050505092915050565b600060a082019050614b3260008301886138b0565b614b3f6020830187614a50565b8181036040830152614b518186614abf565b9050614b6060608301856139c5565b614b6d60808301846138b0565b969550505050505056fea2646970667358221220ebade9eb42c8e1d69baca744e4b427db1d61afc7ae40d5cc211c10e615e9c9cf64736f6c63430008180033

Deployed Bytecode

0x6080604052600436106102135760003560e01c806375e4087311610118578063be336cbf116100a0578063ea5153461161006f578063ea515346146107a2578063f2fde38b146107cb578063f8b45b05146107f4578063fcbb76071461081f578063fe85a011146108485761021a565b8063be336cbf146106e8578063c16dd4a414610711578063db05e5cb1461074e578063dd62ed3e146107655761021a565b80639191a161116100e75780639191a161146105ec57806395d89b411461061a5780639b6b549914610645578063a457c2d71461066e578063a9059cbb146106ab5761021a565b806375e408731461056a578063897aefbe146105935780638a8c523c146105aa5780638da5cb5b146105c15761021a565b8063395093511161019b57806353b8f13d1161016a57806353b8f13d1461049957806366ca9b83146104c257806370a08231146104eb578063715018a6146105285780637437681e1461053f5761021a565b806339509351146103dd578063460491c71461041a57806349bd5a5e146104435780634ada218b1461046e5761021a565b80631694505e116101e25780631694505e146102ef57806318160ddd1461031a57806323b872dd14610345578063313ce56714610382578063346b7ef0146103ad5761021a565b806302dbd8f81461021f57806306fdde0314610248578063095ea7b3146102735780630c32f6bc146102b05761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b506102466004803603810190610241919061360c565b610874565b005b34801561025457600080fd5b5061025d61099f565b60405161026a91906136dc565b60405180910390f35b34801561027f57600080fd5b5061029a6004803603810190610295919061375c565b610a31565b6040516102a791906137b7565b60405180910390f35b3480156102bc57600080fd5b506102d760048036038101906102d291906137d2565b610a4f565b6040516102e6939291906137ff565b60405180910390f35b3480156102fb57600080fd5b50610304610b48565b6040516103119190613895565b60405180910390f35b34801561032657600080fd5b5061032f610b6c565b60405161033c91906138bf565b60405180910390f35b34801561035157600080fd5b5061036c600480360381019061036791906138da565b610b76565b60405161037991906137b7565b60405180910390f35b34801561038e57600080fd5b50610397610c6e565b6040516103a49190613949565b60405180910390f35b3480156103b957600080fd5b506103c2610c77565b6040516103d496959493929190613964565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff919061375c565b610ca6565b60405161041191906137b7565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c91906137d2565b610d52565b005b34801561044f57600080fd5b50610458610e8e565b60405161046591906139d4565b60405180910390f35b34801561047a57600080fd5b50610483610eb2565b60405161049091906137b7565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb91906139ef565b610ec5565b005b3480156104ce57600080fd5b506104e960048036038101906104e4919061360c565b610fe7565b005b3480156104f757600080fd5b50610512600480360381019061050d91906137d2565b611112565b60405161051f91906138bf565b60405180910390f35b34801561053457600080fd5b5061053d61115a565b005b34801561054b57600080fd5b506105546111e2565b60405161056191906138bf565b60405180910390f35b34801561057657600080fd5b50610591600480360381019061058c91906139ef565b6111e8565b005b34801561059f57600080fd5b506105a861130a565b005b3480156105b657600080fd5b506105bf6113d0565b005b3480156105cd57600080fd5b506105d66114b1565b6040516105e391906139d4565b60405180910390f35b3480156105f857600080fd5b506106016114db565b6040516106119493929190613a1c565b60405180910390f35b34801561062657600080fd5b5061062f611515565b60405161063c91906136dc565b60405180910390f35b34801561065157600080fd5b5061066c60048036038101906106679190613a8d565b6115a7565b005b34801561067a57600080fd5b506106956004803603810190610690919061375c565b6116cc565b6040516106a291906137b7565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd919061375c565b6117b7565b6040516106df91906137b7565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a91906137d2565b6117d5565b005b34801561071d57600080fd5b5061073860048036038101906107339190613a8d565b611911565b60405161074591906137b7565b60405180910390f35b34801561075a57600080fd5b50610763611a31565b005b34801561077157600080fd5b5061078c60048036038101906107879190613acd565b611af7565b60405161079991906138bf565b60405180910390f35b3480156107ae57600080fd5b506107c960048036038101906107c49190613b0d565b611b7e565b005b3480156107d757600080fd5b506107f260048036038101906107ed91906137d2565b611d27565b005b34801561080057600080fd5b50610809611e1e565b60405161081691906138bf565b60405180910390f35b34801561082b57600080fd5b5061084660048036038101906108419190613a8d565b611e24565b005b34801561085457600080fd5b5061085d611f49565b60405161086b929190613b60565b60405180910390f35b61087c611f9a565b73ffffffffffffffffffffffffffffffffffffffff1661089a6114b1565b73ffffffffffffffffffffffffffffffffffffffff16146108f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e790613bd5565b60405180910390fd5b816012819055508060138190555060135460125461090e9190613c24565b6011819055506064601154111561095a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095190613cca565b60405180910390fd5b7fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f160115460125460135460405161099393929190613cea565b60405180910390a15050565b6060600380546109ae90613d50565b80601f01602080910402602001604051908101604052809291908181526020018280546109da90613d50565b8015610a275780601f106109fc57610100808354040283529160200191610a27565b820191906000526020600020905b815481529060010190602001808311610a0a57829003601f168201915b5050505050905090565b6000610a45610a3e611f9a565b8484611fa2565b6001905092915050565b6000806000601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169250601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169150601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690509193909250565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b6000610b8384848461216b565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610bce611f9a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4590613df3565b60405180910390fd5b610c6285610c5a611f9a565b858403611fa2565b60019150509392505050565b60006012905090565b600080600080600080600e549550600f5494506010549350601154925060125491506013549050909192939495565b6000610d48610cb3611f9a565b848460016000610cc1611f9a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d439190613c24565b611fa2565b6001905092915050565b610d5a611f9a565b73ffffffffffffffffffffffffffffffffffffffff16610d786114b1565b73ffffffffffffffffffffffffffffffffffffffff1614610dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc590613bd5565b60405180910390fd5b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6760405160405180910390a380600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b7f00000000000000000000000075941323dc5e24931c74efb0264fc1ec5da2c18a81565b600c60009054906101000a900460ff1681565b610ecd611f9a565b73ffffffffffffffffffffffffffffffffffffffff16610eeb6114b1565b73ffffffffffffffffffffffffffffffffffffffff1614610f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3890613bd5565b60405180910390fd5b6005811015610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c90613e85565b60405180910390fd5b6103e8610f90610b6c565b82610f9b9190613ea5565b610fa59190613f16565b6009819055507f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace600954604051610fdc91906138bf565b60405180910390a150565b610fef611f9a565b73ffffffffffffffffffffffffffffffffffffffff1661100d6114b1565b73ffffffffffffffffffffffffffffffffffffffff1614611063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105a90613bd5565b60405180910390fd5b81600f8190555080601081905550601054600f546110819190613c24565b600e819055506064600e5411156110cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c490613fb9565b60405180910390fd5b7f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e600e54600f5460105460405161110693929190613cea565b60405180910390a15050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611162611f9a565b73ffffffffffffffffffffffffffffffffffffffff166111806114b1565b73ffffffffffffffffffffffffffffffffffffffff16146111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd90613bd5565b60405180910390fd5b6111e06000612d9c565b565b600a5481565b6111f0611f9a565b73ffffffffffffffffffffffffffffffffffffffff1661120e6114b1565b73ffffffffffffffffffffffffffffffffffffffff1614611264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125b90613bd5565b60405180910390fd5b60028110156112a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129f90614025565b60405180910390fd5b6103e86112b3610b6c565b826112be9190613ea5565b6112c89190613f16565b600a819055507fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a600a546040516112ff91906138bf565b60405180910390a150565b611312611f9a565b73ffffffffffffffffffffffffffffffffffffffff166113306114b1565b73ffffffffffffffffffffffffffffffffffffffff1614611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d90613bd5565b60405180910390fd5b6000600860016101000a81548160ff021916908315150217905550427f26e776fcf7ca20aa79b5b946e9b5111f47205539ece9d7a7995271dd6a8b5bad60405160405180910390a2565b6113d8611f9a565b73ffffffffffffffffffffffffffffffffffffffff166113f66114b1565b73ffffffffffffffffffffffffffffffffffffffff161461144c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144390613bd5565b60405180910390fd5b6001600c60006101000a81548160ff0219169083151502179055506001600560156101000a81548160ff021916908315150217905550427fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92360405160405180910390a2565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080600080600860009054906101000a900460ff169350600860019054906101000a900460ff1692506009549150600a54905090919293565b60606004805461152490613d50565b80601f016020809104026020016040519081016040528092919081815260200182805461155090613d50565b801561159d5780601f106115725761010080835404028352916020019161159d565b820191906000526020600020905b81548152906001019060200180831161158057829003601f168201915b5050505050905090565b6115af611f9a565b73ffffffffffffffffffffffffffffffffffffffff166115cd6114b1565b73ffffffffffffffffffffffffffffffffffffffff1614611623576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161a90613bd5565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516116c091906137b7565b60405180910390a25050565b600080600160006116db611f9a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f906140b7565b60405180910390fd5b6117ac6117a3611f9a565b85858403611fa2565b600191505092915050565b60006117cb6117c4611f9a565b848461216b565b6001905092915050565b6117dd611f9a565b73ffffffffffffffffffffffffffffffffffffffff166117fb6114b1565b73ffffffffffffffffffffffffffffffffffffffff1614611851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184890613bd5565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fb91dbdeaf34f885ccae2d8abc3967cb03c079b6af2c7944e3893fd29427d75e760405160405180910390a380600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061191b611f9a565b73ffffffffffffffffffffffffffffffffffffffff166119396114b1565b73ffffffffffffffffffffffffffffffffffffffff161461198f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198690613bd5565b60405180910390fd5b7f00000000000000000000000075941323dc5e24931c74efb0264fc1ec5da2c18a73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1490614149565b60405180910390fd5b611a278383612e62565b6001905092915050565b611a39611f9a565b73ffffffffffffffffffffffffffffffffffffffff16611a576114b1565b73ffffffffffffffffffffffffffffffffffffffff1614611aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa490613bd5565b60405180910390fd5b6000600860006101000a81548160ff021916908315150217905550427ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261660405160405180910390a2565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611b86611f9a565b73ffffffffffffffffffffffffffffffffffffffff16611ba46114b1565b73ffffffffffffffffffffffffffffffffffffffff1614611bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf190613bd5565b60405180910390fd5b6001821015611c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c35906141db565b60405180910390fd5b81811015611c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c789061426d565b60405180910390fd5b82600560156101000a81548160ff02191690831515021790555061271082611ca7610b6c565b611cb19190613ea5565b611cbb9190613f16565b60068190555061271081611ccd610b6c565b611cd79190613ea5565b611ce19190613f16565b6007819055507f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c779838383604051611d1a9392919061428d565b60405180910390a1505050565b611d2f611f9a565b73ffffffffffffffffffffffffffffffffffffffff16611d4d6114b1565b73ffffffffffffffffffffffffffffffffffffffff1614611da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9a90613bd5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0990614336565b60405180910390fd5b611e1b81612d9c565b50565b60095481565b611e2c611f9a565b73ffffffffffffffffffffffffffffffffffffffff16611e4a6114b1565b73ffffffffffffffffffffffffffffffffffffffff1614611ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9790613bd5565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9282604051611f3d91906137b7565b60405180910390a25050565b600080600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16915091509091565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612011576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612008906143c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120779061445a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161215e91906138bf565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d1906144ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612249576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122409061457e565b60405180910390fd5b600081036122625761225d83836000612f03565b612d97565b600860009054906101000a900460ff16156129255761227f6114b1565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156122ed57506122bd6114b1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123265750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612360575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123795750600560149054906101000a900460ff16155b1561292457600c60009054906101000a900460ff1661247357601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806124335750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612472576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246990614610565b60405180910390fd5b5b600860019054906101000a900460ff161561263b576124906114b1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561251757507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561256f57507f00000000000000000000000075941323dc5e24931c74efb0264fc1ec5da2c18a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561263a5743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106125f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ec906146c8565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126de5750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561278557600a54811115612728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271f9061475a565b60405180910390fd5b60095461273483611112565b8261273f9190613c24565b1115612780576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612777906147c6565b60405180910390fd5b612923565b601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128285750601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561287757600a54811115612872576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286990614858565b60405180910390fd5b612922565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612921576009546128d483611112565b826128df9190613c24565b1115612920576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612917906147c6565b60405180910390fd5b5b5b5b5b5b600061293030611112565b9050600060065482101590508080156129555750600560159054906101000a900460ff165b801561296e5750600560149054906101000a900460ff16155b80156129c45750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a1a5750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a705750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ab4576001600560146101000a81548160ff021916908315150217905550612a98613182565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b6a5750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612b7457600090505b60008115612d8757601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612bd757506000601154115b15612c7157612c046064612bf66011548861334190919063ffffffff16565b61335790919063ffffffff16565b905060115460135482612c179190613ea5565b612c219190613f16565b60156000828254612c329190613c24565b9250508190555060115460125482612c4a9190613ea5565b612c549190613f16565b60146000828254612c659190613c24565b92505081905550612d63565b601860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ccc57506000600e54115b15612d6257612cf96064612ceb600e548861334190919063ffffffff16565b61335790919063ffffffff16565b9050600e5460105482612d0c9190613ea5565b612d169190613f16565b60156000828254612d279190613c24565b92505081905550600e54600f5482612d3f9190613ea5565b612d499190613f16565b60146000828254612d5a9190613c24565b925050819055505b5b6000811115612d7857612d77873083612f03565b5b8085612d849190614878565b94505b612d92878787612f03565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f69906144ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd89061457e565b60405180910390fd5b612fec83838361336d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613072576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130699061491e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131059190613c24565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161316991906138bf565b60405180910390a361317c848484613372565b50505050565b600061318d30611112565b9050600081905060008083036131a55750505061333f565b6007548311156131b55760075492505b600083905060004790506131c882613377565b5060006131de82476135bb90919063ffffffff16565b90506000613209866131fb6015548561334190919063ffffffff16565b61335790919063ffffffff16565b905060006014819055506000601581905550600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16816040516132619061496f565b60006040518083038185875af1925050503d806000811461329e576040519150601f19603f3d011682016040523d82523d6000602084013e6132a3565b606091505b505080955050600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516132ef9061496f565b60006040518083038185875af1925050503d806000811461332c576040519150601f19603f3d011682016040523d82523d6000602084013e613331565b606091505b505080955050505050505050505b565b6000818361334f9190613ea5565b905092915050565b600081836133659190613f16565b905092915050565b505050565b505050565b600080600267ffffffffffffffff81111561339557613394614984565b5b6040519080825280602002602001820160405280156133c35781602001602082028036833780820191505090505b50905030816000815181106133db576133da6149b3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613480573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134a491906149f7565b816001815181106134b8576134b76149b3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061351d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d85611fa2565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478460008430426040518663ffffffff1660e01b815260040161357f959493929190614b1d565b600060405180830381600087803b15801561359957600080fd5b505af11580156135ad573d6000803e3d6000fd5b505050506001915050919050565b600081836135c99190614878565b905092915050565b600080fd5b6000819050919050565b6135e9816135d6565b81146135f457600080fd5b50565b600081359050613606816135e0565b92915050565b60008060408385031215613623576136226135d1565b5b6000613631858286016135f7565b9250506020613642858286016135f7565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561368657808201518184015260208101905061366b565b60008484015250505050565b6000601f19601f8301169050919050565b60006136ae8261364c565b6136b88185613657565b93506136c8818560208601613668565b6136d181613692565b840191505092915050565b600060208201905081810360008301526136f681846136a3565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613729826136fe565b9050919050565b6137398161371e565b811461374457600080fd5b50565b60008135905061375681613730565b92915050565b60008060408385031215613773576137726135d1565b5b600061378185828601613747565b9250506020613792858286016135f7565b9150509250929050565b60008115159050919050565b6137b18161379c565b82525050565b60006020820190506137cc60008301846137a8565b92915050565b6000602082840312156137e8576137e76135d1565b5b60006137f684828501613747565b91505092915050565b600060608201905061381460008301866137a8565b61382160208301856137a8565b61382e60408301846137a8565b949350505050565b6000819050919050565b600061385b613856613851846136fe565b613836565b6136fe565b9050919050565b600061386d82613840565b9050919050565b600061387f82613862565b9050919050565b61388f81613874565b82525050565b60006020820190506138aa6000830184613886565b92915050565b6138b9816135d6565b82525050565b60006020820190506138d460008301846138b0565b92915050565b6000806000606084860312156138f3576138f26135d1565b5b600061390186828701613747565b935050602061391286828701613747565b9250506040613923868287016135f7565b9150509250925092565b600060ff82169050919050565b6139438161392d565b82525050565b600060208201905061395e600083018461393a565b92915050565b600060c08201905061397960008301896138b0565b61398660208301886138b0565b61399360408301876138b0565b6139a060608301866138b0565b6139ad60808301856138b0565b6139ba60a08301846138b0565b979650505050505050565b6139ce8161371e565b82525050565b60006020820190506139e960008301846139c5565b92915050565b600060208284031215613a0557613a046135d1565b5b6000613a13848285016135f7565b91505092915050565b6000608082019050613a3160008301876137a8565b613a3e60208301866137a8565b613a4b60408301856138b0565b613a5860608301846138b0565b95945050505050565b613a6a8161379c565b8114613a7557600080fd5b50565b600081359050613a8781613a61565b92915050565b60008060408385031215613aa457613aa36135d1565b5b6000613ab285828601613747565b9250506020613ac385828601613a78565b9150509250929050565b60008060408385031215613ae457613ae36135d1565b5b6000613af285828601613747565b9250506020613b0385828601613747565b9150509250929050565b600080600060608486031215613b2657613b256135d1565b5b6000613b3486828701613a78565b9350506020613b45868287016135f7565b9250506040613b56868287016135f7565b9150509250925092565b6000604082019050613b7560008301856139c5565b613b8260208301846139c5565b9392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613bbf602083613657565b9150613bca82613b89565b602082019050919050565b60006020820190508181036000830152613bee81613bb2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613c2f826135d6565b9150613c3a836135d6565b9250828201905080821115613c5257613c51613bf5565b5b92915050565b7f546f74616c2073656c6c206665652063616e6e6f74206265206869676865722060008201527f7468616e20313030250000000000000000000000000000000000000000000000602082015250565b6000613cb4602983613657565b9150613cbf82613c58565b604082019050919050565b60006020820190508181036000830152613ce381613ca7565b9050919050565b6000606082019050613cff60008301866138b0565b613d0c60208301856138b0565b613d1960408301846138b0565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d6857607f821691505b602082108103613d7b57613d7a613d21565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613ddd602883613657565b9150613de882613d81565b604082019050919050565b60006020820190508181036000830152613e0c81613dd0565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000613e6f602483613657565b9150613e7a82613e13565b604082019050919050565b60006020820190508181036000830152613e9e81613e62565b9050919050565b6000613eb0826135d6565b9150613ebb836135d6565b9250828202613ec9816135d6565b91508282048414831517613ee057613edf613bf5565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f21826135d6565b9150613f2c836135d6565b925082613f3c57613f3b613ee7565b5b828204905092915050565b7f546f74616c20627579206665652063616e6e6f7420626520686967686572207460008201527f68616e2031303025000000000000000000000000000000000000000000000000602082015250565b6000613fa3602883613657565b9150613fae82613f47565b604082019050919050565b60006020820190508181036000830152613fd281613f96565b9050919050565b7f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e3225600082015250565b600061400f602083613657565b915061401a82613fd9565b602082019050919050565b6000602082019050818103600083015261403e81614002565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006140a1602583613657565b91506140ac82614045565b604082019050919050565b600060208201905081810360008301526140d081614094565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614133603983613657565b915061413e826140d7565b604082019050919050565b6000602082019050818103600083015261416281614126565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e30312520746f74616c20737570706c792e000000000000000000000000602082015250565b60006141c5603483613657565b91506141d082614169565b604082019050919050565b600060208201905081810360008301526141f4816141b8565b9050919050565b7f6d6178696d756d20616d6f756e742063616e742062652068696768657220746860008201527f616e206d696e696d756d00000000000000000000000000000000000000000000602082015250565b6000614257602a83613657565b9150614262826141fb565b604082019050919050565b600060208201905081810360008301526142868161424a565b9050919050565b60006060820190506142a260008301866137a8565b6142af60208301856138b0565b6142bc60408301846138b0565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614320602683613657565b915061432b826142c4565b604082019050919050565b6000602082019050818103600083015261434f81614313565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006143b2602483613657565b91506143bd82614356565b604082019050919050565b600060208201905081810360008301526143e1816143a5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614444602283613657565b915061444f826143e8565b604082019050919050565b6000602082019050818103600083015261447381614437565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006144d6602583613657565b91506144e18261447a565b604082019050919050565b60006020820190508181036000830152614505816144c9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614568602383613657565b91506145738261450c565b604082019050919050565b600060208201905081810360008301526145978161455b565b9050919050565b7f5f7472616e736665723a3a2054726164696e67206973206e6f7420616374697660008201527f652e000000000000000000000000000000000000000000000000000000000000602082015250565b60006145fa602283613657565b91506146058261459e565b604082019050919050565b60006020820190508181036000830152614629816145ed565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006146b2604983613657565b91506146bd82614630565b606082019050919050565b600060208201905081810360008301526146e1816146a5565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d617854782e0000000000000000000000000000000000000000000000000000602082015250565b6000614744602683613657565b915061474f826146e8565b604082019050919050565b6000602082019050818103600083015261477381614737565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006147b0601383613657565b91506147bb8261477a565b602082019050919050565b600060208201905081810360008301526147df816147a3565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d617854782e00000000000000000000000000000000000000000000000000602082015250565b6000614842602783613657565b915061484d826147e6565b604082019050919050565b6000602082019050818103600083015261487181614835565b9050919050565b6000614883826135d6565b915061488e836135d6565b92508282039050818111156148a6576148a5613bf5565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614908602683613657565b9150614913826148ac565b604082019050919050565b60006020820190508181036000830152614937816148fb565b9050919050565b600081905092915050565b50565b600061495960008361493e565b915061496482614949565b600082019050919050565b600061497a8261494c565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506149f181613730565b92915050565b600060208284031215614a0d57614a0c6135d1565b5b6000614a1b848285016149e2565b91505092915050565b6000819050919050565b6000614a49614a44614a3f84614a24565b613836565b6135d6565b9050919050565b614a5981614a2e565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614a948161371e565b82525050565b6000614aa68383614a8b565b60208301905092915050565b6000602082019050919050565b6000614aca82614a5f565b614ad48185614a6a565b9350614adf83614a7b565b8060005b83811015614b10578151614af78882614a9a565b9750614b0283614ab2565b925050600181019050614ae3565b5085935050505092915050565b600060a082019050614b3260008301886138b0565b614b3f6020830187614a50565b8181036040830152614b518186614abf565b9050614b6060608301856139c5565b614b6d60808301846138b0565b969550505050505056fea2646970667358221220ebade9eb42c8e1d69baca744e4b427db1d61afc7ae40d5cc211c10e615e9c9cf64736f6c63430008180033

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.