ETH Price: $3,267.09 (+0.55%)
Gas: 1 Gwei

Token

BlazingPepe (PepeX)
 

Overview

Max Total Supply

271,925,906,054,802.307077134775884351 PepeX

Holders

187

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,500,688,706,760.972602839553424846 PepeX

Value
$0.00
0xd580229f564ef2b1cf39cf859f63856e9bbb2956
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
BlazingPepe

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : BlazingPepe.sol
//      BBBBB   l          a     zzzzz  i  n   n gggg   PPPP  eeeee  PPPP  eeeee
//      B    B  l         a a       z   i  nn  n g   g  P   P e      P   P e
//      BBBBB   l        aaaaa     z    i  n n n g      PPPPP eeee   PPPP  eeee
//      B    B  l       a     a  z      i  n  nn g  ggg P     e      P     e
//      BBBBB   llllll a       a zzzzz  i  n   n gggggg P     eeeee  P     eeeee

// Website: https://www.blazingpepe.com/
// Twitter: @BlazingPepe_eth
// Logo: https://www.blazingpepe.com/logo

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";

contract BlazingPepe is ERC20, ERC20Burnable, Ownable {
    using SafeMath for uint256;

    address private constant feeAddress1 = 0xD5F346BCE4846e94C7600D54E487F810Dd53305e;
    address private constant feeAddress2 = 0x99b26C4d4d5e8e29f32C43e8Dca59D7fdEee8348;

    uint256 private constant feePercentage = 7;
    uint256 private constant burnPercentage = 4;
    uint256 private constant feeAddress1Percentage = 2;
    uint256 private constant feeAddress2Percentage = 1;

    bool public feesEnabled = true;
    bool public renounceEnabled = true;

    IUniswapV2Router02 private uniswapV2Router;
    address public liquidityPair;

    uint256 public totalTokensBurned;
    mapping(address => bool) private bots;

    constructor() ERC20("BlazingPepe", "PepeX") {
        uint256 totalSupply = 420690000000000000000000000000000;
        _mint(msg.sender, totalSupply);
        // Replace the address below with the actual Uniswap V2 Router address
        address _uniswapV2Router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
        uniswapV2Router = IUniswapV2Router02(_uniswapV2Router);
    }

    function transfer(address recipient, uint256 amount) public override notBot returns (bool) {
        _transferWithFee(_msgSender(), recipient, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override notBot returns (bool) {
        _transferWithFee(sender, recipient, amount);
        _approve(sender, _msgSender(), allowance(sender, _msgSender()).sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    function _transferWithFee(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "ERC20: transfer amount must be greater than zero");
        require(balanceOf(sender) >= amount, "ERC20: insufficient balance");

        uint256 feeAmount = calculateFee(amount);
        uint256 burnAmount = feeAmount.mul(burnPercentage).div(feePercentage);
        uint256 feeAddress1Amount = feeAmount.mul(feeAddress1Percentage).div(feePercentage);
        uint256 feeAddress2Amount = feeAmount.mul(feeAddress2Percentage).div(feePercentage);

        _burn(sender, burnAmount);
        _transfer(sender, feeAddress1, feeAddress1Amount);
        _transfer(sender, feeAddress2, feeAddress2Amount);
        _transfer(sender, recipient, amount.sub(feeAmount));

        totalTokensBurned = totalTokensBurned.add(burnAmount);
    }

    function calculateFee(uint256 amount) internal view returns (uint256) {
        if (feesEnabled) {
            return amount.mul(feePercentage).div(100);
        } else {
            return 0;
        }
    }

    function disableFees() public onlyFeeAddress1 {
        feesEnabled = false;
    }

    function enableFees() public onlyFeeAddress1 {
        feesEnabled = true;
    }

    function renounceOwnership() public override onlyOwner {
        require(renounceEnabled, "Ownership renouncement is disabled");
        super.renounceOwnership();
    }

    function disableRenounce() public onlyFeeAddress1 {
        renounceEnabled = false;
    }

    function enableRenounce() public onlyFeeAddress1 {
        renounceEnabled = true;
    }

    function swapAndBurn(uint256 tokenAmount) external notBot {
        require(balanceOf(msg.sender) >= tokenAmount, "Insufficient balance");
        require(liquidityPair != address(0), "Liquidity pair not set");

        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        uint256 deadline = block.timestamp + 300; // Set a fixed deadline of 5 minutes (300 seconds)

        uint256 feeAmount = calculateFee(tokenAmount);
        uint256 burnAmount = feeAmount.mul(burnPercentage).div(feePercentage);
        uint256 feeAddress1Amount = feeAmount.mul(feeAddress1Percentage).div(feePercentage);
        uint256 feeAddress2Amount = feeAmount.mul(feeAddress2Percentage).div(feePercentage);

        // Approve the token transfer to the Uniswap router
        _approve(msg.sender, address(uniswapV2Router), tokenAmount);

        // Transfer tokens excluding fees to the contract address
        _transfer(msg.sender, address(this), tokenAmount.sub(feeAmount));

        // Get the contract's initial ETH balance before the swap
        uint256 initialEthBalance = address(this).balance;

        // Perform the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount.sub(feeAmount),
            0, // Min amount of ETH to receive (not used)
            path,
            address(this),
            deadline
        );

        // Calculate the received ETH amount after the swap
        uint256 ethReceived = address(this).balance.sub(initialEthBalance);

        // Transfer fees to the fee addresses
        _transfer(address(this), feeAddress1, feeAddress1Amount);
        _transfer(address(this), feeAddress2, feeAddress2Amount);

        // Burn tokens (including the fees)
        _burn(address(this), burnAmount);

        // Transfer the remaining ETH back to the user
        (bool success, ) = msg.sender.call{value: ethReceived}("");
        require(success, "Failed to transfer ETH");

        // Update the total tokens burned
        totalTokensBurned = totalTokensBurned.add(burnAmount);
    }

    modifier onlyFeeAddress1() {
        require(msg.sender == feeAddress1, "Only feeAddress1 can call this function");
        _;
    }

    modifier notBot() {
        require(!bots[msg.sender], "Bots are not allowed to make transactions");
        _;
    }

    function setBotStatus(address user, bool isBot) external onlyFeeAddress1 {
        bots[user] = isBot;
    }

    function setLiquidityPair(address pairAddress) external onlyOwner {
        liquidityPair = pairAddress;
    }
}

File 2 of 10 : IUniswapV2Router02.sol
// SPDX-License-Identifier: MIT
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 3 of 10 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

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

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

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 4 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

File 5 of 10 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

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

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

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

File 7 of 10 : IUniswapV2Router01.sol
// SPDX-License-Identifier: MIT
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 8 of 10 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableRenounce","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableRenounce","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidityPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"bool","name":"isBot","type":"bool"}],"name":"setBotStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pairAddress","type":"address"}],"name":"setLiquidityPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"swapAndBurn","outputs":[],"stateMutability":"nonpayable","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":[],"name":"totalTokensBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600560146101000a81548160ff0219169083151502179055506001600560156101000a81548160ff02191690831515021790555034801562000046575f80fd5b506040518060400160405280600b81526020017f426c617a696e67506570650000000000000000000000000000000000000000008152506040518060400160405280600581526020017f50657065580000000000000000000000000000000000000000000000000000008152508160039081620000c491906200061a565b508060049081620000d691906200061a565b505050620000f9620000ed6200017d60201b60201c565b6200018460201b60201c565b5f6d14bddab3e51a57cff87a5000000090506200011d33826200024760201b60201c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d90508060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050506200080f565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002b8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002af906200075c565b60405180910390fd5b620002cb5f8383620003ac60201b60201c565b8060025f828254620002de9190620007a9565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200038d9190620007f4565b60405180910390a3620003a85f8383620003b160201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200043257607f821691505b602082108103620004485762000447620003ed565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620004ac7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200046f565b620004b886836200046f565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000502620004fc620004f684620004d0565b620004d9565b620004d0565b9050919050565b5f819050919050565b6200051d83620004e2565b620005356200052c8262000509565b8484546200047b565b825550505050565b5f90565b6200054b6200053d565b6200055881848462000512565b505050565b5b818110156200057f57620005735f8262000541565b6001810190506200055e565b5050565b601f821115620005ce5762000598816200044e565b620005a38462000460565b81016020851015620005b3578190505b620005cb620005c28562000460565b8301826200055d565b50505b505050565b5f82821c905092915050565b5f620005f05f1984600802620005d3565b1980831691505092915050565b5f6200060a8383620005df565b9150826002028217905092915050565b6200062582620003b6565b67ffffffffffffffff811115620006415762000640620003c0565b5b6200064d82546200041a565b6200065a82828562000583565b5f60209050601f83116001811462000690575f84156200067b578287015190505b620006878582620005fd565b865550620006f6565b601f198416620006a0866200044e565b5f5b82811015620006c957848901518255600182019150602085019450602081019050620006a2565b86831015620006e95784890151620006e5601f891682620005df565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000744601f83620006fe565b915062000751826200070e565b602082019050919050565b5f6020820190508181035f830152620007758162000736565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620007b582620004d0565b9150620007c283620004d0565b9250828201905080821115620007dd57620007dc6200077c565b5b92915050565b620007ee81620004d0565b82525050565b5f602082019050620008095f830184620007e3565b92915050565b61308a806200081d5f395ff3fe608060405234801561000f575f80fd5b50600436106101a7575f3560e01c8063808a5457116100f7578063b3d618db11610095578063d157e3011161006f578063d157e3011461046f578063dd62ed3e1461048d578063f2fde38b146104bd578063fbd0f232146104d9576101a7565b8063b3d618db1461043f578063b4780e851461045b578063ce404b2314610465576101a7565b80639d93598e116100d15780639d93598e146103a5578063a457c2d7146103c1578063a64e4f8a146103f1578063a9059cbb1461040f576101a7565b8063808a54571461034b5780638da5cb5b1461036957806395d89b4114610387576101a7565b8063368f5bd5116101645780635e8d6e491161013e5780635e8d6e49146102d757806370a08231146102f5578063715018a61461032557806379cc67901461032f576101a7565b8063368f5bd514610281578063395093511461028b57806342966c68146102bb576101a7565b806306fdde03146101ab578063095ea7b3146101c957806318160ddd146101f95780631d65a6ca1461021757806323b872dd14610233578063313ce56714610263575b5f80fd5b6101b36104e3565b6040516101c09190611fdb565b60405180910390f35b6101e360048036038101906101de919061208c565b610573565b6040516101f091906120e4565b60405180910390f35b610201610595565b60405161020e919061210c565b60405180910390f35b610231600480360381019061022c9190612125565b61059e565b005b61024d60048036038101906102489190612150565b610b2f565b60405161025a91906120e4565b60405180910390f35b61026b610c1e565b60405161027891906121bb565b60405180910390f35b610289610c26565b005b6102a560048036038101906102a0919061208c565b610cc5565b6040516102b291906120e4565b60405180910390f35b6102d560048036038101906102d09190612125565b610cfb565b005b6102df610d0f565b6040516102ec91906120e4565b60405180910390f35b61030f600480360381019061030a91906121d4565b610d22565b60405161031c919061210c565b60405180910390f35b61032d610d67565b005b6103496004803603810190610344919061208c565b610dc8565b005b610353610de8565b604051610360919061220e565b60405180910390f35b610371610e0d565b60405161037e919061220e565b60405180910390f35b61038f610e35565b60405161039c9190611fdb565b60405180910390f35b6103bf60048036038101906103ba91906121d4565b610ec5565b005b6103db60048036038101906103d6919061208c565b610f10565b6040516103e891906120e4565b60405180910390f35b6103f9610f85565b60405161040691906120e4565b60405180910390f35b6104296004803603810190610424919061208c565b610f98565b60405161043691906120e4565b60405180910390f35b61045960048036038101906104549190612251565b61103f565b005b610463611119565b005b61046d6111b8565b005b610477611256565b604051610484919061210c565b60405180910390f35b6104a760048036038101906104a2919061228f565b61125c565b6040516104b4919061210c565b60405180910390f35b6104d760048036038101906104d291906121d4565b6112de565b005b6104e1611360565b005b6060600380546104f2906122fa565b80601f016020809104026020016040519081016040528092919081815260200182805461051e906122fa565b80156105695780601f1061054057610100808354040283529160200191610569565b820191905f5260205f20905b81548152906001019060200180831161054c57829003601f168201915b5050505050905090565b5f8061057d6113fe565b905061058a818585611405565b600191505092915050565b5f600254905090565b60095f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061f9061239a565b60405180910390fd5b8061063233610d22565b1015610673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066a90612402565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f99061246a565b60405180910390fd5b5f600267ffffffffffffffff81111561071e5761071d612488565b5b60405190808252806020026020018201604052801561074c5781602001602082028036833780820191505090505b50905030815f81518110610763576107626124b5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610807573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061082b91906124f6565b8160018151811061083f5761083e6124b5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250505f61012c42610888919061254e565b90505f610894846115c8565b90505f6108be60076108b060048561161590919063ffffffff16565b61162a90919063ffffffff16565b90505f6108e860076108da60028661161590919063ffffffff16565b61162a90919063ffffffff16565b90505f610912600761090460018761161590919063ffffffff16565b61162a90919063ffffffff16565b90506109403360065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1689611405565b61095d3330610958878b61163f90919063ffffffff16565b611654565b5f47905060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9476109b1878b61163f90919063ffffffff16565b5f8a308b6040518663ffffffff1660e01b81526004016109d595949392919061267a565b5f604051808303815f87803b1580156109ec575f80fd5b505af11580156109fe573d5f803e3d5ffd5b505050505f610a16824761163f90919063ffffffff16565b9050610a373073d5f346bce4846e94c7600d54e487f810dd53305e86611654565b610a56307399b26c4d4d5e8e29f32c43e8dca59d7fdeee834885611654565b610a6030866118c0565b5f3373ffffffffffffffffffffffffffffffffffffffff1682604051610a85906126ff565b5f6040518083038185875af1925050503d805f8114610abf576040519150601f19603f3d011682016040523d82523d5f602084013e610ac4565b606091505b5050905080610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff9061275d565b60405180910390fd5b610b1d86600854611a8390919063ffffffff16565b60088190555050505050505050505050565b5f60095f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb19061239a565b60405180910390fd5b610bc5848484611a98565b610c1384610bd16113fe565b610c0e8560405180606001604052806028815260200161302d60289139610bff8a610bfa6113fe565b61125c565b611d149092919063ffffffff16565b611405565b600190509392505050565b5f6012905090565b73d5f346bce4846e94c7600d54e487f810dd53305e73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ca8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9f906127eb565b60405180910390fd5b6001600560146101000a81548160ff021916908315150217905550565b5f80610ccf6113fe565b9050610cf0818585610ce1858961125c565b610ceb919061254e565b611405565b600191505092915050565b610d0c610d066113fe565b826118c0565b50565b600560159054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610d6f611d68565b600560159054906101000a900460ff16610dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db590612879565b60405180910390fd5b610dc6611de6565b565b610dda82610dd46113fe565b83611df9565b610de482826118c0565b5050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610e44906122fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610e70906122fa565b8015610ebb5780601f10610e9257610100808354040283529160200191610ebb565b820191905f5260205f20905b815481529060010190602001808311610e9e57829003601f168201915b5050505050905090565b610ecd611d68565b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f80610f1a6113fe565b90505f610f27828661125c565b905083811015610f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6390612907565b60405180910390fd5b610f798286868403611405565b60019250505092915050565b600560149054906101000a900460ff1681565b5f60095f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101a9061239a565b60405180910390fd5b61103561102e6113fe565b8484611a98565b6001905092915050565b73d5f346bce4846e94c7600d54e487f810dd53305e73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b8906127eb565b60405180910390fd5b8060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b73d5f346bce4846e94c7600d54e487f810dd53305e73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461119b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611192906127eb565b60405180910390fd5b6001600560156101000a81548160ff021916908315150217905550565b73d5f346bce4846e94c7600d54e487f810dd53305e73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461123a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611231906127eb565b60405180910390fd5b5f600560146101000a81548160ff021916908315150217905550565b60085481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6112e6611d68565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134b90612995565b60405180910390fd5b61135d81611e84565b50565b73d5f346bce4846e94c7600d54e487f810dd53305e73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146113e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d9906127eb565b60405180910390fd5b5f600560156101000a81548160ff021916908315150217905550565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146a90612a23565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d890612ab1565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115bb919061210c565b60405180910390a3505050565b5f600560149054906101000a900460ff161561160c5761160560646115f760078561161590919063ffffffff16565b61162a90919063ffffffff16565b9050611610565b5f90505b919050565b5f81836116229190612acf565b905092915050565b5f81836116379190612b3d565b905092915050565b5f818361164c9190612b6d565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b990612c10565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172790612c9e565b60405180910390fd5b61173b838383611f47565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156117be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b590612d2c565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118a7919061210c565b60405180910390a36118ba848484611f4c565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361192e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192590612dba565b60405180910390fd5b611939825f83611f47565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156119bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b390612e48565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a6b919061210c565b60405180910390a3611a7e835f84611f4c565b505050565b5f8183611a90919061254e565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afd90612c10565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6b90612c9e565b60405180910390fd5b5f8111611bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bad90612ed6565b60405180910390fd5b80611bc084610d22565b1015611c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf890612f3e565b60405180910390fd5b5f611c0b826115c8565b90505f611c356007611c2760048561161590919063ffffffff16565b61162a90919063ffffffff16565b90505f611c5f6007611c5160028661161590919063ffffffff16565b61162a90919063ffffffff16565b90505f611c896007611c7b60018761161590919063ffffffff16565b61162a90919063ffffffff16565b9050611c9587846118c0565b611cb48773d5f346bce4846e94c7600d54e487f810dd53305e84611654565b611cd3877399b26c4d4d5e8e29f32c43e8dca59d7fdeee834883611654565b611cf08787611ceb878961163f90919063ffffffff16565b611654565b611d0583600854611a8390919063ffffffff16565b60088190555050505050505050565b5f838311158290611d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d529190611fdb565b60405180910390fd5b5082840390509392505050565b611d706113fe565b73ffffffffffffffffffffffffffffffffffffffff16611d8e610e0d565b73ffffffffffffffffffffffffffffffffffffffff1614611de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddb90612fa6565b60405180910390fd5b565b611dee611d68565b611df75f611e84565b565b5f611e04848461125c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611e7e5781811015611e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e679061300e565b60405180910390fd5b611e7d8484848403611405565b5b50505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611f88578082015181840152602081019050611f6d565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611fad82611f51565b611fb78185611f5b565b9350611fc7818560208601611f6b565b611fd081611f93565b840191505092915050565b5f6020820190508181035f830152611ff38184611fa3565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61202882611fff565b9050919050565b6120388161201e565b8114612042575f80fd5b50565b5f813590506120538161202f565b92915050565b5f819050919050565b61206b81612059565b8114612075575f80fd5b50565b5f8135905061208681612062565b92915050565b5f80604083850312156120a2576120a1611ffb565b5b5f6120af85828601612045565b92505060206120c085828601612078565b9150509250929050565b5f8115159050919050565b6120de816120ca565b82525050565b5f6020820190506120f75f8301846120d5565b92915050565b61210681612059565b82525050565b5f60208201905061211f5f8301846120fd565b92915050565b5f6020828403121561213a57612139611ffb565b5b5f61214784828501612078565b91505092915050565b5f805f6060848603121561216757612166611ffb565b5b5f61217486828701612045565b935050602061218586828701612045565b925050604061219686828701612078565b9150509250925092565b5f60ff82169050919050565b6121b5816121a0565b82525050565b5f6020820190506121ce5f8301846121ac565b92915050565b5f602082840312156121e9576121e8611ffb565b5b5f6121f684828501612045565b91505092915050565b6122088161201e565b82525050565b5f6020820190506122215f8301846121ff565b92915050565b612230816120ca565b811461223a575f80fd5b50565b5f8135905061224b81612227565b92915050565b5f806040838503121561226757612266611ffb565b5b5f61227485828601612045565b92505060206122858582860161223d565b9150509250929050565b5f80604083850312156122a5576122a4611ffb565b5b5f6122b285828601612045565b92505060206122c385828601612045565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061231157607f821691505b602082108103612324576123236122cd565b5b50919050565b7f426f747320617265206e6f7420616c6c6f77656420746f206d616b65207472615f8201527f6e73616374696f6e730000000000000000000000000000000000000000000000602082015250565b5f612384602983611f5b565b915061238f8261232a565b604082019050919050565b5f6020820190508181035f8301526123b181612378565b9050919050565b7f496e73756666696369656e742062616c616e63650000000000000000000000005f82015250565b5f6123ec601483611f5b565b91506123f7826123b8565b602082019050919050565b5f6020820190508181035f830152612419816123e0565b9050919050565b7f4c69717569646974792070616972206e6f7420736574000000000000000000005f82015250565b5f612454601683611f5b565b915061245f82612420565b602082019050919050565b5f6020820190508181035f83015261248181612448565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506124f08161202f565b92915050565b5f6020828403121561250b5761250a611ffb565b5b5f612518848285016124e2565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61255882612059565b915061256383612059565b925082820190508082111561257b5761257a612521565b5b92915050565b5f819050919050565b5f819050919050565b5f6125ad6125a86125a384612581565b61258a565b612059565b9050919050565b6125bd81612593565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6125f58161201e565b82525050565b5f61260683836125ec565b60208301905092915050565b5f602082019050919050565b5f612628826125c3565b61263281856125cd565b935061263d836125dd565b805f5b8381101561266d57815161265488826125fb565b975061265f83612612565b925050600181019050612640565b5085935050505092915050565b5f60a08201905061268d5f8301886120fd565b61269a60208301876125b4565b81810360408301526126ac818661261e565b90506126bb60608301856121ff565b6126c860808301846120fd565b9695505050505050565b5f81905092915050565b50565b5f6126ea5f836126d2565b91506126f5826126dc565b5f82019050919050565b5f612709826126df565b9150819050919050565b7f4661696c656420746f207472616e7366657220455448000000000000000000005f82015250565b5f612747601683611f5b565b915061275282612713565b602082019050919050565b5f6020820190508181035f8301526127748161273b565b9050919050565b7f4f6e6c792066656541646472657373312063616e2063616c6c207468697320665f8201527f756e6374696f6e00000000000000000000000000000000000000000000000000602082015250565b5f6127d5602783611f5b565b91506127e08261277b565b604082019050919050565b5f6020820190508181035f830152612802816127c9565b9050919050565b7f4f776e6572736869702072656e6f756e63656d656e742069732064697361626c5f8201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b5f612863602283611f5b565b915061286e82612809565b604082019050919050565b5f6020820190508181035f83015261289081612857565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6128f1602583611f5b565b91506128fc82612897565b604082019050919050565b5f6020820190508181035f83015261291e816128e5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61297f602683611f5b565b915061298a82612925565b604082019050919050565b5f6020820190508181035f8301526129ac81612973565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612a0d602483611f5b565b9150612a18826129b3565b604082019050919050565b5f6020820190508181035f830152612a3a81612a01565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612a9b602283611f5b565b9150612aa682612a41565b604082019050919050565b5f6020820190508181035f830152612ac881612a8f565b9050919050565b5f612ad982612059565b9150612ae483612059565b9250828202612af281612059565b91508282048414831517612b0957612b08612521565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612b4782612059565b9150612b5283612059565b925082612b6257612b61612b10565b5b828204905092915050565b5f612b7782612059565b9150612b8283612059565b9250828203905081811115612b9a57612b99612521565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612bfa602583611f5b565b9150612c0582612ba0565b604082019050919050565b5f6020820190508181035f830152612c2781612bee565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612c88602383611f5b565b9150612c9382612c2e565b604082019050919050565b5f6020820190508181035f830152612cb581612c7c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612d16602683611f5b565b9150612d2182612cbc565b604082019050919050565b5f6020820190508181035f830152612d4381612d0a565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f612da4602183611f5b565b9150612daf82612d4a565b604082019050919050565b5f6020820190508181035f830152612dd181612d98565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f612e32602283611f5b565b9150612e3d82612dd8565b604082019050919050565b5f6020820190508181035f830152612e5f81612e26565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206d75737420626520675f8201527f726561746572207468616e207a65726f00000000000000000000000000000000602082015250565b5f612ec0603083611f5b565b9150612ecb82612e66565b604082019050919050565b5f6020820190508181035f830152612eed81612eb4565b9050919050565b7f45524332303a20696e73756666696369656e742062616c616e636500000000005f82015250565b5f612f28601b83611f5b565b9150612f3382612ef4565b602082019050919050565b5f6020820190508181035f830152612f5581612f1c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612f90602083611f5b565b9150612f9b82612f5c565b602082019050919050565b5f6020820190508181035f830152612fbd81612f84565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612ff8601d83611f5b565b915061300382612fc4565b602082019050919050565b5f6020820190508181035f83015261302581612fec565b905091905056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220015ce06d426247919ff41538f5abaff1099d1d19ea56800681fb02635fac606964736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106101a7575f3560e01c8063808a5457116100f7578063b3d618db11610095578063d157e3011161006f578063d157e3011461046f578063dd62ed3e1461048d578063f2fde38b146104bd578063fbd0f232146104d9576101a7565b8063b3d618db1461043f578063b4780e851461045b578063ce404b2314610465576101a7565b80639d93598e116100d15780639d93598e146103a5578063a457c2d7146103c1578063a64e4f8a146103f1578063a9059cbb1461040f576101a7565b8063808a54571461034b5780638da5cb5b1461036957806395d89b4114610387576101a7565b8063368f5bd5116101645780635e8d6e491161013e5780635e8d6e49146102d757806370a08231146102f5578063715018a61461032557806379cc67901461032f576101a7565b8063368f5bd514610281578063395093511461028b57806342966c68146102bb576101a7565b806306fdde03146101ab578063095ea7b3146101c957806318160ddd146101f95780631d65a6ca1461021757806323b872dd14610233578063313ce56714610263575b5f80fd5b6101b36104e3565b6040516101c09190611fdb565b60405180910390f35b6101e360048036038101906101de919061208c565b610573565b6040516101f091906120e4565b60405180910390f35b610201610595565b60405161020e919061210c565b60405180910390f35b610231600480360381019061022c9190612125565b61059e565b005b61024d60048036038101906102489190612150565b610b2f565b60405161025a91906120e4565b60405180910390f35b61026b610c1e565b60405161027891906121bb565b60405180910390f35b610289610c26565b005b6102a560048036038101906102a0919061208c565b610cc5565b6040516102b291906120e4565b60405180910390f35b6102d560048036038101906102d09190612125565b610cfb565b005b6102df610d0f565b6040516102ec91906120e4565b60405180910390f35b61030f600480360381019061030a91906121d4565b610d22565b60405161031c919061210c565b60405180910390f35b61032d610d67565b005b6103496004803603810190610344919061208c565b610dc8565b005b610353610de8565b604051610360919061220e565b60405180910390f35b610371610e0d565b60405161037e919061220e565b60405180910390f35b61038f610e35565b60405161039c9190611fdb565b60405180910390f35b6103bf60048036038101906103ba91906121d4565b610ec5565b005b6103db60048036038101906103d6919061208c565b610f10565b6040516103e891906120e4565b60405180910390f35b6103f9610f85565b60405161040691906120e4565b60405180910390f35b6104296004803603810190610424919061208c565b610f98565b60405161043691906120e4565b60405180910390f35b61045960048036038101906104549190612251565b61103f565b005b610463611119565b005b61046d6111b8565b005b610477611256565b604051610484919061210c565b60405180910390f35b6104a760048036038101906104a2919061228f565b61125c565b6040516104b4919061210c565b60405180910390f35b6104d760048036038101906104d291906121d4565b6112de565b005b6104e1611360565b005b6060600380546104f2906122fa565b80601f016020809104026020016040519081016040528092919081815260200182805461051e906122fa565b80156105695780601f1061054057610100808354040283529160200191610569565b820191905f5260205f20905b81548152906001019060200180831161054c57829003601f168201915b5050505050905090565b5f8061057d6113fe565b905061058a818585611405565b600191505092915050565b5f600254905090565b60095f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061f9061239a565b60405180910390fd5b8061063233610d22565b1015610673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066a90612402565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f99061246a565b60405180910390fd5b5f600267ffffffffffffffff81111561071e5761071d612488565b5b60405190808252806020026020018201604052801561074c5781602001602082028036833780820191505090505b50905030815f81518110610763576107626124b5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610807573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061082b91906124f6565b8160018151811061083f5761083e6124b5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250505f61012c42610888919061254e565b90505f610894846115c8565b90505f6108be60076108b060048561161590919063ffffffff16565b61162a90919063ffffffff16565b90505f6108e860076108da60028661161590919063ffffffff16565b61162a90919063ffffffff16565b90505f610912600761090460018761161590919063ffffffff16565b61162a90919063ffffffff16565b90506109403360065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1689611405565b61095d3330610958878b61163f90919063ffffffff16565b611654565b5f47905060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9476109b1878b61163f90919063ffffffff16565b5f8a308b6040518663ffffffff1660e01b81526004016109d595949392919061267a565b5f604051808303815f87803b1580156109ec575f80fd5b505af11580156109fe573d5f803e3d5ffd5b505050505f610a16824761163f90919063ffffffff16565b9050610a373073d5f346bce4846e94c7600d54e487f810dd53305e86611654565b610a56307399b26c4d4d5e8e29f32c43e8dca59d7fdeee834885611654565b610a6030866118c0565b5f3373ffffffffffffffffffffffffffffffffffffffff1682604051610a85906126ff565b5f6040518083038185875af1925050503d805f8114610abf576040519150601f19603f3d011682016040523d82523d5f602084013e610ac4565b606091505b5050905080610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff9061275d565b60405180910390fd5b610b1d86600854611a8390919063ffffffff16565b60088190555050505050505050505050565b5f60095f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb19061239a565b60405180910390fd5b610bc5848484611a98565b610c1384610bd16113fe565b610c0e8560405180606001604052806028815260200161302d60289139610bff8a610bfa6113fe565b61125c565b611d149092919063ffffffff16565b611405565b600190509392505050565b5f6012905090565b73d5f346bce4846e94c7600d54e487f810dd53305e73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ca8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9f906127eb565b60405180910390fd5b6001600560146101000a81548160ff021916908315150217905550565b5f80610ccf6113fe565b9050610cf0818585610ce1858961125c565b610ceb919061254e565b611405565b600191505092915050565b610d0c610d066113fe565b826118c0565b50565b600560159054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610d6f611d68565b600560159054906101000a900460ff16610dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db590612879565b60405180910390fd5b610dc6611de6565b565b610dda82610dd46113fe565b83611df9565b610de482826118c0565b5050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610e44906122fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610e70906122fa565b8015610ebb5780601f10610e9257610100808354040283529160200191610ebb565b820191905f5260205f20905b815481529060010190602001808311610e9e57829003601f168201915b5050505050905090565b610ecd611d68565b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f80610f1a6113fe565b90505f610f27828661125c565b905083811015610f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6390612907565b60405180910390fd5b610f798286868403611405565b60019250505092915050565b600560149054906101000a900460ff1681565b5f60095f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101a9061239a565b60405180910390fd5b61103561102e6113fe565b8484611a98565b6001905092915050565b73d5f346bce4846e94c7600d54e487f810dd53305e73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b8906127eb565b60405180910390fd5b8060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b73d5f346bce4846e94c7600d54e487f810dd53305e73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461119b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611192906127eb565b60405180910390fd5b6001600560156101000a81548160ff021916908315150217905550565b73d5f346bce4846e94c7600d54e487f810dd53305e73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461123a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611231906127eb565b60405180910390fd5b5f600560146101000a81548160ff021916908315150217905550565b60085481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6112e6611d68565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134b90612995565b60405180910390fd5b61135d81611e84565b50565b73d5f346bce4846e94c7600d54e487f810dd53305e73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146113e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d9906127eb565b60405180910390fd5b5f600560156101000a81548160ff021916908315150217905550565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146a90612a23565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d890612ab1565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115bb919061210c565b60405180910390a3505050565b5f600560149054906101000a900460ff161561160c5761160560646115f760078561161590919063ffffffff16565b61162a90919063ffffffff16565b9050611610565b5f90505b919050565b5f81836116229190612acf565b905092915050565b5f81836116379190612b3d565b905092915050565b5f818361164c9190612b6d565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b990612c10565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172790612c9e565b60405180910390fd5b61173b838383611f47565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156117be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b590612d2c565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118a7919061210c565b60405180910390a36118ba848484611f4c565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361192e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192590612dba565b60405180910390fd5b611939825f83611f47565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156119bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b390612e48565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a6b919061210c565b60405180910390a3611a7e835f84611f4c565b505050565b5f8183611a90919061254e565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afd90612c10565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6b90612c9e565b60405180910390fd5b5f8111611bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bad90612ed6565b60405180910390fd5b80611bc084610d22565b1015611c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf890612f3e565b60405180910390fd5b5f611c0b826115c8565b90505f611c356007611c2760048561161590919063ffffffff16565b61162a90919063ffffffff16565b90505f611c5f6007611c5160028661161590919063ffffffff16565b61162a90919063ffffffff16565b90505f611c896007611c7b60018761161590919063ffffffff16565b61162a90919063ffffffff16565b9050611c9587846118c0565b611cb48773d5f346bce4846e94c7600d54e487f810dd53305e84611654565b611cd3877399b26c4d4d5e8e29f32c43e8dca59d7fdeee834883611654565b611cf08787611ceb878961163f90919063ffffffff16565b611654565b611d0583600854611a8390919063ffffffff16565b60088190555050505050505050565b5f838311158290611d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d529190611fdb565b60405180910390fd5b5082840390509392505050565b611d706113fe565b73ffffffffffffffffffffffffffffffffffffffff16611d8e610e0d565b73ffffffffffffffffffffffffffffffffffffffff1614611de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddb90612fa6565b60405180910390fd5b565b611dee611d68565b611df75f611e84565b565b5f611e04848461125c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611e7e5781811015611e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e679061300e565b60405180910390fd5b611e7d8484848403611405565b5b50505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611f88578082015181840152602081019050611f6d565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611fad82611f51565b611fb78185611f5b565b9350611fc7818560208601611f6b565b611fd081611f93565b840191505092915050565b5f6020820190508181035f830152611ff38184611fa3565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61202882611fff565b9050919050565b6120388161201e565b8114612042575f80fd5b50565b5f813590506120538161202f565b92915050565b5f819050919050565b61206b81612059565b8114612075575f80fd5b50565b5f8135905061208681612062565b92915050565b5f80604083850312156120a2576120a1611ffb565b5b5f6120af85828601612045565b92505060206120c085828601612078565b9150509250929050565b5f8115159050919050565b6120de816120ca565b82525050565b5f6020820190506120f75f8301846120d5565b92915050565b61210681612059565b82525050565b5f60208201905061211f5f8301846120fd565b92915050565b5f6020828403121561213a57612139611ffb565b5b5f61214784828501612078565b91505092915050565b5f805f6060848603121561216757612166611ffb565b5b5f61217486828701612045565b935050602061218586828701612045565b925050604061219686828701612078565b9150509250925092565b5f60ff82169050919050565b6121b5816121a0565b82525050565b5f6020820190506121ce5f8301846121ac565b92915050565b5f602082840312156121e9576121e8611ffb565b5b5f6121f684828501612045565b91505092915050565b6122088161201e565b82525050565b5f6020820190506122215f8301846121ff565b92915050565b612230816120ca565b811461223a575f80fd5b50565b5f8135905061224b81612227565b92915050565b5f806040838503121561226757612266611ffb565b5b5f61227485828601612045565b92505060206122858582860161223d565b9150509250929050565b5f80604083850312156122a5576122a4611ffb565b5b5f6122b285828601612045565b92505060206122c385828601612045565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061231157607f821691505b602082108103612324576123236122cd565b5b50919050565b7f426f747320617265206e6f7420616c6c6f77656420746f206d616b65207472615f8201527f6e73616374696f6e730000000000000000000000000000000000000000000000602082015250565b5f612384602983611f5b565b915061238f8261232a565b604082019050919050565b5f6020820190508181035f8301526123b181612378565b9050919050565b7f496e73756666696369656e742062616c616e63650000000000000000000000005f82015250565b5f6123ec601483611f5b565b91506123f7826123b8565b602082019050919050565b5f6020820190508181035f830152612419816123e0565b9050919050565b7f4c69717569646974792070616972206e6f7420736574000000000000000000005f82015250565b5f612454601683611f5b565b915061245f82612420565b602082019050919050565b5f6020820190508181035f83015261248181612448565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506124f08161202f565b92915050565b5f6020828403121561250b5761250a611ffb565b5b5f612518848285016124e2565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61255882612059565b915061256383612059565b925082820190508082111561257b5761257a612521565b5b92915050565b5f819050919050565b5f819050919050565b5f6125ad6125a86125a384612581565b61258a565b612059565b9050919050565b6125bd81612593565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6125f58161201e565b82525050565b5f61260683836125ec565b60208301905092915050565b5f602082019050919050565b5f612628826125c3565b61263281856125cd565b935061263d836125dd565b805f5b8381101561266d57815161265488826125fb565b975061265f83612612565b925050600181019050612640565b5085935050505092915050565b5f60a08201905061268d5f8301886120fd565b61269a60208301876125b4565b81810360408301526126ac818661261e565b90506126bb60608301856121ff565b6126c860808301846120fd565b9695505050505050565b5f81905092915050565b50565b5f6126ea5f836126d2565b91506126f5826126dc565b5f82019050919050565b5f612709826126df565b9150819050919050565b7f4661696c656420746f207472616e7366657220455448000000000000000000005f82015250565b5f612747601683611f5b565b915061275282612713565b602082019050919050565b5f6020820190508181035f8301526127748161273b565b9050919050565b7f4f6e6c792066656541646472657373312063616e2063616c6c207468697320665f8201527f756e6374696f6e00000000000000000000000000000000000000000000000000602082015250565b5f6127d5602783611f5b565b91506127e08261277b565b604082019050919050565b5f6020820190508181035f830152612802816127c9565b9050919050565b7f4f776e6572736869702072656e6f756e63656d656e742069732064697361626c5f8201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b5f612863602283611f5b565b915061286e82612809565b604082019050919050565b5f6020820190508181035f83015261289081612857565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6128f1602583611f5b565b91506128fc82612897565b604082019050919050565b5f6020820190508181035f83015261291e816128e5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61297f602683611f5b565b915061298a82612925565b604082019050919050565b5f6020820190508181035f8301526129ac81612973565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612a0d602483611f5b565b9150612a18826129b3565b604082019050919050565b5f6020820190508181035f830152612a3a81612a01565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612a9b602283611f5b565b9150612aa682612a41565b604082019050919050565b5f6020820190508181035f830152612ac881612a8f565b9050919050565b5f612ad982612059565b9150612ae483612059565b9250828202612af281612059565b91508282048414831517612b0957612b08612521565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612b4782612059565b9150612b5283612059565b925082612b6257612b61612b10565b5b828204905092915050565b5f612b7782612059565b9150612b8283612059565b9250828203905081811115612b9a57612b99612521565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612bfa602583611f5b565b9150612c0582612ba0565b604082019050919050565b5f6020820190508181035f830152612c2781612bee565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612c88602383611f5b565b9150612c9382612c2e565b604082019050919050565b5f6020820190508181035f830152612cb581612c7c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612d16602683611f5b565b9150612d2182612cbc565b604082019050919050565b5f6020820190508181035f830152612d4381612d0a565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f612da4602183611f5b565b9150612daf82612d4a565b604082019050919050565b5f6020820190508181035f830152612dd181612d98565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f612e32602283611f5b565b9150612e3d82612dd8565b604082019050919050565b5f6020820190508181035f830152612e5f81612e26565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206d75737420626520675f8201527f726561746572207468616e207a65726f00000000000000000000000000000000602082015250565b5f612ec0603083611f5b565b9150612ecb82612e66565b604082019050919050565b5f6020820190508181035f830152612eed81612eb4565b9050919050565b7f45524332303a20696e73756666696369656e742062616c616e636500000000005f82015250565b5f612f28601b83611f5b565b9150612f3382612ef4565b602082019050919050565b5f6020820190508181035f830152612f5581612f1c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612f90602083611f5b565b9150612f9b82612f5c565b602082019050919050565b5f6020820190508181035f830152612fbd81612f84565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612ff8601d83611f5b565b915061300382612fc4565b602082019050919050565b5f6020820190508181035f83015261302581612fec565b905091905056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220015ce06d426247919ff41538f5abaff1099d1d19ea56800681fb02635fac606964736f6c63430008140033

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.