false
true
0

Contract Address Details

0xB049555683566bDc729B8EE00F1B191eAc589d89

Contract Name
SKRBurner
Creator
0xcc8732–f753bc at 0x7c3395–3a24a5
Balance
0 PLS ( )
Tokens
Fetching tokens...
Transactions
1 Transactions
Transfers
0 Transfers
Gas Used
0
Last Balance Update
26039962
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
This contract has been verified via Sourcify. View contract in Sourcify repository
Contract name:
SKRBurner




Optimization enabled
false
Compiler version
v0.8.29+commit.ab55807c




EVM Version
paris




Verified at
2026-03-13T11:23:41.534910Z

SKRBurner.sol

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

import "./IPulseX.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

interface ISkyRocket {
    function burn(uint256 _amount) external;
}

interface IERC20 {
    function balanceOf(address account) external view returns (uint256);
}

contract SKRBurner is Ownable {

    IPulseXRouter public pulseXRouter;
    ISkyRocket public skyRocket;

    address public tokenAddress;
    uint256 public burnThreshold;
    uint256 public plsThreshold;

    uint256 public plsBuyBack;
    uint256 public skrBurned;

    event BuybackExecuted(uint256 plsAmount);
    event BurnExecuted(uint256 skrAmount);
    event BurnThresholdUpdated(uint256 newThreshold);
    event PLSThresholdUpdated(uint256 newPLSThreshold);

    constructor() Ownable(msg.sender) {
        pulseXRouter = IPulseXRouter(0x165C3410fC91EF562C50559f7d2289fEbed552d9);
        burnThreshold = 100 * (10**18);
        plsThreshold = 100000 * (10**18);
    }
    function setToken(address _token) external onlyOwner {
        require(_token != address(0), "Invalid token address");
        tokenAddress = _token;
        skyRocket = ISkyRocket(_token);
    }
    function checkAndBurn() public {
        uint256 balance = IERC20(tokenAddress).balanceOf(address(this));
        if (balance >= burnThreshold) {
            skyRocket.burn(balance);
            skrBurned += balance;
            emit BurnExecuted(balance);
        }
    }

    function setThreshold(uint256 _threshold) external onlyOwner {
        burnThreshold = _threshold;
        emit BurnThresholdUpdated(_threshold);
    }

    function setPLSthreshold(uint256 _plsthreshold) external onlyOwner {
        plsThreshold = _plsthreshold;
        emit PLSThresholdUpdated(_plsthreshold);
    }

    function buybackSkyRocket(uint256 PLSAmount) internal {
        address[] memory path = new address[](2);
        path[0] = pulseXRouter.WPLS();
        path[1] = address(skyRocket);

        pulseXRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: PLSAmount}(
            0,
            path,
            address(this),
            block.timestamp
        );
        plsBuyBack += PLSAmount;
        emit BuybackExecuted(PLSAmount);
    }

    receive() external payable {
        uint256 plsBalance = address(this).balance;
        if (plsBalance >= plsThreshold) {
            buybackSkyRocket(plsBalance);
            checkAndBurn();
        }
    }
}
        

/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

