false
false
0

Contract Address Details

0x8785461DdfF11e87796Bb7c50CFB8E0C8DB54Ce8

Contract Name
SuperMario
Creator
0xc95ce5–f2b68d at 0x6c93eb–6f6e35
Balance
0 FTN ( )
Tokens
Fetching tokens...
Transactions
383 Transactions
Transfers
0 Transfers
Gas Used
40,428,043
Last Balance Update
3575602
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
Contract name:
SuperMario




Optimization enabled
true
Compiler version
v0.8.20+commit.a1b79de6




Optimization runs
200
EVM Version
london




Verified at
2024-05-20T14:13:45.159097Z

Contract source code

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)

pragma solidity ^0.8.20;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error AddressInsufficientBalance(address account);

    /**
     * @dev There's no code at `target` (it is not a contract).
     */
    error AddressEmptyCode(address target);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedInnerCall();

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

        (bool success, ) = recipient.call{value: amount}("");
        if (!success) {
            revert FailedInnerCall();
        }
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert AddressInsufficientBalance(address(this));
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

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

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

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
     * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
     * unsuccessful call.
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata
    ) internal view returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            // only check if target is a contract if the call was successful and the return data is empty
            // otherwise we already know that it was a contract
            if (returndata.length == 0 && target.code.length == 0) {
                revert AddressEmptyCode(target);
            }
            return returndata;
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
     * revert reason or with a default {FailedInnerCall} error.
     */
    function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            return returndata;
        }
    }

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

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


// OpenZeppelin Contracts (last updated v5.0.0) (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;
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


/**
 * @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);
    }
}

// File: contracts/SuperMario.sol


pragma solidity 0.8.20;



/**
 * @title SuperMario
 * @dev A simple betting contract where users can bet on boxes, and if their bet matches the randomly selected box, they win a prize.
 */
