false
false
0

Contract Address Details

0xF6f46BD1F85eBF00c6d7490678aD020BC73969A7

Token
PLAYZAP (PZP)
Creator
0xf22b16–8e642d at 0x78f1a0–7f3ad3
Balance
0.44866 EOS
Tokens
Fetching tokens...
Transactions
77,484 Transactions
Transfers
20,736 Transfers
Gas Used
3,333,222,165
Last Balance Update
47498497
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-08-10T07:52:33.307426Z

Contract source code

Sol2uml
new
// SPDX-License-Identifier: MIT
// 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/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/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/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/PZPSwapEOS.sol



pragma solidity ^0.8.0;



contract WPZP is ERC20, ReentrancyGuard  {
    mapping(address => bool) public hasRole;
    
    address public _ownerAddress;
    address[] public addressesWithRole;

    IERC20 private token;
    
    event Minted(address to,uint256 amount);
    event MintedTo(address to,uint256 amount);
    event RewardTransfered(address _to, uint256 _amount);
    event ContestEntered(address _from);
    event Swaped(IERC20 address_,address _from, uint256 _amount);
    event SwapReceived(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");
        
        _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.transferFrom(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.transfer(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.transfer(to, amount);
        _token.transfer(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.transferFrom(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{
        bool success = token.transfer(playerAddress, pzpAmount);
        require(success, "Token transfer failed");

        (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");
        
        (bool success) = token.transfer(_to,amount);

        if (!success) {
            revert("ERC20 transfer failed");
        }
        emit RewardTransfered(_to,amount);
    } 

    function ContestEntry() nonReentrant external
    {
        emit ContestEntered(msg.sender);
    }

    //distribute winning tokens to players and commission tokens to playzap wallet
    function ContestReward(address[] memory _addresses, uint256[] memory prizes,uint256 fees,address commission) nonReentrant external HasRole {
        uint length = _addresses.length;
        //require (msg.sender == _distributionOwner, "Only Distribution owner can call this function");
        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++)
        {
           bool prizeSuccess = token.transfer(_addresses[i],prizes[i]);
           require(prizeSuccess, "Transfer failed.");
        }
        
        bool success = token.transfer(commission,fees);
        require(success, "Fees transfer failed");
    }


    function TransferSwap(IERC20 address_, address playerAddress, uint256 transferAmount) nonReentrant external HasRole{
        
        (bool success) = address_.transfer(playerAddress,transferAmount);
        require(success, "Transfer failed.");
        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 {
        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":"_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":"MintedTo","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":"SwapReceived","inputs":[{"type":"address","name":"_from","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

0x60806040523480156200001157600080fd5b506040518060400160405280600781526020017f504c41595a4150000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f505a50000000000000000000000000000000000000000000000000000000000081525081600390816200008f91906200081e565b508060049081620000a191906200081e565b505050600160058190555033600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555030600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000161600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200018160201b60201c565b6200017b683635c9adc5dea00000620002d260201b60201c565b62000be8565b3373ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000214576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200020b9062000966565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b620002e2620003d160201b60201c565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1662000371576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036890620009d8565b60405180910390fd5b6200038330826200042360201b60201c565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe3082604051620003b692919062000a50565b60405180910390a1620003ce6200059060201b60201c565b50565b60026005540362000419576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004109062000acd565b60405180910390fd5b6002600581905550565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000495576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200048c9062000b3f565b60405180910390fd5b620004a9600083836200059a60201b60201c565b8060026000828254620004bd919062000b90565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000570919062000bcb565b60405180910390a36200058c600083836200059f60201b60201c565b5050565b6001600581905550565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200062657607f821691505b6020821081036200063c576200063b620005de565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006a67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000667565b620006b2868362000667565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620006ff620006f9620006f384620006ca565b620006d4565b620006ca565b9050919050565b6000819050919050565b6200071b83620006de565b620007336200072a8262000706565b84845462000674565b825550505050565b600090565b6200074a6200073b565b6200075781848462000710565b505050565b5b818110156200077f576200077360008262000740565b6001810190506200075d565b5050565b601f821115620007ce57620007988162000642565b620007a38462000657565b81016020851015620007b3578190505b620007cb620007c28562000657565b8301826200075c565b50505b505050565b600082821c905092915050565b6000620007f360001984600802620007d3565b1980831691505092915050565b60006200080e8383620007e0565b9150826002028217905092915050565b6200082982620005a4565b67ffffffffffffffff811115620008455762000844620005af565b5b6200085182546200060d565b6200085e82828562000783565b600060209050601f83116001811462000896576000841562000881578287015190505b6200088d858262000800565b865550620008fd565b601f198416620008a68662000642565b60005b82811015620008d057848901518255600182019150602085019450602081019050620008a9565b86831015620008f05784890151620008ec601f891682620007e0565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f4f6e6c792041646d696e2063616e206163636573730000000000000000000000600082015250565b60006200094e60158362000905565b91506200095b8262000916565b602082019050919050565b6000602082019050818103600083015262000981816200093f565b9050919050565b7f4164647265737320646f6573206e6f7420686176652074686520726f6c650000600082015250565b6000620009c0601e8362000905565b9150620009cd8262000988565b602082019050919050565b60006020820190508181036000830152620009f381620009b1565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a2782620009fa565b9050919050565b62000a398162000a1a565b82525050565b62000a4a81620006ca565b82525050565b600060408201905062000a67600083018562000a2e565b62000a76602083018462000a3f565b9392505050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600062000ab5601f8362000905565b915062000ac28262000a7d565b602082019050919050565b6000602082019050818103600083015262000ae88162000aa6565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000b27601f8362000905565b915062000b348262000aef565b602082019050919050565b6000602082019050818103600083015262000b5a8162000b18565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000b9d82620006ca565b915062000baa83620006ca565b925082820190508082111562000bc55762000bc462000b61565b5b92915050565b600060208201905062000be2600083018462000a3f565b92915050565b614d978062000bf86000396000f3fe6080604052600436106101f25760003560e01c806368c673011161010d578063a457c2d7116100a0578063c2cba3061161006f578063c2cba30614610761578063d41be25f1461078c578063dd62ed3e146107b5578063ef14dc98146107f2578063ffd7684d1461081b57610232565b8063a457c2d714610693578063a786c18b146106d0578063a9059cbb146106fb578063aaa330f71461073857610232565b806380e52e3f116100dc57806380e52e3f146105ed5780638f2839701461061657806395d89b411461063f5780639b404b281461066a57610232565b806368c673011461052157806370a082311461054a57806379cc6790146105875780637ef09bca146105b057610232565b806335d129681161018557806347e7ef241161015457806347e7ef241461045357806353e6d0521461049057806354488b92146104cd5780635b6152fd1461050a57610232565b806335d12968146103ad57806338977686146103c457806339509351146103ed57806342966c681461042a57610232565b806318160ddd116101c157806318160ddd146102f1578063232b182a1461031c57806323b872dd14610345578063313ce5671461038257610232565b806306fdde03146102375780630788370314610262578063095ea7b31461028b57806311df96c8146102c857610232565b36610232577f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f885258743334604051610228929190613398565b60405180910390a1005b600080fd5b34801561024357600080fd5b5061024c610844565b6040516102599190613451565b60405180910390f35b34801561026e57600080fd5b50610289600480360381019061028491906134b3565b6108d6565b005b34801561029757600080fd5b506102b260048036038101906102ad919061350c565b6109b8565b6040516102bf9190613567565b60405180910390f35b3480156102d457600080fd5b506102ef60048036038101906102ea9190613582565b6109db565b005b3480156102fd57600080fd5b50610306610c0d565b60405161031391906135d5565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e919061362e565b610c17565b005b34801561035157600080fd5b5061036c600480360381019061036791906136a9565b610df5565b6040516103799190613567565b60405180910390f35b34801561038e57600080fd5b50610397610e24565b6040516103a49190613718565b60405180910390f35b3480156103b957600080fd5b506103c2610e2d565b005b3480156103d057600080fd5b506103eb60048036038101906103e69190613733565b610f8d565b005b3480156103f957600080fd5b50610414600480360381019061040f919061350c565b6110db565b6040516104219190613567565b60405180910390f35b34801561043657600080fd5b50610451600480360381019061044c91906134b3565b611112565b005b34801561045f57600080fd5b5061047a60048036038101906104759190613760565b61111f565b6040516104879190613567565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b29190613760565b6112b7565b6040516104c49190613567565b60405180910390f35b3480156104d957600080fd5b506104f460048036038101906104ef91906134b3565b611599565b60405161050191906137a0565b60405180910390f35b34801561051657600080fd5b5061051f6115d8565b005b34801561052d57600080fd5b50610548600480360381019061054391906139c6565b611621565b005b34801561055657600080fd5b50610571600480360381019061056c9190613733565b6118d7565b60405161057e91906135d5565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a9919061350c565b61191f565b005b3480156105bc57600080fd5b506105d760048036038101906105d29190613733565b61199c565b6040516105e49190613567565b60405180910390f35b3480156105f957600080fd5b50610614600480360381019061060f9190613733565b6119bc565b005b34801561062257600080fd5b5061063d60048036038101906106389190613733565b611ab0565b005b34801561064b57600080fd5b50610654611c70565b6040516106619190613451565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c9190613a3e565b611d02565b005b34801561069f57600080fd5b506106ba60048036038101906106b5919061350c565b61204e565b6040516106c79190613567565b60405180910390f35b3480156106dc57600080fd5b506106e56120c5565b6040516106f291906137a0565b60405180910390f35b34801561070757600080fd5b50610722600480360381019061071d919061350c565b6120eb565b60405161072f9190613567565b60405180910390f35b34801561074457600080fd5b5061075f600480360381019061075a9190613b1b565b61210e565b005b34801561076d57600080fd5b50610776612238565b6040516107839190613bba565b60405180910390f35b34801561079857600080fd5b506107b360048036038101906107ae9190613bd5565b612262565b005b3480156107c157600080fd5b506107dc60048036038101906107d79190613c28565b612401565b6040516107e991906135d5565b60405180910390f35b3480156107fe57600080fd5b506108196004803603810190610814919061350c565b612488565b005b34801561082757600080fd5b50610842600480360381019061083d9190613bd5565b61272a565b005b60606003805461085390613c97565b80601f016020809104026020016040519081016040528092919081815260200182805461087f90613c97565b80156108cc5780601f106108a1576101008083540402835291602001916108cc565b820191906000526020600020905b8154815290600101906020018083116108af57829003601f168201915b5050505050905090565b6108de612887565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661096a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096190613d14565b60405180910390fd5b61097430826128d6565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe30826040516109a5929190613398565b60405180910390a16109b5612a2c565b50565b6000806109c3612a36565b90506109d0818585612a3e565b600191505092915050565b6109e3612887565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6690613d14565b60405180910390fd5b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85856040518363ffffffff1660e01b8152600401610ace929190613398565b6020604051808303816000875af1158015610aed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b119190613d60565b905080610b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4a90613dd9565b60405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff1682604051610b7790613e2a565b60006040518083038185875af1925050503d8060008114610bb4576040519150601f19603f3d011682016040523d82523d6000602084013e610bb9565b606091505b50508091505080610bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf690613e8b565b60405180910390fd5b50610c08612a2c565b505050565b6000600254905090565b610c1f612887565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca290613d14565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85856040518363ffffffff1660e01b8152600401610ce6929190613398565b6020604051808303816000875af1158015610d05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d299190613d60565b508473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401610d65929190613398565b6020604051808303816000875af1158015610d84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610da89190613d60565b507f9e53e276967e39d7946b811d2efc13351b5c454f9377a9cb0c6ccdee368be3a785858542604051610dde9493929190613eab565b60405180910390a1610dee612a2c565b5050505050565b600080610e00612a36565b9050610e0d858285612c07565b610e18858585612c93565b60019150509392505050565b60006012905090565b3373ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb490613f3c565b60405180910390fd5b60005b600880549050811015610f7c57600060088281548110610ee357610ee2613f5c565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550508080610f7490613fba565b915050610ec0565b5060086000610f8b9190613300565b565b3373ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461101d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101490613f3c565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806110e6612a36565b90506111078185856110f88589612401565b6111029190614002565b612a3e565b600191505092915050565b61111c3382612f09565b50565b6000611129612887565b60008373ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161116491906137a0565b602060405180830381865afa158015611181573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111a5919061404b565b116111e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dc906140c4565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff166323b872dd3330856040518463ffffffff1660e01b8152600401611222939291906140e4565b6020604051808303816000875af1158015611241573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112659190613d60565b507f5fe47ed6d4225326d3303476197d782ded5a4e9c14f479dc9ec4992af4e85d59833330854260405161129d95949392919061411b565b60405180910390a1600190506112b1612a2c565b92915050565b60006112c1612887565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661134d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134490613d14565b60405180910390fd5b818373ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e33306040518363ffffffff1660e01b815260040161138992919061416e565b602060405180830381865afa1580156113a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ca919061404b565b101561140b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611402906141e3565b60405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161144691906137a0565b602060405180830381865afa158015611463573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611487919061404b565b116114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be9061424f565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff166323b872dd3330856040518463ffffffff1660e01b8152600401611504939291906140e4565b6020604051808303816000875af1158015611523573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115479190613d60565b507f63dadce80e26f7bbafd7878727b1ccf7ca242e57d7ae2bf458be2b122d4089b7833330854260405161157f95949392919061411b565b60405180910390a160019050611593612a2c565b92915050565b600881815481106115a957600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6115e0612887565b7fd9a5d560deba3dbf49e6ff3bcbd63368413ae5c61aa3af28115af040577565993360405161160f91906137a0565b60405180910390a161161f612a2c565b565b611629612887565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ac90613d14565b60405180910390fd5b80518251146116f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f0906142e1565b60405180910390fd5b600082510361173d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117349061434d565b60405180910390fd5b6000805b83518110156117855782818151811061175d5761175c613f5c565b5b6020026020010151826117709190614002565b9150808061177d90613fba565b915050611741565b50804710156117c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c0906143b9565b60405180910390fd5b60005b83518110156118c95760008482815181106117ea576117e9613f5c565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1684838151811061181b5761181a613f5c565b5b602002602001015160405161182f90613e2a565b60006040518083038185875af1925050503d806000811461186c576040519150601f19603f3d011682016040523d82523d6000602084013e611871565b606091505b50509050806118b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ac90614425565b60405180910390fd5b5080806118c190613fba565b9150506117cc565b50506118d3612a2c565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361198e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198590614491565b60405180910390fd5b6119988282612f09565b5050565b60066020528060005260406000206000915054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4390613f3c565b60405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611aad816130d6565b50565b3373ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3790613f3c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba6906144fd565b60405180910390fd5b428173ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f89759b3bbabad65a294c0e20b60c9396a23e9e8a3d47c1179ec5a4cbac0e589160405160405180910390a480600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060048054611c7f90613c97565b80601f0160208091040260200160405190810160405280929190818152602001828054611cab90613c97565b8015611cf85780601f10611ccd57610100808354040283529160200191611cf8565b820191906000526020600020905b815481529060010190602001808311611cdb57829003601f168201915b5050505050905090565b611d0a612887565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8d90613d14565b60405180910390fd5b60008451905083518114611ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd6906142e1565b60405180910390fd5b60008103611e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e199061434d565b60405180910390fd5b60005b81811015611f59576000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb888481518110611e8057611e7f613f5c565b5b6020026020010151888581518110611e9b57611e9a613f5c565b5b60200260200101516040518363ffffffff1660e01b8152600401611ec0929190613398565b6020604051808303816000875af1158015611edf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f039190613d60565b905080611f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3c90614425565b60405180910390fd5b508080611f5190613fba565b915050611e25565b506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84866040518363ffffffff1660e01b8152600401611fb9929190613398565b6020604051808303816000875af1158015611fd8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ffc9190613d60565b90508061203e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203590614569565b60405180910390fd5b5050612048612a2c565b50505050565b600080612059612a36565b905060006120678286612401565b9050838110156120ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a3906145fb565b60405180910390fd5b6120b98286868403612a3e565b60019250505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806120f6612a36565b9050612103818585612c93565b600191505092915050565b612116612887565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166121a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219990613d14565b60405180910390fd5b804710156121e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dc90614667565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561222b573d6000803e3d6000fd5b50612234612a2c565b5050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61226a612887565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166122f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ed90613d14565b60405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b8152600401612333929190613398565b6020604051808303816000875af1158015612352573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123769190613d60565b9050806123b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123af90614425565b60405180910390fd5b7ff0aedcee50ce0ca8bb3067924d5ed38a062325eaf2a37cd325e162cee44f37378484846040516123eb93929190614687565b60405180910390a1506123fc612a2c565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612490612887565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661251c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251390613d14565b60405180910390fd5b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161257991906137a0565b602060405180830381865afa158015612596573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125ba919061404b565b9050808211156125ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f690614730565b60405180910390fd5b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85856040518363ffffffff1660e01b815260040161265e929190613398565b6020604051808303816000875af115801561267d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126a19190613d60565b9050806126e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126da9061479c565b60405180910390fd5b7fc4c8da1b182d15faaef80290dd204a2535c01ba690a4b4d9fe26bccebf06bb308484604051612714929190613398565b60405180910390a15050612726612a2c565b5050565b612732612887565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166127be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b590613d14565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b81526004016127f9929190613398565b6020604051808303816000875af1158015612818573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061283c9190613d60565b507f9e53e276967e39d7946b811d2efc13351b5c454f9377a9cb0c6ccdee368be3a7838383426040516128729493929190613eab565b60405180910390a1612882612a2c565b505050565b6002600554036128cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c390614808565b60405180910390fd5b6002600581905550565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293c90614874565b60405180910390fd5b612951600083836132f6565b80600260008282546129639190614002565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612a1491906135d5565b60405180910390a3612a28600083836132fb565b5050565b6001600581905550565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa490614906565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1390614998565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612bfa91906135d5565b60405180910390a3505050565b6000612c138484612401565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114612c8d5781811015612c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7690614a04565b60405180910390fd5b612c8c8484848403612a3e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf990614a96565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6890614b28565b60405180910390fd5b612d7c8383836132f6565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df990614bba565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612ef091906135d5565b60405180910390a3612f038484846132fb565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6f90614c4c565b60405180910390fd5b612f84826000836132f6565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561300a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300190614cde565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516130bd91906135d5565b60405180910390a36130d1836000846132fb565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161315d90613f3c565b60405180910390fd5b60005b6008805490508110156132f2578173ffffffffffffffffffffffffffffffffffffffff16600882815481106131a1576131a0613f5c565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036132df57600860016008805490506131fb9190614cfe565b8154811061320c5761320b613f5c565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008828154811061324b5761324a613f5c565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060088054806132a5576132a4614d32565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556132f2565b80806132ea90613fba565b915050613169565b5050565b505050565b505050565b508054600082559060005260206000209081019061331e9190613321565b50565b5b8082111561333a576000816000905550600101613322565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006133698261333e565b9050919050565b6133798161335e565b82525050565b6000819050919050565b6133928161337f565b82525050565b60006040820190506133ad6000830185613370565b6133ba6020830184613389565b9392505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156133fb5780820151818401526020810190506133e0565b60008484015250505050565b6000601f19601f8301169050919050565b6000613423826133c1565b61342d81856133cc565b935061343d8185602086016133dd565b61344681613407565b840191505092915050565b6000602082019050818103600083015261346b8184613418565b905092915050565b6000604051905090565b600080fd5b600080fd5b6134908161337f565b811461349b57600080fd5b50565b6000813590506134ad81613487565b92915050565b6000602082840312156134c9576134c861347d565b5b60006134d78482850161349e565b91505092915050565b6134e98161335e565b81146134f457600080fd5b50565b600081359050613506816134e0565b92915050565b600080604083850312156135235761352261347d565b5b6000613531858286016134f7565b92505060206135428582860161349e565b9150509250929050565b60008115159050919050565b6135618161354c565b82525050565b600060208201905061357c6000830184613558565b92915050565b60008060006060848603121561359b5761359a61347d565b5b60006135a9868287016134f7565b93505060206135ba8682870161349e565b92505060406135cb8682870161349e565b9150509250925092565b60006020820190506135ea6000830184613389565b92915050565b60006135fb8261335e565b9050919050565b61360b816135f0565b811461361657600080fd5b50565b60008135905061362881613602565b92915050565b600080600080600060a0868803121561364a5761364961347d565b5b600061365888828901613619565b9550506020613669888289016134f7565b945050604061367a8882890161349e565b935050606061368b888289016134f7565b925050608061369c8882890161349e565b9150509295509295909350565b6000806000606084860312156136c2576136c161347d565b5b60006136d0868287016134f7565b93505060206136e1868287016134f7565b92505060406136f28682870161349e565b9150509250925092565b600060ff82169050919050565b613712816136fc565b82525050565b600060208201905061372d6000830184613709565b92915050565b6000602082840312156137495761374861347d565b5b6000613757848285016134f7565b91505092915050565b600080604083850312156137775761377661347d565b5b600061378585828601613619565b92505060206137968582860161349e565b9150509250929050565b60006020820190506137b56000830184613370565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6137f882613407565b810181811067ffffffffffffffff82111715613817576138166137c0565b5b80604052505050565b600061382a613473565b905061383682826137ef565b919050565b600067ffffffffffffffff821115613856576138556137c0565b5b602082029050602081019050919050565b600080fd5b600061387f61387a8461383b565b613820565b905080838252602082019050602084028301858111156138a2576138a1613867565b5b835b818110156138cb57806138b788826134f7565b8452602084019350506020810190506138a4565b5050509392505050565b600082601f8301126138ea576138e96137bb565b5b81356138fa84826020860161386c565b91505092915050565b600067ffffffffffffffff82111561391e5761391d6137c0565b5b602082029050602081019050919050565b600061394261393d84613903565b613820565b9050808382526020820190506020840283018581111561396557613964613867565b5b835b8181101561398e578061397a888261349e565b845260208401935050602081019050613967565b5050509392505050565b600082601f8301126139ad576139ac6137bb565b5b81356139bd84826020860161392f565b91505092915050565b600080604083850312156139dd576139dc61347d565b5b600083013567ffffffffffffffff8111156139fb576139fa613482565b5b613a07858286016138d5565b925050602083013567ffffffffffffffff811115613a2857613a27613482565b5b613a3485828601613998565b9150509250929050565b60008060008060808587031215613a5857613a5761347d565b5b600085013567ffffffffffffffff811115613a7657613a75613482565b5b613a82878288016138d5565b945050602085013567ffffffffffffffff811115613aa357613aa2613482565b5b613aaf87828801613998565b9350506040613ac08782880161349e565b9250506060613ad1878288016134f7565b91505092959194509250565b6000613ae88261333e565b9050919050565b613af881613add565b8114613b0357600080fd5b50565b600081359050613b1581613aef565b92915050565b60008060408385031215613b3257613b3161347d565b5b6000613b4085828601613b06565b9250506020613b518582860161349e565b9150509250929050565b6000819050919050565b6000613b80613b7b613b768461333e565b613b5b565b61333e565b9050919050565b6000613b9282613b65565b9050919050565b6000613ba482613b87565b9050919050565b613bb481613b99565b82525050565b6000602082019050613bcf6000830184613bab565b92915050565b600080600060608486031215613bee57613bed61347d565b5b6000613bfc86828701613619565b9350506020613c0d868287016134f7565b9250506040613c1e8682870161349e565b9150509250925092565b60008060408385031215613c3f57613c3e61347d565b5b6000613c4d858286016134f7565b9250506020613c5e858286016134f7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613caf57607f821691505b602082108103613cc257613cc1613c68565b5b50919050565b7f4164647265737320646f6573206e6f7420686176652074686520726f6c650000600082015250565b6000613cfe601e836133cc565b9150613d0982613cc8565b602082019050919050565b60006020820190508181036000830152613d2d81613cf1565b9050919050565b613d3d8161354c565b8114613d4857600080fd5b50565b600081519050613d5a81613d34565b92915050565b600060208284031215613d7657613d7561347d565b5b6000613d8484828501613d4b565b91505092915050565b7f546f6b656e207472616e73666572206661696c65640000000000000000000000600082015250565b6000613dc36015836133cc565b9150613dce82613d8d565b602082019050919050565b60006020820190508181036000830152613df281613db6565b9050919050565b600081905092915050565b50565b6000613e14600083613df9565b9150613e1f82613e04565b600082019050919050565b6000613e3582613e07565b9150819050919050565b7f455448207472616e73666572206661696c656400000000000000000000000000600082015250565b6000613e756013836133cc565b9150613e8082613e3f565b602082019050919050565b60006020820190508181036000830152613ea481613e68565b9050919050565b6000608082019050613ec06000830187613bab565b613ecd6020830186613370565b613eda6040830185613389565b613ee76060830184613389565b95945050505050565b7f4f6e6c792041646d696e2063616e206163636573730000000000000000000000600082015250565b6000613f266015836133cc565b9150613f3182613ef0565b602082019050919050565b60006020820190508181036000830152613f5581613f19565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613fc58261337f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ff757613ff6613f8b565b5b600182019050919050565b600061400d8261337f565b91506140188361337f565b92508282019050808211156140305761402f613f8b565b5b92915050565b60008151905061404581613487565b92915050565b6000602082840312156140615761406061347d565b5b600061406f84828501614036565b91505092915050565b7f505a5056313a204e6f7420656e6f75676820546f6b656e730000000000000000600082015250565b60006140ae6018836133cc565b91506140b982614078565b602082019050919050565b600060208201905081810360008301526140dd816140a1565b9050919050565b60006060820190506140f96000830186613370565b6141066020830185613370565b6141136040830184613389565b949350505050565b600060a0820190506141306000830188613bab565b61413d6020830187613370565b61414a6040830186613370565b6141576060830185613389565b6141646080830184613389565b9695505050505050565b60006040820190506141836000830185613370565b6141906020830184613370565b9392505050565b7f505a5056313a20496e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006141cd601d836133cc565b91506141d882614197565b602082019050919050565b600060208201905081810360008301526141fc816141c0565b9050919050565b7f505a5056313a204e6f7420656e6f75676820707a700000000000000000000000600082015250565b60006142396015836133cc565b915061424482614203565b602082019050919050565b600060208201905081810360008301526142688161422c565b9050919050565b7f41646472657373657320616e64205072697a6573206172726179732073686f7560008201527f6c64206265206f6620657175616c206c656e6774680000000000000000000000602082015250565b60006142cb6035836133cc565b91506142d68261426f565b604082019050919050565b600060208201905081810360008301526142fa816142be565b9050919050565b7f416464726573732061727261792063616e277420626520656d70747900000000600082015250565b6000614337601c836133cc565b915061434282614301565b602082019050919050565b600060208201905081810360008301526143668161432a565b9050919050565b7f496e73756666696369656e742062616c616e636520696e20636f6e7472616374600082015250565b60006143a36020836133cc565b91506143ae8261436d565b602082019050919050565b600060208201905081810360008301526143d281614396565b9050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061440f6010836133cc565b915061441a826143d9565b602082019050919050565b6000602082019050818103600083015261443e81614402565b9050919050565b7f6275726e2066726f6d207a65726f000000000000000000000000000000000000600082015250565b600061447b600e836133cc565b915061448682614445565b602082019050919050565b600060208201905081810360008301526144aa8161446e565b9050919050565b7f496e76616c6964206e65772061646d696e206164647265737300000000000000600082015250565b60006144e76019836133cc565b91506144f2826144b1565b602082019050919050565b60006020820190508181036000830152614516816144da565b9050919050565b7f46656573207472616e73666572206661696c6564000000000000000000000000600082015250565b60006145536014836133cc565b915061455e8261451d565b602082019050919050565b6000602082019050818103600083015261458281614546565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006145e56025836133cc565b91506145f082614589565b604082019050919050565b60006020820190508181036000830152614614816145d8565b9050919050565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b60006146516014836133cc565b915061465c8261461b565b602082019050919050565b6000602082019050818103600083015261468081614644565b9050919050565b600060608201905061469c6000830186613bab565b6146a96020830185613370565b6146b66040830184613389565b949350505050565b7f42616c616e636520696e2074686520636f6e7472616374206973206e6f74206560008201527f6e6f756768000000000000000000000000000000000000000000000000000000602082015250565b600061471a6025836133cc565b9150614725826146be565b604082019050919050565b600060208201905081810360008301526147498161470d565b9050919050565b7f4552433230207472616e73666572206661696c65640000000000000000000000600082015250565b60006147866015836133cc565b915061479182614750565b602082019050919050565b600060208201905081810360008301526147b581614779565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006147f2601f836133cc565b91506147fd826147bc565b602082019050919050565b60006020820190508181036000830152614821816147e5565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600061485e601f836133cc565b915061486982614828565b602082019050919050565b6000602082019050818103600083015261488d81614851565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006148f06024836133cc565b91506148fb82614894565b604082019050919050565b6000602082019050818103600083015261491f816148e3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006149826022836133cc565b915061498d82614926565b604082019050919050565b600060208201905081810360008301526149b181614975565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006149ee601d836133cc565b91506149f9826149b8565b602082019050919050565b60006020820190508181036000830152614a1d816149e1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614a806025836133cc565b9150614a8b82614a24565b604082019050919050565b60006020820190508181036000830152614aaf81614a73565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614b126023836133cc565b9150614b1d82614ab6565b604082019050919050565b60006020820190508181036000830152614b4181614b05565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614ba46026836133cc565b9150614baf82614b48565b604082019050919050565b60006020820190508181036000830152614bd381614b97565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c366021836133cc565b9150614c4182614bda565b604082019050919050565b60006020820190508181036000830152614c6581614c29565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000614cc86022836133cc565b9150614cd382614c6c565b604082019050919050565b60006020820190508181036000830152614cf781614cbb565b9050919050565b6000614d098261337f565b9150614d148361337f565b9250828203905081811115614d2c57614d2b613f8b565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea26469706673582212207d3d08e7e512a1b282d9b35735392c871da7ffe30b33f6bee22a5b408e6399ac64736f6c63430008120033

Deployed ByteCode

0x6080604052600436106101f25760003560e01c806368c673011161010d578063a457c2d7116100a0578063c2cba3061161006f578063c2cba30614610761578063d41be25f1461078c578063dd62ed3e146107b5578063ef14dc98146107f2578063ffd7684d1461081b57610232565b8063a457c2d714610693578063a786c18b146106d0578063a9059cbb146106fb578063aaa330f71461073857610232565b806380e52e3f116100dc57806380e52e3f146105ed5780638f2839701461061657806395d89b411461063f5780639b404b281461066a57610232565b806368c673011461052157806370a082311461054a57806379cc6790146105875780637ef09bca146105b057610232565b806335d129681161018557806347e7ef241161015457806347e7ef241461045357806353e6d0521461049057806354488b92146104cd5780635b6152fd1461050a57610232565b806335d12968146103ad57806338977686146103c457806339509351146103ed57806342966c681461042a57610232565b806318160ddd116101c157806318160ddd146102f1578063232b182a1461031c57806323b872dd14610345578063313ce5671461038257610232565b806306fdde03146102375780630788370314610262578063095ea7b31461028b57806311df96c8146102c857610232565b36610232577f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f885258743334604051610228929190613398565b60405180910390a1005b600080fd5b34801561024357600080fd5b5061024c610844565b6040516102599190613451565b60405180910390f35b34801561026e57600080fd5b50610289600480360381019061028491906134b3565b6108d6565b005b34801561029757600080fd5b506102b260048036038101906102ad919061350c565b6109b8565b6040516102bf9190613567565b60405180910390f35b3480156102d457600080fd5b506102ef60048036038101906102ea9190613582565b6109db565b005b3480156102fd57600080fd5b50610306610c0d565b60405161031391906135d5565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e919061362e565b610c17565b005b34801561035157600080fd5b5061036c600480360381019061036791906136a9565b610df5565b6040516103799190613567565b60405180910390f35b34801561038e57600080fd5b50610397610e24565b6040516103a49190613718565b60405180910390f35b3480156103b957600080fd5b506103c2610e2d565b005b3480156103d057600080fd5b506103eb60048036038101906103e69190613733565b610f8d565b005b3480156103f957600080fd5b50610414600480360381019061040f919061350c565b6110db565b6040516104219190613567565b60405180910390f35b34801561043657600080fd5b50610451600480360381019061044c91906134b3565b611112565b005b34801561045f57600080fd5b5061047a60048036038101906104759190613760565b61111f565b6040516104879190613567565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b29190613760565b6112b7565b6040516104c49190613567565b60405180910390f35b3480156104d957600080fd5b506104f460048036038101906104ef91906134b3565b611599565b60405161050191906137a0565b60405180910390f35b34801561051657600080fd5b5061051f6115d8565b005b34801561052d57600080fd5b50610548600480360381019061054391906139c6565b611621565b005b34801561055657600080fd5b50610571600480360381019061056c9190613733565b6118d7565b60405161057e91906135d5565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a9919061350c565b61191f565b005b3480156105bc57600080fd5b506105d760048036038101906105d29190613733565b61199c565b6040516105e49190613567565b60405180910390f35b3480156105f957600080fd5b50610614600480360381019061060f9190613733565b6119bc565b005b34801561062257600080fd5b5061063d60048036038101906106389190613733565b611ab0565b005b34801561064b57600080fd5b50610654611c70565b6040516106619190613451565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c9190613a3e565b611d02565b005b34801561069f57600080fd5b506106ba60048036038101906106b5919061350c565b61204e565b6040516106c79190613567565b60405180910390f35b3480156106dc57600080fd5b506106e56120c5565b6040516106f291906137a0565b60405180910390f35b34801561070757600080fd5b50610722600480360381019061071d919061350c565b6120eb565b60405161072f9190613567565b60405180910390f35b34801561074457600080fd5b5061075f600480360381019061075a9190613b1b565b61210e565b005b34801561076d57600080fd5b50610776612238565b6040516107839190613bba565b60405180910390f35b34801561079857600080fd5b506107b360048036038101906107ae9190613bd5565b612262565b005b3480156107c157600080fd5b506107dc60048036038101906107d79190613c28565b612401565b6040516107e991906135d5565b60405180910390f35b3480156107fe57600080fd5b506108196004803603810190610814919061350c565b612488565b005b34801561082757600080fd5b50610842600480360381019061083d9190613bd5565b61272a565b005b60606003805461085390613c97565b80601f016020809104026020016040519081016040528092919081815260200182805461087f90613c97565b80156108cc5780601f106108a1576101008083540402835291602001916108cc565b820191906000526020600020905b8154815290600101906020018083116108af57829003601f168201915b5050505050905090565b6108de612887565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661096a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096190613d14565b60405180910390fd5b61097430826128d6565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe30826040516109a5929190613398565b60405180910390a16109b5612a2c565b50565b6000806109c3612a36565b90506109d0818585612a3e565b600191505092915050565b6109e3612887565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6690613d14565b60405180910390fd5b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85856040518363ffffffff1660e01b8152600401610ace929190613398565b6020604051808303816000875af1158015610aed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b119190613d60565b905080610b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4a90613dd9565b60405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff1682604051610b7790613e2a565b60006040518083038185875af1925050503d8060008114610bb4576040519150601f19603f3d011682016040523d82523d6000602084013e610bb9565b606091505b50508091505080610bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf690613e8b565b60405180910390fd5b50610c08612a2c565b505050565b6000600254905090565b610c1f612887565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca290613d14565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85856040518363ffffffff1660e01b8152600401610ce6929190613398565b6020604051808303816000875af1158015610d05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d299190613d60565b508473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401610d65929190613398565b6020604051808303816000875af1158015610d84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610da89190613d60565b507f9e53e276967e39d7946b811d2efc13351b5c454f9377a9cb0c6ccdee368be3a785858542604051610dde9493929190613eab565b60405180910390a1610dee612a2c565b5050505050565b600080610e00612a36565b9050610e0d858285612c07565b610e18858585612c93565b60019150509392505050565b60006012905090565b3373ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb490613f3c565b60405180910390fd5b60005b600880549050811015610f7c57600060088281548110610ee357610ee2613f5c565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550508080610f7490613fba565b915050610ec0565b5060086000610f8b9190613300565b565b3373ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461101d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101490613f3c565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806110e6612a36565b90506111078185856110f88589612401565b6111029190614002565b612a3e565b600191505092915050565b61111c3382612f09565b50565b6000611129612887565b60008373ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161116491906137a0565b602060405180830381865afa158015611181573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111a5919061404b565b116111e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dc906140c4565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff166323b872dd3330856040518463ffffffff1660e01b8152600401611222939291906140e4565b6020604051808303816000875af1158015611241573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112659190613d60565b507f5fe47ed6d4225326d3303476197d782ded5a4e9c14f479dc9ec4992af4e85d59833330854260405161129d95949392919061411b565b60405180910390a1600190506112b1612a2c565b92915050565b60006112c1612887565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661134d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134490613d14565b60405180910390fd5b818373ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e33306040518363ffffffff1660e01b815260040161138992919061416e565b602060405180830381865afa1580156113a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ca919061404b565b101561140b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611402906141e3565b60405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161144691906137a0565b602060405180830381865afa158015611463573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611487919061404b565b116114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be9061424f565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff166323b872dd3330856040518463ffffffff1660e01b8152600401611504939291906140e4565b6020604051808303816000875af1158015611523573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115479190613d60565b507f63dadce80e26f7bbafd7878727b1ccf7ca242e57d7ae2bf458be2b122d4089b7833330854260405161157f95949392919061411b565b60405180910390a160019050611593612a2c565b92915050565b600881815481106115a957600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6115e0612887565b7fd9a5d560deba3dbf49e6ff3bcbd63368413ae5c61aa3af28115af040577565993360405161160f91906137a0565b60405180910390a161161f612a2c565b565b611629612887565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ac90613d14565b60405180910390fd5b80518251146116f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f0906142e1565b60405180910390fd5b600082510361173d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117349061434d565b60405180910390fd5b6000805b83518110156117855782818151811061175d5761175c613f5c565b5b6020026020010151826117709190614002565b9150808061177d90613fba565b915050611741565b50804710156117c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c0906143b9565b60405180910390fd5b60005b83518110156118c95760008482815181106117ea576117e9613f5c565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1684838151811061181b5761181a613f5c565b5b602002602001015160405161182f90613e2a565b60006040518083038185875af1925050503d806000811461186c576040519150601f19603f3d011682016040523d82523d6000602084013e611871565b606091505b50509050806118b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ac90614425565b60405180910390fd5b5080806118c190613fba565b9150506117cc565b50506118d3612a2c565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361198e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198590614491565b60405180910390fd5b6119988282612f09565b5050565b60066020528060005260406000206000915054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4390613f3c565b60405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611aad816130d6565b50565b3373ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3790613f3c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba6906144fd565b60405180910390fd5b428173ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f89759b3bbabad65a294c0e20b60c9396a23e9e8a3d47c1179ec5a4cbac0e589160405160405180910390a480600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060048054611c7f90613c97565b80601f0160208091040260200160405190810160405280929190818152602001828054611cab90613c97565b8015611cf85780601f10611ccd57610100808354040283529160200191611cf8565b820191906000526020600020905b815481529060010190602001808311611cdb57829003601f168201915b5050505050905090565b611d0a612887565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8d90613d14565b60405180910390fd5b60008451905083518114611ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd6906142e1565b60405180910390fd5b60008103611e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e199061434d565b60405180910390fd5b60005b81811015611f59576000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb888481518110611e8057611e7f613f5c565b5b6020026020010151888581518110611e9b57611e9a613f5c565b5b60200260200101516040518363ffffffff1660e01b8152600401611ec0929190613398565b6020604051808303816000875af1158015611edf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f039190613d60565b905080611f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3c90614425565b60405180910390fd5b508080611f5190613fba565b915050611e25565b506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84866040518363ffffffff1660e01b8152600401611fb9929190613398565b6020604051808303816000875af1158015611fd8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ffc9190613d60565b90508061203e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203590614569565b60405180910390fd5b5050612048612a2c565b50505050565b600080612059612a36565b905060006120678286612401565b9050838110156120ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a3906145fb565b60405180910390fd5b6120b98286868403612a3e565b60019250505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806120f6612a36565b9050612103818585612c93565b600191505092915050565b612116612887565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166121a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219990613d14565b60405180910390fd5b804710156121e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dc90614667565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561222b573d6000803e3d6000fd5b50612234612a2c565b5050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61226a612887565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166122f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ed90613d14565b60405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b8152600401612333929190613398565b6020604051808303816000875af1158015612352573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123769190613d60565b9050806123b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123af90614425565b60405180910390fd5b7ff0aedcee50ce0ca8bb3067924d5ed38a062325eaf2a37cd325e162cee44f37378484846040516123eb93929190614687565b60405180910390a1506123fc612a2c565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612490612887565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661251c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251390613d14565b60405180910390fd5b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161257991906137a0565b602060405180830381865afa158015612596573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125ba919061404b565b9050808211156125ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f690614730565b60405180910390fd5b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85856040518363ffffffff1660e01b815260040161265e929190613398565b6020604051808303816000875af115801561267d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126a19190613d60565b9050806126e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126da9061479c565b60405180910390fd5b7fc4c8da1b182d15faaef80290dd204a2535c01ba690a4b4d9fe26bccebf06bb308484604051612714929190613398565b60405180910390a15050612726612a2c565b5050565b612732612887565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166127be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b590613d14565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b81526004016127f9929190613398565b6020604051808303816000875af1158015612818573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061283c9190613d60565b507f9e53e276967e39d7946b811d2efc13351b5c454f9377a9cb0c6ccdee368be3a7838383426040516128729493929190613eab565b60405180910390a1612882612a2c565b505050565b6002600554036128cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c390614808565b60405180910390fd5b6002600581905550565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293c90614874565b60405180910390fd5b612951600083836132f6565b80600260008282546129639190614002565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612a1491906135d5565b60405180910390a3612a28600083836132fb565b5050565b6001600581905550565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa490614906565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1390614998565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612bfa91906135d5565b60405180910390a3505050565b6000612c138484612401565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114612c8d5781811015612c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7690614a04565b60405180910390fd5b612c8c8484848403612a3e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf990614a96565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6890614b28565b60405180910390fd5b612d7c8383836132f6565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df990614bba565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612ef091906135d5565b60405180910390a3612f038484846132fb565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6f90614c4c565b60405180910390fd5b612f84826000836132f6565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561300a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300190614cde565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516130bd91906135d5565b60405180910390a36130d1836000846132fb565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161315d90613f3c565b60405180910390fd5b60005b6008805490508110156132f2578173ffffffffffffffffffffffffffffffffffffffff16600882815481106131a1576131a0613f5c565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036132df57600860016008805490506131fb9190614cfe565b8154811061320c5761320b613f5c565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008828154811061324b5761324a613f5c565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060088054806132a5576132a4614d32565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556132f2565b80806132ea90613fba565b915050613169565b5050565b505050565b505050565b508054600082559060005260206000209081019061331e9190613321565b50565b5b8082111561333a576000816000905550600101613322565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006133698261333e565b9050919050565b6133798161335e565b82525050565b6000819050919050565b6133928161337f565b82525050565b60006040820190506133ad6000830185613370565b6133ba6020830184613389565b9392505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156133fb5780820151818401526020810190506133e0565b60008484015250505050565b6000601f19601f8301169050919050565b6000613423826133c1565b61342d81856133cc565b935061343d8185602086016133dd565b61344681613407565b840191505092915050565b6000602082019050818103600083015261346b8184613418565b905092915050565b6000604051905090565b600080fd5b600080fd5b6134908161337f565b811461349b57600080fd5b50565b6000813590506134ad81613487565b92915050565b6000602082840312156134c9576134c861347d565b5b60006134d78482850161349e565b91505092915050565b6134e98161335e565b81146134f457600080fd5b50565b600081359050613506816134e0565b92915050565b600080604083850312156135235761352261347d565b5b6000613531858286016134f7565b92505060206135428582860161349e565b9150509250929050565b60008115159050919050565b6135618161354c565b82525050565b600060208201905061357c6000830184613558565b92915050565b60008060006060848603121561359b5761359a61347d565b5b60006135a9868287016134f7565b93505060206135ba8682870161349e565b92505060406135cb8682870161349e565b9150509250925092565b60006020820190506135ea6000830184613389565b92915050565b60006135fb8261335e565b9050919050565b61360b816135f0565b811461361657600080fd5b50565b60008135905061362881613602565b92915050565b600080600080600060a0868803121561364a5761364961347d565b5b600061365888828901613619565b9550506020613669888289016134f7565b945050604061367a8882890161349e565b935050606061368b888289016134f7565b925050608061369c8882890161349e565b9150509295509295909350565b6000806000606084860312156136c2576136c161347d565b5b60006136d0868287016134f7565b93505060206136e1868287016134f7565b92505060406136f28682870161349e565b9150509250925092565b600060ff82169050919050565b613712816136fc565b82525050565b600060208201905061372d6000830184613709565b92915050565b6000602082840312156137495761374861347d565b5b6000613757848285016134f7565b91505092915050565b600080604083850312156137775761377661347d565b5b600061378585828601613619565b92505060206137968582860161349e565b9150509250929050565b60006020820190506137b56000830184613370565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6137f882613407565b810181811067ffffffffffffffff82111715613817576138166137c0565b5b80604052505050565b600061382a613473565b905061383682826137ef565b919050565b600067ffffffffffffffff821115613856576138556137c0565b5b602082029050602081019050919050565b600080fd5b600061387f61387a8461383b565b613820565b905080838252602082019050602084028301858111156138a2576138a1613867565b5b835b818110156138cb57806138b788826134f7565b8452602084019350506020810190506138a4565b5050509392505050565b600082601f8301126138ea576138e96137bb565b5b81356138fa84826020860161386c565b91505092915050565b600067ffffffffffffffff82111561391e5761391d6137c0565b5b602082029050602081019050919050565b600061394261393d84613903565b613820565b9050808382526020820190506020840283018581111561396557613964613867565b5b835b8181101561398e578061397a888261349e565b845260208401935050602081019050613967565b5050509392505050565b600082601f8301126139ad576139ac6137bb565b5b81356139bd84826020860161392f565b91505092915050565b600080604083850312156139dd576139dc61347d565b5b600083013567ffffffffffffffff8111156139fb576139fa613482565b5b613a07858286016138d5565b925050602083013567ffffffffffffffff811115613a2857613a27613482565b5b613a3485828601613998565b9150509250929050565b60008060008060808587031215613a5857613a5761347d565b5b600085013567ffffffffffffffff811115613a7657613a75613482565b5b613a82878288016138d5565b945050602085013567ffffffffffffffff811115613aa357613aa2613482565b5b613aaf87828801613998565b9350506040613ac08782880161349e565b9250506060613ad1878288016134f7565b91505092959194509250565b6000613ae88261333e565b9050919050565b613af881613add565b8114613b0357600080fd5b50565b600081359050613b1581613aef565b92915050565b60008060408385031215613b3257613b3161347d565b5b6000613b4085828601613b06565b9250506020613b518582860161349e565b9150509250929050565b6000819050919050565b6000613b80613b7b613b768461333e565b613b5b565b61333e565b9050919050565b6000613b9282613b65565b9050919050565b6000613ba482613b87565b9050919050565b613bb481613b99565b82525050565b6000602082019050613bcf6000830184613bab565b92915050565b600080600060608486031215613bee57613bed61347d565b5b6000613bfc86828701613619565b9350506020613c0d868287016134f7565b9250506040613c1e8682870161349e565b9150509250925092565b60008060408385031215613c3f57613c3e61347d565b5b6000613c4d858286016134f7565b9250506020613c5e858286016134f7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613caf57607f821691505b602082108103613cc257613cc1613c68565b5b50919050565b7f4164647265737320646f6573206e6f7420686176652074686520726f6c650000600082015250565b6000613cfe601e836133cc565b9150613d0982613cc8565b602082019050919050565b60006020820190508181036000830152613d2d81613cf1565b9050919050565b613d3d8161354c565b8114613d4857600080fd5b50565b600081519050613d5a81613d34565b92915050565b600060208284031215613d7657613d7561347d565b5b6000613d8484828501613d4b565b91505092915050565b7f546f6b656e207472616e73666572206661696c65640000000000000000000000600082015250565b6000613dc36015836133cc565b9150613dce82613d8d565b602082019050919050565b60006020820190508181036000830152613df281613db6565b9050919050565b600081905092915050565b50565b6000613e14600083613df9565b9150613e1f82613e04565b600082019050919050565b6000613e3582613e07565b9150819050919050565b7f455448207472616e73666572206661696c656400000000000000000000000000600082015250565b6000613e756013836133cc565b9150613e8082613e3f565b602082019050919050565b60006020820190508181036000830152613ea481613e68565b9050919050565b6000608082019050613ec06000830187613bab565b613ecd6020830186613370565b613eda6040830185613389565b613ee76060830184613389565b95945050505050565b7f4f6e6c792041646d696e2063616e206163636573730000000000000000000000600082015250565b6000613f266015836133cc565b9150613f3182613ef0565b602082019050919050565b60006020820190508181036000830152613f5581613f19565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613fc58261337f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ff757613ff6613f8b565b5b600182019050919050565b600061400d8261337f565b91506140188361337f565b92508282019050808211156140305761402f613f8b565b5b92915050565b60008151905061404581613487565b92915050565b6000602082840312156140615761406061347d565b5b600061406f84828501614036565b91505092915050565b7f505a5056313a204e6f7420656e6f75676820546f6b656e730000000000000000600082015250565b60006140ae6018836133cc565b91506140b982614078565b602082019050919050565b600060208201905081810360008301526140dd816140a1565b9050919050565b60006060820190506140f96000830186613370565b6141066020830185613370565b6141136040830184613389565b949350505050565b600060a0820190506141306000830188613bab565b61413d6020830187613370565b61414a6040830186613370565b6141576060830185613389565b6141646080830184613389565b9695505050505050565b60006040820190506141836000830185613370565b6141906020830184613370565b9392505050565b7f505a5056313a20496e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006141cd601d836133cc565b91506141d882614197565b602082019050919050565b600060208201905081810360008301526141fc816141c0565b9050919050565b7f505a5056313a204e6f7420656e6f75676820707a700000000000000000000000600082015250565b60006142396015836133cc565b915061424482614203565b602082019050919050565b600060208201905081810360008301526142688161422c565b9050919050565b7f41646472657373657320616e64205072697a6573206172726179732073686f7560008201527f6c64206265206f6620657175616c206c656e6774680000000000000000000000602082015250565b60006142cb6035836133cc565b91506142d68261426f565b604082019050919050565b600060208201905081810360008301526142fa816142be565b9050919050565b7f416464726573732061727261792063616e277420626520656d70747900000000600082015250565b6000614337601c836133cc565b915061434282614301565b602082019050919050565b600060208201905081810360008301526143668161432a565b9050919050565b7f496e73756666696369656e742062616c616e636520696e20636f6e7472616374600082015250565b60006143a36020836133cc565b91506143ae8261436d565b602082019050919050565b600060208201905081810360008301526143d281614396565b9050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061440f6010836133cc565b915061441a826143d9565b602082019050919050565b6000602082019050818103600083015261443e81614402565b9050919050565b7f6275726e2066726f6d207a65726f000000000000000000000000000000000000600082015250565b600061447b600e836133cc565b915061448682614445565b602082019050919050565b600060208201905081810360008301526144aa8161446e565b9050919050565b7f496e76616c6964206e65772061646d696e206164647265737300000000000000600082015250565b60006144e76019836133cc565b91506144f2826144b1565b602082019050919050565b60006020820190508181036000830152614516816144da565b9050919050565b7f46656573207472616e73666572206661696c6564000000000000000000000000600082015250565b60006145536014836133cc565b915061455e8261451d565b602082019050919050565b6000602082019050818103600083015261458281614546565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006145e56025836133cc565b91506145f082614589565b604082019050919050565b60006020820190508181036000830152614614816145d8565b9050919050565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b60006146516014836133cc565b915061465c8261461b565b602082019050919050565b6000602082019050818103600083015261468081614644565b9050919050565b600060608201905061469c6000830186613bab565b6146a96020830185613370565b6146b66040830184613389565b949350505050565b7f42616c616e636520696e2074686520636f6e7472616374206973206e6f74206560008201527f6e6f756768000000000000000000000000000000000000000000000000000000602082015250565b600061471a6025836133cc565b9150614725826146be565b604082019050919050565b600060208201905081810360008301526147498161470d565b9050919050565b7f4552433230207472616e73666572206661696c65640000000000000000000000600082015250565b60006147866015836133cc565b915061479182614750565b602082019050919050565b600060208201905081810360008301526147b581614779565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006147f2601f836133cc565b91506147fd826147bc565b602082019050919050565b60006020820190508181036000830152614821816147e5565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600061485e601f836133cc565b915061486982614828565b602082019050919050565b6000602082019050818103600083015261488d81614851565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006148f06024836133cc565b91506148fb82614894565b604082019050919050565b6000602082019050818103600083015261491f816148e3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006149826022836133cc565b915061498d82614926565b604082019050919050565b600060208201905081810360008301526149b181614975565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006149ee601d836133cc565b91506149f9826149b8565b602082019050919050565b60006020820190508181036000830152614a1d816149e1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614a806025836133cc565b9150614a8b82614a24565b604082019050919050565b60006020820190508181036000830152614aaf81614a73565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614b126023836133cc565b9150614b1d82614ab6565b604082019050919050565b60006020820190508181036000830152614b4181614b05565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614ba46026836133cc565b9150614baf82614b48565b604082019050919050565b60006020820190508181036000830152614bd381614b97565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c366021836133cc565b9150614c4182614bda565b604082019050919050565b60006020820190508181036000830152614c6581614c29565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000614cc86022836133cc565b9150614cd382614c6c565b604082019050919050565b60006020820190508181036000830152614cf781614cbb565b9050919050565b6000614d098261337f565b9150614d148361337f565b9250828203905081811115614d2c57614d2b613f8b565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea26469706673582212207d3d08e7e512a1b282d9b35735392c871da7ffe30b33f6bee22a5b408e6399ac64736f6c63430008120033