false
true
0

Contract Address Details

0x24F0154C1dCe548AdF15da2098Fdd8B8A3B8151D

Token
AFFECTION™ (Ⓐ)
Creator
0x7a2018–7f3414 at 0x8c3862–8b908e
Balance
0 PLS ( )
Tokens
Fetching tokens...
Transactions
274,620 Transactions
Transfers
0 Transfers
Gas Used
0
Last Balance Update
25858658
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
This contract has been verified via Sourcify. View contract in Sourcify repository
Contract name:
Affection




Optimization enabled
false
Compiler version
v0.8.21+commit.d9974bed




EVM Version
shanghai




Verified at
2024-06-07T05:34:07.870869Z

rng.sol

// SPDX-License-Identifier: Sharia
pragma solidity ^0.8.21;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "addresses.sol";
import "dynamic.sol";

contract Affection is ERC20, ERC20Burnable, Ownable, Dynamic {
    ERC20 private DaiToken;
    ERC20 private USDCToken;
    ERC20 private USDTToken;
    ERC20 private G5Token;
    ERC20 private PIToken;

    constructor() ERC20(/*name short=*/ unicode"AFFECTION™", /*symbol long=*/ unicode"Ⓐ") Ownable(msg.sender) {
        DaiToken = ERC20(dai);
        USDCToken = ERC20(usdc);
        USDTToken = ERC20(usdt);
        G5Token = ERC20(G5Contract);
        PIToken = ERC20(PIContract);

        NewDynamic(aa.Random(), aa.Random(), aa.Random());
        Alpha(Mu.Rod.Signal);
        Beta(Mu.Upsilon);
        Upsilon(Mu.Upsilon, false);
        Pi();
        Rho();
        Upsilon(Mu.Upsilon, true);

        _mint(address(this), 1 * 10 ** decimals());
    }

    function BuyWithG5(uint256 amount) public {
        bool success1 = G5Token.transferFrom(msg.sender, address(this), (amount / 5));
        require(success1, unicode"Need Approved Gimme5");
        ERC20(address(this)).transfer(msg.sender, amount);
    }

    function BuyWithPI(uint256 amount) public {
        bool success1 = PIToken.transferFrom(msg.sender, address(this), (amount / 300));
        require(success1, unicode"Need Approved pINDEPENDENCE");
        ERC20(address(this)).transfer(msg.sender, amount);
    }

    function BuyWithMATH(uint256 amount) public {
        bool success1 = ERC20(libAtropaMathContract).transferFrom(msg.sender, address(this), amount);
        require(success1, unicode"Need Approved MATH");
        ERC20(address(this)).transfer(msg.sender, amount);
    }

    function BuyWithFa(uint256 amount) public {
        bool success1 = ERC20(libConjectureContract).transferFrom(msg.sender, address(this), amount * 4);
        require(success1, unicode"Need Approved Fa");
        ERC20(address(this)).transfer(msg.sender, amount);
    }

    function BuyWithFaung(uint256 amount) public {
        bool success1 = ERC20(libDynamicContract).transferFrom(msg.sender, address(this), amount * 2);
        require(success1, unicode"Need Approved Faung");
        ERC20(address(this)).transfer(msg.sender, amount);
    }

    function Alpha(uint64 _a) public {
        Charge(_a);
        assert(Mu.Sigma > 4);
        Induce();
        Torque();
        Amplify();
        Sustain();
        React();
        _mintToCap();
    }

    function Beta(uint64 _b) public {
        Torque(Mu.Rod, _b);
        Amplify(Mu.Rod, Mu.Rod.Alpha);
        Sustain(Mu.Rod, Mu.Rod.Alpha);
        React(Mu.Rod, Mu.Rod.Alpha, Mu.Cone.Dynamo);
        React(Mu.Cone, Mu.Rod.Alpha, Mu.Rod.Dynamo);
        _mintToCap();
    }

    function Upsilon(uint64 _a, bool Phi) public {
        Mu.Upsilon = Phi ? _a ^ Mu.Ohm ^ Mu.Pi : _a ^ Mu.Ohm;
        _mintToCap();
    }

    function Pi() public {
        Torque(Mu.Cone, Mu.Rod.Kappa);
        Amplify(Mu.Cone, Mu.Cone.Alpha);
        Sustain(Mu.Cone, Mu.Cone.Alpha);
        React(Mu.Rod, Mu.Cone.Alpha, Mu.Rod.Channel);
        React(Mu.Cone, Mu.Cone.Alpha, Mu.Cone.Channel);
        _mintToCap();
    }

    function Rho() public {
        Torque(Mu.Cone, Mu.Rod.Eta);
        Amplify(Mu.Cone, Mu.Upsilon);
        Sustain(Mu.Cone, Mu.Ohm);
        React(Mu.Cone, Mu.Pi, Mu.Cone.Dynamo);
        React(Mu.Rod, Mu.Pi, Mu.Rod.Dynamo);
        Mu.Omega = Mu.Omega ^ Mu.Rod.Kappa;
        _mintToCap();
    }

    function View() public view returns(Faung memory) {
        return Mu;
    }

    function Generate() public returns(uint64) {
        Amplify(Mu.Cone, Mu.Upsilon);
        Sustain(Mu.Cone, Mu.Ohm);
        React(Mu.Cone, Mu.Pi, Mu.Cone.Dynamo);
        React(Mu.Rod, Mu.Pi, Mu.Rod.Dynamo);
        Mu.Omega = Mu.Omega ^ Mu.Rod.Kappa;

        Mu.Upsilon = Mu.Upsilon ^ Mu.Ohm ^ Mu.Pi;
        
        _mintToCap();
        return Mu.Upsilon;
    }
}
        

/extensions/IERC20Metadata.sol

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

pragma solidity ^0.8.20;

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

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

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

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

/extensions/ERC20Burnable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.20;

import {ERC20} from "../ERC20.sol";
import {Context} from "../../../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 a `value` amount of tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 value) public virtual {
        _burn(_msgSender(), value);
    }

    /**
     * @dev Destroys a `value` amount of 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
     * `value`.
     */
    function burnFrom(address account, uint256 value) public virtual {
        _spendAllowance(account, _msgSender(), value);
        _burn(account, value);
    }
}
          

/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/IERC20.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

/ERC20.sol

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

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol";

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

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

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

        emit Transfer(from, to, value);
    }

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

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

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

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

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

/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

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

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

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

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

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

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

/

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

pragma solidity ^0.8.20;

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

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

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

/

// SPDX-License-Identifier: Sharia
pragma solidity ^0.8.21;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "addresses.sol";
import "fa.sol";

interface atropaMath {   
    function Random() external returns (uint64);
    function hashWith(address a, address b) external returns (uint256);
    function modExp64(uint64 _b, uint64 _e, uint64 _m) external returns(uint64);
    function modExp(uint256 _b, uint256 _e, uint256 _m) external returns (uint256);
}

abstract contract Conjecture is ERC20, ERC20Burnable, Ownable {
    uint64 constant public MotzkinPrime = 953467954114363;
    atropaMath internal aa = atropaMath(libAtropaMathContract);

    function _mintToCap() internal {
        if(totalSupply() <= (1111111111 * 10 ** decimals()))
            _mint(address(this), 1 * 10 ** decimals());
    }

    function NewConjecture(Fa storage Rod) internal {
        _mintToCap();
        Rod.Tau = 0;
        Initialize(Rod);
        Seed(Rod);
        Tune(Rod);
    }

    function Initialize(Fa storage Rod) internal {
        Rod.Base = Rod.Secret = Rod.Signal = Rod.Channel = Rod.Pole = 0;
        Rod.Identity = Rod.Foundation = Rod.Element = 0;
        Rod.Dynamo = 0;
        Rod.Manifold = 0;
        Rod.Ring = 0;
        Rod.Barn = Rod.Ring;
        Rod.Eta = Rod.Kappa = Rod.Alpha = 0;
        Rod.Nu = 0;
        Rod.Coordinate = 0;
    }

    function Seed(Fa storage Rod) internal {
        Rod.Base = aa.Random();
        Rod.Secret = aa.Random();
        Rod.Signal = aa.Random();
    }

   function Tune(Fa storage Rod) internal {
        Rod.Channel = aa.modExp64(Rod.Base, Rod.Signal, MotzkinPrime);   
    }

    function Fuse(Fa storage Rod, uint64 _rho, uint64 Upsilon, uint64 Ohm) internal {
        Rod.Base = Upsilon;
        Rod.Secret = Ohm;
        Rod.Signal = _rho;
    }

    function Avail(Fa storage Rod, uint64 Xi) internal {
        Rod.Alpha = aa.modExp64(Xi, Rod.Secret, MotzkinPrime);
    }

    function Form(Fa storage Rod, uint64 Chi) internal {
        Rod.Base = aa.modExp64(Chi, Rod.Secret, MotzkinPrime);
        Tune(Rod);
    }

    function Polarize(Fa storage Rod) internal {
        Rod.Pole = aa.modExp64(Rod.Base, Rod.Secret, MotzkinPrime);
    }

    function Conjugate(Fa storage Rod, uint64 Chi) internal {
        Rod.Coordinate = aa.modExp64(Chi, Rod.Secret, MotzkinPrime);
        // Chi = 0;
    }

    function Conify(Fa storage Rod, uint64 _Beta) internal {
        assert(Rod.Nu == 0);
        Rod.Identity = _Beta;
        Rod.Foundation = aa.modExp64(Rod.Base, Rod.Identity, MotzkinPrime);
        Rod.Nu = 1;
    }


    function Saturate(Fa storage Rod, uint64 _Beta, uint64 Epsilon, uint64 Theta) internal {
        if(Rod.Nu == 0) {
            Rod.Identity = _Beta;
            Rod.Foundation = aa.modExp64(Rod.Base, Rod.Identity, MotzkinPrime);
        }
        assert(Rod.Nu <= 1);
        
        uint64 Beta = aa.modExp64(Epsilon, Rod.Identity, MotzkinPrime);
        uint64 Rho = aa.modExp64(Theta, Rod.Identity, MotzkinPrime);
        Rod.Eta = aa.modExp64(Epsilon, Rod.Signal, MotzkinPrime);

        uint64 Phi = Rho + Rod.Eta;
        Rod.Element = Beta + Phi;

        Rod.Dynamo = aa.modExp64(Theta, Rod.Signal, MotzkinPrime);
        Rod.Manifold = Rod.Element + Rod.Dynamo;
    }

    function Bond(Fa storage Rod) internal {
        Rod.Dynamo = aa.modExp64(Rod.Base, Rod.Signal, Rod.Element);
        Rod.Pole = 0;
    }

    function Adduct(Fa storage Rod, uint64 _Phi) internal {
        Rod.Manifold = aa.modExp64(_Phi, Rod.Signal, Rod.Element);
    }

    function Open(Fa storage Rod) internal {
        Rod.Ring = aa.modExp64(Rod.Coordinate, Rod.Manifold, Rod.Element);
        Rod.Barn = aa.modExp64(Rod.Ring, Rod.Manifold, Rod.Element);
    }

    event DysnomiaNuclearEvent(string What, uint64 Value);

    function ManifoldCompare(Fa storage Rod, Fa storage Cone) internal view returns(bool) {
        //emit DysnomiaNuclearEvent("Manifold Created", Rod.Barn);
        return(Rod.Manifold == Cone.Manifold && Rod.Ring == Cone.Ring && Rod.Barn == Cone.Barn);
    }

    function Charge(Fa storage Rod, uint64 Psi) internal returns(uint64) {
        Rod.Alpha = aa.modExp64(Rod.Barn, Psi, Rod.Ring);
        //emit DysnomiaNuclearEvent("Alpha Charged", Rod.Alpha);
        return Rod.Alpha;
    }

    function Induce(Fa storage Rod, uint64 Sigma) internal returns(uint64) {
        Rod.Alpha = aa.modExp64(Sigma, Rod.Manifold, Rod.Ring);
        //emit DysnomiaNuclearEvent("Alpha Induced", Rod.Alpha);
        return Rod.Alpha;
    }

    function Torque(Fa storage Rod, uint64 Sigma) internal returns(uint64) {
        Rod.Alpha = aa.modExp64(Sigma, Rod.Element, Rod.Channel);
        //emit DysnomiaNuclearEvent("Alpha TORQUE", Rod.Alpha);
        return Rod.Alpha;
    }

    function Amplify(Fa storage Rod, uint64 Upsilon) internal returns(uint64) {
        return Torque(Rod, Upsilon);
    }

    function Sustain(Fa storage Rod, uint64 Ohm) internal returns(uint64) {
        return Torque(Rod, Ohm);
    }

    function React(Fa storage Rod, uint64 Pi, uint64 Theta) internal {
        _mintToCap();
        Rod.Eta = aa.modExp64(Pi, Rod.Channel, Theta);
        Rod.Kappa = aa.modExp64(Pi, Theta, Rod.Channel);
        assert(Rod.Eta != 0 && Rod.Kappa != 0);
        //emit DysnomiaNuclearEvent(">>", Rod.Eta);
        //emit DysnomiaNuclearEvent("<<", Rod.Kappa);
    }
}
          