contract SuperMario is Ownable {
    using Address for address payable;

    uint256 public minBet;
    uint256 public maxBet;
    uint256 public winCoefficient;
    uint256 public boxesCount;
    uint256 public constant COEFFICIENT_DENOMINATOR = 100;

    struct Bet {
        uint256 blockNumber;
        uint256 amount;
        uint256 betNumber;
    }

    mapping(address => Bet[]) public bets;

    /**
     * @dev Emitted when a user places a bet.
     * @param user The address of the user placing the bet.
     * @param blockNumber The block number at which the bet is placed.
     * @param amount The amount of FTN sent with the bet.
     * @param betNumber The user's selected box number.
     */
    event BetPlaced(
        address indexed user,
        uint256 blockNumber,
        uint256 amount,
        uint256 betNumber
    );

    /**
     * @dev Emitted when a user claims their prize.
     * @param user The address of the user claiming the prize.
     * @param winAmount The amount of FTN won by the user.
     */
    event PrizeClaimed(address indexed user, uint256 winAmount);

    modifier notZero(uint256 number){
        require(number > 0, "Number must be greater than zero");
        _;
    }

    constructor() Ownable(msg.sender) {
        minBet = 1 * 10 ** 17; //todo 18
        maxBet = 100 * 10 ** 17; //todo 18
        boxesCount = 5;
        winCoefficient = boxesCount * COEFFICIENT_DENOMINATOR;
    }

    receive() external payable {}

    /**
     * @dev Retrieves the bets placed by a user.
     * @param _user The address of the user.
     * @return An array of Bet structs representing the user's bets.
     */
    function getBets(address _user) public view returns (Bet[] memory) {
        return bets[_user];
    }

    /**
     * @dev Withdraws the FTN balance from the contract.
     * @param _amount The amount of FTN to withdraw.
     */
    function withdrawFTN(uint256 _amount) external onlyOwner {
        payable(msg.sender).sendValue(_amount);
    }

    /**
     * @dev Sets the minimum bet amount.
     * @param _minBet The new minimum bet amount.
     */
    function setMinBet(uint256 _minBet) external onlyOwner notZero(_minBet) {
        minBet = _minBet;
    }

    /**
     * @dev Sets the maximum bet amount.
     * @param _maxBet The new maximum bet amount.
     */
    function setMaxBet(uint256 _maxBet) external onlyOwner notZero(_maxBet) {
        maxBet = _maxBet;
    }

    /**
     * @dev Sets the win coefficient.
     * @param _winCoefficient The new win coefficient.
     */
    function setWinCoefficient(uint256 _winCoefficient) external onlyOwner notZero(_winCoefficient) {
        winCoefficient = _winCoefficient;
    }

    /**
     * @dev Sets the number of boxes available for betting.
     * @param _boxesCount The new number of boxes.
     */
    function setBoxesCount(uint256 _boxesCount) external onlyOwner notZero(_boxesCount) {
        boxesCount = _boxesCount;
    }

    /**
     * @dev Allows a user to place a bet on a box.
     * @param _betnum The user's selected box number.
     */
    function play(uint256 _betnum) external payable {
        require(
            address(this).balance >=
                (msg.value * winCoefficient) / COEFFICIENT_DENOMINATOR,
            "Insufficient funds"
        );
        require(_betnum > 0 && _betnum <= boxesCount, "Incorrect bet number");
        require(
            msg.value >= minBet && msg.value <= maxBet,
            "Incorrect bet amount"
        );
        bets[msg.sender].push(Bet(block.number, msg.value, _betnum));

        emit BetPlaced(msg.sender, block.number, msg.value, _betnum);
    }

    /**
     * @dev Allows a user to claim their prize.
     */
    function getPrize() external {
        uint256 winAmount = calculateTotalWin(msg.sender);
        require(winAmount > 0, "You have not win");
        delete bets[msg.sender];
        payable(msg.sender).sendValue(winAmount);
        emit PrizeClaimed(msg.sender, winAmount);
    }

    /**
     * @dev Calculates the total prize amount for a user.
     * @param _user The address of the user.
     * @return The total prize amount.
     */
    function calculateTotalWin(address _user) public view returns (uint256) {
        uint256 totalWin;
        for (uint256 i = 0; i < bets[_user].length; i++) {
            totalWin += calculateWin(_user, i);
        }
        return totalWin;
    }

    /**
     * @dev Calculates the prize amount for a specific bet of a user.
     * @param _user The address of the user.
     * @param _betIndex The index of the bet in the user's array of bets.
     * @return The prize amount for the bet.
     */
    function calculateWin(
        address _user,
        uint256 _betIndex
    ) public view returns (uint256) {
        Bet storage _bet = bets[_user][_betIndex];
        uint256 winNum = getRand(_bet.blockNumber);
        if (_bet.betNumber == winNum) {
            return (_bet.amount * winCoefficient) / COEFFICIENT_DENOMINATOR;
        } else {
            return 0;
        }
    }

    /**
     * @dev Estimates the potential reward for a given bet amount.
     * @param _amount The amount of FTN staked in the bet.
     * @return The estimated reward based on the bet amount and the global win coefficient.
     * @notice This function provides an estimate of the potential reward for a bet
     * based on the specified amount and the globally defined win coefficient.
     * The estimate does not represent the actual reward claimable by the user.
     * To claim the actual reward, use the 'getPrize' function after the bet outcome is determined.
     * @dev The win coefficient used for the calculation is set by the contract owner.
     */
    function estimateAvialableReward(uint256 _amount) public view returns(uint256){
        return _amount * winCoefficient / COEFFICIENT_DENOMINATOR;
    }

    /**
     * @dev Generates a pseudo-random number based on a past block's hash.
     * @param _blockNumber The block number to use for randomness.
     * @return The pseudo-random number.
     */
    function getRand(uint256 _blockNumber) internal view returns (uint256) {
        require(block.number > _blockNumber, "Block number out of range");
        return
            (uint256(keccak256(abi.encodePacked((blockhash(_blockNumber))))) %
                boxesCount) + 1;
    }

    function checkWin(bytes32 _blockHash, uint256 betNum, uint256 betAmount) external view returns(uint256){
        uint256 winNum = (uint256(keccak256(abi.encodePacked(_blockHash)))%
                boxesCount) + 1;
        if(winNum == betNum){
            return betAmount * winCoefficient / COEFFICIENT_DENOMINATOR;
        }
        else{
            return 0;
        }
    }
}
        

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[]},{"type":"error","name":"AddressInsufficientBalance","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"error","name":"FailedInnerCall","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":"BetPlaced","inputs":[{"type":"address","name":"user","internalType":"address","indexed":true},{"type":"uint256","name":"blockNumber","internalType":"uint256","indexed":false},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false},{"type":"uint256","name":"betNumber","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":"PrizeClaimed","inputs":[{"type":"address","name":"user","internalType":"address","indexed":true},{"type":"uint256","name":"winAmount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"COEFFICIENT_DENOMINATOR","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"blockNumber","internalType":"uint256"},{"type":"uint256","name":"amount","internalType":"uint256"},{"type":"uint256","name":"betNumber","internalType":"uint256"}],"name":"bets","inputs":[{"type":"address","name":"","internalType":"address"},{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"boxesCount","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"calculateTotalWin","inputs":[{"type":"address","name":"_user","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"calculateWin","inputs":[{"type":"address","name":"_user","internalType":"address"},{"type":"uint256","name":"_betIndex","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"checkWin","inputs":[{"type":"bytes32","name":"_blockHash","internalType":"bytes32"},{"type":"uint256","name":"betNum","internalType":"uint256"},{"type":"uint256","name":"betAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"estimateAvialableReward","inputs":[{"type":"uint256","name":"_amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"tuple[]","name":"","internalType":"struct SuperMario.Bet[]","components":[{"type":"uint256","name":"blockNumber","internalType":"uint256"},{"type":"uint256","name":"amount","internalType":"uint256"},{"type":"uint256","name":"betNumber","internalType":"uint256"}]}],"name":"getBets","inputs":[{"type":"address","name":"_user","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"getPrize","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"maxBet","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"minBet","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"payable","outputs":[],"name":"play","inputs":[{"type":"uint256","name":"_betnum","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setBoxesCount","inputs":[{"type":"uint256","name":"_boxesCount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setMaxBet","inputs":[{"type":"uint256","name":"_maxBet","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setMinBet","inputs":[{"type":"uint256","name":"_minBet","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setWinCoefficient","inputs":[{"type":"uint256","name":"_winCoefficient","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"winCoefficient","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"withdrawFTN","inputs":[{"type":"uint256","name":"_amount","internalType":"uint256"}]},{"type":"receive","stateMutability":"payable"}]
              

Contract Creation Code

Verify & Publish
0x608060405234801561001057600080fd5b50338061003757604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b61004081610074565b5067016345785d8a0000600155678ac7230489e800006002556005600481905561006c906064906100c4565b6003556100ef565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80820281158282048414176100e957634e487b7160e01b600052601160045260246000fd5b92915050565b610d8f806100fe6000396000f3fe60806040526004361061012e5760003560e01c8063881eff1e116100ab578063998724421161006f578063998724421461031f578063b97e707d14610334578063c34f6b0d14610354578063d53a4f1714610369578063f2fde38b14610389578063fb9213ff146103a957600080fd5b8063881eff1e1461028157806388ea41b9146102a15780638da5cb5b146102c157806390e50774146102e95780639619367d1461030957600080fd5b80634a39ec90116100f25780634a39ec90146101db5780635a8c8a4a146102165780636898f82b1461022c578063715018a61461023f57806381e074ba1461025457600080fd5b806310a650711461013a5780632e5b21681461015c578063339d2b50146101855780633a8aa6841461019b5780634024d336146101bb57600080fd5b3661013557005b600080fd5b34801561014657600080fd5b5061015a610155366004610b78565b6103c9565b005b34801561016857600080fd5b5061017260025481565b6040519081526020015b60405180910390f35b34801561019157600080fd5b5061017260045481565b3480156101a757600080fd5b5061015a6101b6366004610b78565b610401565b3480156101c757600080fd5b506101726101d6366004610b78565b610416565b3480156101e757600080fd5b506101fb6101f6366004610bad565b610438565b6040805193845260208401929092529082015260600161017c565b34801561022257600080fd5b5061017260035481565b61015a61023a366004610b78565b61047a565b34801561024b57600080fd5b5061015a61061d565b34801561026057600080fd5b5061027461026f366004610bd7565b610631565b60405161017c9190610bf2565b34801561028d57600080fd5b5061015a61029c366004610b78565b6106c4565b3480156102ad57600080fd5b5061015a6102bc366004610b78565b6106f3565b3480156102cd57600080fd5b506000546040516001600160a01b03909116815260200161017c565b3480156102f557600080fd5b5061015a610304366004610b78565b610722565b34801561031557600080fd5b5061017260015481565b34801561032b57600080fd5b50610172606481565b34801561034057600080fd5b5061017261034f366004610bad565b610751565b34801561036057600080fd5b5061015a6107dc565b34801561037557600080fd5b50610172610384366004610c4b565b610880565b34801561039557600080fd5b5061015a6103a4366004610bd7565b6108ff565b3480156103b557600080fd5b506101726103c4366004610bd7565b61093a565b6103d161098f565b80600081116103fb5760405162461bcd60e51b81526004016103f290610c77565b60405180910390fd5b50600455565b61040961098f565b61041333826109bc565b50565b60006064600354836104289190610cc2565b6104329190610cef565b92915050565b6005602052816000526040600020818154811061045457600080fd5b600091825260209091206003909102018054600182015460029092015490935090915083565b60646003543461048a9190610cc2565b6104949190610cef565b4710156104d85760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016103f2565b6000811180156104ea57506004548111155b61052d5760405162461bcd60e51b815260206004820152601460248201527324b731b7b93932b1ba103132ba10373ab6b132b960611b60448201526064016103f2565b600154341015801561054157506002543411155b6105845760405162461bcd60e51b8152602060048201526014602482015273125b98dbdc9c9958dd0818995d08185b5bdd5b9d60621b60448201526064016103f2565b33600081815260056020908152604080832081516060808201845243808352348387018181528487018b8152865460018082018955978b529989902095516003909a029095019889555194880194909455915160029096019590955582519081529283015281018490527f7363e6581df4db69463222156be4a09656528b9f1302890fa4c0b60819b69fc691015b60405180910390a250565b61062561098f565b61062f6000610a58565b565b6001600160a01b0381166000908152600560209081526040808320805482518185028101850190935280835260609492939192909184015b828210156106b95783829060005260206000209060030201604051806060016040529081600082015481526020016001820154815260200160028201548152505081526020019060010190610669565b505050509050919050565b6106cc61098f565b80600081116106ed5760405162461bcd60e51b81526004016103f290610c77565b50600255565b6106fb61098f565b806000811161071c5760405162461bcd60e51b81526004016103f290610c77565b50600155565b61072a61098f565b806000811161074b5760405162461bcd60e51b81526004016103f290610c77565b50600355565b6001600160a01b038216600090815260056020526040812080548291908490811061077e5761077e610d03565b90600052602060002090600302019050600061079d8260000154610aa8565b9050808260020154036107d157606460035483600101546107be9190610cc2565b6107c89190610cef565b92505050610432565b506000949350505050565b60006107e73361093a565b90506000811161082c5760405162461bcd60e51b815260206004820152601060248201526f2cb7ba903430bb32903737ba103bb4b760811b60448201526064016103f2565b33600090815260056020526040812061084491610b36565b61084e33826109bc565b60405181815233907f95681e512bc0fe659e195e06c283eada494316f3d801213e48e7101af92bf77090602001610612565b6000806004548560405160200161089991815260200190565b6040516020818303038152906040528051906020012060001c6108bc9190610d19565b6108c7906001610d2d565b90508381036108f2576064600354846108e09190610cc2565b6108ea9190610cef565b9150506108f8565b60009150505b9392505050565b61090761098f565b6001600160a01b03811661093157604051631e4fbdf760e01b8152600060048201526024016103f2565b61041381610a58565b60008060005b6001600160a01b0384166000908152600560205260409020548110156109885761096a8482610751565b6109749083610d2d565b91508061098081610d40565b915050610940565b5092915050565b6000546001600160a01b0316331461062f5760405163118cdaa760e01b81523360048201526024016103f2565b804710156109df5760405163cd78605960e01b81523060048201526024016103f2565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114610a2c576040519150601f19603f3d011682016040523d82523d6000602084013e610a31565b606091505b5050905080610a5357604051630a12f52160e11b815260040160405180910390fd5b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000814311610af95760405162461bcd60e51b815260206004820152601960248201527f426c6f636b206e756d626572206f7574206f662072616e67650000000000000060448201526064016103f2565b6004546040805184406020820152016040516020818303038152906040528051906020012060001c610b2b9190610d19565b610432906001610d2d565b508054600082556003029060005260206000209081019061041391905b80821115610b74576000808255600182018190556002820155600301610b53565b5090565b600060208284031215610b8a57600080fd5b5035919050565b80356001600160a01b0381168114610ba857600080fd5b919050565b60008060408385031215610bc057600080fd5b610bc983610b91565b946020939093013593505050565b600060208284031215610be957600080fd5b6108f882610b91565b602080825282518282018190526000919060409081850190868401855b82811015610c3e5781518051855286810151878601528501518585015260609093019290850190600101610c0f565b5091979650505050505050565b600080600060608486031215610c6057600080fd5b505081359360208301359350604090920135919050565b6020808252818101527f4e756d626572206d7573742062652067726561746572207468616e207a65726f604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761043257610432610cac565b634e487b7160e01b600052601260045260246000fd5b600082610cfe57610cfe610cd9565b500490565b634e487b7160e01b600052603260045260246000fd5b600082610d2857610d28610cd9565b500690565b8082018082111561043257610432610cac565b600060018201610d5257610d52610cac565b506001019056fea2646970667358221220dfbc3fc9370dce21ab146ec4c9cfc31fad66c19b4907be0522663d1aec142b3964736f6c63430008140033

Deployed ByteCode

0x60806040526004361061012e5760003560e01c8063881eff1e116100ab578063998724421161006f578063998724421461031f578063b97e707d14610334578063c34f6b0d14610354578063d53a4f1714610369578063f2fde38b14610389578063fb9213ff146103a957600080fd5b8063881eff1e1461028157806388ea41b9146102a15780638da5cb5b146102c157806390e50774146102e95780639619367d1461030957600080fd5b80634a39ec90116100f25780634a39ec90146101db5780635a8c8a4a146102165780636898f82b1461022c578063715018a61461023f57806381e074ba1461025457600080fd5b806310a650711461013a5780632e5b21681461015c578063339d2b50146101855780633a8aa6841461019b5780634024d336146101bb57600080fd5b3661013557005b600080fd5b34801561014657600080fd5b5061015a610155366004610b78565b6103c9565b005b34801561016857600080fd5b5061017260025481565b6040519081526020015b60405180910390f35b34801561019157600080fd5b5061017260045481565b3480156101a757600080fd5b5061015a6101b6366004610b78565b610401565b3480156101c757600080fd5b506101726101d6366004610b78565b610416565b3480156101e757600080fd5b506101fb6101f6366004610bad565b610438565b6040805193845260208401929092529082015260600161017c565b34801561022257600080fd5b5061017260035481565b61015a61023a366004610b78565b61047a565b34801561024b57600080fd5b5061015a61061d565b34801561026057600080fd5b5061027461026f366004610bd7565b610631565b60405161017c9190610bf2565b34801561028d57600080fd5b5061015a61029c366004610b78565b6106c4565b3480156102ad57600080fd5b5061015a6102bc366004610b78565b6106f3565b3480156102cd57600080fd5b506000546040516001600160a01b03909116815260200161017c565b3480156102f557600080fd5b5061015a610304366004610b78565b610722565b34801561031557600080fd5b5061017260015481565b34801561032b57600080fd5b50610172606481565b34801561034057600080fd5b5061017261034f366004610bad565b610751565b34801561036057600080fd5b5061015a6107dc565b34801561037557600080fd5b50610172610384366004610c4b565b610880565b34801561039557600080fd5b5061015a6103a4366004610bd7565b6108ff565b3480156103b557600080fd5b506101726103c4366004610bd7565b61093a565b6103d161098f565b80600081116103fb5760405162461bcd60e51b81526004016103f290610c77565b60405180910390fd5b50600455565b61040961098f565b61041333826109bc565b50565b60006064600354836104289190610cc2565b6104329190610cef565b92915050565b6005602052816000526040600020818154811061045457600080fd5b600091825260209091206003909102018054600182015460029092015490935090915083565b60646003543461048a9190610cc2565b6104949190610cef565b4710156104d85760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016103f2565b6000811180156104ea57506004548111155b61052d5760405162461bcd60e51b815260206004820152601460248201527324b731b7b93932b1ba103132ba10373ab6b132b960611b60448201526064016103f2565b600154341015801561054157506002543411155b6105845760405162461bcd60e51b8152602060048201526014602482015273125b98dbdc9c9958dd0818995d08185b5bdd5b9d60621b60448201526064016103f2565b33600081815260056020908152604080832081516060808201845243808352348387018181528487018b8152865460018082018955978b529989902095516003909a029095019889555194880194909455915160029096019590955582519081529283015281018490527f7363e6581df4db69463222156be4a09656528b9f1302890fa4c0b60819b69fc691015b60405180910390a250565b61062561098f565b61062f6000610a58565b565b6001600160a01b0381166000908152600560209081526040808320805482518185028101850190935280835260609492939192909184015b828210156106b95783829060005260206000209060030201604051806060016040529081600082015481526020016001820154815260200160028201548152505081526020019060010190610669565b505050509050919050565b6106cc61098f565b80600081116106ed5760405162461bcd60e51b81526004016103f290610c77565b50600255565b6106fb61098f565b806000811161071c5760405162461bcd60e51b81526004016103f290610c77565b50600155565b61072a61098f565b806000811161074b5760405162461bcd60e51b81526004016103f290610c77565b50600355565b6001600160a01b038216600090815260056020526040812080548291908490811061077e5761077e610d03565b90600052602060002090600302019050600061079d8260000154610aa8565b9050808260020154036107d157606460035483600101546107be9190610cc2565b6107c89190610cef565b92505050610432565b506000949350505050565b60006107e73361093a565b90506000811161082c5760405162461bcd60e51b815260206004820152601060248201526f2cb7ba903430bb32903737ba103bb4b760811b60448201526064016103f2565b33600090815260056020526040812061084491610b36565b61084e33826109bc565b60405181815233907f95681e512bc0fe659e195e06c283eada494316f3d801213e48e7101af92bf77090602001610612565b6000806004548560405160200161089991815260200190565b6040516020818303038152906040528051906020012060001c6108bc9190610d19565b6108c7906001610d2d565b90508381036108f2576064600354846108e09190610cc2565b6108ea9190610cef565b9150506108f8565b60009150505b9392505050565b61090761098f565b6001600160a01b03811661093157604051631e4fbdf760e01b8152600060048201526024016103f2565b61041381610a58565b60008060005b6001600160a01b0384166000908152600560205260409020548110156109885761096a8482610751565b6109749083610d2d565b91508061098081610d40565b915050610940565b5092915050565b6000546001600160a01b0316331461062f5760405163118cdaa760e01b81523360048201526024016103f2565b804710156109df5760405163cd78605960e01b81523060048201526024016103f2565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114610a2c576040519150601f19603f3d011682016040523d82523d6000602084013e610a31565b606091505b5050905080610a5357604051630a12f52160e11b815260040160405180910390fd5b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000814311610af95760405162461bcd60e51b815260206004820152601960248201527f426c6f636b206e756d626572206f7574206f662072616e67650000000000000060448201526064016103f2565b6004546040805184406020820152016040516020818303038152906040528051906020012060001c610b2b9190610d19565b610432906001610d2d565b508054600082556003029060005260206000209081019061041391905b80821115610b74576000808255600182018190556002820155600301610b53565b5090565b600060208284031215610b8a57600080fd5b5035919050565b80356001600160a01b0381168114610ba857600080fd5b919050565b60008060408385031215610bc057600080fd5b610bc983610b91565b946020939093013593505050565b600060208284031215610be957600080fd5b6108f882610b91565b602080825282518282018190526000919060409081850190868401855b82811015610c3e5781518051855286810151878601528501518585015260609093019290850190600101610c0f565b5091979650505050505050565b600080600060608486031215610c6057600080fd5b505081359360208301359350604090920135919050565b6020808252818101527f4e756d626572206d7573742062652067726561746572207468616e207a65726f604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761043257610432610cac565b634e487b7160e01b600052601260045260246000fd5b600082610cfe57610cfe610cd9565b500490565b634e487b7160e01b600052603260045260246000fd5b600082610d2857610d28610cd9565b500690565b8082018082111561043257610432610cac565b600060018201610d5257610d52610cac565b506001019056fea2646970667358221220dfbc3fc9370dce21ab146ec4c9cfc31fad66c19b4907be0522663d1aec142b3964736f6c63430008140033