false
false
0

Contract Address Details

0xBB8e513b2897AC9C1C47eeCFCB42dbd4b77F9275

Token
PLAYZAP (PZP)
Creator
0x7d6b90–dc3ecd at 0x731edf–afd405
Balance
19.980850650000026192 EOS
Tokens
Fetching tokens...
Transactions
1,100,363 Transactions
Transfers
152,416 Transfers
Gas Used
47,672,780,033
Last Balance Update
35518201
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
Contract name:
WPZP




Optimization enabled
false
Compiler version
v0.8.18+commit.87f61d96




EVM Version
default




Verified at
2023-10-04T10:38:40.867429Z

Contract source code

Sol2uml
new
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

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

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

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

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol


// OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;




/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
     * to be set to zero before setting it to a non-zero value, such as USDT.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.
     * Revert on invalid signature.
     */
    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     *
     * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false
        // and not revert is the subcall reverts.

        (bool success, bytes memory returndata) = address(token).call(data);
        return
            success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));
    }
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/WPZP.sol



pragma solidity ^0.8.0;







contract WPZP is ERC20, ReentrancyGuard  {
    using SafeMath for uint256;
    using SafeERC20 for IERC20; // Import and use SafeERC20

    address public _ownerAddress;
    
    mapping(address => bool) public hasRole;
    address[] public addressesWithRole;

    IERC20 private token;
    
    event Minted(address to,uint256 amount);
    event RewardTransfered(address _to, uint256 _amount);
    event ContestEntered(address _from);
    event Swaped(IERC20 address_,address _from, uint256 _amount);   
    event Received(address, uint256);
    event LogChangeAdmin(address indexed oldAdmin, address indexed newAdmin, uint indexed effectiveTime);
    event LogSwapIn(IERC20 _token,address from, address to, uint256 amount, uint date);
    event LogSwapOut(IERC20 _token, address to, uint256 amount, uint date);
    event Deposit(IERC20 _token,address from, address to, uint256 amount, uint date);

    constructor() ERC20("PLAYZAP", "PZP") 
    {
        _ownerAddress = msg.sender;  
        token = IERC20(this); 
        grantRole(_ownerAddress);
        Mint(1e21);
    }

    modifier OnlyAdmin() {
        require(_ownerAddress == msg.sender, "Only Admin can access");
        _;
    }

    modifier HasRole(){
        require(hasRole[msg.sender], "Address does not have the role");
         _;
    }

    function changeAdmin(address newAdmin) external OnlyAdmin {
        require(newAdmin != address(0), "Invalid new admin address");
        emit LogChangeAdmin(_ownerAddress, newAdmin, block.timestamp);
        _ownerAddress = newAdmin;
    }

    function Mint(uint256 amount)nonReentrant public HasRole{
        _mint(address(this), amount); 
        emit Minted(address(this),amount);
    }

    function burn(uint256 amount_) external { 
        _burn(msg.sender, amount_);
    }

    function burnFrom(address from_, uint256 amount_) external {
        require(from_ != address(0), "burn from zero");
        _approve(from_, msg.sender, allowance(from_,msg.sender).sub(amount_));
        _burn(from_, amount_);
    }  

    function SwapIn(IERC20 _token,uint256 amount)nonReentrant external HasRole returns (bool) {
        require(_token.allowance(msg.sender, address(this)) >= amount, "PZPV1: Insufficient allowance");
        require(_token.balanceOf(msg.sender) > 0, "PZPV1: Not enough pzp");

        // Transfer tokens from the 'caller' address to the 'to' address
        _token.safeTransferFrom(msg.sender, address(this), amount);
        emit LogSwapIn(_token,msg.sender, address(this), amount, block.timestamp);
        return true;
    }

    function SwapOut(IERC20 _token,address to,uint256 amount)nonReentrant external HasRole{
        _token.safeTransfer(to, amount);
        emit LogSwapOut(_token, to, amount, block.timestamp);
    }
    function SwapOut(IERC20 _token,address to,uint256 amount, address commissionAddress, uint256 fee)nonReentrant external HasRole{
        _token.safeTransfer(to, amount);
        _token.safeTransfer(commissionAddress, fee);
        emit LogSwapOut(_token, to, amount, block.timestamp);
    }
    function deposit(IERC20 _token,uint256 amount)nonReentrant external returns (bool) {
        require(_token.balanceOf(msg.sender) > 0, "PZPV1: Not enough Tokens");

        // Transfer tokens from the 'caller' address to the 'to' address
        _token.safeTransferFrom(msg.sender, address(this), amount);
        emit Deposit(_token,msg.sender, address(this), amount, block.timestamp);
        return true;
    }

    receive() external payable {
        emit Received(msg.sender, msg.value);
    }

    // Give reward to player
    function DepositReward(address playerAddress, uint256 pzpAmount, uint256 amount)nonReentrant external HasRole{
        token.safeTransfer(playerAddress, pzpAmount);
        (bool success, ) = playerAddress.call{value: amount}("");
        require(success, "ETH transfer failed");
    }

    function RewardTransfer(address _to, uint256 amount) nonReentrant external HasRole 
    {
        uint erc20balance = token.balanceOf(address(this));
        require(amount <= erc20balance,"Balance in the contract is not enough");
        
        token.safeTransfer(_to,amount);

        emit RewardTransfered(_to,amount);
    } 

    function ContestEntry() nonReentrant external
    {
        emit ContestEntered(msg.sender);
    }
    
    //distribute custom tokens to players and commission tokens to playzap wallet
    function ContestReward(IERC20 token, address[] memory _addresses, uint256[] memory prizes,uint256 fees,address commission) nonReentrant external HasRole {
        uint length = _addresses.length;
        require(length == prizes.length,"Addresses and Prizes arrays should be of equal length");
        require (length != 0,"Address array can't be empty");

        for(uint256 i=0; i<length; i++)
        {
           token.safeTransfer(_addresses[i],prizes[i]);
        }
        token.safeTransfer(commission,fees);
        
    }

    function TransferSwap(IERC20 address_, address playerAddress, uint256 transferAmount) nonReentrant external HasRole{
        
        address_.safeTransfer(playerAddress,transferAmount);
        emit Swaped(address_,playerAddress,transferAmount);
    }

    function TokenAddress() public view virtual returns (IERC20) {
        return token;
    } 

    function TransferNative(address payable recipient, uint256 amount) nonReentrant external HasRole{
        require(address(this).balance >= amount, "Insufficient balance");
        recipient.transfer(amount);
    }

    
    function TransferMultiNative(address[] memory playerAddresses, uint256[] memory amounts)nonReentrant external HasRole{
        require(playerAddresses.length == amounts.length,"Addresses and Prizes arrays should be of equal length");
        require (playerAddresses.length != 0,"Address array can't be empty");
        
        uint256 totalPrizes = 0;
        for (uint256 i = 0; i < playerAddresses.length; i++) {
            totalPrizes += amounts[i];
        }

        require(address(this).balance >= totalPrizes, "Insufficient balance in contract");

        for(uint256 i=0; i<playerAddresses.length; i++)
        {
            (bool success, ) = playerAddresses[i].call{value: amounts[i]}("");
            require(success, "Transfer failed.");
        }
    }


    function grantRole(address _address) public OnlyAdmin {
        // Check if the address is not already in the hasRole array
        require(!hasRole[_address], "Address already has the role");
        hasRole[_address] = true;
        addressesWithRole.push(_address);
    }

    function revokeRole(address _address) external OnlyAdmin {
        hasRole[_address] = false;
        removeAddressFromArray(_address);
    }

    function revokeRoleFromAll() external OnlyAdmin {
        for (uint256 i = 0; i < addressesWithRole.length; i++) {
            address _address = addressesWithRole[i];
            hasRole[_address] = false;
        }
        delete addressesWithRole;
    }

    function removeAddressFromArray(address _address) internal OnlyAdmin{
        for (uint256 i = 0; i < addressesWithRole.length; i++) {
            if (addressesWithRole[i] == _address) {
                addressesWithRole[i] = addressesWithRole[addressesWithRole.length - 1];
                addressesWithRole.pop();
                break;
            }
        }
    }

}
        

Contract ABI

