ETH Price: $3,400.63 (-1.09%)
Gas: 8 Gwei

Token

Friendly.Tech (FRLY)
 

Overview

Max Total Supply

10,000,000 FRLY

Holders

363

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 6 Decimals)

Filtered by Token Holder
wen69420.eth
Balance
26,938.353968 FRLY

Value
$0.00
0xd5c68609fa5b0b835a79739105ae041deff36999
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:
FRLY

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

File 2 of 11 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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 default value returned by this function, unless
     * it's 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

File 3 of 11 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 4 of 11 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}

File 5 of 11 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 6 of 11 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 7 of 11 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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

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

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

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

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

File 8 of 11 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

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

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

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

File 9 of 11 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

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

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

File 10 of 11 : FRLY.sol
/**
    FRLY
    Website: https://friendly.tech
    Twitter: https://twitter.com/friendlytechbot
    Telegram: https://t.me/friendlytechprofilescanner
    Bot: https://t.me/friendlytech_bot
**/
// SPDX-License-Identifier: GenesisBot.xyz
pragma solidity ^0.8.19;

import "../Token/GenesisToken.sol";

contract FRLY is GenesisToken {
    constructor()
        GenesisToken(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D,
            InitParams(
                "Friendly.Tech",
                "FRLY",
                6,
                10_000_000,
                5,
                100,
                5,
                500,
                500,
                0,
                1,
                2,
                2,
                0x0000000000000000000000000000000000000000,
                0x6848A1FCf1a51Ef4b9448Af795E4A8532d58B40A,
                10000
            )
        )
    {}
}

File 11 of 11 : GenesisToken.sol
// SPDX-License-Identifier: GenesisBot.xyz
pragma solidity ^0.8.19;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";

contract GenesisToken is ERC20, Ownable {
    struct InitParams {
        string name;
        string symbol;
        uint8 decimals;
        uint256 totalSupply;
        uint256 maxTradingAmount;
        uint256 maxWalletAmount;
        uint256 swapTokensAtAmount;
        uint256 buyTotalFees;
        uint256 sellTotalFees;
        uint256 burnFee;
        uint256 liquidityFee;
        uint256 devFee;
        uint256 revshareFee;
        address devWallet;
        address revshareWallet;
        uint256 liquidityAmount;
    }

    uint8 private _decimals;

    IUniswapV2Router02 public immutable swapV2Router;
    //ITurnstile public immutable turnstile;
    address public swapV2Pair;
    address public constant DEAD_ADDRESS = address(0xdead);

    bool public swapEnabled = false;
    bool private swapping;

    address public revShareWallet;
    address public devWallet;

    uint256 public swapTokensAtAmount;
    uint256 public maxWalletAmount;
    uint256 private initMaxTradingAmount;
    bool private limitsInEffect = true; // internal use only, auto remove base on block time

    bool public tradingActive = false;

    uint256 constant PERCENTAGE_BASE = 10000; //
    uint256 constant GEN_FEE = 30; // fee for GEN Bot: 0.3%
    address constant GEN_WALLET = 0x91FEad7F2B2172e75FfCf4cAdFF5049c9270EE41;

    uint256 public buyTotalFees; // buy fee
    uint256 public sellTotalFees; // sell fee

    // Tax distribution
    uint256 public burnFee;
    uint256 public liquidityFee;
    uint256 public devFee;
    uint256 public revshareFee;

    uint256 public tokensForGen;
    uint256 public totalFees;
    uint256 public totalTaxTokens;
    /******************/

    // exclude from fees and max transaction amount
    mapping(address => bool) public excludeFromLimits;

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

    // Trading start at
    uint256 block0;

    address private liquidOwner;

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

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

    modifier onlyDev() {
        require(msg.sender == devWallet);
        _;
    }

    constructor(
        address routerAddress,
        InitParams memory params
    ) payable ERC20(params.name, params.symbol) {
        // amm swap init
        IUniswapV2Router02 router = IUniswapV2Router02(routerAddress);

        swapV2Router = router;

        // Token parameters
        _decimals = params.decimals;
        uint256 totalSupply_ = params.totalSupply * (10 ** _decimals);
        swapTokensAtAmount =
            (totalSupply_ * params.swapTokensAtAmount) /
            PERCENTAGE_BASE; // 0.05%

        initMaxTradingAmount =
            (totalSupply_ * params.maxTradingAmount) /
            PERCENTAGE_BASE; // 0.1%
        maxWalletAmount =
            (totalSupply_ * params.maxWalletAmount) /
            PERCENTAGE_BASE; // 1%

        // Fee distribute: burn: 1, dev: 4
        // tax distribution
        burnFee = params.burnFee;
        liquidityFee = params.liquidityFee;
        devFee = params.devFee;
        revshareFee = params.revshareFee;

        totalFees = burnFee + liquidityFee + devFee + revshareFee;
        // update revshare wallet
        revShareWallet = params.revshareWallet == address(0)
            ? msg.sender
            : params.revshareWallet;

        liquidOwner = msg.sender;

        // 5% fee for buy/sell
        require(
            params.buyTotalFees <= 500 && params.sellTotalFees <= 500,
            "Buy/sell fees must be <= 5%"
        );
        buyTotalFees = params.buyTotalFees;
        sellTotalFees = params.sellTotalFees;
        if (buyTotalFees < GEN_FEE) buyTotalFees += GEN_FEE;
        if (sellTotalFees < GEN_FEE) sellTotalFees += GEN_FEE;

        devWallet = params.devWallet == address(0)
            ? msg.sender
            : params.devWallet;

        // exclude from paying fees or having max transaction amount
        excludeFromLimits[owner()] = true;
        excludeFromLimits[address(this)] = true;
        excludeFromLimits[DEAD_ADDRESS] = true;
        /*
            mint & add liquidity
        */
        // add liquidity
        require(params.liquidityAmount <= PERCENTAGE_BASE);
        uint256 liquidityAmount = (totalSupply_ * params.liquidityAmount) /
            PERCENTAGE_BASE;

        _mint(address(this), liquidityAmount);
        // mint left
        if (liquidityAmount < totalSupply_) {
            _mint(msg.sender, totalSupply_ - liquidityAmount);
        }

        // Approve infinite spending by DEX, to sell tokens collected via tax.
        _approve(address(this), address(swapV2Router), type(uint256).max);
    }

    function decimals() public view override returns (uint8) {
        return _decimals;
    }

    receive() external payable {}

    // linit will be removed automatically base on blocks
    function maxTradingAmount() public view returns (uint amount) {
        if (limitsInEffect) {
            amount = initMaxTradingAmount;
            if (tradingActive) {
                amount +=
                    ((block.number - block0) * totalSupply()) /
                    PERCENTAGE_BASE;
            }
        }
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(
        uint256 newAmount
    ) external onlyDev returns (bool) {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyDev {
        swapEnabled = enabled;
    }

    function setAutomatedMarketMakerPair(
        address pair,
        bool value
    ) public onlyDev {
        require(
            pair != swapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual 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;
        }
        // only limit for trading
        if (
            limitsInEffect && !excludeFromLimits[from] && !excludeFromLimits[to]
        ) {
            if (
                !tradingActive &&
                (automatedMarketMakerPairs[from] ||
                    automatedMarketMakerPairs[to])
            ) {
                require(
                    excludeFromLimits[from] || excludeFromLimits[to],
                    "Trading is not active."
                );
            }

            uint maxTradingAmount_ = maxTradingAmount();

            if (maxTradingAmount_ * 100 > totalSupply()) {
                // remove limit when reach to 1%
                limitsInEffect = false;
            } else {
                if (automatedMarketMakerPairs[from]) {
                    //when buy
                    require(
                        amount <= maxTradingAmount_,
                        "Buy transfer amount exceeds the maxTradingAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWalletAmount,
                        "Max wallet exceeded"
                    );
                } else if (automatedMarketMakerPairs[to]) {
                    //when sell
                    require(
                        amount <= maxTradingAmount_,
                        "Sell transfer amount exceeds the maxTradingAmount."
                    );
                }
            }
        }
        // uint256 contractTokenBalance = balanceOf(address(this));
        bool canSwap = totalTaxTokens >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }
        // only take free for trading
        bool takeFee = !swapping &&
            (automatedMarketMakerPairs[to] || automatedMarketMakerPairs[from]);

        if (excludeFromLimits[from] || excludeFromLimits[to]) {
            takeFee = false;
        }

        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            (uint256 fees, uint256 geenFees) = _getFees(from, to, amount);
            if (fees > 0) {
                super._transfer(from, address(this), fees);
                tokensForGen += geenFees;
                amount -= fees;
                totalTaxTokens += fees;
            }
        }
        super._transfer(from, to, amount);
    }

    function _getFees(
        address _from,
        address _to,
        uint256 _amount
    ) internal returns (uint256 fees, uint256 genFees) {
        uint256 tradingFees_;
        if (automatedMarketMakerPairs[_to]) {
            tradingFees_ = sellTotalFees;
        }
        // on buy
        else if (automatedMarketMakerPairs[_from]) {
            tradingFees_ = buyTotalFees;
        }
        if (tradingFees_ < GEN_FEE) tradingFees_ = GEN_FEE;

        fees = (_amount * tradingFees_) / PERCENTAGE_BASE;
        genFees = (fees * GEN_FEE) / tradingFees_;
    }

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

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

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) internal {
        // add the liquidity
        swapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            liquidOwner,
            block.timestamp
        );
    }

    function createPairAndAddLP() public payable onlyOwner {
        // create pair This:ETH
        if (swapV2Pair == address(0)) {
            IUniswapV2Factory factory = IUniswapV2Factory(
                swapV2Router.factory()
            );
            swapV2Pair = factory.createPair(address(this), swapV2Router.WETH());
        }
        _setAutomatedMarketMakerPair(address(swapV2Pair), true);

        addLiquidity(balanceOf(address(this)), address(this).balance);
    }

    function enableTrading() public onlyOwner {
        require(!tradingActive, "Trading is already open");
        // enable trading
        tradingActive = true;
        swapEnabled = true;
        // block zero
        block0 = block.number;
        // renounce owner
        renounceOwnership();
    }

    function openTrading() external payable onlyOwner {
        createPairAndAddLP();
        enableTrading();
    }

    function swapBack() internal virtual {
        uint256 contractBalance = balanceOf(address(this));
        uint256 tokenToSwap_ = contractBalance;
        uint256 tokensForGen_ = tokensForGen;
        if (tokenToSwap_ > swapTokensAtAmount * 20) {
            tokenToSwap_ = swapTokensAtAmount * 20;
            tokensForGen_ = (tokensForGen * tokenToSwap_) / contractBalance;
        }
        if (tokenToSwap_ == 0) return;

        uint256 tokensForFees_ = tokenToSwap_ - tokensForGen_;
        // split tokens for benificiers
        uint256 tokensBurn_;
        uint256 tokensLiquid_;
        uint256 tokensRevshare_;
        uint256 tokensDev_;

        if (totalFees > 0) {
            tokensBurn_ = (tokensForFees_ * burnFee) / totalFees;
            tokensLiquid_ = (tokensForFees_ * liquidityFee) / totalFees;
            tokensRevshare_ = (tokensForFees_ * revshareFee) / totalFees;
            tokensDev_ = (tokensForFees_ * devFee) / totalFees;
            tokensForFees_ =
                tokensBurn_ +
                tokensLiquid_ +
                tokensRevshare_ +
                tokensDev_;
        }

        tokensForGen_ = tokenToSwap_ - tokensForFees_;

        uint256 tokensForAddLiquidity = tokensLiquid_ / 2;

        // swap all token except for Tokens to Add Liquidity and Burnt
        uint256 totalTokensToSwap = tokenToSwap_ -
            tokensForAddLiquidity -
            tokensBurn_;
        if (tokensBurn_ > 0) {
            // transfer to dead
            super._transfer(address(this), DEAD_ADDRESS, tokensBurn_);
        }
        if (totalTokensToSwap > 0) {
            uint256 initEthBalance = address(this).balance;
            swapTokensForEth(totalTokensToSwap);
            uint256 ethBalance = address(this).balance - initEthBalance;

            uint256 ethForGen = (ethBalance * tokensForGen_) /
                totalTokensToSwap;
            uint256 ethForRevshare = (ethBalance * tokensRevshare_) /
                totalTokensToSwap;
            uint256 ethForAddLiquidity = (ethBalance *
                (tokensLiquid_ - tokensForAddLiquidity)) / totalTokensToSwap;

            // send eth to benificiers
            bool success;
            if (ethForGen > 0) {
                (success, ) = address(GEN_WALLET).call{value: ethForGen}("");
            }
            if (ethForRevshare > 0) {
                (success, ) = address(revShareWallet).call{
                    value: ethForRevshare
                }("");
            }
            if (tokensForAddLiquidity > 0 && ethForAddLiquidity > 0) {
                addLiquidity(tokensForAddLiquidity, ethForAddLiquidity);
            }
            if (address(this).balance > 0) {
                (success, ) = address(devWallet).call{
                    value: address(this).balance
                }("");
            }
        }
        // reset token for GEN
        tokensForGen = tokensForGen > tokensForGen_
            ? tokensForGen - tokensForGen_
            : 0;
        totalTaxTokens = 0;
    }

    function withdrawStuckToken(address _token, address _to) external onlyDev {
        require(_token != address(0), "_token address cannot be 0");
        ERC20 token = ERC20(_token);
        token.transfer(_to, token.balanceOf(address(this)));
    }

    function withdrawStuckEth(address toAddr) external onlyDev {
        (bool success, ) = toAddr.call{value: address(this).balance}("");
        require(success);
    }
}

