false
true
0

Contract Address Details

0xBd2826B7823537fcD30D738aBe4250AD6262209c

Token
Icosa Burn (iBurn)
Creator
0xfb5854–b7fbb1 at 0x99a2d6–b693e5
Balance
0 PLS ( )
Tokens
Fetching tokens...
Transactions
4,651 Transactions
Transfers
0 Transfers
Gas Used
0
Last Balance Update
25872485
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
Contract name:
IcosaBurn




Optimization enabled
false
Compiler version
v0.8.25+commit.b61c2a91




EVM Version
paris




Verified at
2024-05-10T21:59:11.222703Z

Constructor Arguments

0x0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000a0edc4b742c292c46fe2f71f067431c67c23bfd30000000000000000000000002b764ac4781fd8094f309e7c9a58683d3a200a520000000000000000000000000000000000000000000000000000000000000002000000000000000000000000fc4913214444af5c715cc9f7b52655e788a569ed000000000000000000000000b4d363d5df85f0fbc746c236fd410d82bf856f78
              

Contract source code

// Sources flattened with hardhat v2.22.3 https://hardhat.org

// SPDX-License-Identifier: MIT

// File @openzeppelin/contracts/token/ERC20/IERC20.sol@v4.9.6

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol@v4.9.6

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/utils/Context.sol@v4.9.6

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (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;
    }

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


// File @openzeppelin/contracts/token/ERC20/ERC20.sol@v4.9.6

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.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 @openzeppelin/contracts/security/ReentrancyGuard.sol@v4.9.6

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}


// File contracts/IcosaBurn.sol

// Original license: SPDX_License_Identifier: MIT
pragma solidity ^0.8.25;