[{"type":"constructor","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"ContestEntry","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"ContestReward","inputs":[{"type":"address","name":"token","internalType":"contract IERC20"},{"type":"address[]","name":"_addresses","internalType":"address[]"},{"type":"uint256[]","name":"prizes","internalType":"uint256[]"},{"type":"uint256","name":"fees","internalType":"uint256"},{"type":"address","name":"commission","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"DepositReward","inputs":[{"type":"address","name":"playerAddress","internalType":"address"},{"type":"uint256","name":"pzpAmount","internalType":"uint256"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"Mint","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"RewardTransfer","inputs":[{"type":"address","name":"_to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"SwapIn","inputs":[{"type":"address","name":"_token","internalType":"contract IERC20"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"SwapOut","inputs":[{"type":"address","name":"_token","internalType":"contract IERC20"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"},{"type":"address","name":"commissionAddress","internalType":"address"},{"type":"uint256","name":"fee","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"SwapOut","inputs":[{"type":"address","name":"_token","internalType":"contract IERC20"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IERC20"}],"name":"TokenAddress","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"TransferMultiNative","inputs":[{"type":"address[]","name":"playerAddresses","internalType":"address[]"},{"type":"uint256[]","name":"amounts","internalType":"uint256[]"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"TransferNative","inputs":[{"type":"address","name":"recipient","internalType":"address payable"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"TransferSwap","inputs":[{"type":"address","name":"address_","internalType":"contract IERC20"},{"type":"address","name":"playerAddress","internalType":"address"},{"type":"uint256","name":"transferAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"_ownerAddress","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"addressesWithRole","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"burn","inputs":[{"type":"uint256","name":"amount_","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"burnFrom","inputs":[{"type":"address","name":"from_","internalType":"address"},{"type":"uint256","name":"amount_","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"changeAdmin","inputs":[{"type":"address","name":"newAdmin","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"deposit","inputs":[{"type":"address","name":"_token","internalType":"contract IERC20"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"grantRole","inputs":[{"type":"address","name":"_address","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"hasRole","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"revokeRole","inputs":[{"type":"address","name":"_address","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"revokeRoleFromAll","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":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","indexed":true},{"type":"address","name":"spender","indexed":true},{"type":"uint256","name":"value","indexed":false}],"anonymous":false},{"type":"event","name":"ContestEntered","inputs":[{"type":"address","name":"_from","indexed":false}],"anonymous":false},{"type":"event","name":"Deposit","inputs":[{"type":"address","name":"_token","indexed":false},{"type":"address","name":"from","indexed":false},{"type":"address","name":"to","indexed":false},{"type":"uint256","name":"amount","indexed":false},{"type":"uint256","name":"date","indexed":false}],"anonymous":false},{"type":"event","name":"LogChangeAdmin","inputs":[{"type":"address","name":"oldAdmin","indexed":true},{"type":"address","name":"newAdmin","indexed":true},{"type":"uint256","name":"effectiveTime","indexed":true}],"anonymous":false},{"type":"event","name":"LogSwapIn","inputs":[{"type":"address","name":"_token","indexed":false},{"type":"address","name":"from","indexed":false},{"type":"address","name":"to","indexed":false},{"type":"uint256","name":"amount","indexed":false},{"type":"uint256","name":"date","indexed":false}],"anonymous":false},{"type":"event","name":"LogSwapOut","inputs":[{"type":"address","name":"_token","indexed":false},{"type":"address","name":"to","indexed":false},{"type":"uint256","name":"amount","indexed":false},{"type":"uint256","name":"date","indexed":false}],"anonymous":false},{"type":"event","name":"Minted","inputs":[{"type":"address","name":"to","indexed":false},{"type":"uint256","name":"amount","indexed":false}],"anonymous":false},{"type":"event","name":"Received","inputs":[{"type":"address","name":"","indexed":false},{"type":"uint256","name":"","indexed":false}],"anonymous":false},{"type":"event","name":"RewardTransfered","inputs":[{"type":"address","name":"_to","indexed":false},{"type":"uint256","name":"_amount","indexed":false}],"anonymous":false},{"type":"event","name":"Swaped","inputs":[{"type":"address","name":"address_","indexed":false},{"type":"address","name":"_from","indexed":false},{"type":"uint256","name":"_amount","indexed":false}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","indexed":true},{"type":"address","name":"to","indexed":true},{"type":"uint256","name":"value","indexed":false}],"anonymous":false},{"type":"receive"}]
              

Contract Creation Code

0x60806040523480156200001157600080fd5b506040518060400160405280600781526020017f504c41595a4150000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f505a50000000000000000000000000000000000000000000000000000000000081525081600390816200008f9190620008ae565b508060049081620000a19190620008ae565b505050600160058190555033600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555030600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000161600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200018160201b60201c565b6200017b683635c9adc5dea000006200036260201b60201c565b62000cea565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000214576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200020b90620009f6565b60405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615620002a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200029b9062000a68565b60405180910390fd5b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b620003726200046160201b60201c565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1662000401576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003f89062000ada565b60405180910390fd5b620004133082620004b360201b60201c565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe30826040516200044692919062000b52565b60405180910390a16200045e6200062060201b60201c565b50565b600260055403620004a9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004a09062000bcf565b60405180910390fd5b6002600581905550565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000525576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200051c9062000c41565b60405180910390fd5b62000539600083836200062a60201b60201c565b80600260008282546200054d919062000c92565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000600919062000ccd565b60405180910390a36200061c600083836200062f60201b60201c565b5050565b6001600581905550565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006b657607f821691505b602082108103620006cc57620006cb6200066e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007367fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006f7565b620007428683620006f7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200078f6200078962000783846200075a565b62000764565b6200075a565b9050919050565b6000819050919050565b620007ab836200076e565b620007c3620007ba8262000796565b84845462000704565b825550505050565b600090565b620007da620007cb565b620007e7818484620007a0565b505050565b5b818110156200080f5762000803600082620007d0565b600181019050620007ed565b5050565b601f8211156200085e576200082881620006d2565b6200083384620006e7565b8101602085101562000843578190505b6200085b6200085285620006e7565b830182620007ec565b50505b505050565b600082821c905092915050565b6000620008836000198460080262000863565b1980831691505092915050565b60006200089e838362000870565b9150826002028217905092915050565b620008b98262000634565b67ffffffffffffffff811115620008d557620008d46200063f565b5b620008e182546200069d565b620008ee82828562000813565b600060209050601f83116001811462000926576000841562000911578287015190505b6200091d858262000890565b8655506200098d565b601f1984166200093686620006d2565b60005b82811015620009605784890151825560018201915060208501945060208101905062000939565b868310156200098057848901516200097c601f89168262000870565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f4f6e6c792041646d696e2063616e206163636573730000000000000000000000600082015250565b6000620009de60158362000995565b9150620009eb82620009a6565b602082019050919050565b6000602082019050818103600083015262000a1181620009cf565b9050919050565b7f4164647265737320616c7265616479206861732074686520726f6c6500000000600082015250565b600062000a50601c8362000995565b915062000a5d8262000a18565b602082019050919050565b6000602082019050818103600083015262000a838162000a41565b9050919050565b7f4164647265737320646f6573206e6f7420686176652074686520726f6c650000600082015250565b600062000ac2601e8362000995565b915062000acf8262000a8a565b602082019050919050565b6000602082019050818103600083015262000af58162000ab3565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b298262000afc565b9050919050565b62000b3b8162000b1c565b82525050565b62000b4c816200075a565b82525050565b600060408201905062000b69600083018562000b30565b62000b78602083018462000b41565b9392505050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600062000bb7601f8362000995565b915062000bc48262000b7f565b602082019050919050565b6000602082019050818103600083015262000bea8162000ba8565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000c29601f8362000995565b915062000c368262000bf1565b602082019050919050565b6000602082019050818103600083015262000c5c8162000c1a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000c9f826200075a565b915062000cac836200075a565b925082820190508082111562000cc75762000cc662000c63565b5b92915050565b600060208201905062000ce4600083018462000b41565b92915050565b614e458062000cfa6000396000f3fe6080604052600436106101f25760003560e01c806368c673011161010d578063a457c2d7116100a0578063c2cba3061161006f578063c2cba30614610761578063d41be25f1461078c578063dd62ed3e146107b5578063ef14dc98146107f2578063ffd7684d1461081b57610232565b8063a457c2d714610693578063a786c18b146106d0578063a9059cbb146106fb578063aaa330f71461073857610232565b806380e52e3f116100dc57806380e52e3f146105ed5780638f2839701461061657806395d89b411461063f5780639fe44b951461066a57610232565b806368c673011461052157806370a082311461054a57806379cc6790146105875780637ef09bca146105b057610232565b806335d129681161018557806347e7ef241161015457806347e7ef241461045357806353e6d0521461049057806354488b92146104cd5780635b6152fd1461050a57610232565b806335d12968146103ad57806338977686146103c457806339509351146103ed57806342966c681461042a57610232565b806318160ddd116101c157806318160ddd146102f1578063232b182a1461031c57806323b872dd14610345578063313ce5671461038257610232565b806306fdde03146102375780630788370314610262578063095ea7b31461028b57806311df96c8146102c857610232565b36610232577f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f885258743334604051610228929190613327565b60405180910390a1005b600080fd5b34801561024357600080fd5b5061024c610844565b60405161025991906133e0565b60405180910390f35b34801561026e57600080fd5b5061028960048036038101906102849190613442565b6108d6565b005b34801561029757600080fd5b506102b260048036038101906102ad919061349b565b6109b8565b6040516102bf91906134f6565b60405180910390f35b3480156102d457600080fd5b506102ef60048036038101906102ea9190613511565b6109db565b005b3480156102fd57600080fd5b50610306610b76565b6040516103139190613564565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e91906135bd565b610b80565b005b34801561035157600080fd5b5061036c60048036038101906103679190613638565b610cb6565b60405161037991906134f6565b60405180910390f35b34801561038e57600080fd5b50610397610ce5565b6040516103a491906136a7565b60405180910390f35b3480156103b957600080fd5b506103c2610cee565b005b3480156103d057600080fd5b506103eb60048036038101906103e691906136c2565b610e4e565b005b3480156103f957600080fd5b50610414600480360381019061040f919061349b565b611029565b60405161042191906134f6565b60405180910390f35b34801561043657600080fd5b50610451600480360381019061044c9190613442565b611060565b005b34801561045f57600080fd5b5061047a600480360381019061047591906136ef565b61106d565b60405161048791906134f6565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b291906136ef565b6111b1565b6040516104c491906134f6565b60405180910390f35b3480156104d957600080fd5b506104f460048036038101906104ef9190613442565b61143f565b604051610501919061372f565b60405180910390f35b34801561051657600080fd5b5061051f61147e565b005b34801561052d57600080fd5b5061054860048036038101906105439190613955565b6114c7565b005b34801561055657600080fd5b50610571600480360381019061056c91906136c2565b61177d565b60405161057e9190613564565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a9919061349b565b6117c5565b005b3480156105bc57600080fd5b506105d760048036038101906105d291906136c2565b611868565b6040516105e491906134f6565b60405180910390f35b3480156105f957600080fd5b50610614600480360381019061060f91906136c2565b611888565b005b34801561062257600080fd5b5061063d600480360381019061063891906136c2565b61197c565b005b34801561064b57600080fd5b50610654611b3c565b60405161066191906133e0565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c91906139cd565b611bce565b005b34801561069f57600080fd5b506106ba60048036038101906106b5919061349b565b611da7565b6040516106c791906134f6565b60405180910390f35b3480156106dc57600080fd5b506106e5611e1e565b6040516106f2919061372f565b60405180910390f35b34801561070757600080fd5b50610722600480360381019061071d919061349b565b611e44565b60405161072f91906134f6565b60405180910390f35b34801561074457600080fd5b5061075f600480360381019061075a9190613abe565b611e67565b005b34801561076d57600080fd5b50610776611f91565b6040516107839190613b5d565b60405180910390f35b34801561079857600080fd5b506107b360048036038101906107ae9190613b78565b611fbb565b005b3480156107c157600080fd5b506107dc60048036038101906107d79190613bcb565b6120c2565b6040516107e99190613564565b60405180910390f35b3480156107fe57600080fd5b506108196004803603810190610814919061349b565b612149565b005b34801561082757600080fd5b50610842600480360381019061083d9190613b78565b612353565b005b60606003805461085390613c3a565b80601f016020809104026020016040519081016040528092919081815260200182805461087f90613c3a565b80156108cc5780601f106108a1576101008083540402835291602001916108cc565b820191906000526020600020905b8154815290600101906020018083116108af57829003601f168201915b5050505050905090565b6108de61245c565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661096a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096190613cb7565b60405180910390fd5b61097430826124ab565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe30826040516109a5929190613327565b60405180910390a16109b5612601565b50565b6000806109c361260b565b90506109d0818585612613565b600191505092915050565b6109e361245c565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6690613cb7565b60405180910390fd5b610abc8383600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166127dc9092919063ffffffff16565b60008373ffffffffffffffffffffffffffffffffffffffff1682604051610ae290613d08565b60006040518083038185875af1925050503d8060008114610b1f576040519150601f19603f3d011682016040523d82523d6000602084013e610b24565b606091505b5050905080610b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5f90613d69565b60405180910390fd5b50610b71612601565b505050565b6000600254905090565b610b8861245c565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b90613cb7565b60405180910390fd5b610c3f84848773ffffffffffffffffffffffffffffffffffffffff166127dc9092919063ffffffff16565b610c6a82828773ffffffffffffffffffffffffffffffffffffffff166127dc9092919063ffffffff16565b7f9e53e276967e39d7946b811d2efc13351b5c454f9377a9cb0c6ccdee368be3a785858542604051610c9f9493929190613d89565b60405180910390a1610caf612601565b5050505050565b600080610cc161260b565b9050610cce858285612862565b610cd98585856128ee565b60019150509392505050565b60006012905090565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7590613e1a565b60405180910390fd5b60005b600880549050811015610e3d57600060088281548110610da457610da3613e3a565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550508080610e3590613e98565b915050610d81565b5060086000610e4c919061328f565b565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ede576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed590613e1a565b60405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6290613f2c565b60405180910390fd5b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008061103461260b565b905061105581858561104685896120c2565b6110509190613f4c565b612613565b600191505092915050565b61106a3382612b64565b50565b600061107761245c565b60008373ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016110b2919061372f565b602060405180830381865afa1580156110cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110f39190613f95565b11611133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112a9061400e565b60405180910390fd5b6111603330848673ffffffffffffffffffffffffffffffffffffffff16612d31909392919063ffffffff16565b7f5fe47ed6d4225326d3303476197d782ded5a4e9c14f479dc9ec4992af4e85d59833330854260405161119795949392919061402e565b60405180910390a1600190506111ab612601565b92915050565b60006111bb61245c565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123e90613cb7565b60405180910390fd5b818373ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e33306040518363ffffffff1660e01b8152600401611283929190614081565b602060405180830381865afa1580156112a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112c49190613f95565b1015611305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fc906140f6565b60405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401611340919061372f565b602060405180830381865afa15801561135d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113819190613f95565b116113c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b890614162565b60405180910390fd5b6113ee3330848673ffffffffffffffffffffffffffffffffffffffff16612d31909392919063ffffffff16565b7f63dadce80e26f7bbafd7878727b1ccf7ca242e57d7ae2bf458be2b122d4089b7833330854260405161142595949392919061402e565b60405180910390a160019050611439612601565b92915050565b6008818154811061144f57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61148661245c565b7fd9a5d560deba3dbf49e6ff3bcbd63368413ae5c61aa3af28115af04057756599336040516114b5919061372f565b60405180910390a16114c5612601565b565b6114cf61245c565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661155b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155290613cb7565b60405180910390fd5b805182511461159f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611596906141f4565b60405180910390fd5b60008251036115e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115da90614260565b60405180910390fd5b6000805b835181101561162b5782818151811061160357611602613e3a565b5b6020026020010151826116169190613f4c565b9150808061162390613e98565b9150506115e7565b508047101561166f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611666906142cc565b60405180910390fd5b60005b835181101561176f5760008482815181106116905761168f613e3a565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff168483815181106116c1576116c0613e3a565b5b60200260200101516040516116d590613d08565b60006040518083038185875af1925050503d8060008114611712576040519150601f19603f3d011682016040523d82523d6000602084013e611717565b606091505b505090508061175b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175290614338565b60405180910390fd5b50808061176790613e98565b915050611672565b5050611779612601565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182b906143a4565b60405180910390fd5b61185a82336118558461184787336120c2565b612dba90919063ffffffff16565b612613565b6118648282612b64565b5050565b60076020528060005260406000206000915054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190f90613e1a565b60405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061197981612dd0565b50565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0390613e1a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7290614410565b60405180910390fd5b428173ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f89759b3bbabad65a294c0e20b60c9396a23e9e8a3d47c1179ec5a4cbac0e589160405160405180910390a480600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060048054611b4b90613c3a565b80601f0160208091040260200160405190810160405280929190818152602001828054611b7790613c3a565b8015611bc45780601f10611b9957610100808354040283529160200191611bc4565b820191906000526020600020905b815481529060010190602001808311611ba757829003601f168201915b5050505050905090565b611bd661245c565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5990613cb7565b60405180910390fd5b60008451905083518114611cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca2906141f4565b60405180910390fd5b60008103611cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce590614260565b60405180910390fd5b60005b81811015611d6b57611d58868281518110611d0f57611d0e613e3a565b5b6020026020010151868381518110611d2a57611d29613e3a565b5b60200260200101518973ffffffffffffffffffffffffffffffffffffffff166127dc9092919063ffffffff16565b8080611d6390613e98565b915050611cf1565b50611d9782848873ffffffffffffffffffffffffffffffffffffffff166127dc9092919063ffffffff16565b50611da0612601565b5050505050565b600080611db261260b565b90506000611dc082866120c2565b905083811015611e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfc906144a2565b60405180910390fd5b611e128286868403612613565b60019250505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080611e4f61260b565b9050611e5c8185856128ee565b600191505092915050565b611e6f61245c565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef290613cb7565b60405180910390fd5b80471015611f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f359061450e565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611f84573d6000803e3d6000fd5b50611f8d612601565b5050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611fc361245c565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661204f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204690613cb7565b60405180910390fd5b61207a82828573ffffffffffffffffffffffffffffffffffffffff166127dc9092919063ffffffff16565b7ff0aedcee50ce0ca8bb3067924d5ed38a062325eaf2a37cd325e162cee44f37378383836040516120ad9392919061452e565b60405180910390a16120bd612601565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61215161245c565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166121dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d490613cb7565b60405180910390fd5b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161223a919061372f565b602060405180830381865afa158015612257573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061227b9190613f95565b9050808211156122c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b7906145d7565b60405180910390fd5b61230d8383600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166127dc9092919063ffffffff16565b7fc4c8da1b182d15faaef80290dd204a2535c01ba690a4b4d9fe26bccebf06bb30838360405161233e929190613327565b60405180910390a15061234f612601565b5050565b61235b61245c565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166123e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123de90613cb7565b60405180910390fd5b61241282828573ffffffffffffffffffffffffffffffffffffffff166127dc9092919063ffffffff16565b7f9e53e276967e39d7946b811d2efc13351b5c454f9377a9cb0c6ccdee368be3a7838383426040516124479493929190613d89565b60405180910390a1612457612601565b505050565b6002600554036124a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249890614643565b60405180910390fd5b6002600581905550565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361251a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612511906146af565b60405180910390fd5b61252660008383612ff0565b80600260008282546125389190613f4c565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516125e99190613564565b60405180910390a36125fd60008383612ff5565b5050565b6001600581905550565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267990614741565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e8906147d3565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516127cf9190613564565b60405180910390a3505050565b61285d8363a9059cbb60e01b84846040516024016127fb929190613327565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612ffa565b505050565b600061286e84846120c2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146128e857818110156128da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d19061483f565b60405180910390fd5b6128e78484848403612613565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361295d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612954906148d1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036129cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c390614963565b60405180910390fd5b6129d7838383612ff0565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a54906149f5565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612b4b9190613564565b60405180910390a3612b5e848484612ff5565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bca90614a87565b60405180910390fd5b612bdf82600083612ff0565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5c90614b19565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612d189190613564565b60405180910390a3612d2c83600084612ff5565b505050565b612db4846323b872dd60e01b858585604051602401612d5293929190614b39565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612ffa565b50505050565b60008183612dc89190614b70565b905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5790613e1a565b60405180910390fd5b60005b600880549050811015612fec578173ffffffffffffffffffffffffffffffffffffffff1660088281548110612e9b57612e9a613e3a565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612fd95760086001600880549050612ef59190614b70565b81548110612f0657612f05613e3a565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660088281548110612f4557612f44613e3a565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506008805480612f9f57612f9e614ba4565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055612fec565b8080612fe490613e98565b915050612e63565b5050565b505050565b505050565b600061305c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166130c29092919063ffffffff16565b905060008151148061307e57508080602001905181019061307d9190614bff565b5b6130bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130b490614c9e565b60405180910390fd5b505050565b60606130d184846000856130da565b90509392505050565b60608247101561311f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311690614d30565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516131489190614d8c565b60006040518083038185875af1925050503d8060008114613185576040519150601f19603f3d011682016040523d82523d6000602084013e61318a565b606091505b509150915061319b878383876131a7565b92505050949350505050565b60608315613209576000835103613201576131c18561321c565b613200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f790614def565b60405180910390fd5b5b829050613214565b613213838361323f565b5b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000825111156132525781518083602001fd5b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328691906133e0565b60405180910390fd5b50805460008255906000526020600020908101906132ad91906132b0565b50565b5b808211156132c95760008160009055506001016132b1565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006132f8826132cd565b9050919050565b613308816132ed565b82525050565b6000819050919050565b6133218161330e565b82525050565b600060408201905061333c60008301856132ff565b6133496020830184613318565b9392505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561338a57808201518184015260208101905061336f565b60008484015250505050565b6000601f19601f8301169050919050565b60006133b282613350565b6133bc818561335b565b93506133cc81856020860161336c565b6133d581613396565b840191505092915050565b600060208201905081810360008301526133fa81846133a7565b905092915050565b6000604051905090565b600080fd5b600080fd5b61341f8161330e565b811461342a57600080fd5b50565b60008135905061343c81613416565b92915050565b6000602082840312156134585761345761340c565b5b60006134668482850161342d565b91505092915050565b613478816132ed565b811461348357600080fd5b50565b6000813590506134958161346f565b92915050565b600080604083850312156134b2576134b161340c565b5b60006134c085828601613486565b92505060206134d18582860161342d565b9150509250929050565b60008115159050919050565b6134f0816134db565b82525050565b600060208201905061350b60008301846134e7565b92915050565b60008060006060848603121561352a5761352961340c565b5b600061353886828701613486565b93505060206135498682870161342d565b925050604061355a8682870161342d565b9150509250925092565b60006020820190506135796000830184613318565b92915050565b600061358a826132ed565b9050919050565b61359a8161357f565b81146135a557600080fd5b50565b6000813590506135b781613591565b92915050565b600080600080600060a086880312156135d9576135d861340c565b5b60006135e7888289016135a8565b95505060206135f888828901613486565b94505060406136098882890161342d565b935050606061361a88828901613486565b925050608061362b8882890161342d565b9150509295509295909350565b6000806000606084860312156136515761365061340c565b5b600061365f86828701613486565b935050602061367086828701613486565b92505060406136818682870161342d565b9150509250925092565b600060ff82169050919050565b6136a18161368b565b82525050565b60006020820190506136bc6000830184613698565b92915050565b6000602082840312156136d8576136d761340c565b5b60006136e684828501613486565b91505092915050565b600080604083850312156137065761370561340c565b5b6000613714858286016135a8565b92505060206137258582860161342d565b9150509250929050565b600060208201905061374460008301846132ff565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61378782613396565b810181811067ffffffffffffffff821117156137a6576137a561374f565b5b80604052505050565b60006137b9613402565b90506137c5828261377e565b919050565b600067ffffffffffffffff8211156137e5576137e461374f565b5b602082029050602081019050919050565b600080fd5b600061380e613809846137ca565b6137af565b90508083825260208201905060208402830185811115613831576138306137f6565b5b835b8181101561385a57806138468882613486565b845260208401935050602081019050613833565b5050509392505050565b600082601f8301126138795761387861374a565b5b81356138898482602086016137fb565b91505092915050565b600067ffffffffffffffff8211156138ad576138ac61374f565b5b602082029050602081019050919050565b60006138d16138cc84613892565b6137af565b905080838252602082019050602084028301858111156138f4576138f36137f6565b5b835b8181101561391d5780613909888261342d565b8452602084019350506020810190506138f6565b5050509392505050565b600082601f83011261393c5761393b61374a565b5b813561394c8482602086016138be565b91505092915050565b6000806040838503121561396c5761396b61340c565b5b600083013567ffffffffffffffff81111561398a57613989613411565b5b61399685828601613864565b925050602083013567ffffffffffffffff8111156139b7576139b6613411565b5b6139c385828601613927565b9150509250929050565b600080600080600060a086880312156139e9576139e861340c565b5b60006139f7888289016135a8565b955050602086013567ffffffffffffffff811115613a1857613a17613411565b5b613a2488828901613864565b945050604086013567ffffffffffffffff811115613a4557613a44613411565b5b613a5188828901613927565b9350506060613a628882890161342d565b9250506080613a7388828901613486565b9150509295509295909350565b6000613a8b826132cd565b9050919050565b613a9b81613a80565b8114613aa657600080fd5b50565b600081359050613ab881613a92565b92915050565b60008060408385031215613ad557613ad461340c565b5b6000613ae385828601613aa9565b9250506020613af48582860161342d565b9150509250929050565b6000819050919050565b6000613b23613b1e613b19846132cd565b613afe565b6132cd565b9050919050565b6000613b3582613b08565b9050919050565b6000613b4782613b2a565b9050919050565b613b5781613b3c565b82525050565b6000602082019050613b726000830184613b4e565b92915050565b600080600060608486031215613b9157613b9061340c565b5b6000613b9f868287016135a8565b9350506020613bb086828701613486565b9250506040613bc18682870161342d565b9150509250925092565b60008060408385031215613be257613be161340c565b5b6000613bf085828601613486565b9250506020613c0185828601613486565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c5257607f821691505b602082108103613c6557613c64613c0b565b5b50919050565b7f4164647265737320646f6573206e6f7420686176652074686520726f6c650000600082015250565b6000613ca1601e8361335b565b9150613cac82613c6b565b602082019050919050565b60006020820190508181036000830152613cd081613c94565b9050919050565b600081905092915050565b50565b6000613cf2600083613cd7565b9150613cfd82613ce2565b600082019050919050565b6000613d1382613ce5565b9150819050919050565b7f455448207472616e73666572206661696c656400000000000000000000000000600082015250565b6000613d5360138361335b565b9150613d5e82613d1d565b602082019050919050565b60006020820190508181036000830152613d8281613d46565b9050919050565b6000608082019050613d9e6000830187613b4e565b613dab60208301866132ff565b613db86040830185613318565b613dc56060830184613318565b95945050505050565b7f4f6e6c792041646d696e2063616e206163636573730000000000000000000000600082015250565b6000613e0460158361335b565b9150613e0f82613dce565b602082019050919050565b60006020820190508181036000830152613e3381613df7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ea38261330e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ed557613ed4613e69565b5b600182019050919050565b7f4164647265737320616c7265616479206861732074686520726f6c6500000000600082015250565b6000613f16601c8361335b565b9150613f2182613ee0565b602082019050919050565b60006020820190508181036000830152613f4581613f09565b9050919050565b6000613f578261330e565b9150613f628361330e565b9250828201905080821115613f7a57613f79613e69565b5b92915050565b600081519050613f8f81613416565b92915050565b600060208284031215613fab57613faa61340c565b5b6000613fb984828501613f80565b91505092915050565b7f505a5056313a204e6f7420656e6f75676820546f6b656e730000000000000000600082015250565b6000613ff860188361335b565b915061400382613fc2565b602082019050919050565b6000602082019050818103600083015261402781613feb565b9050919050565b600060a0820190506140436000830188613b4e565b61405060208301876132ff565b61405d60408301866132ff565b61406a6060830185613318565b6140776080830184613318565b9695505050505050565b600060408201905061409660008301856132ff565b6140a360208301846132ff565b9392505050565b7f505a5056313a20496e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006140e0601d8361335b565b91506140eb826140aa565b602082019050919050565b6000602082019050818103600083015261410f816140d3565b9050919050565b7f505a5056313a204e6f7420656e6f75676820707a700000000000000000000000600082015250565b600061414c60158361335b565b915061415782614116565b602082019050919050565b6000602082019050818103600083015261417b8161413f565b9050919050565b7f41646472657373657320616e64205072697a6573206172726179732073686f7560008201527f6c64206265206f6620657175616c206c656e6774680000000000000000000000602082015250565b60006141de60358361335b565b91506141e982614182565b604082019050919050565b6000602082019050818103600083015261420d816141d1565b9050919050565b7f416464726573732061727261792063616e277420626520656d70747900000000600082015250565b600061424a601c8361335b565b915061425582614214565b602082019050919050565b600060208201905081810360008301526142798161423d565b9050919050565b7f496e73756666696369656e742062616c616e636520696e20636f6e7472616374600082015250565b60006142b660208361335b565b91506142c182614280565b602082019050919050565b600060208201905081810360008301526142e5816142a9565b9050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061432260108361335b565b915061432d826142ec565b602082019050919050565b6000602082019050818103600083015261435181614315565b9050919050565b7f6275726e2066726f6d207a65726f000000000000000000000000000000000000600082015250565b600061438e600e8361335b565b915061439982614358565b602082019050919050565b600060208201905081810360008301526143bd81614381565b9050919050565b7f496e76616c6964206e65772061646d696e206164647265737300000000000000600082015250565b60006143fa60198361335b565b9150614405826143c4565b602082019050919050565b60006020820190508181036000830152614429816143ed565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061448c60258361335b565b915061449782614430565b604082019050919050565b600060208201905081810360008301526144bb8161447f565b9050919050565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b60006144f860148361335b565b9150614503826144c2565b602082019050919050565b60006020820190508181036000830152614527816144eb565b9050919050565b60006060820190506145436000830186613b4e565b61455060208301856132ff565b61455d6040830184613318565b949350505050565b7f42616c616e636520696e2074686520636f6e7472616374206973206e6f74206560008201527f6e6f756768000000000000000000000000000000000000000000000000000000602082015250565b60006145c160258361335b565b91506145cc82614565565b604082019050919050565b600060208201905081810360008301526145f0816145b4565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061462d601f8361335b565b9150614638826145f7565b602082019050919050565b6000602082019050818103600083015261465c81614620565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000614699601f8361335b565b91506146a482614663565b602082019050919050565b600060208201905081810360008301526146c88161468c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061472b60248361335b565b9150614736826146cf565b604082019050919050565b6000602082019050818103600083015261475a8161471e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006147bd60228361335b565b91506147c882614761565b604082019050919050565b600060208201905081810360008301526147ec816147b0565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614829601d8361335b565b9150614834826147f3565b602082019050919050565b600060208201905081810360008301526148588161481c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006148bb60258361335b565b91506148c68261485f565b604082019050919050565b600060208201905081810360008301526148ea816148ae565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061494d60238361335b565b9150614958826148f1565b604082019050919050565b6000602082019050818103600083015261497c81614940565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006149df60268361335b565b91506149ea82614983565b604082019050919050565b60006020820190508181036000830152614a0e816149d2565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a7160218361335b565b9150614a7c82614a15565b604082019050919050565b60006020820190508181036000830152614aa081614a64565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b0360228361335b565b9150614b0e82614aa7565b604082019050919050565b60006020820190508181036000830152614b3281614af6565b9050919050565b6000606082019050614b4e60008301866132ff565b614b5b60208301856132ff565b614b686040830184613318565b949350505050565b6000614b7b8261330e565b9150614b868361330e565b9250828203905081811115614b9e57614b9d613e69565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b614bdc816134db565b8114614be757600080fd5b50565b600081519050614bf981614bd3565b92915050565b600060208284031215614c1557614c1461340c565b5b6000614c2384828501614bea565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6000614c88602a8361335b565b9150614c9382614c2c565b604082019050919050565b60006020820190508181036000830152614cb781614c7b565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b6000614d1a60268361335b565b9150614d2582614cbe565b604082019050919050565b60006020820190508181036000830152614d4981614d0d565b9050919050565b600081519050919050565b6000614d6682614d50565b614d708185613cd7565b9350614d8081856020860161336c565b80840191505092915050565b6000614d988284614d5b565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000614dd9601d8361335b565b9150614de482614da3565b602082019050919050565b60006020820190508181036000830152614e0881614dcc565b905091905056fea264697066735822122098c1f3e15c1e850ac2aaa411b0c90f039af3e039eb9c0c9d6dc782214d1013e664736f6c63430008120033

Deployed ByteCode

0x6080604052600436106101f25760003560e01c806368c673011161010d578063a457c2d7116100a0578063c2cba3061161006f578063c2cba30614610761578063d41be25f1461078c578063dd62ed3e146107b5578063ef14dc98146107f2578063ffd7684d1461081b57610232565b8063a457c2d714610693578063a786c18b146106d0578063a9059cbb146106fb578063aaa330f71461073857610232565b806380e52e3f116100dc57806380e52e3f146105ed5780638f2839701461061657806395d89b411461063f5780639fe44b951461066a57610232565b806368c673011461052157806370a082311461054a57806379cc6790146105875780637ef09bca146105b057610232565b806335d129681161018557806347e7ef241161015457806347e7ef241461045357806353e6d0521461049057806354488b92146104cd5780635b6152fd1461050a57610232565b806335d12968146103ad57806338977686146103c457806339509351146103ed57806342966c681461042a57610232565b806318160ddd116101c157806318160ddd146102f1578063232b182a1461031c57806323b872dd14610345578063313ce5671461038257610232565b806306fdde03146102375780630788370314610262578063095ea7b31461028b57806311df96c8146102c857610232565b36610232577f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f885258743334604051610228929190613327565b60405180910390a1005b600080fd5b34801561024357600080fd5b5061024c610844565b60405161025991906133e0565b60405180910390f35b34801561026e57600080fd5b5061028960048036038101906102849190613442565b6108d6565b005b34801561029757600080fd5b506102b260048036038101906102ad919061349b565b6109b8565b6040516102bf91906134f6565b60405180910390f35b3480156102d457600080fd5b506102ef60048036038101906102ea9190613511565b6109db565b005b3480156102fd57600080fd5b50610306610b76565b6040516103139190613564565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e91906135bd565b610b80565b005b34801561035157600080fd5b5061036c60048036038101906103679190613638565b610cb6565b60405161037991906134f6565b60405180910390f35b34801561038e57600080fd5b50610397610ce5565b6040516103a491906136a7565b60405180910390f35b3480156103b957600080fd5b506103c2610cee565b005b3480156103d057600080fd5b506103eb60048036038101906103e691906136c2565b610e4e565b005b3480156103f957600080fd5b50610414600480360381019061040f919061349b565b611029565b60405161042191906134f6565b60405180910390f35b34801561043657600080fd5b50610451600480360381019061044c9190613442565b611060565b005b34801561045f57600080fd5b5061047a600480360381019061047591906136ef565b61106d565b60405161048791906134f6565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b291906136ef565b6111b1565b6040516104c491906134f6565b60405180910390f35b3480156104d957600080fd5b506104f460048036038101906104ef9190613442565b61143f565b604051610501919061372f565b60405180910390f35b34801561051657600080fd5b5061051f61147e565b005b34801561052d57600080fd5b5061054860048036038101906105439190613955565b6114c7565b005b34801561055657600080fd5b50610571600480360381019061056c91906136c2565b61177d565b60405161057e9190613564565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a9919061349b565b6117c5565b005b3480156105bc57600080fd5b506105d760048036038101906105d291906136c2565b611868565b6040516105e491906134f6565b60405180910390f35b3480156105f957600080fd5b50610614600480360381019061060f91906136c2565b611888565b005b34801561062257600080fd5b5061063d600480360381019061063891906136c2565b61197c565b005b34801561064b57600080fd5b50610654611b3c565b60405161066191906133e0565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c91906139cd565b611bce565b005b34801561069f57600080fd5b506106ba60048036038101906106b5919061349b565b611da7565b6040516106c791906134f6565b60405180910390f35b3480156106dc57600080fd5b506106e5611e1e565b6040516106f2919061372f565b60405180910390f35b34801561070757600080fd5b50610722600480360381019061071d919061349b565b611e44565b60405161072f91906134f6565b60405180910390f35b34801561074457600080fd5b5061075f600480360381019061075a9190613abe565b611e67565b005b34801561076d57600080fd5b50610776611f91565b6040516107839190613b5d565b60405180910390f35b34801561079857600080fd5b506107b360048036038101906107ae9190613b78565b611fbb565b005b3480156107c157600080fd5b506107dc60048036038101906107d79190613bcb565b6120c2565b6040516107e99190613564565b60405180910390f35b3480156107fe57600080fd5b506108196004803603810190610814919061349b565b612149565b005b34801561082757600080fd5b50610842600480360381019061083d9190613b78565b612353565b005b60606003805461085390613c3a565b80601f016020809104026020016040519081016040528092919081815260200182805461087f90613c3a565b80156108cc5780601f106108a1576101008083540402835291602001916108cc565b820191906000526020600020905b8154815290600101906020018083116108af57829003601f168201915b5050505050905090565b6108de61245c565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661096a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096190613cb7565b60405180910390fd5b61097430826124ab565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe30826040516109a5929190613327565b60405180910390a16109b5612601565b50565b6000806109c361260b565b90506109d0818585612613565b600191505092915050565b6109e361245c565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6690613cb7565b60405180910390fd5b610abc8383600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166127dc9092919063ffffffff16565b60008373ffffffffffffffffffffffffffffffffffffffff1682604051610ae290613d08565b60006040518083038185875af1925050503d8060008114610b1f576040519150601f19603f3d011682016040523d82523d6000602084013e610b24565b606091505b5050905080610b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5f90613d69565b60405180910390fd5b50610b71612601565b505050565b6000600254905090565b610b8861245c565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b90613cb7565b60405180910390fd5b610c3f84848773ffffffffffffffffffffffffffffffffffffffff166127dc9092919063ffffffff16565b610c6a82828773ffffffffffffffffffffffffffffffffffffffff166127dc9092919063ffffffff16565b7f9e53e276967e39d7946b811d2efc13351b5c454f9377a9cb0c6ccdee368be3a785858542604051610c9f9493929190613d89565b60405180910390a1610caf612601565b5050505050565b600080610cc161260b565b9050610cce858285612862565b610cd98585856128ee565b60019150509392505050565b60006012905090565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7590613e1a565b60405180910390fd5b60005b600880549050811015610e3d57600060088281548110610da457610da3613e3a565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550508080610e3590613e98565b915050610d81565b5060086000610e4c919061328f565b565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ede576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed590613e1a565b60405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6290613f2c565b60405180910390fd5b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008061103461260b565b905061105581858561104685896120c2565b6110509190613f4c565b612613565b600191505092915050565b61106a3382612b64565b50565b600061107761245c565b60008373ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016110b2919061372f565b602060405180830381865afa1580156110cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110f39190613f95565b11611133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112a9061400e565b60405180910390fd5b6111603330848673ffffffffffffffffffffffffffffffffffffffff16612d31909392919063ffffffff16565b7f5fe47ed6d4225326d3303476197d782ded5a4e9c14f479dc9ec4992af4e85d59833330854260405161119795949392919061402e565b60405180910390a1600190506111ab612601565b92915050565b60006111bb61245c565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123e90613cb7565b60405180910390fd5b818373ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e33306040518363ffffffff1660e01b8152600401611283929190614081565b602060405180830381865afa1580156112a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112c49190613f95565b1015611305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fc906140f6565b60405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401611340919061372f565b602060405180830381865afa15801561135d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113819190613f95565b116113c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b890614162565b60405180910390fd5b6113ee3330848673ffffffffffffffffffffffffffffffffffffffff16612d31909392919063ffffffff16565b7f63dadce80e26f7bbafd7878727b1ccf7ca242e57d7ae2bf458be2b122d4089b7833330854260405161142595949392919061402e565b60405180910390a160019050611439612601565b92915050565b6008818154811061144f57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61148661245c565b7fd9a5d560deba3dbf49e6ff3bcbd63368413ae5c61aa3af28115af04057756599336040516114b5919061372f565b60405180910390a16114c5612601565b565b6114cf61245c565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661155b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155290613cb7565b60405180910390fd5b805182511461159f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611596906141f4565b60405180910390fd5b60008251036115e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115da90614260565b60405180910390fd5b6000805b835181101561162b5782818151811061160357611602613e3a565b5b6020026020010151826116169190613f4c565b9150808061162390613e98565b9150506115e7565b508047101561166f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611666906142cc565b60405180910390fd5b60005b835181101561176f5760008482815181106116905761168f613e3a565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff168483815181106116c1576116c0613e3a565b5b60200260200101516040516116d590613d08565b60006040518083038185875af1925050503d8060008114611712576040519150601f19603f3d011682016040523d82523d6000602084013e611717565b606091505b505090508061175b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175290614338565b60405180910390fd5b50808061176790613e98565b915050611672565b5050611779612601565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182b906143a4565b60405180910390fd5b61185a82336118558461184787336120c2565b612dba90919063ffffffff16565b612613565b6118648282612b64565b5050565b60076020528060005260406000206000915054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190f90613e1a565b60405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061197981612dd0565b50565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0390613e1a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7290614410565b60405180910390fd5b428173ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f89759b3bbabad65a294c0e20b60c9396a23e9e8a3d47c1179ec5a4cbac0e589160405160405180910390a480600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060048054611b4b90613c3a565b80601f0160208091040260200160405190810160405280929190818152602001828054611b7790613c3a565b8015611bc45780601f10611b9957610100808354040283529160200191611bc4565b820191906000526020600020905b815481529060010190602001808311611ba757829003601f168201915b5050505050905090565b611bd661245c565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5990613cb7565b60405180910390fd5b60008451905083518114611cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca2906141f4565b60405180910390fd5b60008103611cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce590614260565b60405180910390fd5b60005b81811015611d6b57611d58868281518110611d0f57611d0e613e3a565b5b6020026020010151868381518110611d2a57611d29613e3a565b5b60200260200101518973ffffffffffffffffffffffffffffffffffffffff166127dc9092919063ffffffff16565b8080611d6390613e98565b915050611cf1565b50611d9782848873ffffffffffffffffffffffffffffffffffffffff166127dc9092919063ffffffff16565b50611da0612601565b5050505050565b600080611db261260b565b90506000611dc082866120c2565b905083811015611e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfc906144a2565b60405180910390fd5b611e128286868403612613565b60019250505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080611e4f61260b565b9050611e5c8185856128ee565b600191505092915050565b611e6f61245c565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef290613cb7565b60405180910390fd5b80471015611f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f359061450e565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611f84573d6000803e3d6000fd5b50611f8d612601565b5050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611fc361245c565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661204f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204690613cb7565b60405180910390fd5b61207a82828573ffffffffffffffffffffffffffffffffffffffff166127dc9092919063ffffffff16565b7ff0aedcee50ce0ca8bb3067924d5ed38a062325eaf2a37cd325e162cee44f37378383836040516120ad9392919061452e565b60405180910390a16120bd612601565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61215161245c565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166121dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d490613cb7565b60405180910390fd5b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161223a919061372f565b602060405180830381865afa158015612257573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061227b9190613f95565b9050808211156122c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b7906145d7565b60405180910390fd5b61230d8383600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166127dc9092919063ffffffff16565b7fc4c8da1b182d15faaef80290dd204a2535c01ba690a4b4d9fe26bccebf06bb30838360405161233e929190613327565b60405180910390a15061234f612601565b5050565b61235b61245c565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166123e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123de90613cb7565b60405180910390fd5b61241282828573ffffffffffffffffffffffffffffffffffffffff166127dc9092919063ffffffff16565b7f9e53e276967e39d7946b811d2efc13351b5c454f9377a9cb0c6ccdee368be3a7838383426040516124479493929190613d89565b60405180910390a1612457612601565b505050565b6002600554036124a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249890614643565b60405180910390fd5b6002600581905550565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361251a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612511906146af565b60405180910390fd5b61252660008383612ff0565b80600260008282546125389190613f4c565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516125e99190613564565b60405180910390a36125fd60008383612ff5565b5050565b6001600581905550565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267990614741565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e8906147d3565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516127cf9190613564565b60405180910390a3505050565b61285d8363a9059cbb60e01b84846040516024016127fb929190613327565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612ffa565b505050565b600061286e84846120c2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146128e857818110156128da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d19061483f565b60405180910390fd5b6128e78484848403612613565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361295d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612954906148d1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036129cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c390614963565b60405180910390fd5b6129d7838383612ff0565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a54906149f5565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612b4b9190613564565b60405180910390a3612b5e848484612ff5565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bca90614a87565b60405180910390fd5b612bdf82600083612ff0565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5c90614b19565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612d189190613564565b60405180910390a3612d2c83600084612ff5565b505050565b612db4846323b872dd60e01b858585604051602401612d5293929190614b39565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612ffa565b50505050565b60008183612dc89190614b70565b905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5790613e1a565b60405180910390fd5b60005b600880549050811015612fec578173ffffffffffffffffffffffffffffffffffffffff1660088281548110612e9b57612e9a613e3a565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612fd95760086001600880549050612ef59190614b70565b81548110612f0657612f05613e3a565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660088281548110612f4557612f44613e3a565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506008805480612f9f57612f9e614ba4565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055612fec565b8080612fe490613e98565b915050612e63565b5050565b505050565b505050565b600061305c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166130c29092919063ffffffff16565b905060008151148061307e57508080602001905181019061307d9190614bff565b5b6130bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130b490614c9e565b60405180910390fd5b505050565b60606130d184846000856130da565b90509392505050565b60608247101561311f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311690614d30565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516131489190614d8c565b60006040518083038185875af1925050503d8060008114613185576040519150601f19603f3d011682016040523d82523d6000602084013e61318a565b606091505b509150915061319b878383876131a7565b92505050949350505050565b60608315613209576000835103613201576131c18561321c565b613200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f790614def565b60405180910390fd5b5b829050613214565b613213838361323f565b5b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000825111156132525781518083602001fd5b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328691906133e0565b60405180910390fd5b50805460008255906000526020600020908101906132ad91906132b0565b50565b5b808211156132c95760008160009055506001016132b1565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006132f8826132cd565b9050919050565b613308816132ed565b82525050565b6000819050919050565b6133218161330e565b82525050565b600060408201905061333c60008301856132ff565b6133496020830184613318565b9392505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561338a57808201518184015260208101905061336f565b60008484015250505050565b6000601f19601f8301169050919050565b60006133b282613350565b6133bc818561335b565b93506133cc81856020860161336c565b6133d581613396565b840191505092915050565b600060208201905081810360008301526133fa81846133a7565b905092915050565b6000604051905090565b600080fd5b600080fd5b61341f8161330e565b811461342a57600080fd5b50565b60008135905061343c81613416565b92915050565b6000602082840312156134585761345761340c565b5b60006134668482850161342d565b91505092915050565b613478816132ed565b811461348357600080fd5b50565b6000813590506134958161346f565b92915050565b600080604083850312156134b2576134b161340c565b5b60006134c085828601613486565b92505060206134d18582860161342d565b9150509250929050565b60008115159050919050565b6134f0816134db565b82525050565b600060208201905061350b60008301846134e7565b92915050565b60008060006060848603121561352a5761352961340c565b5b600061353886828701613486565b93505060206135498682870161342d565b925050604061355a8682870161342d565b9150509250925092565b60006020820190506135796000830184613318565b92915050565b600061358a826132ed565b9050919050565b61359a8161357f565b81146135a557600080fd5b50565b6000813590506135b781613591565b92915050565b600080600080600060a086880312156135d9576135d861340c565b5b60006135e7888289016135a8565b95505060206135f888828901613486565b94505060406136098882890161342d565b935050606061361a88828901613486565b925050608061362b8882890161342d565b9150509295509295909350565b6000806000606084860312156136515761365061340c565b5b600061365f86828701613486565b935050602061367086828701613486565b92505060406136818682870161342d565b9150509250925092565b600060ff82169050919050565b6136a18161368b565b82525050565b60006020820190506136bc6000830184613698565b92915050565b6000602082840312156136d8576136d761340c565b5b60006136e684828501613486565b91505092915050565b600080604083850312156137065761370561340c565b5b6000613714858286016135a8565b92505060206137258582860161342d565b9150509250929050565b600060208201905061374460008301846132ff565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61378782613396565b810181811067ffffffffffffffff821117156137a6576137a561374f565b5b80604052505050565b60006137b9613402565b90506137c5828261377e565b919050565b600067ffffffffffffffff8211156137e5576137e461374f565b5b602082029050602081019050919050565b600080fd5b600061380e613809846137ca565b6137af565b90508083825260208201905060208402830185811115613831576138306137f6565b5b835b8181101561385a57806138468882613486565b845260208401935050602081019050613833565b5050509392505050565b600082601f8301126138795761387861374a565b5b81356138898482602086016137fb565b91505092915050565b600067ffffffffffffffff8211156138ad576138ac61374f565b5b602082029050602081019050919050565b60006138d16138cc84613892565b6137af565b905080838252602082019050602084028301858111156138f4576138f36137f6565b5b835b8181101561391d5780613909888261342d565b8452602084019350506020810190506138f6565b5050509392505050565b600082601f83011261393c5761393b61374a565b5b813561394c8482602086016138be565b91505092915050565b6000806040838503121561396c5761396b61340c565b5b600083013567ffffffffffffffff81111561398a57613989613411565b5b61399685828601613864565b925050602083013567ffffffffffffffff8111156139b7576139b6613411565b5b6139c385828601613927565b9150509250929050565b600080600080600060a086880312156139e9576139e861340c565b5b60006139f7888289016135a8565b955050602086013567ffffffffffffffff811115613a1857613a17613411565b5b613a2488828901613864565b945050604086013567ffffffffffffffff811115613a4557613a44613411565b5b613a5188828901613927565b9350506060613a628882890161342d565b9250506080613a7388828901613486565b9150509295509295909350565b6000613a8b826132cd565b9050919050565b613a9b81613a80565b8114613aa657600080fd5b50565b600081359050613ab881613a92565b92915050565b60008060408385031215613ad557613ad461340c565b5b6000613ae385828601613aa9565b9250506020613af48582860161342d565b9150509250929050565b6000819050919050565b6000613b23613b1e613b19846132cd565b613afe565b6132cd565b9050919050565b6000613b3582613b08565b9050919050565b6000613b4782613b2a565b9050919050565b613b5781613b3c565b82525050565b6000602082019050613b726000830184613b4e565b92915050565b600080600060608486031215613b9157613b9061340c565b5b6000613b9f868287016135a8565b9350506020613bb086828701613486565b9250506040613bc18682870161342d565b9150509250925092565b60008060408385031215613be257613be161340c565b5b6000613bf085828601613486565b9250506020613c0185828601613486565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c5257607f821691505b602082108103613c6557613c64613c0b565b5b50919050565b7f4164647265737320646f6573206e6f7420686176652074686520726f6c650000600082015250565b6000613ca1601e8361335b565b9150613cac82613c6b565b602082019050919050565b60006020820190508181036000830152613cd081613c94565b9050919050565b600081905092915050565b50565b6000613cf2600083613cd7565b9150613cfd82613ce2565b600082019050919050565b6000613d1382613ce5565b9150819050919050565b7f455448207472616e73666572206661696c656400000000000000000000000000600082015250565b6000613d5360138361335b565b9150613d5e82613d1d565b602082019050919050565b60006020820190508181036000830152613d8281613d46565b9050919050565b6000608082019050613d9e6000830187613b4e565b613dab60208301866132ff565b613db86040830185613318565b613dc56060830184613318565b95945050505050565b7f4f6e6c792041646d696e2063616e206163636573730000000000000000000000600082015250565b6000613e0460158361335b565b9150613e0f82613dce565b602082019050919050565b60006020820190508181036000830152613e3381613df7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ea38261330e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ed557613ed4613e69565b5b600182019050919050565b7f4164647265737320616c7265616479206861732074686520726f6c6500000000600082015250565b6000613f16601c8361335b565b9150613f2182613ee0565b602082019050919050565b60006020820190508181036000830152613f4581613f09565b9050919050565b6000613f578261330e565b9150613f628361330e565b9250828201905080821115613f7a57613f79613e69565b5b92915050565b600081519050613f8f81613416565b92915050565b600060208284031215613fab57613faa61340c565b5b6000613fb984828501613f80565b91505092915050565b7f505a5056313a204e6f7420656e6f75676820546f6b656e730000000000000000600082015250565b6000613ff860188361335b565b915061400382613fc2565b602082019050919050565b6000602082019050818103600083015261402781613feb565b9050919050565b600060a0820190506140436000830188613b4e565b61405060208301876132ff565b61405d60408301866132ff565b61406a6060830185613318565b6140776080830184613318565b9695505050505050565b600060408201905061409660008301856132ff565b6140a360208301846132ff565b9392505050565b7f505a5056313a20496e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006140e0601d8361335b565b91506140eb826140aa565b602082019050919050565b6000602082019050818103600083015261410f816140d3565b9050919050565b7f505a5056313a204e6f7420656e6f75676820707a700000000000000000000000600082015250565b600061414c60158361335b565b915061415782614116565b602082019050919050565b6000602082019050818103600083015261417b8161413f565b9050919050565b7f41646472657373657320616e64205072697a6573206172726179732073686f7560008201527f6c64206265206f6620657175616c206c656e6774680000000000000000000000602082015250565b60006141de60358361335b565b91506141e982614182565b604082019050919050565b6000602082019050818103600083015261420d816141d1565b9050919050565b7f416464726573732061727261792063616e277420626520656d70747900000000600082015250565b600061424a601c8361335b565b915061425582614214565b602082019050919050565b600060208201905081810360008301526142798161423d565b9050919050565b7f496e73756666696369656e742062616c616e636520696e20636f6e7472616374600082015250565b60006142b660208361335b565b91506142c182614280565b602082019050919050565b600060208201905081810360008301526142e5816142a9565b9050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061432260108361335b565b915061432d826142ec565b602082019050919050565b6000602082019050818103600083015261435181614315565b9050919050565b7f6275726e2066726f6d207a65726f000000000000000000000000000000000000600082015250565b600061438e600e8361335b565b915061439982614358565b602082019050919050565b600060208201905081810360008301526143bd81614381565b9050919050565b7f496e76616c6964206e65772061646d696e206164647265737300000000000000600082015250565b60006143fa60198361335b565b9150614405826143c4565b602082019050919050565b60006020820190508181036000830152614429816143ed565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061448c60258361335b565b915061449782614430565b604082019050919050565b600060208201905081810360008301526144bb8161447f565b9050919050565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b60006144f860148361335b565b9150614503826144c2565b602082019050919050565b60006020820190508181036000830152614527816144eb565b9050919050565b60006060820190506145436000830186613b4e565b61455060208301856132ff565b61455d6040830184613318565b949350505050565b7f42616c616e636520696e2074686520636f6e7472616374206973206e6f74206560008201527f6e6f756768000000000000000000000000000000000000000000000000000000602082015250565b60006145c160258361335b565b91506145cc82614565565b604082019050919050565b600060208201905081810360008301526145f0816145b4565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061462d601f8361335b565b9150614638826145f7565b602082019050919050565b6000602082019050818103600083015261465c81614620565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000614699601f8361335b565b91506146a482614663565b602082019050919050565b600060208201905081810360008301526146c88161468c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061472b60248361335b565b9150614736826146cf565b604082019050919050565b6000602082019050818103600083015261475a8161471e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006147bd60228361335b565b91506147c882614761565b604082019050919050565b600060208201905081810360008301526147ec816147b0565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614829601d8361335b565b9150614834826147f3565b602082019050919050565b600060208201905081810360008301526148588161481c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006148bb60258361335b565b91506148c68261485f565b604082019050919050565b600060208201905081810360008301526148ea816148ae565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061494d60238361335b565b9150614958826148f1565b604082019050919050565b6000602082019050818103600083015261497c81614940565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006149df60268361335b565b91506149ea82614983565b604082019050919050565b60006020820190508181036000830152614a0e816149d2565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a7160218361335b565b9150614a7c82614a15565b604082019050919050565b60006020820190508181036000830152614aa081614a64565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b0360228361335b565b9150614b0e82614aa7565b604082019050919050565b60006020820190508181036000830152614b3281614af6565b9050919050565b6000606082019050614b4e60008301866132ff565b614b5b60208301856132ff565b614b686040830184613318565b949350505050565b6000614b7b8261330e565b9150614b868361330e565b9250828203905081811115614b9e57614b9d613e69565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b614bdc816134db565b8114614be757600080fd5b50565b600081519050614bf981614bd3565b92915050565b600060208284031215614c1557614c1461340c565b5b6000614c2384828501614bea565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6000614c88602a8361335b565b9150614c9382614c2c565b604082019050919050565b60006020820190508181036000830152614cb781614c7b565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b6000614d1a60268361335b565b9150614d2582614cbe565b604082019050919050565b60006020820190508181036000830152614d4981614d0d565b9050919050565b600081519050919050565b6000614d6682614d50565b614d708185613cd7565b9350614d8081856020860161336c565b80840191505092915050565b6000614d988284614d5b565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000614dd9601d8361335b565b9150614de482614da3565b602082019050919050565b60006020820190508181036000830152614e0881614dcc565b905091905056fea264697066735822122098c1f3e15c1e850ac2aaa411b0c90f039af3e039eb9c0c9d6dc782214d1013e664736f6c63430008120033