/

// SPDX-License-Identifier: Sharia
pragma solidity ^0.8.21;

address constant dead = address(0x000000000000000000000000000000000000dEaD);
address constant atropa = address(0x7a20189B297343CF26d8548764b04891f37F3414);
address constant trebizond = address(0x903030f7e2d6489F38B0f4F96F9b371ec7960F78);

address constant dai = address(0x6B175474E89094C44Da98b954EedeAC495271d0F);
address constant usdc = address(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48);
address constant usdt = address(0xdAC17F958D2ee523a2206206994597C13D831ec7);

address constant AtropaContract = address(0xCc78A0acDF847A2C1714D2A925bB4477df5d48a6);
address constant EasternLightningContract = address(0xCD6159D0a1aaE415E0c1504E90A5d741A28afc98);
address constant FinalContract = address(0x50E72874dCd7C198d370ac27c7B3cce9f9a0defd);
address constant KaContract = address(0x83a918056aB9316837Dc48a216119D679D561d91);
address constant BuckinghamContract = address(0xe5d3A6e88590fc2A8037D9CCbd816C05B1ff5f11);
address constant WheelContract = address(0xb9A44De20f26a027e467CB6c2F98766F01904189);
address constant LibertyContract = address(0xFE9b99eCC43cb423408b975cc5ff439e5ABaCb61);
address constant CherokeeContract = address(0xb4C1248812dAbF72cb2e82175b4c0aCffE4D2b10);
address constant DreidelContract = address(0x8A03b032c5494219B212e5a74A49e2aa7F9d206F);
address constant MantissaContract = address(0x0EB4EE7d5Ff28cbF68565A174f7E5e186c36B4b3);
address constant NeptuneContract = address(0x9A3796Cf41B7CbA6921fd50c3f5204ED6506C3e7);
address constant HarContract = address(0x557F7e30aA6D909Cfe8a229A4CB178ab186EC622);         // ʁ 
address constant ThetaContract = address(0xCd19062a6d3019b02A676D72e51D8de7A398dE25);       // Ө
address constant CROWSContract = address(0x203e366A1821570b2f84Ff5ae8B3BdeB48Dc4fa1);
address constant MonatsContract = address(0xf8AB3393b1f5CD6184Fb6800A1fC802043C4063e);
address constant LegalContract = address(0x0b1307dc5D90a0B60Be18D2634843343eBc098AF);
address constant ScissorsContract = address(0x1b8F9E19360D1dc94295D984b7Ca7eA9b810D9ee);
address constant ReadingContract = address(0xf69e9f943674027Cedf05564A8D5A01041d07c62);     // পঁদাে়নুিং
address constant DiContract = address(0x347BC40503E0CE23fE0F5587F232Cd2D07D4Eb89);          // 第作
address constant dOWNContract = address(0x2556F7f8d82EbcdD7b821b0981C38D9dA9439CdD);
address constant STAYContract = address(0x7674516ad438dd67A057fBc1119168d9A7d2a9B1);
address constant INDEPENDENCEContract = address(0x8B090509eAe0fEB4A0B934de1b4345161fA9a62d);
address constant LOLContract = address(0xA63F8061A67ecdbf147Cd1B60f91Cf95464E868D);         // ލ
address constant Bullion5Contract = address(0x77Bed67181CeF592472bcb7F97736c560340E006);
address constant Bullion8Contract = address(0x2959221675bdF0e59D0cC3dE834a998FA5fFb9F4);    // ⑧
address constant TreasuryBillContract = address(0x463413c579D29c26D59a65312657DFCe30D545A1);
address constant TeddyBearContract = address(0xd6c31bA0754C4383A41c0e9DF042C62b5e918f6d);
address constant PoppyContract = address(0xdE65090088Df0b2d80A5eC6A7B56ECE36ee83ce8);
address constant OjeonContract = address(0xFa4d9C6E012d946853386113ACbF166deC5465Bb);
address constant YuContract = address(0x52a4682880E990ebed5309764C7BD29c4aE22deB);          // 유
address constant YingContract = address(0x271197EFe41073681577CdbBFD6Ee1DA259BAa3c);        // 籯
address constant MetisContract = address(0x36d4Ac3DF7Bf8aa3843Ad40C8b3eB67e3d18b4e1);       // ไมิติซส์
address constant GaiContract = address(0xd6077A029Fb5BEF33b02391D7f0349c345F6DDb1);
address constant DiscoContract = address(0xb6936B8e82626405f6E601D54a8292881D86b47D);
address constant HOSTContract = address(0x1162104a7b8766784153Dd2D6aC0eCEAecD28117);
address constant DampfContract = address(0x08Fe5c72173044314A74705089d014a4416Ed71D);
address constant DEIContract = address(0xF77c946C18A77B5DdA5e839dA9818C4D1f087393);
address constant TlingitContract = address(0x54D88F0c4a738247DadF160923E1b1C5dc4F510f);
address constant AbUrbeConditaContract = address(0x7FB09EE1a2c0E8b6D1c4E19C0248B3CbC0113af6);
address constant SIMContract = address(0xBb341FD5C855c206f5538cc649f90d84Df19b65a);
address constant BinContract = address(0xf520404CF4fa5B633626333775b05F5dF94E1a9C);
address constant PhDContract = address(0x6236073377AC7e0aB694957dA5d7d4241e72EBc6);
address constant LilliesContract = address(0xE949a217809d1Fab4018E22d6810500399951dAE);
address constant KremlinContract = address(0x7F51FdB20246D7a673036f11C743E99A4AF01de0);
address constant TwoContract = address(0xDf6A16689A893095C721542e5d3CE55bBcc23aC6);         // ㉣
address constant TseContract = address(0x3d67511733d976800467119264C3d4Cd9FA23041);
address constant FrockContract = address(0x8B8b26bB6C5fD4867339ab2f0acf3aE5129BD2F0);
address constant QingDaoContract = address(0xE63191967735C52f5de78CE2471759a9963Ce118);
address constant TSFiContract = address(0x4243568Fa2bbad327ee36e06c16824cAd8B37819);
address constant GreenlandContract = address(0xdE4Ef7Ea464c7771803b9838AeA07cE41089b054);
address constant BuddhaghosaContract = address(0x840CBD20A70774BECAc4e932Fff6fb1f5417997F);
address constant ZuoContract = address(0x583d1C1427308f7f96BFd3E0d7A3F9674D8BF8ec);
address constant HegelBetContract = address(0x51C36aA04ffC2139F6d34436d0EDC7f5ffc6D6Fb);
address constant HahnarchContract = address(0x4a458D04909a42F79d31805762B2abc38ab9407d);
address constant RabContract = address(0x89E8cD6306AbbAB8e39eeD0D53566d8dC2E02c01);
address constant LoanContract = address(0xeE67825eF27588FAeE39cfefb465eB0A242A740c);
address constant FreebiesContract = address(0x48F628c079353ECC4DB75F0d05de9299e083f3C2);

address constant WMContract = address(0xA1BEe1daE9Af77dAC73aA0459eD63b4D93fC6d29);
address constant IRCContract = address(0xD64f26Bcf78df919D587b6743fcFf5b155815bd6);
address constant NoContract = address(0x1942Ba1EA7c21a070D70C4eFe64B21694283F23e);
address constant CallContract = address(0xD4FD96BA83d3E6FF1A0Baa44c32Def94e641D97c);        // 𐌎

address constant TeddyBear9Contract = address(0x1f737F7994811fE994Fe72957C374e5cD5D5418A);

address constant BondContract = address(0x25d53961a27791B9D8b2d74FB3e937c8EAEadc38);
address constant BailContract = address(0x8B16115fF716b4c52706122cb4e974f7a72E5Af1);
address constant WritingContract = address(0x26D5906c4Cdf8C9F09CBd94049f99deaa874fB0b);
address constant SukukContract = address(0x72f96a39AC9408b5458E5597BBC22060552dedF4);

// address constant FAContract = address(0xF2be09EB43c1eD2791d0324BaA0649e62CdA4BBF);
address constant hhFaContract = address(0xa28e8aA4d6257157de64a547c90B38C3c540eF72);
address constant NoNukesContract = address(0x174A0ad99c60c20D9B3D94c3095BC1fb9ddEFd62);
address constant WenTiContract = address(0xA537d6F4c1c8F8C41f1004cc34C00e7Db40179Cc);
address constant TwoCentClubContract = address(0x6293373BF0DAE2050641973D49b7b2f71adC91a1);
address constant BFFContract = address(0xE35A842eb1EDca4C710B6c1B1565cE7df13f5996);
address constant SECURITYContract = address(0x2234da59c2D5EDB197594C95dbbA7a99Bcd91230);
//
address constant TRSIContract = address(0x51A7aaBcCa69B3c0F82b3b9ce5104FDe3efAecE6);
address constant BELContract = address(0x4C1518286E1b8D5669Fe965EF174B8B4Ae2f017B);
address constant KLANContract = address(0xC196247AA267Db0DF216d5385bCD23e5cf25EA6A);
address constant SMGContract = address(0xa8e8412d9B4341239269cBA38ad949fE4870be34);
address constant iCEContract = address(0x2fA079d2dAA29Ec8925484F9E9021e9191fE4aE4);
address constant PWAContract = address(0x5d4cb28eA61125a1fD3c927162C6F1969DD26788);
address constant LITContract = address(0xf5E3Cc8d22B10d967bE49FE103e496F449C8604E);
address constant RZRContract = address(0x50e40e8555AaB6b9c6CFF691E14070b6F38142Cb);
address constant FLTContract = address(0x86F0985Cd6Ab3196ea8DceBa87B92a2e22124633);
address constant GokuldhamContract = address(0x920401FDce49Fc70A2D4cD70DB0dD90212a97f98);
address constant KPOPContract = address(0x982B52a54916B899c60031772cc85b041613510E);
address constant CiAContract = address(0x2e5898b2e107a3cAf4f0597aCFE5D2e6d73F2196);
address constant ACiDContract = address(0xf8b6e89b851e03c724aad1F5170230A60490b819);
address constant MaltaContract = address(0xee62EE9A354E55dF7C39209B4304161369333fF7);
address constant ZzkContract = address(0xe2e1a5d691cCB9E88b84e23A1166B4e6Bd6904Dc);
address constant ACABContract = address(0x241DA2613b0A01C2f60acB636b21A8E082E2f2F0);

//
address constant BillBurrContract = address(0xF7ebb9bc80fb6395373c6BbDF690fcFfb217a691);

//
address constant BonusContract = address(0xB8FaCE58CB05C55BBBA9c564A550cc2402A40b5b);

///
address constant LEPROSYContract = address(0x7759A6D283192ef2BA082923d28Bec6eBfAf9D68);

// royalty tokens
/*
0xC6F085DE4f388a48ce2942857455147A37870086
0x80C105217885707BA0003ffAe7Ab01466E5E8488
0xF2563864C22022deb03ce929c26C54033a69E9d5
0xA78feD26D175b4B2c83F69Ca3eA195123ca30381
0xdF606c14351fd52bF502d5F60D105320CF5D99D5
0xa9353a16cA53a2009fEBF62029F8555216588Fea
0x7ec9043c321A8759Ee5F917Da943979EC70Cf8e3
*/

//
address constant PIContract = address(0xA2262D7728C689526693aE893D0fD8a352C7073C);
address constant G5Contract = address(0x2fc636E7fDF9f3E8d61033103052079781a6e7D2);

//
address constant libAtropaMathContract = address(0xB680F0cc810317933F234f67EB6A9E923407f05D);
address constant libConjectureContract = address(0x232a27AB6941281b3f474Fe5fF7Cc89816fB675A);
address constant libDynamicContract = address(0x73A19FaFb359faf519C9707b781dfdB88407d10d);
          

/

// SPDX-License-Identifier: Sharia
pragma solidity ^0.8.21;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "addresses.sol";
import "faung.sol";
import "conjecture.sol";

