ETH Price: $3,488.02 (-0.69%)
Gas: 7 Gwei

Token

RunesBridge (RB)
 

Overview

Max Total Supply

75,000,000 RB

Holders

3,286 (0.00%)

Total Transfers

-

Market

Price

$0.04 @ 0.000011 ETH (-2.59%)

Onchain Market Cap

$2,754,527.25

Circulating Supply Market Cap

$2,295,439.00

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

RunesBridge is at the forefront of blockchain interoperability, pioneering the creation of bridges that connect different networks (EVM) to the Bitcoin network through the innovative Runes Protocol.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
RunesBridge

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
File 1 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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 10 : draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

File 3 of 10 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.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}.
 *
 * 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.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

    mapping(address account => mapping(address spender => 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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

File 4 of 10 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
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 5 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

File 6 of 10 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 7 of 10 : 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 10 : 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 10 : 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 10 : RunesBridge.sol
// Website  : https://runesbridge.xyz
// Twitter  : https://twitter.com/RunesBridge
// Telegram : https://t.me/RunesBridge
// Docs     : https://docs.runesbridge.xyz

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.23;

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

contract RunesBridge is Ownable, ERC20 {
    error MaxTxAmountExceeded();
    error MaxWalletAmountExceeded();
    error NotAuthorized();

    event OpenTrading();
    event DisableLimits();

    event SwapBack(uint256 amount);

    IUniswapV2Router02 immutable router =
        IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    uint256 _totalSupply = 100_000_000 * 10 ** 18;

    address public pair;

    uint256 private _maxWallet = _totalSupply / 200;
    bool private _trandingEnable;

    address public platformAndRewards;
    bool public limit = true;
    uint256 public swapTokenAt = 20_000 ether;

    mapping(address => bool) private _isExcludedFromFees;

    constructor() ERC20("RunesBridge", "RB") Ownable(_msgSender()) {
        platformAndRewards = _msgSender();
        pair = IUniswapV2Factory(router.factory()).createPair(
            address(this),
            router.WETH()
        );
        _isExcludedFromFees[_msgSender()] = true;
        _isExcludedFromFees[address(this)] = true;
        _isExcludedFromFees[address(router)] = true;
        _mint(_msgSender(), _totalSupply);
        _approve(_msgSender(), address(router), type(uint256).max);
    }

    receive() external payable {}

    function burn(uint256 value) external {
        _burn(_msgSender(), value);
    }

    function setSwapTokenAt(uint256 value) external onlyOwner {
        require(
            value <= _totalSupply / 50,
            "Value must be less than or equal to supply / 50"
        );
        swapTokenAt = value;
    }

    function openTrading() external onlyOwner {
        require(!_trandingEnable, "enabled!");
        _trandingEnable = true;
        emit OpenTrading();
    }

    function disableLimits() external onlyOwner {
        require(limit, "Limits already removed");
        limit = false;
        _maxWallet = _totalSupply;
        emit DisableLimits();
    }

    uint256 private _buy;
    uint256 private _sell;
    uint256 private _initial = 30;
    uint256 private _reduce = 30;

    function _update(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (
            _isExcludedFromFees[from] ||
            _isExcludedFromFees[to] ||
            (to != pair && from != pair) ||
            _swaping
        ) {
            super._update(from, to, amount);
            return;
        }

        require(_trandingEnable, "Trading is not open");

        if (limit) {
            if (to != pair && balanceOf(to) + amount > _maxWallet) {
                revert MaxWalletAmountExceeded();
            }
        }

        if (to == pair && balanceOf(address(this)) >= swapTokenAt) {
            swapBack();
        }

        uint256 _fees;

        if (from == pair) {
            _buy++;
            _fees = (amount * (_buy > _reduce ? 5 : _initial)) / 100;
        } else if (to == pair) {
            _sell++;
            _fees = (amount * (_sell > _reduce / 2 ? 5 : _initial)) / 100;
        }

        if (_fees > 0) {
            super._update(from, address(this), _fees);
            amount = amount - _fees;
        }

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

    modifier onSwap() {
        _swaping = true;
        _;
        _swaping = false;
    }

    bool private _swaping = false;

    function swapBack() private onSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();

        _approve(address(this), address(router), swapTokenAt);

        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            swapTokenAt,
            0,
            path,
            address(this),
            block.timestamp
        );

        uint256 amountToPlatform = (address(this).balance * 80) / 100; //80%

        _safeTransferETH(platformAndRewards, amountToPlatform);

        emit SwapBack(swapTokenAt);
    }

    function getIsExcludedFromFees(
        address _address
    ) external view returns (bool) {
        return _isExcludedFromFees[_address];
    }

    function excludedFromFees(
        address _address,
        bool _value
    ) external onlyOwner {
        _isExcludedFromFees[_address] = _value;
    }

    function setPlatformAndRewardsWL(address _newAddress) external {
        if (_msgSender() != owner() || _msgSender() != platformAndRewards) {
            revert NotAuthorized();
        }
        platformAndRewards = _newAddress;
    }

    function rescueETH(uint256 amount) external {
        if (_msgSender() != owner() || _msgSender() != platformAndRewards) {
            revert NotAuthorized();
        }
        if (amount == 0) {
            amount = address(this).balance;
        }
        _safeTransferETH(_msgSender(), amount);
    }

    function _safeTransferETH(address to, uint256 amount) private {
        (bool _sent, ) = payable(to).call{value: amount}("");
        require(_sent, "send ETH failed");
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"MaxTxAmountExceeded","type":"error"},{"inputs":[],"name":"MaxWalletAmountExceeded","type":"error"},{"inputs":[],"name":"NotAuthorized","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":[],"name":"DisableLimits","type":"event"},{"anonymous":false,"inputs":[],"name":"OpenTrading","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SwapBack","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"excludedFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getIsExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"platformAndRewards","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"setPlatformAndRewardsWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setSwapTokenAt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokenAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","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"},{"stateMutability":"payable","type":"receive"}]

60a0604052737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff168152506a52b7d2dcc80cd2e400000060065560c86006546200006b919062001404565b6008556001600960156101000a81548160ff02191690831515021790555069043c33c1937564800000600a55601e600e55601e600f556000601060006101000a81548160ff021916908315150217905550348015620000c957600080fd5b506040518060400160405280600b81526020017f52756e65734272696467650000000000000000000000000000000000000000008152506040518060400160405280600281526020017f5242000000000000000000000000000000000000000000000000000000000000815250620001466200057260201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620001bb5760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620001b2919062001481565b60405180910390fd5b620001cc816200057a60201b60201c565b508160049081620001de91906200170e565b508060059081620001f091906200170e565b505050620002036200057260201b60201c565b600960016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000291573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b791906200182b565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000321573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034791906200182b565b6040518363ffffffff1660e01b8152600401620003669291906200185d565b6020604051808303816000875af115801562000386573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003ac91906200182b565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600b6000620004026200057260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000528620005196200057260201b60201c565b6006546200063e60201b60201c565b6200056c6200053c6200057260201b60201c565b6080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620006cb60201b60201c565b62001ce8565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620006b35760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620006aa919062001481565b60405180910390fd5b620006c760008383620006e560201b60201c565b5050565b620006e0838383600162000bc260201b60201c565b505050565b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680620007875750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806200083c5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156200083b5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b80620008545750601060009054906101000a900460ff165b1562000873576200086d83838362000da260201b60201c565b62000bbd565b600960009054906101000a900460ff16620008c5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008bc90620018eb565b60405180910390fd5b600960159054906101000a900460ff16156200099157600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015620009585750600854816200094a8462000fd560201b60201c565b6200095691906200190d565b115b1562000990576040517fa9a44dff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614801562000a015750600a54620009fe3062000fd560201b60201c565b10155b1562000a185762000a176200101e60201b60201c565b5b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160362000ac557600c600081548092919062000a859062001948565b91905055506064600f54600c541162000aa157600e5462000aa4565b60055b8362000ab1919062001995565b62000abd919062001404565b905062000b7a565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000b7957600d600081548092919062000b309062001948565b919050555060646002600f5462000b48919062001404565b600d541162000b5a57600e5462000b5d565b60055b8362000b6a919062001995565b62000b76919062001404565b90505b5b600081111562000ba85762000b9784308362000da260201b60201c565b808262000ba59190620019e0565b91505b62000bbb84848462000da260201b60201c565b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160362000c375760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040162000c2e919062001481565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000cac5760006040517f94280d6200000000000000000000000000000000000000000000000000000000815260040162000ca3919062001481565b60405180910390fd5b81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550801562000d9c578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405162000d93919062001a2c565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000df857806003600082825462000deb91906200190d565b9250508190555062000ed0565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562000e88578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040162000e7f9392919062001a49565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000f1b578060036000828254039250508190555062000f69565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000fc8919062001a2c565b60405180910390a3505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6001601060006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115620010595762001058620014a9565b5b604051908082528060200260200182016040528015620010885781602001602082028036833780820191505090505b5090503081600081518110620010a357620010a262001a86565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200112b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200115191906200182b565b8160018151811062001168576200116762001a86565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050620011b930608051600a54620006cb60201b60201c565b60805173ffffffffffffffffffffffffffffffffffffffff1663791ac947600a5460008430426040518663ffffffff1660e01b81526004016200120195949392919062001bc6565b600060405180830381600087803b1580156200121c57600080fd5b505af115801562001231573d6000803e3d6000fd5b505050506000606460504762001248919062001995565b62001254919062001404565b90506200128a600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682620012e460201b60201c565b7fd851aeb8e2074b285cc12da5e2fbf79e642e38f62ef8e59590790c157491ee05600a54604051620012bd919062001a2c565b60405180910390a150506000601060006101000a81548160ff021916908315150217905550565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516200130c9062001c5f565b60006040518083038185875af1925050503d80600081146200134b576040519150601f19603f3d011682016040523d82523d6000602084013e62001350565b606091505b505090508062001397576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200138e9062001cc6565b60405180910390fd5b505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062001411826200139c565b91506200141e836200139c565b925082620014315762001430620013a6565b5b828204905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062001469826200143c565b9050919050565b6200147b816200145c565b82525050565b600060208201905062001498600083018462001470565b92915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200152057607f821691505b602082108103620015365762001535620014d8565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620015a07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262001561565b620015ac868362001561565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620015ef620015e9620015e3846200139c565b620015c4565b6200139c565b9050919050565b6000819050919050565b6200160b83620015ce565b620016236200161a82620015f6565b8484546200156e565b825550505050565b600090565b6200163a6200162b565b6200164781848462001600565b505050565b5b818110156200166f576200166360008262001630565b6001810190506200164d565b5050565b601f821115620016be5762001688816200153c565b620016938462001551565b81016020851015620016a3578190505b620016bb620016b28562001551565b8301826200164c565b50505b505050565b600082821c905092915050565b6000620016e360001984600802620016c3565b1980831691505092915050565b6000620016fe8383620016d0565b9150826002028217905092915050565b62001719826200149e565b67ffffffffffffffff811115620017355762001734620014a9565b5b62001741825462001507565b6200174e82828562001673565b600060209050601f83116001811462001786576000841562001771578287015190505b6200177d8582620016f0565b865550620017ed565b601f19841662001796866200153c565b60005b82811015620017c05784890151825560018201915060208501945060208101905062001799565b86831015620017e05784890151620017dc601f891682620016d0565b8355505b6001600288020188555050505b505050505050565b600080fd5b62001805816200145c565b81146200181157600080fd5b50565b6000815190506200182581620017fa565b92915050565b600060208284031215620018445762001843620017f5565b5b6000620018548482850162001814565b91505092915050565b600060408201905062001874600083018562001470565b62001883602083018462001470565b9392505050565b600082825260208201905092915050565b7f54726164696e67206973206e6f74206f70656e00000000000000000000000000600082015250565b6000620018d36013836200188a565b9150620018e0826200189b565b602082019050919050565b600060208201905081810360008301526200190681620018c4565b9050919050565b60006200191a826200139c565b915062001927836200139c565b9250828201905080821115620019425762001941620013d5565b5b92915050565b600062001955826200139c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036200198a5762001989620013d5565b5b600182019050919050565b6000620019a2826200139c565b9150620019af836200139c565b9250828202620019bf816200139c565b91508282048414831517620019d957620019d8620013d5565b5b5092915050565b6000620019ed826200139c565b9150620019fa836200139c565b925082820390508181111562001a155762001a14620013d5565b5b92915050565b62001a26816200139c565b82525050565b600060208201905062001a43600083018462001a1b565b92915050565b600060608201905062001a60600083018662001470565b62001a6f602083018562001a1b565b62001a7e604083018462001a1b565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600062001ae062001ada62001ad48462001ab5565b620015c4565b6200139c565b9050919050565b62001af28162001abf565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b62001b2f816200145c565b82525050565b600062001b43838362001b24565b60208301905092915050565b6000602082019050919050565b600062001b698262001af8565b62001b75818562001b03565b935062001b828362001b14565b8060005b8381101562001bb957815162001b9d888262001b35565b975062001baa8362001b4f565b92505060018101905062001b86565b5085935050505092915050565b600060a08201905062001bdd600083018862001a1b565b62001bec602083018762001ae7565b818103604083015262001c00818662001b5c565b905062001c11606083018562001470565b62001c20608083018462001a1b565b9695505050505050565b600081905092915050565b50565b600062001c4760008362001c2a565b915062001c548262001c35565b600082019050919050565b600062001c6c8262001c38565b9150819050919050565b7f73656e6420455448206661696c65640000000000000000000000000000000000600082015250565b600062001cae600f836200188a565b915062001cbb8262001c76565b602082019050919050565b6000602082019050818103600083015262001ce18162001c9f565b9050919050565b6080516127c862001d1260003960008181611b1101528181611bf20152611c1b01526127c86000f3fe60806040526004361061014f5760003560e01c80637b16cea0116100b6578063a8aa1b311161006f578063a8aa1b311461048b578063a9059cbb146104b6578063c9567bf9146104f3578063dd62ed3e1461050a578063f2fde38b14610547578063f928364c1461057057610156565b80637b16cea01461037b578063864b3167146103b85780638da5cb5b146103e157806395d89b411461040c5780639e252f0014610437578063a4d66daf1461046057610156565b8063313ce56711610108578063313ce5671461027d5780633f1caea8146102a857806342966c68146102d357806370a08231146102fc578063715018a61461033957806373bc5a361461035057610156565b806306fdde031461015b578063095ea7b3146101865780631560ac61146101c357806316697fc5146101ec57806318160ddd1461021557806323b872dd1461024057610156565b3661015657005b600080fd5b34801561016757600080fd5b50610170610587565b60405161017d9190611de0565b60405180910390f35b34801561019257600080fd5b506101ad60048036038101906101a89190611e9b565b610619565b6040516101ba9190611ef6565b60405180910390f35b3480156101cf57600080fd5b506101ea60048036038101906101e59190611f11565b61063c565b005b3480156101f857600080fd5b50610213600480360381019061020e9190611f6a565b610755565b005b34801561022157600080fd5b5061022a6107b8565b6040516102379190611fb9565b60405180910390f35b34801561024c57600080fd5b5061026760048036038101906102629190611fd4565b6107c2565b6040516102749190611ef6565b60405180910390f35b34801561028957600080fd5b506102926107f1565b60405161029f9190612043565b60405180910390f35b3480156102b457600080fd5b506102bd6107fa565b6040516102ca919061206d565b60405180910390f35b3480156102df57600080fd5b506102fa60048036038101906102f59190612088565b610820565b005b34801561030857600080fd5b50610323600480360381019061031e9190611f11565b610834565b6040516103309190611fb9565b60405180910390f35b34801561034557600080fd5b5061034e61087d565b005b34801561035c57600080fd5b50610365610891565b6040516103729190611fb9565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d9190611f11565b610897565b6040516103af9190611ef6565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da9190612088565b6108ed565b005b3480156103ed57600080fd5b506103f6610950565b604051610403919061206d565b60405180910390f35b34801561041857600080fd5b50610421610979565b60405161042e9190611de0565b60405180910390f35b34801561044357600080fd5b5061045e60048036038101906104599190612088565b610a0b565b005b34801561046c57600080fd5b50610475610b00565b6040516104829190611ef6565b60405180910390f35b34801561049757600080fd5b506104a0610b13565b6040516104ad919061206d565b60405180910390f35b3480156104c257600080fd5b506104dd60048036038101906104d89190611e9b565b610b39565b6040516104ea9190611ef6565b60405180910390f35b3480156104ff57600080fd5b50610508610b5c565b005b34801561051657600080fd5b50610531600480360381019061052c91906120b5565b610bfd565b60405161053e9190611fb9565b60405180910390f35b34801561055357600080fd5b5061056e60048036038101906105699190611f11565b610c84565b005b34801561057c57600080fd5b50610585610d0a565b005b60606004805461059690612124565b80601f01602080910402602001604051908101604052809291908181526020018280546105c290612124565b801561060f5780601f106105e45761010080835404028352916020019161060f565b820191906000526020600020905b8154815290600101906020018083116105f257829003601f168201915b5050505050905090565b600080610624610db3565b9050610631818585610dbb565b600191505092915050565b610644610950565b73ffffffffffffffffffffffffffffffffffffffff16610662610db3565b73ffffffffffffffffffffffffffffffffffffffff161415806106da5750600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166106c1610db3565b73ffffffffffffffffffffffffffffffffffffffff1614155b15610711576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600960016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61075d610dcd565b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600354905090565b6000806107cd610db3565b90506107da858285610e54565b6107e5858585610ee8565b60019150509392505050565b60006012905090565b600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61083161082b610db3565b82610fdc565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610885610dcd565b61088f600061105e565b565b600a5481565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6108f5610dcd565b603260065461090491906121b3565b811115610946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093d90612256565b60405180910390fd5b80600a8190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461098890612124565b80601f01602080910402602001604051908101604052809291908181526020018280546109b490612124565b8015610a015780601f106109d657610100808354040283529160200191610a01565b820191906000526020600020905b8154815290600101906020018083116109e457829003601f168201915b5050505050905090565b610a13610950565b73ffffffffffffffffffffffffffffffffffffffff16610a31610db3565b73ffffffffffffffffffffffffffffffffffffffff16141580610aa95750600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610a90610db3565b73ffffffffffffffffffffffffffffffffffffffff1614155b15610ae0576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008103610aec574790505b610afd610af7610db3565b82611122565b50565b600960159054906101000a900460ff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610b44610db3565b9050610b51818585610ee8565b600191505092915050565b610b64610dcd565b600960009054906101000a900460ff1615610bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bab906122c2565b60405180910390fd5b6001600960006101000a81548160ff0219169083151502179055507f51cd7cc33235a1c89f708fecec535bf7cca0f94ed05216751befb052ca83e67960405160405180910390a1565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c8c610dcd565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cfe5760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610cf5919061206d565b60405180910390fd5b610d078161105e565b50565b610d12610dcd565b600960159054906101000a900460ff16610d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d589061232e565b60405180910390fd5b6000600960156101000a81548160ff0219169083151502179055506006546008819055507fe9070d302280cd857033f56893647494c1410643fe239daabee29e9292199b3d60405160405180910390a1565b600033905090565b610dc883838360016111d3565b505050565b610dd5610db3565b73ffffffffffffffffffffffffffffffffffffffff16610df3610950565b73ffffffffffffffffffffffffffffffffffffffff1614610e5257610e16610db3565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610e49919061206d565b60405180910390fd5b565b6000610e608484610bfd565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ee25781811015610ed2578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610ec99392919061234e565b60405180910390fd5b610ee1848484840360006111d3565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f5a5760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610f51919061206d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fcc5760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610fc3919061206d565b60405180910390fd5b610fd78383836113aa565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361104e5760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611045919061206d565b60405180910390fd5b61105a826000836113aa565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611148906123b6565b60006040518083038185875af1925050503d8060008114611185576040519150601f19603f3d011682016040523d82523d6000602084013e61118a565b606091505b50509050806111ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c590612417565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036112455760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161123c919061206d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112b75760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016112ae919061206d565b60405180910390fd5b81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080156113a4578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161139b9190611fb9565b60405180910390a35b50505050565b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061144b5750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806114fe5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156114fd5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b806115155750601060009054906101000a900460ff165b1561152a5761152583838361182f565b61182a565b600960009054906101000a900460ff16611579576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157090612483565b60405180910390fd5b600960159054906101000a900460ff161561163857600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156116005750600854816115f484610834565b6115fe91906124a3565b115b15611637576040517fa9a44dff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614801561169f5750600a5461169c30610834565b10155b156116ad576116ac611a57565b5b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361175057600c6000815480929190611717906124d7565b91905055506064600f54600c541161173157600e54611734565b60055b8361173f919061251f565b61174991906121b3565b90506117fa565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117f957600d60008154809291906117b8906124d7565b919050555060646002600f546117ce91906121b3565b600d54116117de57600e546117e1565b60055b836117ec919061251f565b6117f691906121b3565b90505b5b600081111561181d5761180e84308361182f565b808261181a9190612561565b91505b61182884848461182f565b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361188157806003600082825461187591906124a3565b92505081905550611956565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561190e578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016119059392919061234e565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361199f57806003600082825403925050819055506119ed565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611a4a9190611fb9565b60405180910390a3505050565b6001601060006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611a8f57611a8e612595565b5b604051908082528060200260200182016040528015611abd5781602001602082028036833780820191505090505b5090503081600081518110611ad557611ad46125c4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b9e9190612608565b81600181518110611bb257611bb16125c4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611c19307f0000000000000000000000000000000000000000000000000000000000000000600a54610dbb565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947600a5460008430426040518663ffffffff1660e01b8152600401611c7d959493929190612738565b600060405180830381600087803b158015611c9757600080fd5b505af1158015611cab573d6000803e3d6000fd5b5050505060006064605047611cc0919061251f565b611cca91906121b3565b9050611cf8600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611122565b7fd851aeb8e2074b285cc12da5e2fbf79e642e38f62ef8e59590790c157491ee05600a54604051611d299190611fb9565b60405180910390a150506000601060006101000a81548160ff021916908315150217905550565b600081519050919050565b600082825260208201905092915050565b60005b83811015611d8a578082015181840152602081019050611d6f565b60008484015250505050565b6000601f19601f8301169050919050565b6000611db282611d50565b611dbc8185611d5b565b9350611dcc818560208601611d6c565b611dd581611d96565b840191505092915050565b60006020820190508181036000830152611dfa8184611da7565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611e3282611e07565b9050919050565b611e4281611e27565b8114611e4d57600080fd5b50565b600081359050611e5f81611e39565b92915050565b6000819050919050565b611e7881611e65565b8114611e8357600080fd5b50565b600081359050611e9581611e6f565b92915050565b60008060408385031215611eb257611eb1611e02565b5b6000611ec085828601611e50565b9250506020611ed185828601611e86565b9150509250929050565b60008115159050919050565b611ef081611edb565b82525050565b6000602082019050611f0b6000830184611ee7565b92915050565b600060208284031215611f2757611f26611e02565b5b6000611f3584828501611e50565b91505092915050565b611f4781611edb565b8114611f5257600080fd5b50565b600081359050611f6481611f3e565b92915050565b60008060408385031215611f8157611f80611e02565b5b6000611f8f85828601611e50565b9250506020611fa085828601611f55565b9150509250929050565b611fb381611e65565b82525050565b6000602082019050611fce6000830184611faa565b92915050565b600080600060608486031215611fed57611fec611e02565b5b6000611ffb86828701611e50565b935050602061200c86828701611e50565b925050604061201d86828701611e86565b9150509250925092565b600060ff82169050919050565b61203d81612027565b82525050565b60006020820190506120586000830184612034565b92915050565b61206781611e27565b82525050565b6000602082019050612082600083018461205e565b92915050565b60006020828403121561209e5761209d611e02565b5b60006120ac84828501611e86565b91505092915050565b600080604083850312156120cc576120cb611e02565b5b60006120da85828601611e50565b92505060206120eb85828601611e50565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061213c57607f821691505b60208210810361214f5761214e6120f5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006121be82611e65565b91506121c983611e65565b9250826121d9576121d8612155565b5b828204905092915050565b7f56616c7565206d757374206265206c657373207468616e206f7220657175616c60008201527f20746f20737570706c79202f2035300000000000000000000000000000000000602082015250565b6000612240602f83611d5b565b915061224b826121e4565b604082019050919050565b6000602082019050818103600083015261226f81612233565b9050919050565b7f656e61626c656421000000000000000000000000000000000000000000000000600082015250565b60006122ac600883611d5b565b91506122b782612276565b602082019050919050565b600060208201905081810360008301526122db8161229f565b9050919050565b7f4c696d69747320616c72656164792072656d6f76656400000000000000000000600082015250565b6000612318601683611d5b565b9150612323826122e2565b602082019050919050565b600060208201905081810360008301526123478161230b565b9050919050565b6000606082019050612363600083018661205e565b6123706020830185611faa565b61237d6040830184611faa565b949350505050565b600081905092915050565b50565b60006123a0600083612385565b91506123ab82612390565b600082019050919050565b60006123c182612393565b9150819050919050565b7f73656e6420455448206661696c65640000000000000000000000000000000000600082015250565b6000612401600f83611d5b565b915061240c826123cb565b602082019050919050565b60006020820190508181036000830152612430816123f4565b9050919050565b7f54726164696e67206973206e6f74206f70656e00000000000000000000000000600082015250565b600061246d601383611d5b565b915061247882612437565b602082019050919050565b6000602082019050818103600083015261249c81612460565b9050919050565b60006124ae82611e65565b91506124b983611e65565b92508282019050808211156124d1576124d0612184565b5b92915050565b60006124e282611e65565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361251457612513612184565b5b600182019050919050565b600061252a82611e65565b915061253583611e65565b925082820261254381611e65565b9150828204841483151761255a57612559612184565b5b5092915050565b600061256c82611e65565b915061257783611e65565b925082820390508181111561258f5761258e612184565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061260281611e39565b92915050565b60006020828403121561261e5761261d611e02565b5b600061262c848285016125f3565b91505092915050565b6000819050919050565b6000819050919050565b600061266461265f61265a84612635565b61263f565b611e65565b9050919050565b61267481612649565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6126af81611e27565b82525050565b60006126c183836126a6565b60208301905092915050565b6000602082019050919050565b60006126e58261267a565b6126ef8185612685565b93506126fa83612696565b8060005b8381101561272b57815161271288826126b5565b975061271d836126cd565b9250506001810190506126fe565b5085935050505092915050565b600060a08201905061274d6000830188611faa565b61275a602083018761266b565b818103604083015261276c81866126da565b905061277b606083018561205e565b6127886080830184611faa565b969550505050505056fea2646970667358221220ed2efacf3456bd3e1a1cb626f6af8ee954fd0a22465be2d4bbc209f6fc90f3d964736f6c63430008170033

Deployed Bytecode

0x60806040526004361061014f5760003560e01c80637b16cea0116100b6578063a8aa1b311161006f578063a8aa1b311461048b578063a9059cbb146104b6578063c9567bf9146104f3578063dd62ed3e1461050a578063f2fde38b14610547578063f928364c1461057057610156565b80637b16cea01461037b578063864b3167146103b85780638da5cb5b146103e157806395d89b411461040c5780639e252f0014610437578063a4d66daf1461046057610156565b8063313ce56711610108578063313ce5671461027d5780633f1caea8146102a857806342966c68146102d357806370a08231146102fc578063715018a61461033957806373bc5a361461035057610156565b806306fdde031461015b578063095ea7b3146101865780631560ac61146101c357806316697fc5146101ec57806318160ddd1461021557806323b872dd1461024057610156565b3661015657005b600080fd5b34801561016757600080fd5b50610170610587565b60405161017d9190611de0565b60405180910390f35b34801561019257600080fd5b506101ad60048036038101906101a89190611e9b565b610619565b6040516101ba9190611ef6565b60405180910390f35b3480156101cf57600080fd5b506101ea60048036038101906101e59190611f11565b61063c565b005b3480156101f857600080fd5b50610213600480360381019061020e9190611f6a565b610755565b005b34801561022157600080fd5b5061022a6107b8565b6040516102379190611fb9565b60405180910390f35b34801561024c57600080fd5b5061026760048036038101906102629190611fd4565b6107c2565b6040516102749190611ef6565b60405180910390f35b34801561028957600080fd5b506102926107f1565b60405161029f9190612043565b60405180910390f35b3480156102b457600080fd5b506102bd6107fa565b6040516102ca919061206d565b60405180910390f35b3480156102df57600080fd5b506102fa60048036038101906102f59190612088565b610820565b005b34801561030857600080fd5b50610323600480360381019061031e9190611f11565b610834565b6040516103309190611fb9565b60405180910390f35b34801561034557600080fd5b5061034e61087d565b005b34801561035c57600080fd5b50610365610891565b6040516103729190611fb9565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d9190611f11565b610897565b6040516103af9190611ef6565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da9190612088565b6108ed565b005b3480156103ed57600080fd5b506103f6610950565b604051610403919061206d565b60405180910390f35b34801561041857600080fd5b50610421610979565b60405161042e9190611de0565b60405180910390f35b34801561044357600080fd5b5061045e60048036038101906104599190612088565b610a0b565b005b34801561046c57600080fd5b50610475610b00565b6040516104829190611ef6565b60405180910390f35b34801561049757600080fd5b506104a0610b13565b6040516104ad919061206d565b60405180910390f35b3480156104c257600080fd5b506104dd60048036038101906104d89190611e9b565b610b39565b6040516104ea9190611ef6565b60405180910390f35b3480156104ff57600080fd5b50610508610b5c565b005b34801561051657600080fd5b50610531600480360381019061052c91906120b5565b610bfd565b60405161053e9190611fb9565b60405180910390f35b34801561055357600080fd5b5061056e60048036038101906105699190611f11565b610c84565b005b34801561057c57600080fd5b50610585610d0a565b005b60606004805461059690612124565b80601f01602080910402602001604051908101604052809291908181526020018280546105c290612124565b801561060f5780601f106105e45761010080835404028352916020019161060f565b820191906000526020600020905b8154815290600101906020018083116105f257829003601f168201915b5050505050905090565b600080610624610db3565b9050610631818585610dbb565b600191505092915050565b610644610950565b73ffffffffffffffffffffffffffffffffffffffff16610662610db3565b73ffffffffffffffffffffffffffffffffffffffff161415806106da5750600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166106c1610db3565b73ffffffffffffffffffffffffffffffffffffffff1614155b15610711576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600960016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61075d610dcd565b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600354905090565b6000806107cd610db3565b90506107da858285610e54565b6107e5858585610ee8565b60019150509392505050565b60006012905090565b600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61083161082b610db3565b82610fdc565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610885610dcd565b61088f600061105e565b565b600a5481565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6108f5610dcd565b603260065461090491906121b3565b811115610946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093d90612256565b60405180910390fd5b80600a8190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461098890612124565b80601f01602080910402602001604051908101604052809291908181526020018280546109b490612124565b8015610a015780601f106109d657610100808354040283529160200191610a01565b820191906000526020600020905b8154815290600101906020018083116109e457829003601f168201915b5050505050905090565b610a13610950565b73ffffffffffffffffffffffffffffffffffffffff16610a31610db3565b73ffffffffffffffffffffffffffffffffffffffff16141580610aa95750600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610a90610db3565b73ffffffffffffffffffffffffffffffffffffffff1614155b15610ae0576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008103610aec574790505b610afd610af7610db3565b82611122565b50565b600960159054906101000a900460ff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610b44610db3565b9050610b51818585610ee8565b600191505092915050565b610b64610dcd565b600960009054906101000a900460ff1615610bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bab906122c2565b60405180910390fd5b6001600960006101000a81548160ff0219169083151502179055507f51cd7cc33235a1c89f708fecec535bf7cca0f94ed05216751befb052ca83e67960405160405180910390a1565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c8c610dcd565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cfe5760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610cf5919061206d565b60405180910390fd5b610d078161105e565b50565b610d12610dcd565b600960159054906101000a900460ff16610d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d589061232e565b60405180910390fd5b6000600960156101000a81548160ff0219169083151502179055506006546008819055507fe9070d302280cd857033f56893647494c1410643fe239daabee29e9292199b3d60405160405180910390a1565b600033905090565b610dc883838360016111d3565b505050565b610dd5610db3565b73ffffffffffffffffffffffffffffffffffffffff16610df3610950565b73ffffffffffffffffffffffffffffffffffffffff1614610e5257610e16610db3565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610e49919061206d565b60405180910390fd5b565b6000610e608484610bfd565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ee25781811015610ed2578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610ec99392919061234e565b60405180910390fd5b610ee1848484840360006111d3565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f5a5760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610f51919061206d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fcc5760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610fc3919061206d565b60405180910390fd5b610fd78383836113aa565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361104e5760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611045919061206d565b60405180910390fd5b61105a826000836113aa565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611148906123b6565b60006040518083038185875af1925050503d8060008114611185576040519150601f19603f3d011682016040523d82523d6000602084013e61118a565b606091505b50509050806111ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c590612417565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036112455760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161123c919061206d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112b75760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016112ae919061206d565b60405180910390fd5b81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080156113a4578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161139b9190611fb9565b60405180910390a35b50505050565b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061144b5750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806114fe5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156114fd5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b806115155750601060009054906101000a900460ff165b1561152a5761152583838361182f565b61182a565b600960009054906101000a900460ff16611579576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157090612483565b60405180910390fd5b600960159054906101000a900460ff161561163857600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156116005750600854816115f484610834565b6115fe91906124a3565b115b15611637576040517fa9a44dff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614801561169f5750600a5461169c30610834565b10155b156116ad576116ac611a57565b5b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361175057600c6000815480929190611717906124d7565b91905055506064600f54600c541161173157600e54611734565b60055b8361173f919061251f565b61174991906121b3565b90506117fa565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117f957600d60008154809291906117b8906124d7565b919050555060646002600f546117ce91906121b3565b600d54116117de57600e546117e1565b60055b836117ec919061251f565b6117f691906121b3565b90505b5b600081111561181d5761180e84308361182f565b808261181a9190612561565b91505b61182884848461182f565b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361188157806003600082825461187591906124a3565b92505081905550611956565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561190e578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016119059392919061234e565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361199f57806003600082825403925050819055506119ed565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611a4a9190611fb9565b60405180910390a3505050565b6001601060006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611a8f57611a8e612595565b5b604051908082528060200260200182016040528015611abd5781602001602082028036833780820191505090505b5090503081600081518110611ad557611ad46125c4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b9e9190612608565b81600181518110611bb257611bb16125c4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611c19307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d600a54610dbb565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947600a5460008430426040518663ffffffff1660e01b8152600401611c7d959493929190612738565b600060405180830381600087803b158015611c9757600080fd5b505af1158015611cab573d6000803e3d6000fd5b5050505060006064605047611cc0919061251f565b611cca91906121b3565b9050611cf8600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611122565b7fd851aeb8e2074b285cc12da5e2fbf79e642e38f62ef8e59590790c157491ee05600a54604051611d299190611fb9565b60405180910390a150506000601060006101000a81548160ff021916908315150217905550565b600081519050919050565b600082825260208201905092915050565b60005b83811015611d8a578082015181840152602081019050611d6f565b60008484015250505050565b6000601f19601f8301169050919050565b6000611db282611d50565b611dbc8185611d5b565b9350611dcc818560208601611d6c565b611dd581611d96565b840191505092915050565b60006020820190508181036000830152611dfa8184611da7565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611e3282611e07565b9050919050565b611e4281611e27565b8114611e4d57600080fd5b50565b600081359050611e5f81611e39565b92915050565b6000819050919050565b611e7881611e65565b8114611e8357600080fd5b50565b600081359050611e9581611e6f565b92915050565b60008060408385031215611eb257611eb1611e02565b5b6000611ec085828601611e50565b9250506020611ed185828601611e86565b9150509250929050565b60008115159050919050565b611ef081611edb565b82525050565b6000602082019050611f0b6000830184611ee7565b92915050565b600060208284031215611f2757611f26611e02565b5b6000611f3584828501611e50565b91505092915050565b611f4781611edb565b8114611f5257600080fd5b50565b600081359050611f6481611f3e565b92915050565b60008060408385031215611f8157611f80611e02565b5b6000611f8f85828601611e50565b9250506020611fa085828601611f55565b9150509250929050565b611fb381611e65565b82525050565b6000602082019050611fce6000830184611faa565b92915050565b600080600060608486031215611fed57611fec611e02565b5b6000611ffb86828701611e50565b935050602061200c86828701611e50565b925050604061201d86828701611e86565b9150509250925092565b600060ff82169050919050565b61203d81612027565b82525050565b60006020820190506120586000830184612034565b92915050565b61206781611e27565b82525050565b6000602082019050612082600083018461205e565b92915050565b60006020828403121561209e5761209d611e02565b5b60006120ac84828501611e86565b91505092915050565b600080604083850312156120cc576120cb611e02565b5b60006120da85828601611e50565b92505060206120eb85828601611e50565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061213c57607f821691505b60208210810361214f5761214e6120f5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006121be82611e65565b91506121c983611e65565b9250826121d9576121d8612155565b5b828204905092915050565b7f56616c7565206d757374206265206c657373207468616e206f7220657175616c60008201527f20746f20737570706c79202f2035300000000000000000000000000000000000602082015250565b6000612240602f83611d5b565b915061224b826121e4565b604082019050919050565b6000602082019050818103600083015261226f81612233565b9050919050565b7f656e61626c656421000000000000000000000000000000000000000000000000600082015250565b60006122ac600883611d5b565b91506122b782612276565b602082019050919050565b600060208201905081810360008301526122db8161229f565b9050919050565b7f4c696d69747320616c72656164792072656d6f76656400000000000000000000600082015250565b6000612318601683611d5b565b9150612323826122e2565b602082019050919050565b600060208201905081810360008301526123478161230b565b9050919050565b6000606082019050612363600083018661205e565b6123706020830185611faa565b61237d6040830184611faa565b949350505050565b600081905092915050565b50565b60006123a0600083612385565b91506123ab82612390565b600082019050919050565b60006123c182612393565b9150819050919050565b7f73656e6420455448206661696c65640000000000000000000000000000000000600082015250565b6000612401600f83611d5b565b915061240c826123cb565b602082019050919050565b60006020820190508181036000830152612430816123f4565b9050919050565b7f54726164696e67206973206e6f74206f70656e00000000000000000000000000600082015250565b600061246d601383611d5b565b915061247882612437565b602082019050919050565b6000602082019050818103600083015261249c81612460565b9050919050565b60006124ae82611e65565b91506124b983611e65565b92508282019050808211156124d1576124d0612184565b5b92915050565b60006124e282611e65565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361251457612513612184565b5b600182019050919050565b600061252a82611e65565b915061253583611e65565b925082820261254381611e65565b9150828204841483151761255a57612559612184565b5b5092915050565b600061256c82611e65565b915061257783611e65565b925082820390508181111561258f5761258e612184565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061260281611e39565b92915050565b60006020828403121561261e5761261d611e02565b5b600061262c848285016125f3565b91505092915050565b6000819050919050565b6000819050919050565b600061266461265f61265a84612635565b61263f565b611e65565b9050919050565b61267481612649565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6126af81611e27565b82525050565b60006126c183836126a6565b60208301905092915050565b6000602082019050919050565b60006126e58261267a565b6126ef8185612685565b93506126fa83612696565b8060005b8381101561272b57815161271288826126b5565b975061271d836126cd565b9250506001810190506126fe565b5085935050505092915050565b600060a08201905061274d6000830188611faa565b61275a602083018761266b565b818103604083015261276c81866126da565b905061277b606083018561205e565b6127886080830184611faa565b969550505050505056fea2646970667358221220ed2efacf3456bd3e1a1cb626f6af8ee954fd0a22465be2d4bbc209f6fc90f3d964736f6c63430008170033

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.