contract IcosaBurn is ERC20, ReentrancyGuard {
  // PLS per GIFF token
  uint256 public constant FEE_PER_IBURN = 1_500_000_000_000;
  uint256 public constant BPS = 10_000;
  uint256 public constant BNB_FEE = 8_500;
  address public constant DEAD_WALLET = address(0x000000000000000000000000000000000000dEaD);

  address public immutable pGiffBNB;
  address public immutable buyAndBurnAddress;
  mapping(address => bool) public supportedTokens;

  event TokensMinted(address indexed to, uint256 amount);
  event TokensBurned(address indexed account, uint256 amount);
  event FeesCollected(address indexed from, uint256 amount);

  /// @notice Initializes the Icosa Burn contract with a list of supportable tokens, the pGiffBNB address, and the buy-and-burn address, setting up initial configuration.
  /// @param _supportableTokens the address list of supported tokens
  /// @param _pGiffBNB the account collecting 15% of the protocol fees
  /// @param _buyAndBurnAddress BuyAndBurn contract for iBurn
  constructor(
    IERC20[] memory _supportableTokens,
    address _pGiffBNB,
    address _buyAndBurnAddress
  ) ERC20("Icosa Burn", "iBurn") {
    require(_supportableTokens.length > 0, "Tokens are not provided");
    require(_pGiffBNB != address(0), "pGiffBNB is a zero address");
    require(_buyAndBurnAddress != address(0), "BuyAndBurn address is a zero address");

    for (uint256 i = 0; i < _supportableTokens.length; i++) {
      require(address(_supportableTokens[i]) != address(0), "Icosa Token is a zero address");
      supportedTokens[address(_supportableTokens[i])] = true;
    }
    pGiffBNB = _pGiffBNB;
    buyAndBurnAddress = _buyAndBurnAddress;
  }

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

  /// @dev Refunds any excess PLS that were sent
  /// @param expectedFee expected amount of fees to be collected
  function refundExcessAmount(uint256 expectedFee) private {
    if (msg.value > expectedFee) {
      uint256 excess = msg.value - expectedFee;
      (bool refundSent,) = payable(_msgSender()).call{value : excess}("");
      require(refundSent, "Failed to refund excess fee");
    }
  }

  /// @notice Allows anyone to send native PLS coin, as well as, the given amount of Icosa tokens and receive an
  /// equal amount of IcosaBurn tokens that get minted. The PLS coins are transferred to the BnB contract. There
  /// is a fee of 15% in PLS that is sent to the pGiffBNB EOA.
  /// @param amount of Icosa to burn
  function mint(IERC20 token, uint256 amount) external payable nonReentrant {
    uint256 expectedFee = FEE_PER_IBURN * amount;

    require(amount > 0, "Mint amount cannot be zero");
    require(msg.value >= expectedFee, "Insufficient fee");
    require(supportedTokens[address(token)], "Token is not allowed");

    // "burn" Icosa tokens
    require(token.transferFrom(_msgSender(), DEAD_WALLET, amount), "Failed to transfer Icosa tokens");

    uint256 bnbFee = (expectedFee * BNB_FEE) / BPS;
    (bool sentToBuyAndBurn,) = payable(buyAndBurnAddress).call{value : bnbFee}("");
    require(sentToBuyAndBurn, "Failed to send Pulse to BuyAndBurn");

    uint256 pGiffBNBFee = expectedFee - bnbFee;
    (bool sentToPGiffBNB,) = payable(pGiffBNB).call{value : pGiffBNBFee}("");
    require(sentToPGiffBNB, "Failed to send Pulse to pGiffBNB");
    emit FeesCollected(_msgSender(), expectedFee);

    _mint(_msgSender(), amount);
    refundExcessAmount(expectedFee);
  }

  /// @notice Burns the given amount of tokens
  function burn(uint256 amount) public {
    _burn(_msgSender(), amount);
    emit TokensBurned(_msgSender(), amount);
  }
}
        

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address[]","name":"_supportableTokens","internalType":"contract IERC20[]"},{"type":"address","name":"_pGiffBNB","internalType":"address"},{"type":"address","name":"_buyAndBurnAddress","internalType":"address"}]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"FeesCollected","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"TokensBurned","inputs":[{"type":"address","name":"account","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"TokensMinted","inputs":[{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"BNB_FEE","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"BPS","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"DEAD_WALLET","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"FEE_PER_IBURN","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"burn","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"buyAndBurnAddress","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"payable","outputs":[],"name":"mint","inputs":[{"type":"address","name":"token","internalType":"contract IERC20"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"pGiffBNB","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"supportedTokens","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]}]
              

Contract Creation Code

Verify & Publish
0x60c060405234801561001057600080fd5b506040516130eb3803806130eb83398181016040528101906100329190610578565b6040518060400160405280600a81526020017f49636f7361204275726e000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f694275726e00000000000000000000000000000000000000000000000000000081525081600390816100ad9190610808565b5080600490816100bd9190610808565b5050506001600581905550600083511161010c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161010390610937565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361017b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610172906109a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036101ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101e190610a35565b60405180910390fd5b60005b83518110156102fe57600073ffffffffffffffffffffffffffffffffffffffff1684828151811061022157610220610a55565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff160361027f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161027690610ad0565b60405180910390fd5b60016006600086848151811061029857610297610a55565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806001019150506101ed565b508173ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050505050610af0565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6103d182610388565b810181811067ffffffffffffffff821117156103f0576103ef610399565b5b80604052505050565b600061040361036f565b905061040f82826103c8565b919050565b600067ffffffffffffffff82111561042f5761042e610399565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061047082610445565b9050919050565b600061048282610465565b9050919050565b61049281610477565b811461049d57600080fd5b50565b6000815190506104af81610489565b92915050565b60006104c86104c384610414565b6103f9565b905080838252602082019050602084028301858111156104eb576104ea610440565b5b835b81811015610514578061050088826104a0565b8452602084019350506020810190506104ed565b5050509392505050565b600082601f83011261053357610532610383565b5b81516105438482602086016104b5565b91505092915050565b61055581610465565b811461056057600080fd5b50565b6000815190506105728161054c565b92915050565b60008060006060848603121561059157610590610379565b5b600084015167ffffffffffffffff8111156105af576105ae61037e565b5b6105bb8682870161051e565b93505060206105cc86828701610563565b92505060406105dd86828701610563565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061063957607f821691505b60208210810361064c5761064b6105f2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026106b47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610677565b6106be8683610677565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006107056107006106fb846106d6565b6106e0565b6106d6565b9050919050565b6000819050919050565b61071f836106ea565b61073361072b8261070c565b848454610684565b825550505050565b600090565b61074861073b565b610753818484610716565b505050565b5b818110156107775761076c600082610740565b600181019050610759565b5050565b601f8211156107bc5761078d81610652565b61079684610667565b810160208510156107a5578190505b6107b96107b185610667565b830182610758565b50505b505050565b600082821c905092915050565b60006107df600019846008026107c1565b1980831691505092915050565b60006107f883836107ce565b9150826002028217905092915050565b610811826105e7565b67ffffffffffffffff81111561082a57610829610399565b5b6108348254610621565b61083f82828561077b565b600060209050601f8311600181146108725760008415610860578287015190505b61086a85826107ec565b8655506108d2565b601f19841661088086610652565b60005b828110156108a857848901518255600182019150602085019450602081019050610883565b868310156108c557848901516108c1601f8916826107ce565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f546f6b656e7320617265206e6f742070726f7669646564000000000000000000600082015250565b60006109216017836108da565b915061092c826108eb565b602082019050919050565b6000602082019050818103600083015261095081610914565b9050919050565b7f7047696666424e422069732061207a65726f2061646472657373000000000000600082015250565b600061098d601a836108da565b915061099882610957565b602082019050919050565b600060208201905081810360008301526109bc81610980565b9050919050565b7f427579416e644275726e20616464726573732069732061207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000610a1f6024836108da565b9150610a2a826109c3565b604082019050919050565b60006020820190508181036000830152610a4e81610a12565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f49636f736120546f6b656e2069732061207a65726f2061646472657373000000600082015250565b6000610aba601d836108da565b9150610ac582610a84565b602082019050919050565b60006020820190508181036000830152610ae981610aad565b9050919050565b60805160a0516125c8610b23600039600081816108720152610a98015260008181610635015261094e01526125c86000f3fe60806040526004361061011f5760003560e01c806342966c68116100a0578063a01c348311610064578063a01c3483146103f2578063a457c2d71461041d578063a9059cbb1461045a578063c26a407414610497578063dd62ed3e146104c25761011f565b806342966c68146102f957806368c4ac261461032257806370a082311461035f578063893cbf151461039c57806395d89b41146103c75761011f565b8063313ce567116100e7578063313ce5671461021f578063395093511461024a5780633aff8c101461028757806340c10f19146102b2578063412ac4a0146102ce5761011f565b806306fdde0314610124578063095ea7b31461014f57806318160ddd1461018c57806323b872dd146101b7578063249d39e9146101f4575b600080fd5b34801561013057600080fd5b506101396104ff565b604051610146919061170e565b60405180910390f35b34801561015b57600080fd5b50610176600480360381019061017191906117c9565b610591565b6040516101839190611824565b60405180910390f35b34801561019857600080fd5b506101a16105b4565b6040516101ae919061184e565b60405180910390f35b3480156101c357600080fd5b506101de60048036038101906101d99190611869565b6105be565b6040516101eb9190611824565b60405180910390f35b34801561020057600080fd5b506102096105ed565b604051610216919061184e565b60405180910390f35b34801561022b57600080fd5b506102346105f3565b60405161024191906118d8565b60405180910390f35b34801561025657600080fd5b50610271600480360381019061026c91906117c9565b6105fc565b60405161027e9190611824565b60405180910390f35b34801561029357600080fd5b5061029c610633565b6040516102a99190611902565b60405180910390f35b6102cc60048036038101906102c7919061195b565b610657565b005b3480156102da57600080fd5b506102e3610a96565b6040516102f09190611902565b60405180910390f35b34801561030557600080fd5b50610320600480360381019061031b919061199b565b610aba565b005b34801561032e57600080fd5b50610349600480360381019061034491906119c8565b610b23565b6040516103569190611824565b60405180910390f35b34801561036b57600080fd5b50610386600480360381019061038191906119c8565b610b43565b604051610393919061184e565b60405180910390f35b3480156103a857600080fd5b506103b1610b8b565b6040516103be919061184e565b60405180910390f35b3480156103d357600080fd5b506103dc610b91565b6040516103e9919061170e565b60405180910390f35b3480156103fe57600080fd5b50610407610c23565b6040516104149190611902565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f91906117c9565b610c29565b6040516104519190611824565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c91906117c9565b610ca0565b60405161048e9190611824565b60405180910390f35b3480156104a357600080fd5b506104ac610cc3565b6040516104b9919061184e565b60405180910390f35b3480156104ce57600080fd5b506104e960048036038101906104e491906119f5565b610ccd565b6040516104f6919061184e565b60405180910390f35b60606003805461050e90611a64565b80601f016020809104026020016040519081016040528092919081815260200182805461053a90611a64565b80156105875780601f1061055c57610100808354040283529160200191610587565b820191906000526020600020905b81548152906001019060200180831161056a57829003601f168201915b5050505050905090565b60008061059c610d54565b90506105a9818585610d5c565b600191505092915050565b6000600254905090565b6000806105c9610d54565b90506105d6858285610f25565b6105e1858585610fb1565b60019150509392505050565b61271081565b60006009905090565b600080610607610d54565b90506106288185856106198589610ccd565b6106239190611ac4565b610d5c565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b61065f611227565b60008165015d3ef798006106739190611af8565b9050600082116106b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106af90611b86565b60405180910390fd5b803410156106fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f290611bf2565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077e90611c5e565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff166323b872dd6107ab610d54565b61dead856040518463ffffffff1660e01b81526004016107cd93929190611c7e565b6020604051808303816000875af11580156107ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108109190611ce1565b61084f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084690611d5a565b60405180910390fd5b6000612710612134836108629190611af8565b61086c9190611da9565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16826040516108b490611e0b565b60006040518083038185875af1925050503d80600081146108f1576040519150601f19603f3d011682016040523d82523d6000602084013e6108f6565b606091505b505090508061093a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093190611e92565b60405180910390fd5b600082846109489190611eb2565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168260405161099090611e0b565b60006040518083038185875af1925050503d80600081146109cd576040519150601f19603f3d011682016040523d82523d6000602084013e6109d2565b606091505b5050905080610a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0d90611f32565b60405180910390fd5b610a1e610d54565b73ffffffffffffffffffffffffffffffffffffffff167f9dc46f23cfb5ddcad0ae7ea2be38d47fec07bb9382ec7e564efc69e036dd66ce86604051610a63919061184e565b60405180910390a2610a7c610a76610d54565b87611276565b610a85856113cc565b5050505050610a9261149d565b5050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610acb610ac5610d54565b826114a7565b610ad3610d54565b73ffffffffffffffffffffffffffffffffffffffff167ffd38818f5291bf0bb3a2a48aadc06ba8757865d1dabd804585338aab3009dcb682604051610b18919061184e565b60405180910390a250565b60066020528060005260406000206000915054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61213481565b606060048054610ba090611a64565b80601f0160208091040260200160405190810160405280929190818152602001828054610bcc90611a64565b8015610c195780601f10610bee57610100808354040283529160200191610c19565b820191906000526020600020905b815481529060010190602001808311610bfc57829003601f168201915b5050505050905090565b61dead81565b600080610c34610d54565b90506000610c428286610ccd565b905083811015610c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7e90611fc4565b60405180910390fd5b610c948286868403610d5c565b60019250505092915050565b600080610cab610d54565b9050610cb8818585610fb1565b600191505092915050565b65015d3ef7980081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc290612056565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e31906120e8565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f18919061184e565b60405180910390a3505050565b6000610f318484610ccd565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610fab5781811015610f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9490612154565b60405180910390fd5b610faa8484848403610d5c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611020576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611017906121e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361108f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108690612278565b60405180910390fd5b61109a838383611674565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611120576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111179061230a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161120e919061184e565b60405180910390a3611221848484611679565b50505050565b60026005540361126c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126390612376565b60405180910390fd5b6002600581905550565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dc906123e2565b60405180910390fd5b6112f160008383611674565b80600260008282546113039190611ac4565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113b4919061184e565b60405180910390a36113c860008383611679565b5050565b8034111561149a57600081346113e29190611eb2565b905060006113ee610d54565b73ffffffffffffffffffffffffffffffffffffffff168260405161141190611e0b565b60006040518083038185875af1925050503d806000811461144e576040519150601f19603f3d011682016040523d82523d6000602084013e611453565b606091505b5050905080611497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148e9061244e565b60405180910390fd5b50505b50565b6001600581905550565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150d906124e0565b60405180910390fd5b61152282600083611674565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f90612572565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161165b919061184e565b60405180910390a361166f83600084611679565b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156116b857808201518184015260208101905061169d565b60008484015250505050565b6000601f19601f8301169050919050565b60006116e08261167e565b6116ea8185611689565b93506116fa81856020860161169a565b611703816116c4565b840191505092915050565b6000602082019050818103600083015261172881846116d5565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061176082611735565b9050919050565b61177081611755565b811461177b57600080fd5b50565b60008135905061178d81611767565b92915050565b6000819050919050565b6117a681611793565b81146117b157600080fd5b50565b6000813590506117c38161179d565b92915050565b600080604083850312156117e0576117df611730565b5b60006117ee8582860161177e565b92505060206117ff858286016117b4565b9150509250929050565b60008115159050919050565b61181e81611809565b82525050565b60006020820190506118396000830184611815565b92915050565b61184881611793565b82525050565b6000602082019050611863600083018461183f565b92915050565b60008060006060848603121561188257611881611730565b5b60006118908682870161177e565b93505060206118a18682870161177e565b92505060406118b2868287016117b4565b9150509250925092565b600060ff82169050919050565b6118d2816118bc565b82525050565b60006020820190506118ed60008301846118c9565b92915050565b6118fc81611755565b82525050565b600060208201905061191760008301846118f3565b92915050565b600061192882611755565b9050919050565b6119388161191d565b811461194357600080fd5b50565b6000813590506119558161192f565b92915050565b6000806040838503121561197257611971611730565b5b600061198085828601611946565b9250506020611991858286016117b4565b9150509250929050565b6000602082840312156119b1576119b0611730565b5b60006119bf848285016117b4565b91505092915050565b6000602082840312156119de576119dd611730565b5b60006119ec8482850161177e565b91505092915050565b60008060408385031215611a0c57611a0b611730565b5b6000611a1a8582860161177e565b9250506020611a2b8582860161177e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611a7c57607f821691505b602082108103611a8f57611a8e611a35565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611acf82611793565b9150611ada83611793565b9250828201905080821115611af257611af1611a95565b5b92915050565b6000611b0382611793565b9150611b0e83611793565b9250828202611b1c81611793565b91508282048414831517611b3357611b32611a95565b5b5092915050565b7f4d696e7420616d6f756e742063616e6e6f74206265207a65726f000000000000600082015250565b6000611b70601a83611689565b9150611b7b82611b3a565b602082019050919050565b60006020820190508181036000830152611b9f81611b63565b9050919050565b7f496e73756666696369656e742066656500000000000000000000000000000000600082015250565b6000611bdc601083611689565b9150611be782611ba6565b602082019050919050565b60006020820190508181036000830152611c0b81611bcf565b9050919050565b7f546f6b656e206973206e6f7420616c6c6f776564000000000000000000000000600082015250565b6000611c48601483611689565b9150611c5382611c12565b602082019050919050565b60006020820190508181036000830152611c7781611c3b565b9050919050565b6000606082019050611c9360008301866118f3565b611ca060208301856118f3565b611cad604083018461183f565b949350505050565b611cbe81611809565b8114611cc957600080fd5b50565b600081519050611cdb81611cb5565b92915050565b600060208284031215611cf757611cf6611730565b5b6000611d0584828501611ccc565b91505092915050565b7f4661696c656420746f207472616e736665722049636f736120746f6b656e7300600082015250565b6000611d44601f83611689565b9150611d4f82611d0e565b602082019050919050565b60006020820190508181036000830152611d7381611d37565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611db482611793565b9150611dbf83611793565b925082611dcf57611dce611d7a565b5b828204905092915050565b600081905092915050565b50565b6000611df5600083611dda565b9150611e0082611de5565b600082019050919050565b6000611e1682611de8565b9150819050919050565b7f4661696c656420746f2073656e642050756c736520746f20427579416e64427560008201527f726e000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e7c602283611689565b9150611e8782611e20565b604082019050919050565b60006020820190508181036000830152611eab81611e6f565b9050919050565b6000611ebd82611793565b9150611ec883611793565b9250828203905081811115611ee057611edf611a95565b5b92915050565b7f4661696c656420746f2073656e642050756c736520746f207047696666424e42600082015250565b6000611f1c602083611689565b9150611f2782611ee6565b602082019050919050565b60006020820190508181036000830152611f4b81611f0f565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611fae602583611689565b9150611fb982611f52565b604082019050919050565b60006020820190508181036000830152611fdd81611fa1565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612040602483611689565b915061204b82611fe4565b604082019050919050565b6000602082019050818103600083015261206f81612033565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006120d2602283611689565b91506120dd82612076565b604082019050919050565b60006020820190508181036000830152612101816120c5565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061213e601d83611689565b915061214982612108565b602082019050919050565b6000602082019050818103600083015261216d81612131565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006121d0602583611689565b91506121db82612174565b604082019050919050565b600060208201905081810360008301526121ff816121c3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612262602383611689565b915061226d82612206565b604082019050919050565b6000602082019050818103600083015261229181612255565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006122f4602683611689565b91506122ff82612298565b604082019050919050565b60006020820190508181036000830152612323816122e7565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612360601f83611689565b915061236b8261232a565b602082019050919050565b6000602082019050818103600083015261238f81612353565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006123cc601f83611689565b91506123d782612396565b602082019050919050565b600060208201905081810360008301526123fb816123bf565b9050919050565b7f4661696c656420746f20726566756e6420657863657373206665650000000000600082015250565b6000612438601b83611689565b915061244382612402565b602082019050919050565b600060208201905081810360008301526124678161242b565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006124ca602183611689565b91506124d58261246e565b604082019050919050565b600060208201905081810360008301526124f9816124bd565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061255c602283611689565b915061256782612500565b604082019050919050565b6000602082019050818103600083015261258b8161254f565b905091905056fea26469706673582212205dd17599cdeafe31be08f29b431b10ca803a4a1d497981d89dec0eedeb6f036b64736f6c634300081900330000000000000000000000000000000000000000000000000000000000000060000000000000000000000000a0edc4b742c292c46fe2f71f067431c67c23bfd30000000000000000000000002b764ac4781fd8094f309e7c9a58683d3a200a520000000000000000000000000000000000000000000000000000000000000002000000000000000000000000fc4913214444af5c715cc9f7b52655e788a569ed000000000000000000000000b4d363d5df85f0fbc746c236fd410d82bf856f78

Deployed ByteCode

0x60806040526004361061011f5760003560e01c806342966c68116100a0578063a01c348311610064578063a01c3483146103f2578063a457c2d71461041d578063a9059cbb1461045a578063c26a407414610497578063dd62ed3e146104c25761011f565b806342966c68146102f957806368c4ac261461032257806370a082311461035f578063893cbf151461039c57806395d89b41146103c75761011f565b8063313ce567116100e7578063313ce5671461021f578063395093511461024a5780633aff8c101461028757806340c10f19146102b2578063412ac4a0146102ce5761011f565b806306fdde0314610124578063095ea7b31461014f57806318160ddd1461018c57806323b872dd146101b7578063249d39e9146101f4575b600080fd5b34801561013057600080fd5b506101396104ff565b604051610146919061170e565b60405180910390f35b34801561015b57600080fd5b50610176600480360381019061017191906117c9565b610591565b6040516101839190611824565b60405180910390f35b34801561019857600080fd5b506101a16105b4565b6040516101ae919061184e565b60405180910390f35b3480156101c357600080fd5b506101de60048036038101906101d99190611869565b6105be565b6040516101eb9190611824565b60405180910390f35b34801561020057600080fd5b506102096105ed565b604051610216919061184e565b60405180910390f35b34801561022b57600080fd5b506102346105f3565b60405161024191906118d8565b60405180910390f35b34801561025657600080fd5b50610271600480360381019061026c91906117c9565b6105fc565b60405161027e9190611824565b60405180910390f35b34801561029357600080fd5b5061029c610633565b6040516102a99190611902565b60405180910390f35b6102cc60048036038101906102c7919061195b565b610657565b005b3480156102da57600080fd5b506102e3610a96565b6040516102f09190611902565b60405180910390f35b34801561030557600080fd5b50610320600480360381019061031b919061199b565b610aba565b005b34801561032e57600080fd5b50610349600480360381019061034491906119c8565b610b23565b6040516103569190611824565b60405180910390f35b34801561036b57600080fd5b50610386600480360381019061038191906119c8565b610b43565b604051610393919061184e565b60405180910390f35b3480156103a857600080fd5b506103b1610b8b565b6040516103be919061184e565b60405180910390f35b3480156103d357600080fd5b506103dc610b91565b6040516103e9919061170e565b60405180910390f35b3480156103fe57600080fd5b50610407610c23565b6040516104149190611902565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f91906117c9565b610c29565b6040516104519190611824565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c91906117c9565b610ca0565b60405161048e9190611824565b60405180910390f35b3480156104a357600080fd5b506104ac610cc3565b6040516104b9919061184e565b60405180910390f35b3480156104ce57600080fd5b506104e960048036038101906104e491906119f5565b610ccd565b6040516104f6919061184e565b60405180910390f35b60606003805461050e90611a64565b80601f016020809104026020016040519081016040528092919081815260200182805461053a90611a64565b80156105875780601f1061055c57610100808354040283529160200191610587565b820191906000526020600020905b81548152906001019060200180831161056a57829003601f168201915b5050505050905090565b60008061059c610d54565b90506105a9818585610d5c565b600191505092915050565b6000600254905090565b6000806105c9610d54565b90506105d6858285610f25565b6105e1858585610fb1565b60019150509392505050565b61271081565b60006009905090565b600080610607610d54565b90506106288185856106198589610ccd565b6106239190611ac4565b610d5c565b600191505092915050565b7f000000000000000000000000a0edc4b742c292c46fe2f71f067431c67c23bfd381565b61065f611227565b60008165015d3ef798006106739190611af8565b9050600082116106b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106af90611b86565b60405180910390fd5b803410156106fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f290611bf2565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077e90611c5e565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff166323b872dd6107ab610d54565b61dead856040518463ffffffff1660e01b81526004016107cd93929190611c7e565b6020604051808303816000875af11580156107ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108109190611ce1565b61084f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084690611d5a565b60405180910390fd5b6000612710612134836108629190611af8565b61086c9190611da9565b905060007f0000000000000000000000002b764ac4781fd8094f309e7c9a58683d3a200a5273ffffffffffffffffffffffffffffffffffffffff16826040516108b490611e0b565b60006040518083038185875af1925050503d80600081146108f1576040519150601f19603f3d011682016040523d82523d6000602084013e6108f6565b606091505b505090508061093a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093190611e92565b60405180910390fd5b600082846109489190611eb2565b905060007f000000000000000000000000a0edc4b742c292c46fe2f71f067431c67c23bfd373ffffffffffffffffffffffffffffffffffffffff168260405161099090611e0b565b60006040518083038185875af1925050503d80600081146109cd576040519150601f19603f3d011682016040523d82523d6000602084013e6109d2565b606091505b5050905080610a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0d90611f32565b60405180910390fd5b610a1e610d54565b73ffffffffffffffffffffffffffffffffffffffff167f9dc46f23cfb5ddcad0ae7ea2be38d47fec07bb9382ec7e564efc69e036dd66ce86604051610a63919061184e565b60405180910390a2610a7c610a76610d54565b87611276565b610a85856113cc565b5050505050610a9261149d565b5050565b7f0000000000000000000000002b764ac4781fd8094f309e7c9a58683d3a200a5281565b610acb610ac5610d54565b826114a7565b610ad3610d54565b73ffffffffffffffffffffffffffffffffffffffff167ffd38818f5291bf0bb3a2a48aadc06ba8757865d1dabd804585338aab3009dcb682604051610b18919061184e565b60405180910390a250565b60066020528060005260406000206000915054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61213481565b606060048054610ba090611a64565b80601f0160208091040260200160405190810160405280929190818152602001828054610bcc90611a64565b8015610c195780601f10610bee57610100808354040283529160200191610c19565b820191906000526020600020905b815481529060010190602001808311610bfc57829003601f168201915b5050505050905090565b61dead81565b600080610c34610d54565b90506000610c428286610ccd565b905083811015610c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7e90611fc4565b60405180910390fd5b610c948286868403610d5c565b60019250505092915050565b600080610cab610d54565b9050610cb8818585610fb1565b600191505092915050565b65015d3ef7980081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc290612056565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e31906120e8565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f18919061184e565b60405180910390a3505050565b6000610f318484610ccd565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610fab5781811015610f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9490612154565b60405180910390fd5b610faa8484848403610d5c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611020576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611017906121e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361108f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108690612278565b60405180910390fd5b61109a838383611674565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611120576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111179061230a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161120e919061184e565b60405180910390a3611221848484611679565b50505050565b60026005540361126c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126390612376565b60405180910390fd5b6002600581905550565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dc906123e2565b60405180910390fd5b6112f160008383611674565b80600260008282546113039190611ac4565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113b4919061184e565b60405180910390a36113c860008383611679565b5050565b8034111561149a57600081346113e29190611eb2565b905060006113ee610d54565b73ffffffffffffffffffffffffffffffffffffffff168260405161141190611e0b565b60006040518083038185875af1925050503d806000811461144e576040519150601f19603f3d011682016040523d82523d6000602084013e611453565b606091505b5050905080611497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148e9061244e565b60405180910390fd5b50505b50565b6001600581905550565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150d906124e0565b60405180910390fd5b61152282600083611674565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f90612572565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161165b919061184e565b60405180910390a361166f83600084611679565b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156116b857808201518184015260208101905061169d565b60008484015250505050565b6000601f19601f8301169050919050565b60006116e08261167e565b6116ea8185611689565b93506116fa81856020860161169a565b611703816116c4565b840191505092915050565b6000602082019050818103600083015261172881846116d5565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061176082611735565b9050919050565b61177081611755565b811461177b57600080fd5b50565b60008135905061178d81611767565b92915050565b6000819050919050565b6117a681611793565b81146117b157600080fd5b50565b6000813590506117c38161179d565b92915050565b600080604083850312156117e0576117df611730565b5b60006117ee8582860161177e565b92505060206117ff858286016117b4565b9150509250929050565b60008115159050919050565b61181e81611809565b82525050565b60006020820190506118396000830184611815565b92915050565b61184881611793565b82525050565b6000602082019050611863600083018461183f565b92915050565b60008060006060848603121561188257611881611730565b5b60006118908682870161177e565b93505060206118a18682870161177e565b92505060406118b2868287016117b4565b9150509250925092565b600060ff82169050919050565b6118d2816118bc565b82525050565b60006020820190506118ed60008301846118c9565b92915050565b6118fc81611755565b82525050565b600060208201905061191760008301846118f3565b92915050565b600061192882611755565b9050919050565b6119388161191d565b811461194357600080fd5b50565b6000813590506119558161192f565b92915050565b6000806040838503121561197257611971611730565b5b600061198085828601611946565b9250506020611991858286016117b4565b9150509250929050565b6000602082840312156119b1576119b0611730565b5b60006119bf848285016117b4565b91505092915050565b6000602082840312156119de576119dd611730565b5b60006119ec8482850161177e565b91505092915050565b60008060408385031215611a0c57611a0b611730565b5b6000611a1a8582860161177e565b9250506020611a2b8582860161177e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611a7c57607f821691505b602082108103611a8f57611a8e611a35565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611acf82611793565b9150611ada83611793565b9250828201905080821115611af257611af1611a95565b5b92915050565b6000611b0382611793565b9150611b0e83611793565b9250828202611b1c81611793565b91508282048414831517611b3357611b32611a95565b5b5092915050565b7f4d696e7420616d6f756e742063616e6e6f74206265207a65726f000000000000600082015250565b6000611b70601a83611689565b9150611b7b82611b3a565b602082019050919050565b60006020820190508181036000830152611b9f81611b63565b9050919050565b7f496e73756666696369656e742066656500000000000000000000000000000000600082015250565b6000611bdc601083611689565b9150611be782611ba6565b602082019050919050565b60006020820190508181036000830152611c0b81611bcf565b9050919050565b7f546f6b656e206973206e6f7420616c6c6f776564000000000000000000000000600082015250565b6000611c48601483611689565b9150611c5382611c12565b602082019050919050565b60006020820190508181036000830152611c7781611c3b565b9050919050565b6000606082019050611c9360008301866118f3565b611ca060208301856118f3565b611cad604083018461183f565b949350505050565b611cbe81611809565b8114611cc957600080fd5b50565b600081519050611cdb81611cb5565b92915050565b600060208284031215611cf757611cf6611730565b5b6000611d0584828501611ccc565b91505092915050565b7f4661696c656420746f207472616e736665722049636f736120746f6b656e7300600082015250565b6000611d44601f83611689565b9150611d4f82611d0e565b602082019050919050565b60006020820190508181036000830152611d7381611d37565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611db482611793565b9150611dbf83611793565b925082611dcf57611dce611d7a565b5b828204905092915050565b600081905092915050565b50565b6000611df5600083611dda565b9150611e0082611de5565b600082019050919050565b6000611e1682611de8565b9150819050919050565b7f4661696c656420746f2073656e642050756c736520746f20427579416e64427560008201527f726e000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e7c602283611689565b9150611e8782611e20565b604082019050919050565b60006020820190508181036000830152611eab81611e6f565b9050919050565b6000611ebd82611793565b9150611ec883611793565b9250828203905081811115611ee057611edf611a95565b5b92915050565b7f4661696c656420746f2073656e642050756c736520746f207047696666424e42600082015250565b6000611f1c602083611689565b9150611f2782611ee6565b602082019050919050565b60006020820190508181036000830152611f4b81611f0f565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611fae602583611689565b9150611fb982611f52565b604082019050919050565b60006020820190508181036000830152611fdd81611fa1565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612040602483611689565b915061204b82611fe4565b604082019050919050565b6000602082019050818103600083015261206f81612033565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006120d2602283611689565b91506120dd82612076565b604082019050919050565b60006020820190508181036000830152612101816120c5565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061213e601d83611689565b915061214982612108565b602082019050919050565b6000602082019050818103600083015261216d81612131565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006121d0602583611689565b91506121db82612174565b604082019050919050565b600060208201905081810360008301526121ff816121c3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612262602383611689565b915061226d82612206565b604082019050919050565b6000602082019050818103600083015261229181612255565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006122f4602683611689565b91506122ff82612298565b604082019050919050565b60006020820190508181036000830152612323816122e7565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612360601f83611689565b915061236b8261232a565b602082019050919050565b6000602082019050818103600083015261238f81612353565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006123cc601f83611689565b91506123d782612396565b602082019050919050565b600060208201905081810360008301526123fb816123bf565b9050919050565b7f4661696c656420746f20726566756e6420657863657373206665650000000000600082015250565b6000612438601b83611689565b915061244382612402565b602082019050919050565b600060208201905081810360008301526124678161242b565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006124ca602183611689565b91506124d58261246e565b604082019050919050565b600060208201905081810360008301526124f9816124bd565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061255c602283611689565b915061256782612500565b604082019050919050565b6000602082019050818103600083015261258b8161254f565b905091905056fea26469706673582212205dd17599cdeafe31be08f29b431b10ca803a4a1d497981d89dec0eedeb6f036b64736f6c63430008190033