abstract contract Dynamic is ERC20, ERC20Burnable, Ownable, Conjecture {
    Faung internal Mu;

    function NewDynamic(uint64 Xi, uint64 Alpha, uint64 Beta) internal {
        NewConjecture(Mu.Rod);
        NewConjecture(Mu.Cone);
        OpenManifolds(Xi, Alpha, Beta);
        Mu.Xi = Xi;
        Mu.Chi = 0;
    }

    function OpenManifolds(uint64 Xi, uint64 Alpha, uint64 Beta) internal {
        ConductorGenerate(Xi);

        Conjugate(Mu.Rod, Mu.Cone.Pole);
        Conjugate(Mu.Cone, Mu.Rod.Pole);

        assert(Mu.Rod.Coordinate == Mu.Cone.Coordinate);

        Conify(Mu.Cone, Alpha);

        Saturate(Mu.Rod, Alpha, Mu.Cone.Foundation, Mu.Cone.Channel);
        Saturate(Mu.Cone, Beta, Mu.Rod.Foundation, Mu.Rod.Channel);

        assert(Mu.Rod.Element == Mu.Cone.Element);
        Ratchet();

        Adduct(Mu.Rod, Mu.Cone.Dynamo);
        Adduct(Mu.Cone, Mu.Rod.Dynamo);

        Open(Mu.Rod);
        Open(Mu.Cone);

        assert(ManifoldCompare(Mu.Rod, Mu.Cone));
        _mintToCap();
    }

    function ConductorGenerate(uint64 Xi) internal {
        Avail(Mu.Rod, Xi);
        Avail(Mu.Cone, Xi);
        Mu.Cone.Tau = Mu.Cone.Alpha;

        Form(Mu.Rod, Mu.Cone.Tau);
        Form(Mu.Cone, Mu.Rod.Alpha);

        Polarize(Mu.Rod);
        Polarize(Mu.Cone);
    }

    function Ratchet() internal {
        Bond(Mu.Rod);
        Bond(Mu.Cone);
    }

    function Charge(uint64 Signal) internal returns(uint64) {
        assert(Signal != 0);
        Charge(Mu.Cone, Signal);
        Mu.Sigma = Mu.Cone.Alpha;
        return Mu.Cone.Alpha;
    }

    function Induce() internal returns(uint64) {
        Mu.Cone.Alpha = Induce(Mu.Rod, Mu.Sigma);
        Mu.Rho = Mu.Rod.Alpha;
        return Mu.Cone.Alpha;
    }

    function Torque() internal returns(uint64) {
        Mu.Cone.Alpha = Torque(Mu.Cone, Mu.Rho);
        Mu.Upsilon = Mu.Cone.Alpha;
        return Mu.Cone.Alpha;
    }

    function Amplify() internal returns(uint64) {
        Mu.Cone.Alpha = Amplify(Mu.Cone, Mu.Upsilon);
        Mu.Ohm = Mu.Cone.Alpha;
        return Mu.Cone.Alpha;
    }

    function Sustain() internal returns(uint64) {
        Mu.Cone.Alpha = Sustain(Mu.Cone, Mu.Ohm);
        Mu.Pi = Mu.Cone.Alpha;
        return Mu.Cone.Alpha;
    }

    function React() internal {
        React(Mu.Rod, Mu.Pi, Mu.Cone.Channel);
        React(Mu.Cone, Mu.Pi, Mu.Rod.Channel);
        Mu.Omicron = Mu.Cone.Kappa;
        Mu.Omega = Mu.Rod.Kappa;
        _mintToCap();
    }

}
          

/

// SPDX-License-Identifier: Sharia
pragma solidity ^0.8.21;
import "addresses.sol";
import "fa.sol";

//libConjecture constant libConjectureToken = libConjecture(libConjectureContract);
//libDynamic constant libDynamicToken = libDynamic(libDynamicContract);

struct Faung {
    Fa Rod;
    Fa Cone;

    uint64 Phi;
    uint64 Eta;
    uint64 Mu;
    uint64 Xi;
    uint64 Sigma;
    uint64 Rho;
    uint64 Upsilon;
    uint64 Ohm;
    uint64 Pi;
    uint64 Omicron;
    uint64 Omega;

    uint8 Chi;
}

/*
interface libConjecture {
    function BuyWithG5(uint256 amount) external; 
    function BuyWithPI(uint256 amount) external; 
    function BuyWithMATH(uint256 amount) external; 
    function New() external;
    function Initialize() external pure;
    function Seed() external; 
    function Tune(Fa memory ee) external; 
    function Fuse(Fa memory ee, uint64 _rho, uint64 Upsilon, uint64 Ohm) external pure;
    function Avail(Fa memory ee, uint64 Xi) external;
    function Form(Fa memory ee, uint64 Chi) external;
    function Polarize(Fa memory ee) external;
    function Conjugate(Fa memory ee, uint64 Chi) external;
    function Conify(Fa memory ee, uint64 _Beta) external;
    function Saturate(Fa memory ee, uint64 _Beta, uint64 Epsilon, uint64 Theta) external;
    function Bond(Fa memory ee) external;
    function Adduct(Fa memory ee, uint64 _Phi) external;
    function Open(Fa memory ee) external;
    function ManifoldCompare(Fa memory ee, Fa memory R) external pure returns(bool);
    function Charge(Fa memory ee, uint64 Psi) external returns(uint64);
    function Induce(Fa memory ee, uint64 Sigma) external returns(uint64);
    function Torque(Fa memory ee, uint64 Sigma) external returns(uint64);
    function Amplify(Fa memory ee, uint64 Upsilon) external returns(uint64);
    function Sustain(Fa memory ee, uint64 Ohm) external returns(uint64);
    function React(Fa memory ee, uint64 Pi, uint64 Theta) external returns(Fa memory);
}

interface libDynamic {
    function New(Fa memory Rod, Fa memory Cone, uint64 Xi, uint64 Alpha, uint64 Beta) external returns(Faung memory);
    function Charge(Faung memory I, uint64 Signal) external returns(uint64);
    function Induce(Faung memory I) external returns(uint64);
    function Torque(Faung memory I) external returns(uint64);
    function Amplify(Faung memory I) external returns(uint64);
    function Sustain(Faung memory I) external returns(uint64);
    function React(Faung memory I) external returns(Faung memory);
}
*/
          

/

// SPDX-License-Identifier: Sharia
pragma solidity ^0.8.21;

struct Fa {
        uint64 Base;
        uint64 Secret;
        uint64 Signal;
        uint64 Channel;
        uint64 Pole;
        uint64 Identity;
        uint64 Foundation;
        uint64 Element;
        uint64 Dynamo;
        uint64 Manifold;
        uint64 Ring;
        uint64 Barn;
        uint64 Coordinate;

        uint64 Tau;
        uint64 Eta;
        uint64 Kappa;
//        uint64 Rho;
//        uint64 Beta;
//        uint64 Phi;
        uint64 Alpha;

        uint8 Nu;        
}
          

Compiler Settings