Settings
{
  "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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEAD_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"createPairAndAddLP","outputs":[],"stateMutability":"payable","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":"devFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludeFromLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTradingAmount","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revShareWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revshareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForGen","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTaxTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526000600660146101000a81548160ff0219169083151502179055506001600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff0219169083151502179055503480156200006257600080fd5b50737a250d5630b4cf539739df2c5dacb4c659f2488d6040518061020001604052806040518060400160405280600d81526020017f467269656e646c792e546563680000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f46524c59000000000000000000000000000000000000000000000000000000008152508152602001600660ff1681526020016298968081526020016005815260200160648152602001600581526020016101f481526020016101f4815260200160008152602001600181526020016002815260200160028152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001736848a1fcf1a51ef4b9448af795e4a8532d58b40a73ffffffffffffffffffffffffffffffffffffffff168152602001612710815250806000015181602001518160039081620001bc919062000dfa565b508060049081620001ce919062000dfa565b505050620001f1620001e56200074060201b60201c565b6200074860201b60201c565b60008290508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508160400151600560146101000a81548160ff021916908360ff1602179055506000600560149054906101000a900460ff16600a62000269919062001071565b83606001516200027a9190620010c2565b90506127108360c0015182620002919190620010c2565b6200029d91906200113c565b600981905550612710836080015182620002b89190620010c2565b620002c491906200113c565b600b819055506127108360a0015182620002df9190620010c2565b620002eb91906200113c565b600a81905550826101200151600f81905550826101400151601081905550826101600151601181905550826101800151601281905550601254601154601054600f5462000339919062001174565b62000345919062001174565b62000351919062001174565b601481905550600073ffffffffffffffffffffffffffffffffffffffff16836101c0015173ffffffffffffffffffffffffffffffffffffffff16146200039d57826101c001516200039f565b335b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506101f48360e00151111580156200043e57506101f483610100015111155b62000480576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004779062001210565b60405180910390fd5b8260e00151600d81905550826101000151600e81905550601e600d541015620004c057601e600d6000828254620004b8919062001174565b925050819055505b601e600e541015620004e957601e600e6000828254620004e1919062001174565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff16836101a0015173ffffffffffffffffffffffffffffffffffffffff16146200052f57826101a0015162000531565b335b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160166000620005876200080e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016016600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612710836101e0015111156200069f57600080fd5b6000612710846101e0015183620006b79190620010c2565b620006c391906200113c565b9050620006d730826200083860201b60201c565b818110156200070057620006ff338284620006f3919062001232565b6200083860201b60201c565b5b62000735306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620009a560201b60201c565b50505050506200143d565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620008aa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008a190620012bd565b60405180910390fd5b620008be6000838362000b7660201b60201c565b8060026000828254620008d2919062001174565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620009859190620012f0565b60405180910390a3620009a16000838362000b7b60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000a17576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a0e9062001383565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a89576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a80906200141b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000b699190620012f0565b60405180910390a3505050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000c0257607f821691505b60208210810362000c185762000c1762000bba565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000c827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000c43565b62000c8e868362000c43565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000cdb62000cd562000ccf8462000ca6565b62000cb0565b62000ca6565b9050919050565b6000819050919050565b62000cf78362000cba565b62000d0f62000d068262000ce2565b84845462000c50565b825550505050565b600090565b62000d2662000d17565b62000d3381848462000cec565b505050565b5b8181101562000d5b5762000d4f60008262000d1c565b60018101905062000d39565b5050565b601f82111562000daa5762000d748162000c1e565b62000d7f8462000c33565b8101602085101562000d8f578190505b62000da762000d9e8562000c33565b83018262000d38565b50505b505050565b600082821c905092915050565b600062000dcf6000198460080262000daf565b1980831691505092915050565b600062000dea838362000dbc565b9150826002028217905092915050565b62000e058262000b80565b67ffffffffffffffff81111562000e215762000e2062000b8b565b5b62000e2d825462000be9565b62000e3a82828562000d5f565b600060209050601f83116001811462000e72576000841562000e5d578287015190505b62000e69858262000ddc565b86555062000ed9565b601f19841662000e828662000c1e565b60005b8281101562000eac5784890151825560018201915060208501945060208101905062000e85565b8683101562000ecc578489015162000ec8601f89168262000dbc565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000f6f5780860481111562000f475762000f4662000ee1565b5b600185161562000f575780820291505b808102905062000f678562000f10565b945062000f27565b94509492505050565b60008262000f8a57600190506200105d565b8162000f9a57600090506200105d565b816001811462000fb3576002811462000fbe5762000ff4565b60019150506200105d565b60ff84111562000fd35762000fd262000ee1565b5b8360020a91508482111562000fed5762000fec62000ee1565b5b506200105d565b5060208310610133831016604e8410600b84101617156200102e5782820a90508381111562001028576200102762000ee1565b5b6200105d565b6200103d848484600162000f1d565b9250905081840481111562001057576200105662000ee1565b5b81810290505b9392505050565b600060ff82169050919050565b60006200107e8262000ca6565b91506200108b8362001064565b9250620010ba7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000f78565b905092915050565b6000620010cf8262000ca6565b9150620010dc8362000ca6565b9250828202620010ec8162000ca6565b9150828204841483151762001106576200110562000ee1565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620011498262000ca6565b9150620011568362000ca6565b9250826200116957620011686200110d565b5b828204905092915050565b6000620011818262000ca6565b91506200118e8362000ca6565b9250828201905080821115620011a957620011a862000ee1565b5b92915050565b600082825260208201905092915050565b7f4275792f73656c6c2066656573206d757374206265203c3d2035250000000000600082015250565b6000620011f8601b83620011af565b91506200120582620011c0565b602082019050919050565b600060208201905081810360008301526200122b81620011e9565b9050919050565b60006200123f8262000ca6565b91506200124c8362000ca6565b925082820390508181111562001267576200126662000ee1565b5b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620012a5601f83620011af565b9150620012b2826200126d565b602082019050919050565b60006020820190508181036000830152620012d88162001296565b9050919050565b620012ea8162000ca6565b82525050565b6000602082019050620013076000830184620012df565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006200136b602483620011af565b915062001378826200130d565b604082019050919050565b600060208201905081810360008301526200139e816200135c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062001403602283620011af565b91506200141082620013a5565b604082019050919050565b600060208201905081810360008301526200143681620013f4565b9050919050565b6080516142a56200147c60003960008181610adb01528181610bb301528181610c610152818161242401528181612df40152612ed101526142a56000f3fe6080604052600436106102605760003560e01c80638ea5220f11610144578063b62496f5116100b6578063d85ba0631161007a578063d85ba063146108c1578063dd62ed3e146108ec578063df376d0b14610929578063e2f4560514610966578063f2fde38b14610991578063fce589d8146109ba57610267565b8063b62496f5146107e9578063bbc0c74214610826578063bc205ad314610851578063c9567bf91461087a578063d257b34f1461088457610267565b80639a7a23d6116101085780639a7a23d6146106c55780639ee708ff146106ee578063a457c2d714610719578063a9059cbb14610756578063aa4bde2814610793578063ad05a7b5146107be57610267565b80638ea5220f146105f0578063924de9b71461061b57806395d89b411461064457806396ea32da1461066f57806398118cb41461069a57610267565b80634e6fd6c4116101dd578063715018a6116101a1578063715018a614610518578063782c4e991461052f5780637ca8448a1461055a57806381efb72d146105835780638a8c523c146105ae5780638da5cb5b146105c557610267565b80634e6fd6c41461042f5780636827e7641461045a5780636a486a8e146104855780636ddd1713146104b057806370a08231146104db57610267565b806327dce8471161022457806327dce84714610367578063313ce5671461039257806339509351146103bd57806344f8ffd2146103fa578063470caeb51461042557610267565b806306fdde031461026c578063095ea7b31461029757806313114a9d146102d457806318160ddd146102ff57806323b872dd1461032a57610267565b3661026757005b600080fd5b34801561027857600080fd5b506102816109e5565b60405161028e9190612ff7565b60405180910390f35b3480156102a357600080fd5b506102be60048036038101906102b991906130b2565b610a77565b6040516102cb919061310d565b60405180910390f35b3480156102e057600080fd5b506102e9610a9a565b6040516102f69190613137565b60405180910390f35b34801561030b57600080fd5b50610314610aa0565b6040516103219190613137565b60405180910390f35b34801561033657600080fd5b50610351600480360381019061034c9190613152565b610aaa565b60405161035e919061310d565b60405180910390f35b34801561037357600080fd5b5061037c610ad9565b6040516103899190613204565b60405180910390f35b34801561039e57600080fd5b506103a7610afd565b6040516103b4919061323b565b60405180910390f35b3480156103c957600080fd5b506103e460048036038101906103df91906130b2565b610b14565b6040516103f1919061310d565b60405180910390f35b34801561040657600080fd5b5061040f610b4b565b60405161041c9190613137565b60405180910390f35b61042d610b51565b005b34801561043b57600080fd5b50610444610dd1565b6040516104519190613265565b60405180910390f35b34801561046657600080fd5b5061046f610dd7565b60405161047c9190613137565b60405180910390f35b34801561049157600080fd5b5061049a610ddd565b6040516104a79190613137565b60405180910390f35b3480156104bc57600080fd5b506104c5610de3565b6040516104d2919061310d565b60405180910390f35b3480156104e757600080fd5b5061050260048036038101906104fd9190613280565b610df6565b60405161050f9190613137565b60405180910390f35b34801561052457600080fd5b5061052d610e3e565b005b34801561053b57600080fd5b50610544610e52565b6040516105519190613265565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c9190613280565b610e78565b005b34801561058f57600080fd5b50610598610f4c565b6040516105a59190613265565b60405180910390f35b3480156105ba57600080fd5b506105c3610f72565b005b3480156105d157600080fd5b506105da611011565b6040516105e79190613265565b60405180910390f35b3480156105fc57600080fd5b5061060561103b565b6040516106129190613265565b60405180910390f35b34801561062757600080fd5b50610642600480360381019061063d91906132d9565b611061565b005b34801561065057600080fd5b506106596110d8565b6040516106669190612ff7565b60405180910390f35b34801561067b57600080fd5b5061068461116a565b6040516106919190613137565b60405180910390f35b3480156106a657600080fd5b506106af6111da565b6040516106bc9190613137565b60405180910390f35b3480156106d157600080fd5b506106ec60048036038101906106e79190613306565b6111e0565b005b3480156106fa57600080fd5b506107036112d8565b6040516107109190613137565b60405180910390f35b34801561072557600080fd5b50610740600480360381019061073b91906130b2565b6112de565b60405161074d919061310d565b60405180910390f35b34801561076257600080fd5b5061077d600480360381019061077891906130b2565b611355565b60405161078a919061310d565b60405180910390f35b34801561079f57600080fd5b506107a8611378565b6040516107b59190613137565b60405180910390f35b3480156107ca57600080fd5b506107d361137e565b6040516107e09190613137565b60405180910390f35b3480156107f557600080fd5b50610810600480360381019061080b9190613280565b611384565b60405161081d919061310d565b60405180910390f35b34801561083257600080fd5b5061083b6113a4565b604051610848919061310d565b60405180910390f35b34801561085d57600080fd5b5061087860048036038101906108739190613346565b6113b7565b005b610882611582565b005b34801561089057600080fd5b506108ab60048036038101906108a69190613386565b61159c565b6040516108b8919061310d565b60405180910390f35b3480156108cd57600080fd5b506108d66116cf565b6040516108e39190613137565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190613346565b6116d5565b6040516109209190613137565b60405180910390f35b34801561093557600080fd5b50610950600480360381019061094b9190613280565b61175c565b60405161095d919061310d565b60405180910390f35b34801561097257600080fd5b5061097b61177c565b6040516109889190613137565b60405180910390f35b34801561099d57600080fd5b506109b860048036038101906109b39190613280565b611782565b005b3480156109c657600080fd5b506109cf611805565b6040516109dc9190613137565b60405180910390f35b6060600380546109f4906133e2565b80601f0160208091040260200160405190810160405280929190818152602001828054610a20906133e2565b8015610a6d5780601f10610a4257610100808354040283529160200191610a6d565b820191906000526020600020905b815481529060010190602001808311610a5057829003601f168201915b5050505050905090565b600080610a8261180b565b9050610a8f818585611813565b600191505092915050565b60145481565b6000600254905090565b600080610ab561180b565b9050610ac28582856119dc565b610acd858585611a68565b60019150509392505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600560149054906101000a900460ff16905090565b600080610b1f61180b565b9050610b40818585610b3185896116d5565b610b3b9190613442565b611813565b600191505092915050565b60155481565b610b59612303565b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610d905760007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c40919061348b565b90508073ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cee919061348b565b6040518363ffffffff1660e01b8152600401610d0b9291906134b8565b6020604051808303816000875af1158015610d2a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d4e919061348b565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505b610dbd600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001612381565b610dcf610dc930610df6565b47612422565b565b61dead81565b60115481565b600e5481565b600660149054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e46612303565b610e5060006124f3565b565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ed257600080fd5b60008173ffffffffffffffffffffffffffffffffffffffff1647604051610ef890613512565b60006040518083038185875af1925050503d8060008114610f35576040519150601f19603f3d011682016040523d82523d6000602084013e610f3a565b606091505b5050905080610f4857600080fd5b5050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610f7a612303565b600c60019054906101000a900460ff1615610fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc190613573565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600660146101000a81548160ff0219169083151502179055504360188190555061100f610e3e565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110bb57600080fd5b80600660146101000a81548160ff02191690831515021790555050565b6060600480546110e7906133e2565b80601f0160208091040260200160405190810160405280929190818152602001828054611113906133e2565b80156111605780601f1061113557610100808354040283529160200191611160565b820191906000526020600020905b81548152906001019060200180831161114357829003601f168201915b5050505050905090565b6000600c60009054906101000a900460ff16156111d757600b549050600c60019054906101000a900460ff16156111d6576127106111a6610aa0565b601854436111b49190613593565b6111be91906135c7565b6111c89190613638565b816111d39190613442565b90505b5b90565b60105481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461123a57600080fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c1906136db565b60405180910390fd5b6112d48282612381565b5050565b60135481565b6000806112e961180b565b905060006112f782866116d5565b90508381101561133c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113339061376d565b60405180910390fd5b6113498286868403611813565b60019250505092915050565b60008061136061180b565b905061136d818585611a68565b600191505092915050565b600a5481565b60125481565b60176020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461141157600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611480576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611477906137d9565b60405180910390fd5b60008290508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb838373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016114db9190613265565b602060405180830381865afa1580156114f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061151c919061380e565b6040518363ffffffff1660e01b815260040161153992919061383b565b6020604051808303816000875af1158015611558573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061157c9190613879565b50505050565b61158a612303565b611592610b51565b61159a610f72565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115f857600080fd5b620186a06001611606610aa0565b61161091906135c7565b61161a9190613638565b82101561165c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165390613918565b60405180910390fd5b6103e86005611669610aa0565b61167391906135c7565b61167d9190613638565b8211156116bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b6906139aa565b60405180910390fd5b8160098190555060019050919050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b60095481565b61178a612303565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f090613a3c565b60405180910390fd5b611802816124f3565b50565b600f5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187990613ace565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e890613b60565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516119cf9190613137565b60405180910390a3505050565b60006119e884846116d5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611a625781811015611a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4b90613bcc565b60405180910390fd5b611a618484848403611813565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace90613c5e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3d90613cf0565b60405180910390fd5b60008103611b5f57611b5a838360006125b9565b6122fe565b600c60009054906101000a900460ff168015611bc55750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611c1b5750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611f9357600c60019054906101000a900460ff16158015611cda5750601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611cd95750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b5b15611dc057601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611d805750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db690613d5c565b60405180910390fd5b5b6000611dca61116a565b9050611dd4610aa0565b606482611de191906135c7565b1115611e07576000600c60006101000a81548160ff021916908315150217905550611f91565b601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611ef95780821115611e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9390613dee565b60405180910390fd5b600a54611ea884610df6565b83611eb39190613442565b1115611ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eeb90613e5a565b60405180910390fd5b611f90565b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f8f5780821115611f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8590613eec565b60405180910390fd5b5b5b5b505b600060095460155410159050808015611fb85750600660149054906101000a900460ff165b8015611fd15750600660159054906101000a900460ff16155b80156120275750601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561207d5750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156120d35750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612117576001600660156101000a81548160ff0219169083151502179055506120fb61282f565b6000600660156101000a81548160ff0219169083151502179055505b6000600660159054906101000a900460ff161580156121d35750601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806121d25750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b5b9050601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806122765750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561228057600090505b80156122f057600080612294878787612c45565b9150915060008211156122ed576122ac8730846125b9565b80601360008282546122be9190613442565b9250508190555081856122d19190613593565b945081601560008282546122e59190613442565b925050819055505b50505b6122fb8585856125b9565b50505b505050565b61230b61180b565b73ffffffffffffffffffffffffffffffffffffffff16612329611011565b73ffffffffffffffffffffffffffffffffffffffff161461237f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237690613f58565b60405180910390fd5b565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016124a996959493929190613fb3565b60606040518083038185885af11580156124c7573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906124ec9190614014565b5050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261f90613c5e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268e90613cf0565b60405180910390fd5b6126a2838383612d4b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271f906140d9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128169190613137565b60405180910390a3612829848484612d50565b50505050565b600061283a30610df6565b9050600081905060006013549050601460095461285791906135c7565b82111561288b57601460095461286d91906135c7565b9150828260135461287e91906135c7565b6128889190613638565b90505b6000820361289b57505050612c43565b600081836128a99190613593565b90506000806000806000601454111561295557601454600f54866128cd91906135c7565b6128d79190613638565b9350601454601054866128ea91906135c7565b6128f49190613638565b92506014546012548661290791906135c7565b6129119190613638565b91506014546011548661292491906135c7565b61292e9190613638565b90508082848661293e9190613442565b6129489190613442565b6129529190613442565b94505b84876129619190613593565b955060006002846129729190613638565b9050600085828a6129839190613593565b61298d9190613593565b905060008611156129a6576129a53061dead886125b9565b5b6000811115612c0b5760004790506129bd82612d55565b600081476129cb9190613593565b90506000838b836129dc91906135c7565b6129e69190613638565b905060008488846129f791906135c7565b612a019190613638565b9050600085878b612a129190613593565b85612a1d91906135c7565b612a279190613638565b9050600080841115612ab4577391fead7f2b2172e75ffcf4cadff5049c9270ee4173ffffffffffffffffffffffffffffffffffffffff1684604051612a6b90613512565b60006040518083038185875af1925050503d8060008114612aa8576040519150601f19603f3d011682016040523d82523d6000602084013e612aad565b606091505b5050809150505b6000831115612b4c57600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051612b0390613512565b60006040518083038185875af1925050503d8060008114612b40576040519150601f19603f3d011682016040523d82523d6000602084013e612b45565b606091505b5050809150505b600088118015612b5c5750600082115b15612b6c57612b6b8883612422565b5b6000471115612c0457600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612bbb90613512565b60006040518083038185875af1925050503d8060008114612bf8576040519150601f19603f3d011682016040523d82523d6000602084013e612bfd565b606091505b5050809150505b5050505050505b8760135411612c1b576000612c2a565b87601354612c299190613593565b5b6013819055506000601581905550505050505050505050505b565b6000806000601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612ca657600e549050612cff565b601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612cfe57600d5490505b5b601e811015612d0d57601e90505b6127108185612d1c91906135c7565b612d269190613638565b925080601e84612d3691906135c7565b612d409190613638565b915050935093915050565b505050565b505050565b6000600267ffffffffffffffff811115612d7257612d716140f9565b5b604051908082528060200260200182016040528015612da05781602001602082028036833780820191505090505b5090503081600081518110612db857612db7614128565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612e5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e81919061348b565b81600181518110612e9557612e94614128565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612f31959493929190614215565b600060405180830381600087803b158015612f4b57600080fd5b505af1158015612f5f573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612fa1578082015181840152602081019050612f86565b60008484015250505050565b6000601f19601f8301169050919050565b6000612fc982612f67565b612fd38185612f72565b9350612fe3818560208601612f83565b612fec81612fad565b840191505092915050565b600060208201905081810360008301526130118184612fbe565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006130498261301e565b9050919050565b6130598161303e565b811461306457600080fd5b50565b60008135905061307681613050565b92915050565b6000819050919050565b61308f8161307c565b811461309a57600080fd5b50565b6000813590506130ac81613086565b92915050565b600080604083850312156130c9576130c8613019565b5b60006130d785828601613067565b92505060206130e88582860161309d565b9150509250929050565b60008115159050919050565b613107816130f2565b82525050565b600060208201905061312260008301846130fe565b92915050565b6131318161307c565b82525050565b600060208201905061314c6000830184613128565b92915050565b60008060006060848603121561316b5761316a613019565b5b600061317986828701613067565b935050602061318a86828701613067565b925050604061319b8682870161309d565b9150509250925092565b6000819050919050565b60006131ca6131c56131c08461301e565b6131a5565b61301e565b9050919050565b60006131dc826131af565b9050919050565b60006131ee826131d1565b9050919050565b6131fe816131e3565b82525050565b600060208201905061321960008301846131f5565b92915050565b600060ff82169050919050565b6132358161321f565b82525050565b6000602082019050613250600083018461322c565b92915050565b61325f8161303e565b82525050565b600060208201905061327a6000830184613256565b92915050565b60006020828403121561329657613295613019565b5b60006132a484828501613067565b91505092915050565b6132b6816130f2565b81146132c157600080fd5b50565b6000813590506132d3816132ad565b92915050565b6000602082840312156132ef576132ee613019565b5b60006132fd848285016132c4565b91505092915050565b6000806040838503121561331d5761331c613019565b5b600061332b85828601613067565b925050602061333c858286016132c4565b9150509250929050565b6000806040838503121561335d5761335c613019565b5b600061336b85828601613067565b925050602061337c85828601613067565b9150509250929050565b60006020828403121561339c5761339b613019565b5b60006133aa8482850161309d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806133fa57607f821691505b60208210810361340d5761340c6133b3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061344d8261307c565b91506134588361307c565b92508282019050808211156134705761346f613413565b5b92915050565b60008151905061348581613050565b92915050565b6000602082840312156134a1576134a0613019565b5b60006134af84828501613476565b91505092915050565b60006040820190506134cd6000830185613256565b6134da6020830184613256565b9392505050565b600081905092915050565b50565b60006134fc6000836134e1565b9150613507826134ec565b600082019050919050565b600061351d826134ef565b9150819050919050565b7f54726164696e6720697320616c7265616479206f70656e000000000000000000600082015250565b600061355d601783612f72565b915061356882613527565b602082019050919050565b6000602082019050818103600083015261358c81613550565b9050919050565b600061359e8261307c565b91506135a98361307c565b92508282039050818111156135c1576135c0613413565b5b92915050565b60006135d28261307c565b91506135dd8361307c565b92508282026135eb8161307c565b9150828204841483151761360257613601613413565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006136438261307c565b915061364e8361307c565b92508261365e5761365d613609565b5b828204905092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006136c5603983612f72565b91506136d082613669565b604082019050919050565b600060208201905081810360008301526136f4816136b8565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613757602583612f72565b9150613762826136fb565b604082019050919050565b600060208201905081810360008301526137868161374a565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000600082015250565b60006137c3601a83612f72565b91506137ce8261378d565b602082019050919050565b600060208201905081810360008301526137f2816137b6565b9050919050565b60008151905061380881613086565b92915050565b60006020828403121561382457613823613019565b5b6000613832848285016137f9565b91505092915050565b60006040820190506138506000830185613256565b61385d6020830184613128565b9392505050565b600081519050613873816132ad565b92915050565b60006020828403121561388f5761388e613019565b5b600061389d84828501613864565b91505092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613902603583612f72565b915061390d826138a6565b604082019050919050565b60006020820190508181036000830152613931816138f5565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613994603483612f72565b915061399f82613938565b604082019050919050565b600060208201905081810360008301526139c381613987565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613a26602683612f72565b9150613a31826139ca565b604082019050919050565b60006020820190508181036000830152613a5581613a19565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613ab8602483612f72565b9150613ac382613a5c565b604082019050919050565b60006020820190508181036000830152613ae781613aab565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b4a602283612f72565b9150613b5582613aee565b604082019050919050565b60006020820190508181036000830152613b7981613b3d565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613bb6601d83612f72565b9150613bc182613b80565b602082019050919050565b60006020820190508181036000830152613be581613ba9565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613c48602583612f72565b9150613c5382613bec565b604082019050919050565b60006020820190508181036000830152613c7781613c3b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613cda602383612f72565b9150613ce582613c7e565b604082019050919050565b60006020820190508181036000830152613d0981613ccd565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613d46601683612f72565b9150613d5182613d10565b602082019050919050565b60006020820190508181036000830152613d7581613d39565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d617854726164696e67416d6f756e742e000000000000000000000000000000602082015250565b6000613dd8603183612f72565b9150613de382613d7c565b604082019050919050565b60006020820190508181036000830152613e0781613dcb565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613e44601383612f72565b9150613e4f82613e0e565b602082019050919050565b60006020820190508181036000830152613e7381613e37565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d617854726164696e67416d6f756e742e0000000000000000000000000000602082015250565b6000613ed6603283612f72565b9150613ee182613e7a565b604082019050919050565b60006020820190508181036000830152613f0581613ec9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f42602083612f72565b9150613f4d82613f0c565b602082019050919050565b60006020820190508181036000830152613f7181613f35565b9050919050565b6000819050919050565b6000613f9d613f98613f9384613f78565b6131a5565b61307c565b9050919050565b613fad81613f82565b82525050565b600060c082019050613fc86000830189613256565b613fd56020830188613128565b613fe26040830187613fa4565b613fef6060830186613fa4565b613ffc6080830185613256565b61400960a0830184613128565b979650505050505050565b60008060006060848603121561402d5761402c613019565b5b600061403b868287016137f9565b935050602061404c868287016137f9565b925050604061405d868287016137f9565b9150509250925092565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006140c3602683612f72565b91506140ce82614067565b604082019050919050565b600060208201905081810360008301526140f2816140b6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61418c8161303e565b82525050565b600061419e8383614183565b60208301905092915050565b6000602082019050919050565b60006141c282614157565b6141cc8185614162565b93506141d783614173565b8060005b838110156142085781516141ef8882614192565b97506141fa836141aa565b9250506001810190506141db565b5085935050505092915050565b600060a08201905061422a6000830188613128565b6142376020830187613fa4565b818103604083015261424981866141b7565b90506142586060830185613256565b6142656080830184613128565b969550505050505056fea26469706673582212204c97846f1fd90a429676c4747c35485bbc0b6b4868d9be2d4f676124ba3a646064736f6c63430008130033

Deployed Bytecode

0x6080604052600436106102605760003560e01c80638ea5220f11610144578063b62496f5116100b6578063d85ba0631161007a578063d85ba063146108c1578063dd62ed3e146108ec578063df376d0b14610929578063e2f4560514610966578063f2fde38b14610991578063fce589d8146109ba57610267565b8063b62496f5146107e9578063bbc0c74214610826578063bc205ad314610851578063c9567bf91461087a578063d257b34f1461088457610267565b80639a7a23d6116101085780639a7a23d6146106c55780639ee708ff146106ee578063a457c2d714610719578063a9059cbb14610756578063aa4bde2814610793578063ad05a7b5146107be57610267565b80638ea5220f146105f0578063924de9b71461061b57806395d89b411461064457806396ea32da1461066f57806398118cb41461069a57610267565b80634e6fd6c4116101dd578063715018a6116101a1578063715018a614610518578063782c4e991461052f5780637ca8448a1461055a57806381efb72d146105835780638a8c523c146105ae5780638da5cb5b146105c557610267565b80634e6fd6c41461042f5780636827e7641461045a5780636a486a8e146104855780636ddd1713146104b057806370a08231146104db57610267565b806327dce8471161022457806327dce84714610367578063313ce5671461039257806339509351146103bd57806344f8ffd2146103fa578063470caeb51461042557610267565b806306fdde031461026c578063095ea7b31461029757806313114a9d146102d457806318160ddd146102ff57806323b872dd1461032a57610267565b3661026757005b600080fd5b34801561027857600080fd5b506102816109e5565b60405161028e9190612ff7565b60405180910390f35b3480156102a357600080fd5b506102be60048036038101906102b991906130b2565b610a77565b6040516102cb919061310d565b60405180910390f35b3480156102e057600080fd5b506102e9610a9a565b6040516102f69190613137565b60405180910390f35b34801561030b57600080fd5b50610314610aa0565b6040516103219190613137565b60405180910390f35b34801561033657600080fd5b50610351600480360381019061034c9190613152565b610aaa565b60405161035e919061310d565b60405180910390f35b34801561037357600080fd5b5061037c610ad9565b6040516103899190613204565b60405180910390f35b34801561039e57600080fd5b506103a7610afd565b6040516103b4919061323b565b60405180910390f35b3480156103c957600080fd5b506103e460048036038101906103df91906130b2565b610b14565b6040516103f1919061310d565b60405180910390f35b34801561040657600080fd5b5061040f610b4b565b60405161041c9190613137565b60405180910390f35b61042d610b51565b005b34801561043b57600080fd5b50610444610dd1565b6040516104519190613265565b60405180910390f35b34801561046657600080fd5b5061046f610dd7565b60405161047c9190613137565b60405180910390f35b34801561049157600080fd5b5061049a610ddd565b6040516104a79190613137565b60405180910390f35b3480156104bc57600080fd5b506104c5610de3565b6040516104d2919061310d565b60405180910390f35b3480156104e757600080fd5b5061050260048036038101906104fd9190613280565b610df6565b60405161050f9190613137565b60405180910390f35b34801561052457600080fd5b5061052d610e3e565b005b34801561053b57600080fd5b50610544610e52565b6040516105519190613265565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c9190613280565b610e78565b005b34801561058f57600080fd5b50610598610f4c565b6040516105a59190613265565b60405180910390f35b3480156105ba57600080fd5b506105c3610f72565b005b3480156105d157600080fd5b506105da611011565b6040516105e79190613265565b60405180910390f35b3480156105fc57600080fd5b5061060561103b565b6040516106129190613265565b60405180910390f35b34801561062757600080fd5b50610642600480360381019061063d91906132d9565b611061565b005b34801561065057600080fd5b506106596110d8565b6040516106669190612ff7565b60405180910390f35b34801561067b57600080fd5b5061068461116a565b6040516106919190613137565b60405180910390f35b3480156106a657600080fd5b506106af6111da565b6040516106bc9190613137565b60405180910390f35b3480156106d157600080fd5b506106ec60048036038101906106e79190613306565b6111e0565b005b3480156106fa57600080fd5b506107036112d8565b6040516107109190613137565b60405180910390f35b34801561072557600080fd5b50610740600480360381019061073b91906130b2565b6112de565b60405161074d919061310d565b60405180910390f35b34801561076257600080fd5b5061077d600480360381019061077891906130b2565b611355565b60405161078a919061310d565b60405180910390f35b34801561079f57600080fd5b506107a8611378565b6040516107b59190613137565b60405180910390f35b3480156107ca57600080fd5b506107d361137e565b6040516107e09190613137565b60405180910390f35b3480156107f557600080fd5b50610810600480360381019061080b9190613280565b611384565b60405161081d919061310d565b60405180910390f35b34801561083257600080fd5b5061083b6113a4565b604051610848919061310d565b60405180910390f35b34801561085d57600080fd5b5061087860048036038101906108739190613346565b6113b7565b005b610882611582565b005b34801561089057600080fd5b506108ab60048036038101906108a69190613386565b61159c565b6040516108b8919061310d565b60405180910390f35b3480156108cd57600080fd5b506108d66116cf565b6040516108e39190613137565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190613346565b6116d5565b6040516109209190613137565b60405180910390f35b34801561093557600080fd5b50610950600480360381019061094b9190613280565b61175c565b60405161095d919061310d565b60405180910390f35b34801561097257600080fd5b5061097b61177c565b6040516109889190613137565b60405180910390f35b34801561099d57600080fd5b506109b860048036038101906109b39190613280565b611782565b005b3480156109c657600080fd5b506109cf611805565b6040516109dc9190613137565b60405180910390f35b6060600380546109f4906133e2565b80601f0160208091040260200160405190810160405280929190818152602001828054610a20906133e2565b8015610a6d5780601f10610a4257610100808354040283529160200191610a6d565b820191906000526020600020905b815481529060010190602001808311610a5057829003601f168201915b5050505050905090565b600080610a8261180b565b9050610a8f818585611813565b600191505092915050565b60145481565b6000600254905090565b600080610ab561180b565b9050610ac28582856119dc565b610acd858585611a68565b60019150509392505050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600560149054906101000a900460ff16905090565b600080610b1f61180b565b9050610b40818585610b3185896116d5565b610b3b9190613442565b611813565b600191505092915050565b60155481565b610b59612303565b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610d905760007f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c40919061348b565b90508073ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cee919061348b565b6040518363ffffffff1660e01b8152600401610d0b9291906134b8565b6020604051808303816000875af1158015610d2a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d4e919061348b565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505b610dbd600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001612381565b610dcf610dc930610df6565b47612422565b565b61dead81565b60115481565b600e5481565b600660149054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e46612303565b610e5060006124f3565b565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ed257600080fd5b60008173ffffffffffffffffffffffffffffffffffffffff1647604051610ef890613512565b60006040518083038185875af1925050503d8060008114610f35576040519150601f19603f3d011682016040523d82523d6000602084013e610f3a565b606091505b5050905080610f4857600080fd5b5050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610f7a612303565b600c60019054906101000a900460ff1615610fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc190613573565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600660146101000a81548160ff0219169083151502179055504360188190555061100f610e3e565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110bb57600080fd5b80600660146101000a81548160ff02191690831515021790555050565b6060600480546110e7906133e2565b80601f0160208091040260200160405190810160405280929190818152602001828054611113906133e2565b80156111605780601f1061113557610100808354040283529160200191611160565b820191906000526020600020905b81548152906001019060200180831161114357829003601f168201915b5050505050905090565b6000600c60009054906101000a900460ff16156111d757600b549050600c60019054906101000a900460ff16156111d6576127106111a6610aa0565b601854436111b49190613593565b6111be91906135c7565b6111c89190613638565b816111d39190613442565b90505b5b90565b60105481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461123a57600080fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c1906136db565b60405180910390fd5b6112d48282612381565b5050565b60135481565b6000806112e961180b565b905060006112f782866116d5565b90508381101561133c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113339061376d565b60405180910390fd5b6113498286868403611813565b60019250505092915050565b60008061136061180b565b905061136d818585611a68565b600191505092915050565b600a5481565b60125481565b60176020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461141157600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611480576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611477906137d9565b60405180910390fd5b60008290508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb838373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016114db9190613265565b602060405180830381865afa1580156114f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061151c919061380e565b6040518363ffffffff1660e01b815260040161153992919061383b565b6020604051808303816000875af1158015611558573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061157c9190613879565b50505050565b61158a612303565b611592610b51565b61159a610f72565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115f857600080fd5b620186a06001611606610aa0565b61161091906135c7565b61161a9190613638565b82101561165c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165390613918565b60405180910390fd5b6103e86005611669610aa0565b61167391906135c7565b61167d9190613638565b8211156116bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b6906139aa565b60405180910390fd5b8160098190555060019050919050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b60095481565b61178a612303565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f090613a3c565b60405180910390fd5b611802816124f3565b50565b600f5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187990613ace565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e890613b60565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516119cf9190613137565b60405180910390a3505050565b60006119e884846116d5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611a625781811015611a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4b90613bcc565b60405180910390fd5b611a618484848403611813565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace90613c5e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3d90613cf0565b60405180910390fd5b60008103611b5f57611b5a838360006125b9565b6122fe565b600c60009054906101000a900460ff168015611bc55750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611c1b5750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611f9357600c60019054906101000a900460ff16158015611cda5750601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611cd95750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b5b15611dc057601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611d805750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db690613d5c565b60405180910390fd5b5b6000611dca61116a565b9050611dd4610aa0565b606482611de191906135c7565b1115611e07576000600c60006101000a81548160ff021916908315150217905550611f91565b601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611ef95780821115611e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9390613dee565b60405180910390fd5b600a54611ea884610df6565b83611eb39190613442565b1115611ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eeb90613e5a565b60405180910390fd5b611f90565b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f8f5780821115611f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8590613eec565b60405180910390fd5b5b5b5b505b600060095460155410159050808015611fb85750600660149054906101000a900460ff165b8015611fd15750600660159054906101000a900460ff16155b80156120275750601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561207d5750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156120d35750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612117576001600660156101000a81548160ff0219169083151502179055506120fb61282f565b6000600660156101000a81548160ff0219169083151502179055505b6000600660159054906101000a900460ff161580156121d35750601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806121d25750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b5b9050601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806122765750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561228057600090505b80156122f057600080612294878787612c45565b9150915060008211156122ed576122ac8730846125b9565b80601360008282546122be9190613442565b9250508190555081856122d19190613593565b945081601560008282546122e59190613442565b925050819055505b50505b6122fb8585856125b9565b50505b505050565b61230b61180b565b73ffffffffffffffffffffffffffffffffffffffff16612329611011565b73ffffffffffffffffffffffffffffffffffffffff161461237f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237690613f58565b60405180910390fd5b565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016124a996959493929190613fb3565b60606040518083038185885af11580156124c7573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906124ec9190614014565b5050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261f90613c5e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268e90613cf0565b60405180910390fd5b6126a2838383612d4b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271f906140d9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128169190613137565b60405180910390a3612829848484612d50565b50505050565b600061283a30610df6565b9050600081905060006013549050601460095461285791906135c7565b82111561288b57601460095461286d91906135c7565b9150828260135461287e91906135c7565b6128889190613638565b90505b6000820361289b57505050612c43565b600081836128a99190613593565b90506000806000806000601454111561295557601454600f54866128cd91906135c7565b6128d79190613638565b9350601454601054866128ea91906135c7565b6128f49190613638565b92506014546012548661290791906135c7565b6129119190613638565b91506014546011548661292491906135c7565b61292e9190613638565b90508082848661293e9190613442565b6129489190613442565b6129529190613442565b94505b84876129619190613593565b955060006002846129729190613638565b9050600085828a6129839190613593565b61298d9190613593565b905060008611156129a6576129a53061dead886125b9565b5b6000811115612c0b5760004790506129bd82612d55565b600081476129cb9190613593565b90506000838b836129dc91906135c7565b6129e69190613638565b905060008488846129f791906135c7565b612a019190613638565b9050600085878b612a129190613593565b85612a1d91906135c7565b612a279190613638565b9050600080841115612ab4577391fead7f2b2172e75ffcf4cadff5049c9270ee4173ffffffffffffffffffffffffffffffffffffffff1684604051612a6b90613512565b60006040518083038185875af1925050503d8060008114612aa8576040519150601f19603f3d011682016040523d82523d6000602084013e612aad565b606091505b5050809150505b6000831115612b4c57600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051612b0390613512565b60006040518083038185875af1925050503d8060008114612b40576040519150601f19603f3d011682016040523d82523d6000602084013e612b45565b606091505b5050809150505b600088118015612b5c5750600082115b15612b6c57612b6b8883612422565b5b6000471115612c0457600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612bbb90613512565b60006040518083038185875af1925050503d8060008114612bf8576040519150601f19603f3d011682016040523d82523d6000602084013e612bfd565b606091505b5050809150505b5050505050505b8760135411612c1b576000612c2a565b87601354612c299190613593565b5b6013819055506000601581905550505050505050505050505b565b6000806000601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612ca657600e549050612cff565b601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612cfe57600d5490505b5b601e811015612d0d57601e90505b6127108185612d1c91906135c7565b612d269190613638565b925080601e84612d3691906135c7565b612d409190613638565b915050935093915050565b505050565b505050565b6000600267ffffffffffffffff811115612d7257612d716140f9565b5b604051908082528060200260200182016040528015612da05781602001602082028036833780820191505090505b5090503081600081518110612db857612db7614128565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612e5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e81919061348b565b81600181518110612e9557612e94614128565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612f31959493929190614215565b600060405180830381600087803b158015612f4b57600080fd5b505af1158015612f5f573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612fa1578082015181840152602081019050612f86565b60008484015250505050565b6000601f19601f8301169050919050565b6000612fc982612f67565b612fd38185612f72565b9350612fe3818560208601612f83565b612fec81612fad565b840191505092915050565b600060208201905081810360008301526130118184612fbe565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006130498261301e565b9050919050565b6130598161303e565b811461306457600080fd5b50565b60008135905061307681613050565b92915050565b6000819050919050565b61308f8161307c565b811461309a57600080fd5b50565b6000813590506130ac81613086565b92915050565b600080604083850312156130c9576130c8613019565b5b60006130d785828601613067565b92505060206130e88582860161309d565b9150509250929050565b60008115159050919050565b613107816130f2565b82525050565b600060208201905061312260008301846130fe565b92915050565b6131318161307c565b82525050565b600060208201905061314c6000830184613128565b92915050565b60008060006060848603121561316b5761316a613019565b5b600061317986828701613067565b935050602061318a86828701613067565b925050604061319b8682870161309d565b9150509250925092565b6000819050919050565b60006131ca6131c56131c08461301e565b6131a5565b61301e565b9050919050565b60006131dc826131af565b9050919050565b60006131ee826131d1565b9050919050565b6131fe816131e3565b82525050565b600060208201905061321960008301846131f5565b92915050565b600060ff82169050919050565b6132358161321f565b82525050565b6000602082019050613250600083018461322c565b92915050565b61325f8161303e565b82525050565b600060208201905061327a6000830184613256565b92915050565b60006020828403121561329657613295613019565b5b60006132a484828501613067565b91505092915050565b6132b6816130f2565b81146132c157600080fd5b50565b6000813590506132d3816132ad565b92915050565b6000602082840312156132ef576132ee613019565b5b60006132fd848285016132c4565b91505092915050565b6000806040838503121561331d5761331c613019565b5b600061332b85828601613067565b925050602061333c858286016132c4565b9150509250929050565b6000806040838503121561335d5761335c613019565b5b600061336b85828601613067565b925050602061337c85828601613067565b9150509250929050565b60006020828403121561339c5761339b613019565b5b60006133aa8482850161309d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806133fa57607f821691505b60208210810361340d5761340c6133b3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061344d8261307c565b91506134588361307c565b92508282019050808211156134705761346f613413565b5b92915050565b60008151905061348581613050565b92915050565b6000602082840312156134a1576134a0613019565b5b60006134af84828501613476565b91505092915050565b60006040820190506134cd6000830185613256565b6134da6020830184613256565b9392505050565b600081905092915050565b50565b60006134fc6000836134e1565b9150613507826134ec565b600082019050919050565b600061351d826134ef565b9150819050919050565b7f54726164696e6720697320616c7265616479206f70656e000000000000000000600082015250565b600061355d601783612f72565b915061356882613527565b602082019050919050565b6000602082019050818103600083015261358c81613550565b9050919050565b600061359e8261307c565b91506135a98361307c565b92508282039050818111156135c1576135c0613413565b5b92915050565b60006135d28261307c565b91506135dd8361307c565b92508282026135eb8161307c565b9150828204841483151761360257613601613413565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006136438261307c565b915061364e8361307c565b92508261365e5761365d613609565b5b828204905092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006136c5603983612f72565b91506136d082613669565b604082019050919050565b600060208201905081810360008301526136f4816136b8565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613757602583612f72565b9150613762826136fb565b604082019050919050565b600060208201905081810360008301526137868161374a565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000600082015250565b60006137c3601a83612f72565b91506137ce8261378d565b602082019050919050565b600060208201905081810360008301526137f2816137b6565b9050919050565b60008151905061380881613086565b92915050565b60006020828403121561382457613823613019565b5b6000613832848285016137f9565b91505092915050565b60006040820190506138506000830185613256565b61385d6020830184613128565b9392505050565b600081519050613873816132ad565b92915050565b60006020828403121561388f5761388e613019565b5b600061389d84828501613864565b91505092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613902603583612f72565b915061390d826138a6565b604082019050919050565b60006020820190508181036000830152613931816138f5565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613994603483612f72565b915061399f82613938565b604082019050919050565b600060208201905081810360008301526139c381613987565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613a26602683612f72565b9150613a31826139ca565b604082019050919050565b60006020820190508181036000830152613a5581613a19565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613ab8602483612f72565b9150613ac382613a5c565b604082019050919050565b60006020820190508181036000830152613ae781613aab565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b4a602283612f72565b9150613b5582613aee565b604082019050919050565b60006020820190508181036000830152613b7981613b3d565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613bb6601d83612f72565b9150613bc182613b80565b602082019050919050565b60006020820190508181036000830152613be581613ba9565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613c48602583612f72565b9150613c5382613bec565b604082019050919050565b60006020820190508181036000830152613c7781613c3b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613cda602383612f72565b9150613ce582613c7e565b604082019050919050565b60006020820190508181036000830152613d0981613ccd565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613d46601683612f72565b9150613d5182613d10565b602082019050919050565b60006020820190508181036000830152613d7581613d39565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d617854726164696e67416d6f756e742e000000000000000000000000000000602082015250565b6000613dd8603183612f72565b9150613de382613d7c565b604082019050919050565b60006020820190508181036000830152613e0781613dcb565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613e44601383612f72565b9150613e4f82613e0e565b602082019050919050565b60006020820190508181036000830152613e7381613e37565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d617854726164696e67416d6f756e742e0000000000000000000000000000602082015250565b6000613ed6603283612f72565b9150613ee182613e7a565b604082019050919050565b60006020820190508181036000830152613f0581613ec9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f42602083612f72565b9150613f4d82613f0c565b602082019050919050565b60006020820190508181036000830152613f7181613f35565b9050919050565b6000819050919050565b6000613f9d613f98613f9384613f78565b6131a5565b61307c565b9050919050565b613fad81613f82565b82525050565b600060c082019050613fc86000830189613256565b613fd56020830188613128565b613fe26040830187613fa4565b613fef6060830186613fa4565b613ffc6080830185613256565b61400960a0830184613128565b979650505050505050565b60008060006060848603121561402d5761402c613019565b5b600061403b868287016137f9565b935050602061404c868287016137f9565b925050604061405d868287016137f9565b9150509250925092565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006140c3602683612f72565b91506140ce82614067565b604082019050919050565b600060208201905081810360008301526140f2816140b6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61418c8161303e565b82525050565b600061419e8383614183565b60208301905092915050565b6000602082019050919050565b60006141c282614157565b6141cc8185614162565b93506141d783614173565b8060005b838110156142085781516141ef8882614192565b97506141fa836141aa565b9250506001810190506141db565b5085935050505092915050565b600060a08201905061422a6000830188613128565b6142376020830187613fa4565b818103604083015261424981866141b7565b90506142586060830185613256565b6142656080830184613128565b969550505050505056fea26469706673582212204c97846f1fd90a429676c4747c35485bbc0b6b4868d9be2d4f676124ba3a646064736f6c63430008130033

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.