interface IPulseXFactory {
   function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IPulseXRouter {
   function factory() external pure returns (address);
   function WPLS() external pure returns (address);
   function addLiquidityETH(address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline) external payable returns (uint amountToken, uint amountETH, uint liquidity);
   function addLiquidity(address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline) external returns (uint amountA, uint amountB, uint liquidity);
   function removeLiquidityETHSupportingFeeOnTransferTokens(address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to,uint deadline) external returns (uint amountETH);
   function removeLiquidity(address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline) external returns (uint amountA, uint amountB);
   function swapExactTokensForETHSupportingFeeOnTransferTokens(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external;
   function swapExactETHForTokensSupportingFeeOnTransferTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable;
}

interface PulseXPair {
   function token0() external pure returns (address);
   function token1() external pure returns (address);
}
          

/

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

pragma solidity ^0.8.20;

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

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

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

/

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

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

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

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

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

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

Compiler Settings

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

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[]},{"type":"error","name":"OwnableInvalidOwner","inputs":[{"type":"address","name":"owner","internalType":"address"}]},{"type":"error","name":"OwnableUnauthorizedAccount","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"event","name":"BurnExecuted","inputs":[{"type":"uint256","name":"skrAmount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"BurnThresholdUpdated","inputs":[{"type":"uint256","name":"newThreshold","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"BuybackExecuted","inputs":[{"type":"uint256","name":"plsAmount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"PLSThresholdUpdated","inputs":[{"type":"uint256","name":"newPLSThreshold","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"burnThreshold","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"checkAndBurn","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"plsBuyBack","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"plsThreshold","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IPulseXRouter"}],"name":"pulseXRouter","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setPLSthreshold","inputs":[{"type":"uint256","name":"_plsthreshold","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setThreshold","inputs":[{"type":"uint256","name":"_threshold","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setToken","inputs":[{"type":"address","name":"_token","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"skrBurned","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract ISkyRocket"}],"name":"skyRocket","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"tokenAddress","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"receive","stateMutability":"payable"}]
              

Contract Creation Code

0x608060405234801561001057600080fd5b5033600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036100845760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161007b9190610214565b60405180910390fd5b6100938161010f60201b60201c565b5073165c3410fc91ef562c50559f7d2289febed552d9600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555068056bc75e2d6310000060048190555069152d02c7e14af680000060058190555061022f565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006101fe826101d3565b9050919050565b61020e816101f3565b82525050565b60006020820190506102296000830184610205565b92915050565b6110b08061023e6000396000f3fe6080604052600436106100e15760003560e01c80639d76ea581161007f578063b3c9479011610059578063b3c94790146102a3578063d878032c146102ce578063de176576146102e5578063f2fde38b1461030e57610108565b80639d76ea5814610222578063aec9b6f41461024d578063b0bb52651461027857610108565b80634f6d38d0116100bb5780634f6d38d01461018c578063715018a6146101b75780638da5cb5b146101ce578063960bfe04146101f957610108565b8063144fa6d71461010d5780631a432c67146101365780633c01b91d1461016157610108565b366101085760004790506005548110610106576100fd81610337565b6101056105be565b5b005b600080fd5b34801561011957600080fd5b50610134600480360381019061012f9190610bd9565b610748565b005b34801561014257600080fd5b5061014b610844565b6040516101589190610c1f565b60405180910390f35b34801561016d57600080fd5b5061017661084a565b6040516101839190610c99565b60405180910390f35b34801561019857600080fd5b506101a1610870565b6040516101ae9190610c1f565b60405180910390f35b3480156101c357600080fd5b506101cc610876565b005b3480156101da57600080fd5b506101e361088a565b6040516101f09190610cc3565b60405180910390f35b34801561020557600080fd5b50610220600480360381019061021b9190610d0a565b6108b3565b005b34801561022e57600080fd5b506102376108fc565b6040516102449190610cc3565b60405180910390f35b34801561025957600080fd5b50610262610922565b60405161026f9190610d58565b60405180910390f35b34801561028457600080fd5b5061028d610948565b60405161029a9190610c1f565b60405180910390f35b3480156102af57600080fd5b506102b861094e565b6040516102c59190610c1f565b60405180910390f35b3480156102da57600080fd5b506102e36105be565b005b3480156102f157600080fd5b5061030c60048036038101906103079190610d0a565b610954565b005b34801561031a57600080fd5b5061033560048036038101906103309190610bd9565b61099d565b005b6000600267ffffffffffffffff81111561035457610353610d73565b5b6040519080825280602002602001820160405280156103825781602001602082028036833780820191505090505b509050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ef8ef56f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156103f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104169190610db7565b8160008151811061042a57610429610de4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160018151811061049b5761049a610de4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b6f9de958360008430426040518663ffffffff1660e01b81526004016105389493929190610f0c565b6000604051808303818588803b15801561055157600080fd5b505af1158015610565573d6000803e3d6000fd5b5050505050816006600082825461057c9190610f87565b925050819055507fd2c5a6b66fbd4c28346666274dd95b77fd31d5c730deb119439b2b5482deafc9826040516105b29190610c1f565b60405180910390a15050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161061b9190610cc3565b602060405180830381865afa158015610638573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061065c9190610fd0565b9050600454811061074557600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342966c68826040518263ffffffff1660e01b81526004016106c29190610c1f565b600060405180830381600087803b1580156106dc57600080fd5b505af11580156106f0573d6000803e3d6000fd5b5050505080600760008282546107069190610f87565b925050819055507f605c5b4f4308c1e42a024db1dc59389917ccc2058e83a1f6b672d8d60d12d7e18160405161073c9190610c1f565b60405180910390a15b50565b610750610a23565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b69061105a565b60405180910390fd5b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60065481565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60045481565b61087e610a23565b6108886000610aaa565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6108bb610a23565b806004819055507fa017480f971ee85b226e988ee18c9fb8836d1f79433c59946431949bf4cfff2d816040516108f19190610c1f565b60405180910390a150565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60055481565b60075481565b61095c610a23565b806005819055507f1a48f780716730a1afc6de6a581a059a3dceb18ad6474f8953aeb8e299b04ea3816040516109929190610c1f565b60405180910390a150565b6109a5610a23565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a175760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610a0e9190610cc3565b60405180910390fd5b610a2081610aaa565b50565b610a2b610b6e565b73ffffffffffffffffffffffffffffffffffffffff16610a4961088a565b73ffffffffffffffffffffffffffffffffffffffff1614610aa857610a6c610b6e565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610a9f9190610cc3565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610ba682610b7b565b9050919050565b610bb681610b9b565b8114610bc157600080fd5b50565b600081359050610bd381610bad565b92915050565b600060208284031215610bef57610bee610b76565b5b6000610bfd84828501610bc4565b91505092915050565b6000819050919050565b610c1981610c06565b82525050565b6000602082019050610c346000830184610c10565b92915050565b6000819050919050565b6000610c5f610c5a610c5584610b7b565b610c3a565b610b7b565b9050919050565b6000610c7182610c44565b9050919050565b6000610c8382610c66565b9050919050565b610c9381610c78565b82525050565b6000602082019050610cae6000830184610c8a565b92915050565b610cbd81610b9b565b82525050565b6000602082019050610cd86000830184610cb4565b92915050565b610ce781610c06565b8114610cf257600080fd5b50565b600081359050610d0481610cde565b92915050565b600060208284031215610d2057610d1f610b76565b5b6000610d2e84828501610cf5565b91505092915050565b6000610d4282610c66565b9050919050565b610d5281610d37565b82525050565b6000602082019050610d6d6000830184610d49565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050610db181610bad565b92915050565b600060208284031215610dcd57610dcc610b76565b5b6000610ddb84828501610da2565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000610e38610e33610e2e84610e13565b610c3a565b610c06565b9050919050565b610e4881610e1d565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b610e8381610b9b565b82525050565b6000610e958383610e7a565b60208301905092915050565b6000602082019050919050565b6000610eb982610e4e565b610ec38185610e59565b9350610ece83610e6a565b8060005b83811015610eff578151610ee68882610e89565b9750610ef183610ea1565b925050600181019050610ed2565b5085935050505092915050565b6000608082019050610f216000830187610e3f565b8181036020830152610f338186610eae565b9050610f426040830185610cb4565b610f4f6060830184610c10565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610f9282610c06565b9150610f9d83610c06565b9250828201905080821115610fb557610fb4610f58565b5b92915050565b600081519050610fca81610cde565b92915050565b600060208284031215610fe657610fe5610b76565b5b6000610ff484828501610fbb565b91505092915050565b600082825260208201905092915050565b7f496e76616c696420746f6b656e20616464726573730000000000000000000000600082015250565b6000611044601583610ffd565b915061104f8261100e565b602082019050919050565b6000602082019050818103600083015261107381611037565b905091905056fea264697066735822122018f5a2c11fe6f269c1c84c4a60c6cd04e2f0c3c9f1a4e1ea67144635b1e0760664736f6c634300081d0033

Deployed ByteCode

0x6080604052600436106100e15760003560e01c80639d76ea581161007f578063b3c9479011610059578063b3c94790146102a3578063d878032c146102ce578063de176576146102e5578063f2fde38b1461030e57610108565b80639d76ea5814610222578063aec9b6f41461024d578063b0bb52651461027857610108565b80634f6d38d0116100bb5780634f6d38d01461018c578063715018a6146101b75780638da5cb5b146101ce578063960bfe04146101f957610108565b8063144fa6d71461010d5780631a432c67146101365780633c01b91d1461016157610108565b366101085760004790506005548110610106576100fd81610337565b6101056105be565b5b005b600080fd5b34801561011957600080fd5b50610134600480360381019061012f9190610bd9565b610748565b005b34801561014257600080fd5b5061014b610844565b6040516101589190610c1f565b60405180910390f35b34801561016d57600080fd5b5061017661084a565b6040516101839190610c99565b60405180910390f35b34801561019857600080fd5b506101a1610870565b6040516101ae9190610c1f565b60405180910390f35b3480156101c357600080fd5b506101cc610876565b005b3480156101da57600080fd5b506101e361088a565b6040516101f09190610cc3565b60405180910390f35b34801561020557600080fd5b50610220600480360381019061021b9190610d0a565b6108b3565b005b34801561022e57600080fd5b506102376108fc565b6040516102449190610cc3565b60405180910390f35b34801561025957600080fd5b50610262610922565b60405161026f9190610d58565b60405180910390f35b34801561028457600080fd5b5061028d610948565b60405161029a9190610c1f565b60405180910390f35b3480156102af57600080fd5b506102b861094e565b6040516102c59190610c1f565b60405180910390f35b3480156102da57600080fd5b506102e36105be565b005b3480156102f157600080fd5b5061030c60048036038101906103079190610d0a565b610954565b005b34801561031a57600080fd5b5061033560048036038101906103309190610bd9565b61099d565b005b6000600267ffffffffffffffff81111561035457610353610d73565b5b6040519080825280602002602001820160405280156103825781602001602082028036833780820191505090505b509050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ef8ef56f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156103f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104169190610db7565b8160008151811061042a57610429610de4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160018151811061049b5761049a610de4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b6f9de958360008430426040518663ffffffff1660e01b81526004016105389493929190610f0c565b6000604051808303818588803b15801561055157600080fd5b505af1158015610565573d6000803e3d6000fd5b5050505050816006600082825461057c9190610f87565b925050819055507fd2c5a6b66fbd4c28346666274dd95b77fd31d5c730deb119439b2b5482deafc9826040516105b29190610c1f565b60405180910390a15050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161061b9190610cc3565b602060405180830381865afa158015610638573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061065c9190610fd0565b9050600454811061074557600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342966c68826040518263ffffffff1660e01b81526004016106c29190610c1f565b600060405180830381600087803b1580156106dc57600080fd5b505af11580156106f0573d6000803e3d6000fd5b5050505080600760008282546107069190610f87565b925050819055507f605c5b4f4308c1e42a024db1dc59389917ccc2058e83a1f6b672d8d60d12d7e18160405161073c9190610c1f565b60405180910390a15b50565b610750610a23565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b69061105a565b60405180910390fd5b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60065481565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60045481565b61087e610a23565b6108886000610aaa565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6108bb610a23565b806004819055507fa017480f971ee85b226e988ee18c9fb8836d1f79433c59946431949bf4cfff2d816040516108f19190610c1f565b60405180910390a150565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60055481565b60075481565b61095c610a23565b806005819055507f1a48f780716730a1afc6de6a581a059a3dceb18ad6474f8953aeb8e299b04ea3816040516109929190610c1f565b60405180910390a150565b6109a5610a23565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a175760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610a0e9190610cc3565b60405180910390fd5b610a2081610aaa565b50565b610a2b610b6e565b73ffffffffffffffffffffffffffffffffffffffff16610a4961088a565b73ffffffffffffffffffffffffffffffffffffffff1614610aa857610a6c610b6e565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610a9f9190610cc3565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610ba682610b7b565b9050919050565b610bb681610b9b565b8114610bc157600080fd5b50565b600081359050610bd381610bad565b92915050565b600060208284031215610bef57610bee610b76565b5b6000610bfd84828501610bc4565b91505092915050565b6000819050919050565b610c1981610c06565b82525050565b6000602082019050610c346000830184610c10565b92915050565b6000819050919050565b6000610c5f610c5a610c5584610b7b565b610c3a565b610b7b565b9050919050565b6000610c7182610c44565b9050919050565b6000610c8382610c66565b9050919050565b610c9381610c78565b82525050565b6000602082019050610cae6000830184610c8a565b92915050565b610cbd81610b9b565b82525050565b6000602082019050610cd86000830184610cb4565b92915050565b610ce781610c06565b8114610cf257600080fd5b50565b600081359050610d0481610cde565b92915050565b600060208284031215610d2057610d1f610b76565b5b6000610d2e84828501610cf5565b91505092915050565b6000610d4282610c66565b9050919050565b610d5281610d37565b82525050565b6000602082019050610d6d6000830184610d49565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050610db181610bad565b92915050565b600060208284031215610dcd57610dcc610b76565b5b6000610ddb84828501610da2565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000610e38610e33610e2e84610e13565b610c3a565b610c06565b9050919050565b610e4881610e1d565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b610e8381610b9b565b82525050565b6000610e958383610e7a565b60208301905092915050565b6000602082019050919050565b6000610eb982610e4e565b610ec38185610e59565b9350610ece83610e6a565b8060005b83811015610eff578151610ee68882610e89565b9750610ef183610ea1565b925050600181019050610ed2565b5085935050505092915050565b6000608082019050610f216000830187610e3f565b8181036020830152610f338186610eae565b9050610f426040830185610cb4565b610f4f6060830184610c10565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610f9282610c06565b9150610f9d83610c06565b9250828201905080821115610fb557610fb4610f58565b5b92915050565b600081519050610fca81610cde565b92915050565b600060208284031215610fe657610fe5610b76565b5b6000610ff484828501610fbb565b91505092915050565b600082825260208201905092915050565b7f496e76616c696420746f6b656e20616464726573730000000000000000000000600082015250565b6000611044601583610ffd565b915061104f8261100e565b602082019050919050565b6000602082019050818103600083015261107381611037565b905091905056fea264697066735822122018f5a2c11fe6f269c1c84c4a60c6cd04e2f0c3c9f1a4e1ea67144635b1e0760664736f6c634300081d0033