{"remappings":[],"optimizer":{"runs":200,"enabled":false},"metadata":{"bytecodeHash":"ipfs"},"libraries":{},"evmVersion":"shanghai","compilationTarget":{"rng.sol":"Affection"}}
              

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[]},{"type":"error","name":"ERC20InsufficientAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"allowance","internalType":"uint256"},{"type":"uint256","name":"needed","internalType":"uint256"}]},{"type":"error","name":"ERC20InsufficientBalance","inputs":[{"type":"address","name":"sender","internalType":"address"},{"type":"uint256","name":"balance","internalType":"uint256"},{"type":"uint256","name":"needed","internalType":"uint256"}]},{"type":"error","name":"ERC20InvalidApprover","inputs":[{"type":"address","name":"approver","internalType":"address"}]},{"type":"error","name":"ERC20InvalidReceiver","inputs":[{"type":"address","name":"receiver","internalType":"address"}]},{"type":"error","name":"ERC20InvalidSender","inputs":[{"type":"address","name":"sender","internalType":"address"}]},{"type":"error","name":"ERC20InvalidSpender","inputs":[{"type":"address","name":"spender","internalType":"address"}]},{"type":"error","name":"OwnableInvalidOwner","inputs":[{"type":"address","name":"owner","internalType":"address"}]},{"type":"error","name":"OwnableUnauthorizedAccount","inputs":[{"type":"address","name":"account","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":"DysnomiaNuclearEvent","inputs":[{"type":"string","name":"What","internalType":"string","indexed":false},{"type":"uint64","name":"Value","internalType":"uint64","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"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":"nonpayable","outputs":[],"name":"Alpha","inputs":[{"type":"uint64","name":"_a","internalType":"uint64"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"Beta","inputs":[{"type":"uint64","name":"_b","internalType":"uint64"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"BuyWithFa","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"BuyWithFaung","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"BuyWithG5","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"BuyWithMATH","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"BuyWithPI","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"uint64","name":"","internalType":"uint64"}],"name":"Generate","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint64","name":"","internalType":"uint64"}],"name":"MotzkinPrime","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"Pi","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"Rho","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"Upsilon","inputs":[{"type":"uint64","name":"_a","internalType":"uint64"},{"type":"bool","name":"Phi","internalType":"bool"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"tuple","name":"","internalType":"struct Faung","components":[{"type":"tuple","name":"Rod","internalType":"struct Fa","components":[{"type":"uint64","name":"Base","internalType":"uint64"},{"type":"uint64","name":"Secret","internalType":"uint64"},{"type":"uint64","name":"Signal","internalType":"uint64"},{"type":"uint64","name":"Channel","internalType":"uint64"},{"type":"uint64","name":"Pole","internalType":"uint64"},{"type":"uint64","name":"Identity","internalType":"uint64"},{"type":"uint64","name":"Foundation","internalType":"uint64"},{"type":"uint64","name":"Element","internalType":"uint64"},{"type":"uint64","name":"Dynamo","internalType":"uint64"},{"type":"uint64","name":"Manifold","internalType":"uint64"},{"type":"uint64","name":"Ring","internalType":"uint64"},{"type":"uint64","name":"Barn","internalType":"uint64"},{"type":"uint64","name":"Coordinate","internalType":"uint64"},{"type":"uint64","name":"Tau","internalType":"uint64"},{"type":"uint64","name":"Eta","internalType":"uint64"},{"type":"uint64","name":"Kappa","internalType":"uint64"},{"type":"uint64","name":"Alpha","internalType":"uint64"},{"type":"uint8","name":"Nu","internalType":"uint8"}]},{"type":"tuple","name":"Cone","internalType":"struct Fa","components":[{"type":"uint64","name":"Base","internalType":"uint64"},{"type":"uint64","name":"Secret","internalType":"uint64"},{"type":"uint64","name":"Signal","internalType":"uint64"},{"type":"uint64","name":"Channel","internalType":"uint64"},{"type":"uint64","name":"Pole","internalType":"uint64"},{"type":"uint64","name":"Identity","internalType":"uint64"},{"type":"uint64","name":"Foundation","internalType":"uint64"},{"type":"uint64","name":"Element","internalType":"uint64"},{"type":"uint64","name":"Dynamo","internalType":"uint64"},{"type":"uint64","name":"Manifold","internalType":"uint64"},{"type":"uint64","name":"Ring","internalType":"uint64"},{"type":"uint64","name":"Barn","internalType":"uint64"},{"type":"uint64","name":"Coordinate","internalType":"uint64"},{"type":"uint64","name":"Tau","internalType":"uint64"},{"type":"uint64","name":"Eta","internalType":"uint64"},{"type":"uint64","name":"Kappa","internalType":"uint64"},{"type":"uint64","name":"Alpha","internalType":"uint64"},{"type":"uint8","name":"Nu","internalType":"uint8"}]},{"type":"uint64","name":"Phi","internalType":"uint64"},{"type":"uint64","name":"Eta","internalType":"uint64"},{"type":"uint64","name":"Mu","internalType":"uint64"},{"type":"uint64","name":"Xi","internalType":"uint64"},{"type":"uint64","name":"Sigma","internalType":"uint64"},{"type":"uint64","name":"Rho","internalType":"uint64"},{"type":"uint64","name":"Upsilon","internalType":"uint64"},{"type":"uint64","name":"Ohm","internalType":"uint64"},{"type":"uint64","name":"Pi","internalType":"uint64"},{"type":"uint64","name":"Omicron","internalType":"uint64"},{"type":"uint64","name":"Omega","internalType":"uint64"},{"type":"uint8","name":"Chi","internalType":"uint8"}]}],"name":"View","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":"value","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":"value","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"burnFrom","inputs":[{"type":"address","name":"account","internalType":"address"},{"type":"uint256","name":"value","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"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":"value","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":"value","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]}]
              

Contract Creation Code

0x608060405273b680f0cc810317933f234f67eb6a9e923407f05d60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555034801562000064575f80fd5b50336040518060400160405280600c81526020017f414646454354494f4ee284a200000000000000000000000000000000000000008152506040518060400160405280600381526020017fe292b600000000000000000000000000000000000000000000000000000000008152508160039081620000e3919062003785565b508060049081620000f5919062003785565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200016b575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620001629190620038ac565b60405180910390fd5b6200017c81620005f660201b60201c565b50736b175474e89094c44da98b954eedeac495271d0f60145f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4860155f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073dac17f958d2ee523a2206206994597c13d831ec760165f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550732fc636e7fdf9f3e8d61033103052079781a6e7d260175f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073a2262d7728c689526693ae893d0fd8a352c7073c60185f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004e760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663604a6fa96040518163ffffffff1660e01b81526004016020604051808303815f875af115801562000391573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620003b791906200390d565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663604a6fa96040518163ffffffff1660e01b81526004016020604051808303815f875af115801562000423573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200044991906200390d565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663604a6fa96040518163ffffffff1660e01b81526004016020604051808303815f875af1158015620004b5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620004db91906200390d565b620006b960201b60201c565b6200051260075f015f0160109054906101000a900467ffffffffffffffff166200074460201b60201c565b6200053c6007600b0160109054906101000a900467ffffffffffffffff16620007f360201b60201c565b620005676007600b0160109054906101000a900467ffffffffffffffff165f6200091260201b60201c565b62000577620009b060201b60201c565b6200058762000af060201b60201c565b620005b36007600b0160109054906101000a900467ffffffffffffffff1660016200091260201b60201c565b620005f030620005c862000c8860201b60201c565b600a620005d6919062003ac6565b6001620005e4919062003b16565b62000c9060201b60201c565b62003cbc565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006cd60075f0162000d1a60201b60201c565b620006e2600760050162000d1a60201b60201c565b620006f583838362000d8b60201b60201c565b826007600a0160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505f6007600c0160186101000a81548160ff021916908360ff160217905550505050565b62000755816200103e60201b60201c565b5060046007600b015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff16116200078c576200078b62003b60565b5b6200079c620010dc60201b60201c565b50620007ad6200119e60201b60201c565b50620007be6200126360201b60201c565b50620007cf6200132860201b60201c565b50620007e0620013ec60201b60201c565b620007f06200151f60201b60201c565b50565b6200080860075f0182620015a460201b60201c565b506200083860075f0160075f016004015f9054906101000a900467ffffffffffffffff16620016c060201b60201c565b506200086860075f0160075f016004015f9054906101000a900467ffffffffffffffff16620016db60201b60201c565b50620008b460075f0160075f016004015f9054906101000a900467ffffffffffffffff1660076005016002015f9054906101000a900467ffffffffffffffff16620016f660201b60201c565b620008ff600760050160075f016004015f9054906101000a900467ffffffffffffffff1660075f016002015f9054906101000a900467ffffffffffffffff16620016f660201b60201c565b6200090f6200151f60201b60201c565b50565b806200093a576007600b0160189054906101000a900467ffffffffffffffff16821862000971565b6007600c015f9054906101000a900467ffffffffffffffff166007600b0160189054906101000a900467ffffffffffffffff168318185b6007600b0160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550620009ac6200151f60201b60201c565b5050565b620009e1600760050160075f0160030160189054906101000a900467ffffffffffffffff16620015a460201b60201c565b5062000a13600760050160076005016004015f9054906101000a900467ffffffffffffffff16620016c060201b60201c565b5062000a45600760050160076005016004015f9054906101000a900467ffffffffffffffff16620016db60201b60201c565b5062000a9160075f0160076005016004015f9054906101000a900467ffffffffffffffff1660075f015f0160189054906101000a900467ffffffffffffffff16620016f660201b60201c565b62000ade600760050160076005016004015f9054906101000a900467ffffffffffffffff1660076005015f0160189054906101000a900467ffffffffffffffff16620016f660201b60201c565b62000aee6200151f60201b60201c565b565b62000b21600760050160075f0160030160109054906101000a900467ffffffffffffffff16620015a460201b60201c565b5062000b5160076005016007600b0160109054906101000a900467ffffffffffffffff16620016c060201b60201c565b5062000b8160076005016007600b0160189054906101000a900467ffffffffffffffff16620016db60201b60201c565b5062000bcc60076005016007600c015f9054906101000a900467ffffffffffffffff1660076005016002015f9054906101000a900467ffffffffffffffff16620016f660201b60201c565b62000c1460075f016007600c015f9054906101000a900467ffffffffffffffff1660075f016002015f9054906101000a900467ffffffffffffffff16620016f660201b60201c565b60075f0160030160189054906101000a900467ffffffffffffffff166007600c0160109054906101000a900467ffffffffffffffff16186007600c0160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555062000c866200151f60201b60201c565b565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000d03575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040162000cfa9190620038ac565b60405180910390fd5b62000d165f83836200193860201b60201c565b5050565b62000d2a6200151f60201b60201c565b5f8160030160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555062000d668162001b5c60201b60201c565b62000d778162001e2b60201b60201c565b62000d88816200205e60201b60201c565b50565b62000d9c836200216160201b60201c565b62000dcc60075f0160076005016001015f9054906101000a900467ffffffffffffffff166200226360201b60201c565b62000dfc600760050160075f016001015f9054906101000a900467ffffffffffffffff166200226360201b60201c565b60076005016003015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1660075f016003015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff161462000e585762000e5762003b60565b5b62000e6e6007600501836200235160201b60201c565b62000ebc60075f0183600760050160010160109054906101000a900467ffffffffffffffff1660076005015f0160189054906101000a900467ffffffffffffffff16620024c760201b60201c565b62000f0960076005018260075f0160010160109054906101000a900467ffffffffffffffff1660075f015f0160189054906101000a900467ffffffffffffffff16620024c760201b60201c565b600760050160010160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1660075f0160010160189054906101000a900467ffffffffffffffff1667ffffffffffffffff161462000f675762000f6662003b60565b5b62000f7762002a6a60201b60201c565b62000fa760075f0160076005016002015f9054906101000a900467ffffffffffffffff1662002a9560201b60201c565b62000fd7600760050160075f016002015f9054906101000a900467ffffffffffffffff1662002a9560201b60201c565b62000feb60075f0162002b9560201b60201c565b62001000600760050162002b9560201b60201c565b6200101960075f01600760050162002dc160201b60201c565b62001029576200102862003b60565b5b620010396200151f60201b60201c565b505050565b5f808267ffffffffffffffff16036200105c576200105b62003b60565b5b6200107260076005018362002eb160201b60201c565b5060076005016004015f9054906101000a900467ffffffffffffffff166007600b015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060076005016004015f9054906101000a900467ffffffffffffffff169050919050565b5f6200110a60075f016007600b015f9054906101000a900467ffffffffffffffff1662002fce60201b60201c565b60076005016004015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060075f016004015f9054906101000a900467ffffffffffffffff166007600b0160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060076005016004015f9054906101000a900467ffffffffffffffff16905090565b5f620011ce60076005016007600b0160089054906101000a900467ffffffffffffffff16620015a460201b60201c565b60076005016004015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060076005016004015f9054906101000a900467ffffffffffffffff166007600b0160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060076005016004015f9054906101000a900467ffffffffffffffff16905090565b5f6200129360076005016007600b0160109054906101000a900467ffffffffffffffff16620016c060201b60201c565b60076005016004015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060076005016004015f9054906101000a900467ffffffffffffffff166007600b0160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060076005016004015f9054906101000a900467ffffffffffffffff16905090565b5f6200135860076005016007600b0160189054906101000a900467ffffffffffffffff16620016db60201b60201c565b60076005016004015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060076005016004015f9054906101000a900467ffffffffffffffff166007600c015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060076005016004015f9054906101000a900467ffffffffffffffff16905090565b6200143560075f016007600c015f9054906101000a900467ffffffffffffffff1660076005015f0160189054906101000a900467ffffffffffffffff16620016f660201b60201c565b6200147e60076005016007600c015f9054906101000a900467ffffffffffffffff1660075f015f0160189054906101000a900467ffffffffffffffff16620016f660201b60201c565b600760050160030160189054906101000a900467ffffffffffffffff166007600c0160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060075f0160030160189054906101000a900467ffffffffffffffff166007600c0160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506200151d6200151f60201b60201c565b565b6200152f62000c8860201b60201c565b600a6200153d919062003ac6565b63423a35c76200154e919062003b16565b6200155e620030eb60201b60201c565b11620015a257620015a1306200157962000c8860201b60201c565b600a62001587919062003ac6565b600162001595919062003b16565b62000c9060201b60201c565b5b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166353df6e35838560010160189054906101000a900467ffffffffffffffff16865f0160189054906101000a900467ffffffffffffffff166040518463ffffffff1660e01b8152600401620016349392919062003b9e565b6020604051808303815f875af115801562001651573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200167791906200390d565b836004015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550826004015f9054906101000a900467ffffffffffffffff16905092915050565b5f620016d38383620015a460201b60201c565b905092915050565b5f620016ee8383620015a460201b60201c565b905092915050565b620017066200151f60201b60201c565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166353df6e3583855f0160189054906101000a900467ffffffffffffffff16846040518463ffffffff1660e01b81526004016200177d9392919062003b9e565b6020604051808303815f875af11580156200179a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620017c091906200390d565b8360030160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166353df6e358383865f0160189054906101000a900467ffffffffffffffff166040518463ffffffff1660e01b8152600401620018619392919062003b9e565b6020604051808303815f875af11580156200187e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620018a491906200390d565b8360030160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505f8360030160109054906101000a900467ffffffffffffffff1667ffffffffffffffff16141580156200192357505f8360030160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1614155b62001933576200193262003b60565b5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200198c578060025f8282546200197f919062003bd9565b9250508190555062001a5d565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101562001a18578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040162001a0f9392919062003c24565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362001aa6578060025f828254039250508190555062001af0565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162001b4f919062003c5f565b60405180910390a3505050565b5f816001015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055815f0160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055815f0160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055815f0160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055815f015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505f8160010160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790558160010160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790558160010160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505f816002015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505f8160020160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505f8160020160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508060020160109054906101000a900467ffffffffffffffff168160020160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505f816004015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790558160030160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790558160030160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505f8160040160086101000a81548160ff021916908360ff1602179055505f816003015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663604a6fa96040518163ffffffff1660e01b81526004016020604051808303815f875af115801562001e97573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062001ebd91906200390d565b815f015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663604a6fa96040518163ffffffff1660e01b81526004016020604051808303815f875af115801562001f51573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062001f7791906200390d565b815f0160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663604a6fa96040518163ffffffff1660e01b81526004016020604051808303815f875af11580156200200c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200203291906200390d565b815f0160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166353df6e35825f015f9054906101000a900467ffffffffffffffff16835f0160109054906101000a900467ffffffffffffffff166603632c8eb5af3b6040518463ffffffff1660e01b8152600401620020f29392919062003b9e565b6020604051808303815f875af11580156200210f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200213591906200390d565b815f0160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555050565b6200217660075f0182620030f460201b60201c565b6200218c600760050182620030f460201b60201c565b60076005016004015f9054906101000a900467ffffffffffffffff16600760050160030160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506200220760075f01600760050160030160089054906101000a900467ffffffffffffffff16620031e260201b60201c565b62002237600760050160075f016004015f9054906101000a900467ffffffffffffffff16620031e260201b60201c565b6200224b60075f01620032e060201b60201c565b620022606007600501620032e060201b60201c565b50565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166353df6e3582845f0160089054906101000a900467ffffffffffffffff166603632c8eb5af3b6040518463ffffffff1660e01b8152600401620022e19392919062003b9e565b6020604051808303815f875af1158015620022fe573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200232491906200390d565b826003015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b5f8260040160089054906101000a900460ff1660ff161462002378576200237762003b60565b5b808260010160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166353df6e35835f015f9054906101000a900467ffffffffffffffff168460010160089054906101000a900467ffffffffffffffff166603632c8eb5af3b6040518463ffffffff1660e01b8152600401620024389392919062003b9e565b6020604051808303815f875af115801562002455573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200247b91906200390d565b8260010160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060018260040160086101000a81548160ff021916908360ff1602179055505050565b5f8460040160089054906101000a900460ff1660ff16036200261157828460010160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166353df6e35855f015f9054906101000a900467ffffffffffffffff168660010160089054906101000a900467ffffffffffffffff166603632c8eb5af3b6040518463ffffffff1660e01b8152600401620025a39392919062003b9e565b6020604051808303815f875af1158015620025c0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620025e691906200390d565b8460010160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b60018460040160089054906101000a900460ff1660ff1611156200263a576200263962003b60565b5b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166353df6e35848760010160089054906101000a900467ffffffffffffffff166603632c8eb5af3b6040518463ffffffff1660e01b8152600401620026ba9392919062003b9e565b6020604051808303815f875af1158015620026d7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620026fd91906200390d565b90505f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166353df6e35848860010160089054906101000a900467ffffffffffffffff166603632c8eb5af3b6040518463ffffffff1660e01b81526004016200277f9392919062003b9e565b6020604051808303815f875af11580156200279c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620027c291906200390d565b905060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166353df6e3585885f0160109054906101000a900467ffffffffffffffff166603632c8eb5af3b6040518463ffffffff1660e01b8152600401620028429392919062003b9e565b6020604051808303815f875af11580156200285f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200288591906200390d565b8660030160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505f8660030160109054906101000a900467ffffffffffffffff1682620028d6919062003c7a565b90508083620028e6919062003c7a565b8760010160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166353df6e3585895f0160109054906101000a900467ffffffffffffffff166603632c8eb5af3b6040518463ffffffff1660e01b81526004016200298e9392919062003b9e565b6020604051808303815f875af1158015620029ab573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620029d191906200390d565b876002015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550866002015f9054906101000a900467ffffffffffffffff168760010160189054906101000a900467ffffffffffffffff1662002a37919062003c7a565b8760020160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555050505050505050565b62002a7e60075f01620033e360201b60201c565b62002a936007600501620033e360201b60201c565b565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166353df6e3582845f0160109054906101000a900467ffffffffffffffff168560010160189054906101000a900467ffffffffffffffff166040518463ffffffff1660e01b815260040162002b249392919062003b9e565b6020604051808303815f875af115801562002b41573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062002b6791906200390d565b8260020160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166353df6e35826003015f9054906101000a900467ffffffffffffffff168360020160089054906101000a900467ffffffffffffffff168460010160189054906101000a900467ffffffffffffffff166040518463ffffffff1660e01b815260040162002c3c9392919062003b9e565b6020604051808303815f875af115801562002c59573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062002c7f91906200390d565b8160020160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166353df6e358260020160109054906101000a900467ffffffffffffffff168360020160089054906101000a900467ffffffffffffffff168460010160189054906101000a900467ffffffffffffffff166040518463ffffffff1660e01b815260040162002d519392919062003b9e565b6020604051808303815f875af115801562002d6e573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062002d9491906200390d565b8160020160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555050565b5f8160020160089054906101000a900467ffffffffffffffff1667ffffffffffffffff168360020160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1614801562002e5957508160020160109054906101000a900467ffffffffffffffff1667ffffffffffffffff168360020160109054906101000a900467ffffffffffffffff1667ffffffffffffffff16145b801562002ea957508160020160189054906101000a900467ffffffffffffffff1667ffffffffffffffff168360020160189054906101000a900467ffffffffffffffff1667ffffffffffffffff16145b905092915050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166353df6e358460020160189054906101000a900467ffffffffffffffff16848660020160109054906101000a900467ffffffffffffffff166040518463ffffffff1660e01b815260040162002f429392919062003b9e565b6020604051808303815f875af115801562002f5f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062002f8591906200390d565b836004015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550826004015f9054906101000a900467ffffffffffffffff16905092915050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166353df6e35838560020160089054906101000a900467ffffffffffffffff168660020160109054906101000a900467ffffffffffffffff166040518463ffffffff1660e01b81526004016200305f9392919062003b9e565b6020604051808303815f875af11580156200307c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620030a291906200390d565b836004015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550826004015f9054906101000a900467ffffffffffffffff16905092915050565b5f600254905090565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166353df6e3582845f0160089054906101000a900467ffffffffffffffff166603632c8eb5af3b6040518463ffffffff1660e01b8152600401620031729392919062003b9e565b6020604051808303815f875af11580156200318f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620031b591906200390d565b826004015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166353df6e3582845f0160089054906101000a900467ffffffffffffffff166603632c8eb5af3b6040518463ffffffff1660e01b8152600401620032609392919062003b9e565b6020604051808303815f875af11580156200327d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620032a391906200390d565b825f015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550620032dc826200205e60201b60201c565b5050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166353df6e35825f015f9054906101000a900467ffffffffffffffff16835f0160089054906101000a900467ffffffffffffffff166603632c8eb5af3b6040518463ffffffff1660e01b8152600401620033749392919062003b9e565b6020604051808303815f875af115801562003391573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620033b791906200390d565b816001015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166353df6e35825f015f9054906101000a900467ffffffffffffffff16835f0160109054906101000a900467ffffffffffffffff168460010160189054906101000a900467ffffffffffffffff166040518463ffffffff1660e01b8152600401620034889392919062003b9e565b6020604051808303815f875af1158015620034a5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620034cb91906200390d565b816002015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505f816001015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200359d57607f821691505b602082108103620035b357620035b262003558565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620036177fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620035da565b620036238683620035da565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200366d6200366762003661846200363b565b62003644565b6200363b565b9050919050565b5f819050919050565b62003688836200364d565b620036a0620036978262003674565b848454620035e6565b825550505050565b5f90565b620036b6620036a8565b620036c38184846200367d565b505050565b5b81811015620036ea57620036de5f82620036ac565b600181019050620036c9565b5050565b601f82111562003739576200370381620035b9565b6200370e84620035cb565b810160208510156200371e578190505b620037366200372d85620035cb565b830182620036c8565b50505b505050565b5f82821c905092915050565b5f6200375b5f19846008026200373e565b1980831691505092915050565b5f6200377583836200374a565b9150826002028217905092915050565b620037908262003521565b67ffffffffffffffff811115620037ac57620037ab6200352b565b5b620037b8825462003585565b620037c5828285620036ee565b5f60209050601f831160018114620037fb575f8415620037e6578287015190505b620037f2858262003768565b86555062003861565b601f1984166200380b86620035b9565b5f5b8281101562003834578489015182556001820191506020850194506020810190506200380d565b8683101562003854578489015162003850601f8916826200374a565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620038948262003869565b9050919050565b620038a68162003888565b82525050565b5f602082019050620038c15f8301846200389b565b92915050565b5f80fd5b5f67ffffffffffffffff82169050919050565b620038e981620038cb565b8114620038f4575f80fd5b50565b5f815190506200390781620038de565b92915050565b5f60208284031215620039255762003924620038c7565b5b5f6200393484828501620038f7565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115620039c7578086048111156200399f576200399e6200393d565b5b6001851615620039af5780820291505b8081029050620039bf856200396a565b94506200397f565b94509492505050565b5f82620039e1576001905062003ab3565b81620039f0575f905062003ab3565b816001811462003a09576002811462003a145762003a4a565b600191505062003ab3565b60ff84111562003a295762003a286200393d565b5b8360020a91508482111562003a435762003a426200393d565b5b5062003ab3565b5060208310610133831016604e8410600b841016171562003a845782820a90508381111562003a7e5762003a7d6200393d565b5b62003ab3565b62003a93848484600162003976565b9250905081840481111562003aad5762003aac6200393d565b5b81810290505b9392505050565b5f60ff82169050919050565b5f62003ad2826200363b565b915062003adf8362003aba565b925062003b0e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620039d0565b905092915050565b5f62003b22826200363b565b915062003b2f836200363b565b925082820262003b3f816200363b565b9150828204841483151762003b595762003b586200393d565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52600160045260245ffd5b62003b9881620038cb565b82525050565b5f60608201905062003bb35f83018662003b8d565b62003bc2602083018562003b8d565b62003bd1604083018462003b8d565b949350505050565b5f62003be5826200363b565b915062003bf2836200363b565b925082820190508082111562003c0d5762003c0c6200393d565b5b92915050565b62003c1e816200363b565b82525050565b5f60608201905062003c395f8301866200389b565b62003c48602083018562003c13565b62003c57604083018462003c13565b949350505050565b5f60208201905062003c745f83018462003c13565b92915050565b5f62003c8682620038cb565b915062003c9383620038cb565b9250828201905067ffffffffffffffff81111562003cb65762003cb56200393d565b5b92915050565b61408b8062003cca5f395ff3fe608060405234801561000f575f80fd5b50600436106101a7575f3560e01c80637ab0960d116100f7578063d3dc2a0f11610095578063df4c74061161006f578063df4c74061461046d578063e95b237f14610489578063f2fde38b146104a5578063f8784afe146104c1576101a7565b8063d3dc2a0f14610401578063d805b6501461041f578063dd62ed3e1461043d576101a7565b8063a4566950116100d1578063a45669501461038f578063a9059cbb14610399578063b61a722b146103c9578063ca9cf41c146103e5576101a7565b80637ab0960d146103375780638da5cb5b1461035357806395d89b4114610371576101a7565b806342966c68116101645780635c13dbf01161013e5780635c13dbf0146102d757806370a08231146102e1578063715018a61461031157806379cc67901461031b576101a7565b806342966c68146102835780635118149a1461029f578063512ab7de146102bb576101a7565b806306fdde03146101ab578063095ea7b3146101c95780631686f265146101f957806318160ddd1461021757806323b872dd14610235578063313ce56714610265575b5f80fd5b6101b36104dd565b6040516101c091906133b7565b60405180910390f35b6101e360048036038101906101de9190613468565b61056d565b6040516101f091906134c0565b60405180910390f35b61020161058f565b60405161020e91906137ad565b60405180910390f35b61021f610edf565b60405161022c91906137d6565b60405180910390f35b61024f600480360381019061024a91906137ef565b610ee8565b60405161025c91906134c0565b60405180910390f35b61026d610f16565b60405161027a919061384e565b60405180910390f35b61029d60048036038101906102989190613867565b610f1e565b005b6102b960048036038101906102b49190613867565b610f32565b005b6102d560048036038101906102d09190613867565b611092565b005b6102df6111e6565b005b6102fb60048036038101906102f69190613892565b6112f6565b60405161030891906137d6565b60405180910390f35b61031961133b565b005b61033560048036038101906103309190613468565b61134e565b005b610351600480360381019061034c91906138e7565b61136e565b005b61035b61145d565b6040516103689190613921565b60405180910390f35b610379611485565b60405161038691906133b7565b60405180910390f35b610397611515565b005b6103b360048036038101906103ae9190613468565b61167d565b6040516103c091906134c0565b60405180910390f35b6103e360048036038101906103de9190613867565b61169f565b005b6103ff60048036038101906103fa9190613867565b61180c565b005b61040961197a565b6040516104169190613949565b60405180910390f35b610427611985565b6040516104349190613949565b60405180910390f35b61045760048036038101906104529190613962565b611b5b565b60405161046491906137d6565b60405180910390f35b610487600480360381019061048291906139ca565b611bdd565b005b6104a3600480360381019061049e91906138e7565b611c71565b005b6104bf60048036038101906104ba9190613892565b611ce5565b005b6104db60048036038101906104d69190613867565b611d69565b005b6060600380546104ec90613a35565b80601f016020809104026020016040519081016040528092919081815260200182805461051890613a35565b80156105635780601f1061053a57610100808354040283529160200191610563565b820191905f5260205f20905b81548152906001019060200180831161054657829003601f168201915b5050505050905090565b5f80610577611ec9565b9050610584818585611ed0565b600191505092915050565b610597613127565b6007604051806101c00160405290815f8201604051806102400160405290815f82015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600182015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016001820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016001820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016001820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600282015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016002820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016002820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016002820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600382015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016003820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016003820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016003820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600482015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016004820160089054906101000a900460ff1660ff1660ff1681525050815260200160058201604051806102400160405290815f82015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600182015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016001820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016001820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016001820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600282015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016002820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016002820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016002820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600382015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016003820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016003820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016003820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600482015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016004820160089054906101000a900460ff1660ff1660ff16815250508152602001600a82015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600a820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600a820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600a820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600b82015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600b820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600b820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600b820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600c82015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600c820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600c820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600c820160189054906101000a900460ff1660ff1660ff1681525050905090565b5f600254905090565b5f80610ef2611ec9565b9050610eff858285611ee2565b610f0a858585611f74565b60019150509392505050565b5f6012905090565b610f2f610f29611ec9565b82612064565b50565b5f7373a19fafb359faf519c9707b781dfdb88407d10d73ffffffffffffffffffffffffffffffffffffffff166323b872dd3330600286610f729190613a92565b6040518463ffffffff1660e01b8152600401610f9093929190613ad3565b6020604051808303815f875af1158015610fac573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610fd09190613b1c565b905080611012576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100990613b91565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b815260040161104d929190613baf565b6020604051808303815f875af1158015611069573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061108d9190613b1c565b505050565b5f73b680f0cc810317933f234f67eb6a9e923407f05d73ffffffffffffffffffffffffffffffffffffffff166323b872dd3330856040518463ffffffff1660e01b81526004016110e493929190613ad3565b6020604051808303815f875af1158015611100573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111249190613b1c565b905080611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d90613c20565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b81526004016111a1929190613baf565b6020604051808303815f875af11580156111bd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111e19190613b1c565b505050565b61120f600760050160075f0160030160189054906101000a900467ffffffffffffffff166120e3565b50611239600760050160076005016004015f9054906101000a900467ffffffffffffffff166121fa565b50611263600760050160076005016004015f9054906101000a900467ffffffffffffffff1661220d565b506112a760075f0160076005016004015f9054906101000a900467ffffffffffffffff1660075f015f0160189054906101000a900467ffffffffffffffff16612220565b6112ec600760050160076005016004015f9054906101000a900467ffffffffffffffff1660076005015f0160189054906101000a900467ffffffffffffffff16612220565b6112f461244c565b565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6113436124a8565b61134c5f61252f565b565b6113608261135a611ec9565b83611ee2565b61136a8282612064565b5050565b61137b60075f01826120e3565b506113a360075f0160075f016004015f9054906101000a900467ffffffffffffffff166121fa565b506113cb60075f0160075f016004015f9054906101000a900467ffffffffffffffff1661220d565b5061140f60075f0160075f016004015f9054906101000a900467ffffffffffffffff1660076005016002015f9054906101000a900467ffffffffffffffff16612220565b611452600760050160075f016004015f9054906101000a900467ffffffffffffffff1660075f016002015f9054906101000a900467ffffffffffffffff16612220565b61145a61244c565b50565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461149490613a35565b80601f01602080910402602001604051908101604052809291908181526020018280546114c090613a35565b801561150b5780601f106114e25761010080835404028352916020019161150b565b820191905f5260205f20905b8154815290600101906020018083116114ee57829003601f168201915b5050505050905090565b61153e600760050160075f0160030160109054906101000a900467ffffffffffffffff166120e3565b5061156660076005016007600b0160109054906101000a900467ffffffffffffffff166121fa565b5061158e60076005016007600b0160189054906101000a900467ffffffffffffffff1661220d565b506115d160076005016007600c015f9054906101000a900467ffffffffffffffff1660076005016002015f9054906101000a900467ffffffffffffffff16612220565b61161160075f016007600c015f9054906101000a900467ffffffffffffffff1660075f016002015f9054906101000a900467ffffffffffffffff16612220565b60075f0160030160189054906101000a900467ffffffffffffffff166007600c0160109054906101000a900467ffffffffffffffff16186007600c0160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555061167b61244c565b565b5f80611687611ec9565b9050611694818585611f74565b600191505092915050565b5f60175f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd33306005866116ec9190613c6b565b6040518463ffffffff1660e01b815260040161170a93929190613ad3565b6020604051808303815f875af1158015611726573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061174a9190613b1c565b90508061178c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178390613ce5565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b81526004016117c7929190613baf565b6020604051808303815f875af11580156117e3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118079190613b1c565b505050565b5f60185f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd333061012c8661185a9190613c6b565b6040518463ffffffff1660e01b815260040161187893929190613ad3565b6020604051808303815f875af1158015611894573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118b89190613b1c565b9050806118fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f190613d4d565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b8152600401611935929190613baf565b6020604051808303815f875af1158015611951573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119759190613b1c565b505050565b6603632c8eb5af3b81565b5f6119ad60076005016007600b0160109054906101000a900467ffffffffffffffff166121fa565b506119d560076005016007600b0160189054906101000a900467ffffffffffffffff1661220d565b50611a1860076005016007600c015f9054906101000a900467ffffffffffffffff1660076005016002015f9054906101000a900467ffffffffffffffff16612220565b611a5860075f016007600c015f9054906101000a900467ffffffffffffffff1660075f016002015f9054906101000a900467ffffffffffffffff16612220565b60075f0160030160189054906101000a900467ffffffffffffffff166007600c0160109054906101000a900467ffffffffffffffff16186007600c0160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506007600c015f9054906101000a900467ffffffffffffffff166007600b0160189054906101000a900467ffffffffffffffff166007600b0160109054906101000a900467ffffffffffffffff1618186007600b0160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550611b3c61244c565b6007600b0160109054906101000a900467ffffffffffffffff16905090565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b80611c03576007600b0160189054906101000a900467ffffffffffffffff168218611c3a565b6007600c015f9054906101000a900467ffffffffffffffff166007600b0160189054906101000a900467ffffffffffffffff168318185b6007600b0160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550611c6d61244c565b5050565b611c7a816125f2565b5060046007600b015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1611611cae57611cad613d6b565b5b611cb6612685565b50611cbf61273f565b50611cc86127fc565b50611cd16128b9565b50611cda612975565b611ce261244c565b50565b611ced6124a8565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d5d575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401611d549190613921565b60405180910390fd5b611d668161252f565b50565b5f73232a27ab6941281b3f474fe5ff7cc89816fb675a73ffffffffffffffffffffffffffffffffffffffff166323b872dd3330600486611da99190613a92565b6040518463ffffffff1660e01b8152600401611dc793929190613ad3565b6020604051808303815f875af1158015611de3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e079190613b1c565b905080611e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4090613de2565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b8152600401611e84929190613baf565b6020604051808303815f875af1158015611ea0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ec49190613b1c565b505050565b5f33905090565b611edd8383836001612a90565b505050565b5f611eed8484611b5b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611f6e5781811015611f5f578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401611f5693929190613e00565b60405180910390fd5b611f6d84848484035f612a90565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611fe4575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611fdb9190613921565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612054575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161204b9190613921565b60405180910390fd5b61205f838383612c5f565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120d4575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016120cb9190613921565b60405180910390fd5b6120df825f83612c5f565b5050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166353df6e35838560010160189054906101000a900467ffffffffffffffff16865f0160189054906101000a900467ffffffffffffffff166040518463ffffffff1660e01b815260040161217193929190613e35565b6020604051808303815f875af115801561218d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121b19190613e7e565b836004015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550826004015f9054906101000a900467ffffffffffffffff16905092915050565b5f61220583836120e3565b905092915050565b5f61221883836120e3565b905092915050565b61222861244c565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166353df6e3583855f0160189054906101000a900467ffffffffffffffff16846040518463ffffffff1660e01b815260040161229d93929190613e35565b6020604051808303815f875af11580156122b9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122dd9190613e7e565b8360030160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166353df6e358383865f0160189054906101000a900467ffffffffffffffff166040518463ffffffff1660e01b815260040161237c93929190613e35565b6020604051808303815f875af1158015612398573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123bc9190613e7e565b8360030160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505f8360030160109054906101000a900467ffffffffffffffff1667ffffffffffffffff161415801561243a57505f8360030160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1614155b61244757612446613d6b565b5b505050565b612454610f16565b600a6124609190613fd8565b63423a35c761246f9190613a92565b612477610edf565b116124a6576124a530612488610f16565b600a6124949190613fd8565b60016124a09190613a92565b612e78565b5b565b6124b0611ec9565b73ffffffffffffffffffffffffffffffffffffffff166124ce61145d565b73ffffffffffffffffffffffffffffffffffffffff161461252d576124f1611ec9565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016125249190613921565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f808267ffffffffffffffff160361260d5761260c613d6b565b5b61261b600760050183612ef7565b5060076005016004015f9054906101000a900467ffffffffffffffff166007600b015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060076005016004015f9054906101000a900467ffffffffffffffff169050919050565b5f6126ab60075f016007600b015f9054906101000a900467ffffffffffffffff1661300f565b60076005016004015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060075f016004015f9054906101000a900467ffffffffffffffff166007600b0160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060076005016004015f9054906101000a900467ffffffffffffffff16905090565b5f61276760076005016007600b0160089054906101000a900467ffffffffffffffff166120e3565b60076005016004015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060076005016004015f9054906101000a900467ffffffffffffffff166007600b0160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060076005016004015f9054906101000a900467ffffffffffffffff16905090565b5f61282460076005016007600b0160109054906101000a900467ffffffffffffffff166121fa565b60076005016004015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060076005016004015f9054906101000a900467ffffffffffffffff166007600b0160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060076005016004015f9054906101000a900467ffffffffffffffff16905090565b5f6128e160076005016007600b0160189054906101000a900467ffffffffffffffff1661220d565b60076005016004015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060076005016004015f9054906101000a900467ffffffffffffffff166007600c015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060076005016004015f9054906101000a900467ffffffffffffffff16905090565b6129b660075f016007600c015f9054906101000a900467ffffffffffffffff1660076005015f0160189054906101000a900467ffffffffffffffff16612220565b6129f760076005016007600c015f9054906101000a900467ffffffffffffffff1660075f015f0160189054906101000a900467ffffffffffffffff16612220565b600760050160030160189054906101000a900467ffffffffffffffff166007600c0160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060075f0160030160189054906101000a900467ffffffffffffffff166007600c0160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550612a8e61244c565b565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612b00575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401612af79190613921565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612b70575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401612b679190613921565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015612c59578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051612c5091906137d6565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612caf578060025f828254612ca39190614022565b92505081905550612d7d565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612d38578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401612d2f93929190613e00565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612dc4578060025f8282540392505081905550612e0e565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612e6b91906137d6565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ee8575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401612edf9190613921565b60405180910390fd5b612ef35f8383612c5f565b5050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166353df6e358460020160189054906101000a900467ffffffffffffffff16848660020160109054906101000a900467ffffffffffffffff166040518463ffffffff1660e01b8152600401612f8693929190613e35565b6020604051808303815f875af1158015612fa2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fc69190613e7e565b836004015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550826004015f9054906101000a900467ffffffffffffffff16905092915050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166353df6e35838560020160089054906101000a900467ffffffffffffffff168660020160109054906101000a900467ffffffffffffffff166040518463ffffffff1660e01b815260040161309e93929190613e35565b6020604051808303815f875af11580156130ba573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130de9190613e7e565b836004015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550826004015f9054906101000a900467ffffffffffffffff16905092915050565b604051806101c0016040528061313b613207565b8152602001613148613207565b81526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f60ff1681525090565b6040518061024001604052805f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f60ff1681525090565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015613364578082015181840152602081019050613349565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6133898261332d565b6133938185613337565b93506133a3818560208601613347565b6133ac8161336f565b840191505092915050565b5f6020820190508181035f8301526133cf818461337f565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f613404826133db565b9050919050565b613414816133fa565b811461341e575f80fd5b50565b5f8135905061342f8161340b565b92915050565b5f819050919050565b61344781613435565b8114613451575f80fd5b50565b5f813590506134628161343e565b92915050565b5f806040838503121561347e5761347d6133d7565b5b5f61348b85828601613421565b925050602061349c85828601613454565b9150509250929050565b5f8115159050919050565b6134ba816134a6565b82525050565b5f6020820190506134d35f8301846134b1565b92915050565b5f67ffffffffffffffff82169050919050565b6134f5816134d9565b82525050565b5f60ff82169050919050565b613510816134fb565b82525050565b61024082015f82015161352b5f8501826134ec565b50602082015161353e60208501826134ec565b50604082015161355160408501826134ec565b50606082015161356460608501826134ec565b50608082015161357760808501826134ec565b5060a082015161358a60a08501826134ec565b5060c082015161359d60c08501826134ec565b5060e08201516135b060e08501826134ec565b506101008201516135c56101008501826134ec565b506101208201516135da6101208501826134ec565b506101408201516135ef6101408501826134ec565b506101608201516136046101608501826134ec565b506101808201516136196101808501826134ec565b506101a082015161362e6101a08501826134ec565b506101c08201516136436101c08501826134ec565b506101e08201516136586101e08501826134ec565b5061020082015161366d6102008501826134ec565b50610220820151613682610220850182613507565b50505050565b61060082015f82015161369d5f850182613516565b5060208201516136b1610240850182613516565b5060408201516136c56104808501826134ec565b5060608201516136d96104a08501826134ec565b5060808201516136ed6104c08501826134ec565b5060a08201516137016104e08501826134ec565b5060c08201516137156105008501826134ec565b5060e08201516137296105208501826134ec565b5061010082015161373e6105408501826134ec565b506101208201516137536105608501826134ec565b506101408201516137686105808501826134ec565b5061016082015161377d6105a08501826134ec565b506101808201516137926105c08501826134ec565b506101a08201516137a76105e0850182613507565b50505050565b5f610600820190506137c15f830184613688565b92915050565b6137d081613435565b82525050565b5f6020820190506137e95f8301846137c7565b92915050565b5f805f60608486031215613806576138056133d7565b5b5f61381386828701613421565b935050602061382486828701613421565b925050604061383586828701613454565b9150509250925092565b613848816134fb565b82525050565b5f6020820190506138615f83018461383f565b92915050565b5f6020828403121561387c5761387b6133d7565b5b5f61388984828501613454565b91505092915050565b5f602082840312156138a7576138a66133d7565b5b5f6138b484828501613421565b91505092915050565b6138c6816134d9565b81146138d0575f80fd5b50565b5f813590506138e1816138bd565b92915050565b5f602082840312156138fc576138fb6133d7565b5b5f613909848285016138d3565b91505092915050565b61391b816133fa565b82525050565b5f6020820190506139345f830184613912565b92915050565b613943816134d9565b82525050565b5f60208201905061395c5f83018461393a565b92915050565b5f8060408385031215613978576139776133d7565b5b5f61398585828601613421565b925050602061399685828601613421565b9150509250929050565b6139a9816134a6565b81146139b3575f80fd5b50565b5f813590506139c4816139a0565b92915050565b5f80604083850312156139e0576139df6133d7565b5b5f6139ed858286016138d3565b92505060206139fe858286016139b6565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680613a4c57607f821691505b602082108103613a5f57613a5e613a08565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613a9c82613435565b9150613aa783613435565b9250828202613ab581613435565b91508282048414831517613acc57613acb613a65565b5b5092915050565b5f606082019050613ae65f830186613912565b613af36020830185613912565b613b0060408301846137c7565b949350505050565b5f81519050613b16816139a0565b92915050565b5f60208284031215613b3157613b306133d7565b5b5f613b3e84828501613b08565b91505092915050565b7f4e65656420417070726f766564204661756e67000000000000000000000000005f82015250565b5f613b7b601383613337565b9150613b8682613b47565b602082019050919050565b5f6020820190508181035f830152613ba881613b6f565b9050919050565b5f604082019050613bc25f830185613912565b613bcf60208301846137c7565b9392505050565b7f4e65656420417070726f766564204d41544800000000000000000000000000005f82015250565b5f613c0a601283613337565b9150613c1582613bd6565b602082019050919050565b5f6020820190508181035f830152613c3781613bfe565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613c7582613435565b9150613c8083613435565b925082613c9057613c8f613c3e565b5b828204905092915050565b7f4e65656420417070726f7665642047696d6d65350000000000000000000000005f82015250565b5f613ccf601483613337565b9150613cda82613c9b565b602082019050919050565b5f6020820190508181035f830152613cfc81613cc3565b9050919050565b7f4e65656420417070726f7665642070494e444550454e44454e434500000000005f82015250565b5f613d37601b83613337565b9150613d4282613d03565b602082019050919050565b5f6020820190508181035f830152613d6481613d2b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52600160045260245ffd5b7f4e65656420417070726f766564204661000000000000000000000000000000005f82015250565b5f613dcc601083613337565b9150613dd782613d98565b602082019050919050565b5f6020820190508181035f830152613df981613dc0565b9050919050565b5f606082019050613e135f830186613912565b613e2060208301856137c7565b613e2d60408301846137c7565b949350505050565b5f606082019050613e485f83018661393a565b613e55602083018561393a565b613e62604083018461393a565b949350505050565b5f81519050613e78816138bd565b92915050565b5f60208284031215613e9357613e926133d7565b5b5f613ea084828501613e6a565b91505092915050565b5f8160011c9050919050565b5f808291508390505b6001851115613efe57808604811115613eda57613ed9613a65565b5b6001851615613ee95780820291505b8081029050613ef785613ea9565b9450613ebe565b94509492505050565b5f82613f165760019050613fd1565b81613f23575f9050613fd1565b8160018114613f395760028114613f4357613f72565b6001915050613fd1565b60ff841115613f5557613f54613a65565b5b8360020a915084821115613f6c57613f6b613a65565b5b50613fd1565b5060208310610133831016604e8410600b8410161715613fa75782820a905083811115613fa257613fa1613a65565b5b613fd1565b613fb48484846001613eb5565b92509050818404811115613fcb57613fca613a65565b5b81810290505b9392505050565b5f613fe282613435565b9150613fed836134fb565b925061401a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484613f07565b905092915050565b5f61402c82613435565b915061403783613435565b925082820190508082111561404f5761404e613a65565b5b9291505056fea2646970667358221220810cca9eaaf0a670b5787666043fafde8aee4fa34323c1aeee19775d6490212b64736f6c63430008150033

Deployed ByteCode

0x608060405234801561000f575f80fd5b50600436106101a7575f3560e01c80637ab0960d116100f7578063d3dc2a0f11610095578063df4c74061161006f578063df4c74061461046d578063e95b237f14610489578063f2fde38b146104a5578063f8784afe146104c1576101a7565b8063d3dc2a0f14610401578063d805b6501461041f578063dd62ed3e1461043d576101a7565b8063a4566950116100d1578063a45669501461038f578063a9059cbb14610399578063b61a722b146103c9578063ca9cf41c146103e5576101a7565b80637ab0960d146103375780638da5cb5b1461035357806395d89b4114610371576101a7565b806342966c68116101645780635c13dbf01161013e5780635c13dbf0146102d757806370a08231146102e1578063715018a61461031157806379cc67901461031b576101a7565b806342966c68146102835780635118149a1461029f578063512ab7de146102bb576101a7565b806306fdde03146101ab578063095ea7b3146101c95780631686f265146101f957806318160ddd1461021757806323b872dd14610235578063313ce56714610265575b5f80fd5b6101b36104dd565b6040516101c091906133b7565b60405180910390f35b6101e360048036038101906101de9190613468565b61056d565b6040516101f091906134c0565b60405180910390f35b61020161058f565b60405161020e91906137ad565b60405180910390f35b61021f610edf565b60405161022c91906137d6565b60405180910390f35b61024f600480360381019061024a91906137ef565b610ee8565b60405161025c91906134c0565b60405180910390f35b61026d610f16565b60405161027a919061384e565b60405180910390f35b61029d60048036038101906102989190613867565b610f1e565b005b6102b960048036038101906102b49190613867565b610f32565b005b6102d560048036038101906102d09190613867565b611092565b005b6102df6111e6565b005b6102fb60048036038101906102f69190613892565b6112f6565b60405161030891906137d6565b60405180910390f35b61031961133b565b005b61033560048036038101906103309190613468565b61134e565b005b610351600480360381019061034c91906138e7565b61136e565b005b61035b61145d565b6040516103689190613921565b60405180910390f35b610379611485565b60405161038691906133b7565b60405180910390f35b610397611515565b005b6103b360048036038101906103ae9190613468565b61167d565b6040516103c091906134c0565b60405180910390f35b6103e360048036038101906103de9190613867565b61169f565b005b6103ff60048036038101906103fa9190613867565b61180c565b005b61040961197a565b6040516104169190613949565b60405180910390f35b610427611985565b6040516104349190613949565b60405180910390f35b61045760048036038101906104529190613962565b611b5b565b60405161046491906137d6565b60405180910390f35b610487600480360381019061048291906139ca565b611bdd565b005b6104a3600480360381019061049e91906138e7565b611c71565b005b6104bf60048036038101906104ba9190613892565b611ce5565b005b6104db60048036038101906104d69190613867565b611d69565b005b6060600380546104ec90613a35565b80601f016020809104026020016040519081016040528092919081815260200182805461051890613a35565b80156105635780601f1061053a57610100808354040283529160200191610563565b820191905f5260205f20905b81548152906001019060200180831161054657829003601f168201915b5050505050905090565b5f80610577611ec9565b9050610584818585611ed0565b600191505092915050565b610597613127565b6007604051806101c00160405290815f8201604051806102400160405290815f82015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600182015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016001820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016001820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016001820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600282015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016002820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016002820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016002820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600382015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016003820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016003820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016003820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600482015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016004820160089054906101000a900460ff1660ff1660ff1681525050815260200160058201604051806102400160405290815f82015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600182015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016001820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016001820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016001820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600282015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016002820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016002820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016002820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600382015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016003820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016003820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016003820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600482015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016004820160089054906101000a900460ff1660ff1660ff16815250508152602001600a82015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600a820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600a820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600a820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600b82015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600b820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600b820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600b820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600c82015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600c820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600c820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600c820160189054906101000a900460ff1660ff1660ff1681525050905090565b5f600254905090565b5f80610ef2611ec9565b9050610eff858285611ee2565b610f0a858585611f74565b60019150509392505050565b5f6012905090565b610f2f610f29611ec9565b82612064565b50565b5f7373a19fafb359faf519c9707b781dfdb88407d10d73ffffffffffffffffffffffffffffffffffffffff166323b872dd3330600286610f729190613a92565b6040518463ffffffff1660e01b8152600401610f9093929190613ad3565b6020604051808303815f875af1158015610fac573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610fd09190613b1c565b905080611012576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100990613b91565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b815260040161104d929190613baf565b6020604051808303815f875af1158015611069573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061108d9190613b1c565b505050565b5f73b680f0cc810317933f234f67eb6a9e923407f05d73ffffffffffffffffffffffffffffffffffffffff166323b872dd3330856040518463ffffffff1660e01b81526004016110e493929190613ad3565b6020604051808303815f875af1158015611100573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111249190613b1c565b905080611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d90613c20565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b81526004016111a1929190613baf565b6020604051808303815f875af11580156111bd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111e19190613b1c565b505050565b61120f600760050160075f0160030160189054906101000a900467ffffffffffffffff166120e3565b50611239600760050160076005016004015f9054906101000a900467ffffffffffffffff166121fa565b50611263600760050160076005016004015f9054906101000a900467ffffffffffffffff1661220d565b506112a760075f0160076005016004015f9054906101000a900467ffffffffffffffff1660075f015f0160189054906101000a900467ffffffffffffffff16612220565b6112ec600760050160076005016004015f9054906101000a900467ffffffffffffffff1660076005015f0160189054906101000a900467ffffffffffffffff16612220565b6112f461244c565b565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6113436124a8565b61134c5f61252f565b565b6113608261135a611ec9565b83611ee2565b61136a8282612064565b5050565b61137b60075f01826120e3565b506113a360075f0160075f016004015f9054906101000a900467ffffffffffffffff166121fa565b506113cb60075f0160075f016004015f9054906101000a900467ffffffffffffffff1661220d565b5061140f60075f0160075f016004015f9054906101000a900467ffffffffffffffff1660076005016002015f9054906101000a900467ffffffffffffffff16612220565b611452600760050160075f016004015f9054906101000a900467ffffffffffffffff1660075f016002015f9054906101000a900467ffffffffffffffff16612220565b61145a61244c565b50565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461149490613a35565b80601f01602080910402602001604051908101604052809291908181526020018280546114c090613a35565b801561150b5780601f106114e25761010080835404028352916020019161150b565b820191905f5260205f20905b8154815290600101906020018083116114ee57829003601f168201915b5050505050905090565b61153e600760050160075f0160030160109054906101000a900467ffffffffffffffff166120e3565b5061156660076005016007600b0160109054906101000a900467ffffffffffffffff166121fa565b5061158e60076005016007600b0160189054906101000a900467ffffffffffffffff1661220d565b506115d160076005016007600c015f9054906101000a900467ffffffffffffffff1660076005016002015f9054906101000a900467ffffffffffffffff16612220565b61161160075f016007600c015f9054906101000a900467ffffffffffffffff1660075f016002015f9054906101000a900467ffffffffffffffff16612220565b60075f0160030160189054906101000a900467ffffffffffffffff166007600c0160109054906101000a900467ffffffffffffffff16186007600c0160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555061167b61244c565b565b5f80611687611ec9565b9050611694818585611f74565b600191505092915050565b5f60175f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd33306005866116ec9190613c6b565b6040518463ffffffff1660e01b815260040161170a93929190613ad3565b6020604051808303815f875af1158015611726573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061174a9190613b1c565b90508061178c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178390613ce5565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b81526004016117c7929190613baf565b6020604051808303815f875af11580156117e3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118079190613b1c565b505050565b5f60185f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd333061012c8661185a9190613c6b565b6040518463ffffffff1660e01b815260040161187893929190613ad3565b6020604051808303815f875af1158015611894573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118b89190613b1c565b9050806118fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f190613d4d565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b8152600401611935929190613baf565b6020604051808303815f875af1158015611951573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119759190613b1c565b505050565b6603632c8eb5af3b81565b5f6119ad60076005016007600b0160109054906101000a900467ffffffffffffffff166121fa565b506119d560076005016007600b0160189054906101000a900467ffffffffffffffff1661220d565b50611a1860076005016007600c015f9054906101000a900467ffffffffffffffff1660076005016002015f9054906101000a900467ffffffffffffffff16612220565b611a5860075f016007600c015f9054906101000a900467ffffffffffffffff1660075f016002015f9054906101000a900467ffffffffffffffff16612220565b60075f0160030160189054906101000a900467ffffffffffffffff166007600c0160109054906101000a900467ffffffffffffffff16186007600c0160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506007600c015f9054906101000a900467ffffffffffffffff166007600b0160189054906101000a900467ffffffffffffffff166007600b0160109054906101000a900467ffffffffffffffff1618186007600b0160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550611b3c61244c565b6007600b0160109054906101000a900467ffffffffffffffff16905090565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b80611c03576007600b0160189054906101000a900467ffffffffffffffff168218611c3a565b6007600c015f9054906101000a900467ffffffffffffffff166007600b0160189054906101000a900467ffffffffffffffff168318185b6007600b0160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550611c6d61244c565b5050565b611c7a816125f2565b5060046007600b015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1611611cae57611cad613d6b565b5b611cb6612685565b50611cbf61273f565b50611cc86127fc565b50611cd16128b9565b50611cda612975565b611ce261244c565b50565b611ced6124a8565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d5d575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401611d549190613921565b60405180910390fd5b611d668161252f565b50565b5f73232a27ab6941281b3f474fe5ff7cc89816fb675a73ffffffffffffffffffffffffffffffffffffffff166323b872dd3330600486611da99190613a92565b6040518463ffffffff1660e01b8152600401611dc793929190613ad3565b6020604051808303815f875af1158015611de3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e079190613b1c565b905080611e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4090613de2565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b8152600401611e84929190613baf565b6020604051808303815f875af1158015611ea0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ec49190613b1c565b505050565b5f33905090565b611edd8383836001612a90565b505050565b5f611eed8484611b5b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611f6e5781811015611f5f578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401611f5693929190613e00565b60405180910390fd5b611f6d84848484035f612a90565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611fe4575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611fdb9190613921565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612054575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161204b9190613921565b60405180910390fd5b61205f838383612c5f565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120d4575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016120cb9190613921565b60405180910390fd5b6120df825f83612c5f565b5050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166353df6e35838560010160189054906101000a900467ffffffffffffffff16865f0160189054906101000a900467ffffffffffffffff166040518463ffffffff1660e01b815260040161217193929190613e35565b6020604051808303815f875af115801561218d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121b19190613e7e565b836004015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550826004015f9054906101000a900467ffffffffffffffff16905092915050565b5f61220583836120e3565b905092915050565b5f61221883836120e3565b905092915050565b61222861244c565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166353df6e3583855f0160189054906101000a900467ffffffffffffffff16846040518463ffffffff1660e01b815260040161229d93929190613e35565b6020604051808303815f875af11580156122b9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122dd9190613e7e565b8360030160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166353df6e358383865f0160189054906101000a900467ffffffffffffffff166040518463ffffffff1660e01b815260040161237c93929190613e35565b6020604051808303815f875af1158015612398573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123bc9190613e7e565b8360030160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505f8360030160109054906101000a900467ffffffffffffffff1667ffffffffffffffff161415801561243a57505f8360030160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1614155b61244757612446613d6b565b5b505050565b612454610f16565b600a6124609190613fd8565b63423a35c761246f9190613a92565b612477610edf565b116124a6576124a530612488610f16565b600a6124949190613fd8565b60016124a09190613a92565b612e78565b5b565b6124b0611ec9565b73ffffffffffffffffffffffffffffffffffffffff166124ce61145d565b73ffffffffffffffffffffffffffffffffffffffff161461252d576124f1611ec9565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016125249190613921565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f808267ffffffffffffffff160361260d5761260c613d6b565b5b61261b600760050183612ef7565b5060076005016004015f9054906101000a900467ffffffffffffffff166007600b015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060076005016004015f9054906101000a900467ffffffffffffffff169050919050565b5f6126ab60075f016007600b015f9054906101000a900467ffffffffffffffff1661300f565b60076005016004015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060075f016004015f9054906101000a900467ffffffffffffffff166007600b0160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060076005016004015f9054906101000a900467ffffffffffffffff16905090565b5f61276760076005016007600b0160089054906101000a900467ffffffffffffffff166120e3565b60076005016004015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060076005016004015f9054906101000a900467ffffffffffffffff166007600b0160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060076005016004015f9054906101000a900467ffffffffffffffff16905090565b5f61282460076005016007600b0160109054906101000a900467ffffffffffffffff166121fa565b60076005016004015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060076005016004015f9054906101000a900467ffffffffffffffff166007600b0160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060076005016004015f9054906101000a900467ffffffffffffffff16905090565b5f6128e160076005016007600b0160189054906101000a900467ffffffffffffffff1661220d565b60076005016004015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060076005016004015f9054906101000a900467ffffffffffffffff166007600c015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060076005016004015f9054906101000a900467ffffffffffffffff16905090565b6129b660075f016007600c015f9054906101000a900467ffffffffffffffff1660076005015f0160189054906101000a900467ffffffffffffffff16612220565b6129f760076005016007600c015f9054906101000a900467ffffffffffffffff1660075f015f0160189054906101000a900467ffffffffffffffff16612220565b600760050160030160189054906101000a900467ffffffffffffffff166007600c0160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060075f0160030160189054906101000a900467ffffffffffffffff166007600c0160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550612a8e61244c565b565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612b00575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401612af79190613921565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612b70575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401612b679190613921565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015612c59578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051612c5091906137d6565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612caf578060025f828254612ca39190614022565b92505081905550612d7d565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612d38578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401612d2f93929190613e00565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612dc4578060025f8282540392505081905550612e0e565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612e6b91906137d6565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ee8575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401612edf9190613921565b60405180910390fd5b612ef35f8383612c5f565b5050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166353df6e358460020160189054906101000a900467ffffffffffffffff16848660020160109054906101000a900467ffffffffffffffff166040518463ffffffff1660e01b8152600401612f8693929190613e35565b6020604051808303815f875af1158015612fa2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fc69190613e7e565b836004015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550826004015f9054906101000a900467ffffffffffffffff16905092915050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166353df6e35838560020160089054906101000a900467ffffffffffffffff168660020160109054906101000a900467ffffffffffffffff166040518463ffffffff1660e01b815260040161309e93929190613e35565b6020604051808303815f875af11580156130ba573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130de9190613e7e565b836004015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550826004015f9054906101000a900467ffffffffffffffff16905092915050565b604051806101c0016040528061313b613207565b8152602001613148613207565b81526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f60ff1681525090565b6040518061024001604052805f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f60ff1681525090565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015613364578082015181840152602081019050613349565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6133898261332d565b6133938185613337565b93506133a3818560208601613347565b6133ac8161336f565b840191505092915050565b5f6020820190508181035f8301526133cf818461337f565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f613404826133db565b9050919050565b613414816133fa565b811461341e575f80fd5b50565b5f8135905061342f8161340b565b92915050565b5f819050919050565b61344781613435565b8114613451575f80fd5b50565b5f813590506134628161343e565b92915050565b5f806040838503121561347e5761347d6133d7565b5b5f61348b85828601613421565b925050602061349c85828601613454565b9150509250929050565b5f8115159050919050565b6134ba816134a6565b82525050565b5f6020820190506134d35f8301846134b1565b92915050565b5f67ffffffffffffffff82169050919050565b6134f5816134d9565b82525050565b5f60ff82169050919050565b613510816134fb565b82525050565b61024082015f82015161352b5f8501826134ec565b50602082015161353e60208501826134ec565b50604082015161355160408501826134ec565b50606082015161356460608501826134ec565b50608082015161357760808501826134ec565b5060a082015161358a60a08501826134ec565b5060c082015161359d60c08501826134ec565b5060e08201516135b060e08501826134ec565b506101008201516135c56101008501826134ec565b506101208201516135da6101208501826134ec565b506101408201516135ef6101408501826134ec565b506101608201516136046101608501826134ec565b506101808201516136196101808501826134ec565b506101a082015161362e6101a08501826134ec565b506101c08201516136436101c08501826134ec565b506101e08201516136586101e08501826134ec565b5061020082015161366d6102008501826134ec565b50610220820151613682610220850182613507565b50505050565b61060082015f82015161369d5f850182613516565b5060208201516136b1610240850182613516565b5060408201516136c56104808501826134ec565b5060608201516136d96104a08501826134ec565b5060808201516136ed6104c08501826134ec565b5060a08201516137016104e08501826134ec565b5060c08201516137156105008501826134ec565b5060e08201516137296105208501826134ec565b5061010082015161373e6105408501826134ec565b506101208201516137536105608501826134ec565b506101408201516137686105808501826134ec565b5061016082015161377d6105a08501826134ec565b506101808201516137926105c08501826134ec565b506101a08201516137a76105e0850182613507565b50505050565b5f610600820190506137c15f830184613688565b92915050565b6137d081613435565b82525050565b5f6020820190506137e95f8301846137c7565b92915050565b5f805f60608486031215613806576138056133d7565b5b5f61381386828701613421565b935050602061382486828701613421565b925050604061383586828701613454565b9150509250925092565b613848816134fb565b82525050565b5f6020820190506138615f83018461383f565b92915050565b5f6020828403121561387c5761387b6133d7565b5b5f61388984828501613454565b91505092915050565b5f602082840312156138a7576138a66133d7565b5b5f6138b484828501613421565b91505092915050565b6138c6816134d9565b81146138d0575f80fd5b50565b5f813590506138e1816138bd565b92915050565b5f602082840312156138fc576138fb6133d7565b5b5f613909848285016138d3565b91505092915050565b61391b816133fa565b82525050565b5f6020820190506139345f830184613912565b92915050565b613943816134d9565b82525050565b5f60208201905061395c5f83018461393a565b92915050565b5f8060408385031215613978576139776133d7565b5b5f61398585828601613421565b925050602061399685828601613421565b9150509250929050565b6139a9816134a6565b81146139b3575f80fd5b50565b5f813590506139c4816139a0565b92915050565b5f80604083850312156139e0576139df6133d7565b5b5f6139ed858286016138d3565b92505060206139fe858286016139b6565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680613a4c57607f821691505b602082108103613a5f57613a5e613a08565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613a9c82613435565b9150613aa783613435565b9250828202613ab581613435565b91508282048414831517613acc57613acb613a65565b5b5092915050565b5f606082019050613ae65f830186613912565b613af36020830185613912565b613b0060408301846137c7565b949350505050565b5f81519050613b16816139a0565b92915050565b5f60208284031215613b3157613b306133d7565b5b5f613b3e84828501613b08565b91505092915050565b7f4e65656420417070726f766564204661756e67000000000000000000000000005f82015250565b5f613b7b601383613337565b9150613b8682613b47565b602082019050919050565b5f6020820190508181035f830152613ba881613b6f565b9050919050565b5f604082019050613bc25f830185613912565b613bcf60208301846137c7565b9392505050565b7f4e65656420417070726f766564204d41544800000000000000000000000000005f82015250565b5f613c0a601283613337565b9150613c1582613bd6565b602082019050919050565b5f6020820190508181035f830152613c3781613bfe565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613c7582613435565b9150613c8083613435565b925082613c9057613c8f613c3e565b5b828204905092915050565b7f4e65656420417070726f7665642047696d6d65350000000000000000000000005f82015250565b5f613ccf601483613337565b9150613cda82613c9b565b602082019050919050565b5f6020820190508181035f830152613cfc81613cc3565b9050919050565b7f4e65656420417070726f7665642070494e444550454e44454e434500000000005f82015250565b5f613d37601b83613337565b9150613d4282613d03565b602082019050919050565b5f6020820190508181035f830152613d6481613d2b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52600160045260245ffd5b7f4e65656420417070726f766564204661000000000000000000000000000000005f82015250565b5f613dcc601083613337565b9150613dd782613d98565b602082019050919050565b5f6020820190508181035f830152613df981613dc0565b9050919050565b5f606082019050613e135f830186613912565b613e2060208301856137c7565b613e2d60408301846137c7565b949350505050565b5f606082019050613e485f83018661393a565b613e55602083018561393a565b613e62604083018461393a565b949350505050565b5f81519050613e78816138bd565b92915050565b5f60208284031215613e9357613e926133d7565b5b5f613ea084828501613e6a565b91505092915050565b5f8160011c9050919050565b5f808291508390505b6001851115613efe57808604811115613eda57613ed9613a65565b5b6001851615613ee95780820291505b8081029050613ef785613ea9565b9450613ebe565b94509492505050565b5f82613f165760019050613fd1565b81613f23575f9050613fd1565b8160018114613f395760028114613f4357613f72565b6001915050613fd1565b60ff841115613f5557613f54613a65565b5b8360020a915084821115613f6c57613f6b613a65565b5b50613fd1565b5060208310610133831016604e8410600b8410161715613fa75782820a905083811115613fa257613fa1613a65565b5b613fd1565b613fb48484846001613eb5565b92509050818404811115613fcb57613fca613a65565b5b81810290505b9392505050565b5f613fe282613435565b9150613fed836134fb565b925061401a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484613f07565b905092915050565b5f61402c82613435565b915061403783613435565b925082820190508082111561404f5761404e613a65565b5b9291505056fea2646970667358221220810cca9eaaf0a670b5787666043fafde8aee4fa34323c1aeee19775d6490212b64736f6c63430008150033