Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
- Contract name:
- RabbitHabit
- Optimization enabled
- true
- Compiler version
- v0.8.20+commit.a1b79de6
- Optimization runs
- 200
- EVM Version
- london
- Verified at
- 2024-05-20T14:11:54.800038Z
Contract source code
// File: @openzeppelin/contracts/utils/ReentrancyGuard.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/ReentrancyGuard.sol) pragma solidity ^0.8.20; /** * @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; /** * @dev Unauthorized reentrant call. */ error ReentrancyGuardReentrantCall(); 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 if (_status == ENTERED) { revert ReentrancyGuardReentrantCall(); } // 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/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/RabbitHabit.sol pragma solidity 0.8.20; /** * @title RabbitHabit * @dev A simple betting contract where players can place bets and receive prizes based on the outcome. */ contract RabbitHabit is Ownable, ReentrancyGuard { using Address for address payable; uint256 private salt; uint256 public minBet; uint256 public maxBet; uint256 public stayBetCoefficient; uint256 public changedBetCoefficient; uint256 public constant COEFFICIENT_DENOMINATOR = 100; uint256 private constant DOORS_COUNT = 3; struct Bet { uint256 blockNumber; uint256 amount; uint256 firstBet; bool isChanged; uint256 salt; address player; } mapping(address => Bet[]) public bets; /** * @dev Emitted when a player places a bet. * @param player The address of the player 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 firstBet The player's initial bet number. * @param isChanged Indicates whether the bet has been changed. */ event BetPlaced( address indexed player, uint256 blockNumber, uint256 amount, uint256 firstBet, bool isChanged, uint256 salt ); /** * @dev Emitted when a player claims their prize. * @param player The address of the player claiming the prize. * @param winAmount The amount of FTN won by the player. */ event PrizeClaimed(address indexed player, uint256 winAmount); modifier notZero(uint256 number) { require(number > 0, "Number must be greater than zero"); _; } constructor() Ownable(msg.sender) { minBet = 1 * 10 ** 18; maxBet = 100 * 10 ** 18; stayBetCoefficient = 300; changedBetCoefficient = 150; } receive() external payable {} /** * @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 stay bet coefficient. * @param _stayBetCoefficient The new stay bet coefficient. */ function setStayBetCoefficient( uint256 _stayBetCoefficient ) external onlyOwner notZero(_stayBetCoefficient) { stayBetCoefficient = _stayBetCoefficient; } /** * @dev Sets the changed bet coefficient. * @param _changedBetCoefficient The new changed bet coefficient. */ function setChangedBetCoefficient( uint256 _changedBetCoefficient ) external onlyOwner notZero(_changedBetCoefficient) { changedBetCoefficient = _changedBetCoefficient; } /** * @dev Allows a player to place a bet. * @param _firstBet The player's initial bet number. * @param _isChanged Indicates whether the bet has been changed. */ function play( uint256 _firstBet, bool _isChanged ) external payable nonReentrant { require( address(this).balance >= (msg.value * stayBetCoefficient) / COEFFICIENT_DENOMINATOR, "Insufficient funds" ); require(_firstBet > 0 && _firstBet < 4, "Incorrect bet number"); require( msg.value >= minBet && msg.value <= maxBet, "Incorrect bet amount" ); bets[msg.sender].push( Bet( block.number, msg.value, _firstBet, _isChanged, salt, msg.sender ) ); emit BetPlaced( msg.sender, block.number, msg.value, _firstBet, _isChanged, salt ); } /** * @dev Allows a player to claim their prize. */ function getPrize() external nonReentrant { 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 Retrieves the bets placed by a player. * @param _player The address of the player. * @return An array of Bet structs representing the player's bets. */ function getBets(address _player) external view returns (Bet[] memory) { return bets[_player]; } /** * @dev Calculates the total prize amount for a player. * @param _player The address of the player. * @return The total prize amount. */ function calculateTotalWin(address _player) public view returns (uint256) { uint256 totalWin; for (uint256 i = 0; i < bets[_player].length; i++) { totalWin += calculateWin(_player, i); } return totalWin; } /** * @dev Calculates the prize amount for a specific bet of a player. * @param _player The address of the player. * @param _betIndex The index of the bet in the player's array of bets. * @return The prize amount for the bet. */ function calculateWin( address _player, uint256 _betIndex ) public view returns (uint256) { Bet storage _bet = bets[_player][_betIndex]; uint256 winNum = getRand(_bet.blockNumber, _bet.salt, _player); if (winNum == 0) { return 0; } else if (_bet.firstBet == winNum && !_bet.isChanged) { return (_bet.amount * stayBetCoefficient) / COEFFICIENT_DENOMINATOR; } else if (_bet.firstBet != winNum && _bet.isChanged) { return (_bet.amount * changedBetCoefficient) / 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. * @param _isChanged A flag indicating whether the bet has been changed. * @return The estimated reward based on the bet amount and coefficients. * @notice This function provides an estimate of the potential reward for a bet * based on the specified amount and whether the bet has been changed. * If the bet has been changed (_isChanged is true), the reward is calculated * using the changed bet coefficient; otherwise, the stay bet coefficient is used. * The estimate does not represent the actual reward claimable by the player. * To claim the actual reward, use the 'getPrize' function after the bet outcome is determined. * @dev The coefficients used for the calculation are set by the contract owner. */ function estimateAvialableReward( uint256 _amount, bool _isChanged ) public view returns (uint256) { if (_isChanged) { return (_amount * changedBetCoefficient) / COEFFICIENT_DENOMINATOR; } else { return (_amount * stayBetCoefficient) / 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, uint256 _salt, address _player ) internal view returns (uint256) { require(block.number > _blockNumber, "Block number out of range"); if (_blockNumber + 250 < block.number) { return 0; } return (uint256( keccak256( abi.encodePacked((blockhash(_blockNumber)), _salt, _player) ) ) % DOORS_COUNT) + 1; } /** * @dev Checks if a bet is a winning bet and calculates the potential prize. * @param _blockHash The hash of the block at which the bet was placed. * @param _firstBetNum The player's initial bet number. * @param _isChanged Indicates whether the bet has been changed. * @param _betAmount The amount of Ether staked in the bet. * @return The potential prize amount based on the bet outcome. * @dev The coefficients used for the calculation are set by the contract owner. */ function checkWin( bytes32 _blockHash, uint256 _firstBetNum, bool _isChanged, uint256 _betAmount, address _player ) external view returns (uint256) { Bet storage _bet = bets[_player][bets[_player].length - 1]; uint256 winNum = (uint256( keccak256(abi.encodePacked(_blockHash, _bet.salt, _player)) ) % DOORS_COUNT) + 1; if (_firstBetNum == winNum && !_isChanged) { return (_betAmount * stayBetCoefficient) / COEFFICIENT_DENOMINATOR; } else if (_firstBetNum != winNum && _isChanged) { return (_betAmount * changedBetCoefficient) / 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":"error","name":"ReentrancyGuardReentrantCall","inputs":[]},{"type":"event","name":"BetPlaced","inputs":[{"type":"address","name":"player","internalType":"address","indexed":true},{"type":"uint256","name":"blockNumber","internalType":"uint256","indexed":false},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false},{"type":"uint256","name":"firstBet","internalType":"uint256","indexed":false},{"type":"bool","name":"isChanged","internalType":"bool","indexed":false},{"type":"uint256","name":"salt","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":"player","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":"firstBet","internalType":"uint256"},{"type":"bool","name":"isChanged","internalType":"bool"},{"type":"uint256","name":"salt","internalType":"uint256"},{"type":"address","name":"player","internalType":"address"}],"name":"bets","inputs":[{"type":"address","name":"","internalType":"address"},{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"calculateTotalWin","inputs":[{"type":"address","name":"_player","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"calculateWin","inputs":[{"type":"address","name":"_player","internalType":"address"},{"type":"uint256","name":"_betIndex","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"changedBetCoefficient","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"checkWin","inputs":[{"type":"bytes32","name":"_blockHash","internalType":"bytes32"},{"type":"uint256","name":"_firstBetNum","internalType":"uint256"},{"type":"bool","name":"_isChanged","internalType":"bool"},{"type":"uint256","name":"_betAmount","internalType":"uint256"},{"type":"address","name":"_player","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"estimateAvialableReward","inputs":[{"type":"uint256","name":"_amount","internalType":"uint256"},{"type":"bool","name":"_isChanged","internalType":"bool"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"tuple[]","name":"","internalType":"struct RabbitHabit.Bet[]","components":[{"type":"uint256","name":"blockNumber","internalType":"uint256"},{"type":"uint256","name":"amount","internalType":"uint256"},{"type":"uint256","name":"firstBet","internalType":"uint256"},{"type":"bool","name":"isChanged","internalType":"bool"},{"type":"uint256","name":"salt","internalType":"uint256"},{"type":"address","name":"player","internalType":"address"}]}],"name":"getBets","inputs":[{"type":"address","name":"_player","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":"_firstBet","internalType":"uint256"},{"type":"bool","name":"_isChanged","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setChangedBetCoefficient","inputs":[{"type":"uint256","name":"_changedBetCoefficient","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":"setStayBetCoefficient","inputs":[{"type":"uint256","name":"_stayBetCoefficient","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"stayBetCoefficient","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"withdrawFTN","inputs":[{"type":"uint256","name":"_amount","internalType":"uint256"}]},{"type":"receive","stateMutability":"payable"}]
Contract Creation Code
0x608060405234801561001057600080fd5b50338061003757604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b6100408161006e565b5060018055670de0b6b3a764000060035568056bc75e2d6310000060045561012c60055560966006556100be565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6110d8806100cd6000396000f3fe60806040526004361061012e5760003560e01c8063881eff1e116100ab578063998724421161006f578063998724421461033c578063b97e707d14610351578063c34f6b0d14610371578063e8d7232514610386578063f2fde38b146103a6578063fb9213ff146103c657600080fd5b8063881eff1e146102a857806388ea41b9146102c85780638da5cb5b146102e85780638e3ae0db146103105780639619367d1461032657600080fd5b80632e5b2168116100f25780632e5b2168146101d85780633a8aa684146101ee5780634a39ec901461020e578063715018a61461026657806381e074ba1461027b57600080fd5b806302f715081461013a57806312508ea414610163578063127cfbe814610178578063268b67d81461019857806327121d74146101b857600080fd5b3661013557005b600080fd5b34801561014657600080fd5b5061015060065481565b6040519081526020015b60405180910390f35b610176610171366004610e39565b6103e6565b005b34801561018457600080fd5b50610176610193366004610e65565b61061e565b3480156101a457600080fd5b506101766101b3366004610e65565b61064d565b3480156101c457600080fd5b506101506101d3366004610e95565b61067c565b3480156101e457600080fd5b5061015060045481565b3480156101fa57600080fd5b50610176610209366004610e65565b61079c565b34801561021a57600080fd5b5061022e610229366004610ee5565b6107b1565b604080519687526020870195909552938501929092521515606084015260808301526001600160a01b031660a082015260c00161015a565b34801561027257600080fd5b50610176610812565b34801561028757600080fd5b5061029b610296366004610f0f565b610826565b60405161015a9190610f2a565b3480156102b457600080fd5b506101766102c3366004610e65565b6108df565b3480156102d457600080fd5b506101766102e3366004610e65565b61090e565b3480156102f457600080fd5b506000546040516001600160a01b03909116815260200161015a565b34801561031c57600080fd5b5061015060055481565b34801561033257600080fd5b5061015060035481565b34801561034857600080fd5b50610150606481565b34801561035d57600080fd5b5061015061036c366004610ee5565b61093d565b34801561037d57600080fd5b50610176610a26565b34801561039257600080fd5b506101506103a1366004610e39565b610adf565b3480156103b257600080fd5b506101766103c1366004610f0f565b610b18565b3480156103d257600080fd5b506101506103e1366004610f0f565b610b53565b6103ee610ba8565b6064600554346103fe9190610fc3565b6104089190610ff0565b4710156104515760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064015b60405180910390fd5b6000821180156104615750600482105b6104a45760405162461bcd60e51b815260206004820152601460248201527324b731b7b93932b1ba103132ba10373ab6b132b960611b6044820152606401610448565b60035434101580156104b857506004543411155b6104fb5760405162461bcd60e51b8152602060048201526014602482015273125b98dbdc9c9958dd0818995d08185b5bdd5b9d60621b6044820152606401610448565b336000818152600760209081526040808320815160c08101835243808252348286018181528386018b81528a151560608601908152600280546080880190815260a088018d8152895460018181018c559a8e529b909c2097516006909b02909701998a559251968901969096555187820155935160038701805491151560ff19909216919091179055915160048601559451600590940180546001600160a01b03959095166001600160a01b0319909516949094179093555490517f0e0d65833a4e590322107211ce07d93f80f59a5617e92157f8d2c69f88ffaac5936106099390929091889188919485526020850193909352604084019190915215156060830152608082015260a00190565b60405180910390a261061a60018055565b5050565b610626610bd2565b80600081116106475760405162461bcd60e51b815260040161044890611004565b50600555565b610655610bd2565b80600081116106765760405162461bcd60e51b815260040161044890611004565b50600655565b6001600160a01b038116600090815260076020526040812080548291906106a590600190611039565b815481106106b5576106b561104c565b90600052602060002090600602019050600060038883600401548660405160200161070593929190928352602083019190915260601b6bffffffffffffffffffffffff1916604082015260540190565b6040516020818303038152906040528051906020012060001c6107289190611062565b610733906001611076565b90508087148015610742575085155b1561076a576064600554866107579190610fc3565b6107619190610ff0565b92505050610793565b8087141580156107775750855b1561078c576064600654866107579190610fc3565b6000925050505b95945050505050565b6107a4610bd2565b6107ae3382610bff565b50565b600760205281600052604060002081815481106107cd57600080fd5b60009182526020909120600690910201805460018201546002830154600384015460048501546005909501549396509194509260ff909116916001600160a01b031686565b61081a610bd2565b6108246000610c9b565b565b6001600160a01b0381166000908152600760209081526040808320805482518185028101850190935280835260609492939192909184015b828210156108d45760008481526020908190206040805160c081018252600686029092018054835260018082015484860152600282015492840192909252600381015460ff161515606084015260048101546080840152600501546001600160a01b031660a0830152908352909201910161085e565b505050509050919050565b6108e7610bd2565b80600081116109085760405162461bcd60e51b815260040161044890611004565b50600455565b610916610bd2565b80600081116109375760405162461bcd60e51b815260040161044890611004565b50600355565b6001600160a01b038216600090815260076020526040812080548291908490811061096a5761096a61104c565b90600052602060002090600602019050600061098f8260000154836004015487610ceb565b9050806000036109a457600092505050610a20565b8082600201541480156109bc5750600382015460ff16155b156109e857606460055483600101546109d59190610fc3565b6109df9190610ff0565b92505050610a20565b80826002015414158015610a005750600382015460ff165b15610a1957606460065483600101546109d59190610fc3565b6000925050505b92915050565b610a2e610ba8565b6000610a3933610b53565b905060008111610a7e5760405162461bcd60e51b815260206004820152601060248201526f2cb7ba903430bb32903737ba103bb4b760811b6044820152606401610448565b336000908152600760205260408120610a9691610dbd565b610aa03382610bff565b60405181815233907f95681e512bc0fe659e195e06c283eada494316f3d801213e48e7101af92bf7709060200160405180910390a25061082460018055565b60008115610b0857606460065484610af79190610fc3565b610b019190610ff0565b9050610a20565b606460055484610af79190610fc3565b610b20610bd2565b6001600160a01b038116610b4a57604051631e4fbdf760e01b815260006004820152602401610448565b6107ae81610c9b565b60008060005b6001600160a01b038416600090815260076020526040902054811015610ba157610b83848261093d565b610b8d9083611076565b915080610b9981611089565b915050610b59565b5092915050565b600260015403610bcb57604051633ee5aeb560e01b815260040160405180910390fd5b6002600155565b6000546001600160a01b031633146108245760405163118cdaa760e01b8152336004820152602401610448565b80471015610c225760405163cd78605960e01b8152306004820152602401610448565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114610c6f576040519150601f19603f3d011682016040523d82523d6000602084013e610c74565b606091505b5050905080610c9657604051630a12f52160e11b815260040160405180910390fd5b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000834311610d3c5760405162461bcd60e51b815260206004820152601960248201527f426c6f636b206e756d626572206f7574206f662072616e6765000000000000006044820152606401610448565b43610d488560fa611076565b1015610d5657506000610db6565b6040805185406020820152908101849052606083811b6bffffffffffffffffffffffff1916908201526003906074016040516020818303038152906040528051906020012060001c610da89190611062565b610db3906001611076565b90505b9392505050565b50805460008255600602906000526020600020908101906107ae91905b80821115610e20576000808255600182018190556002820181905560038201805460ff1916905560048201556005810180546001600160a01b0319169055600601610dda565b5090565b80358015158114610e3457600080fd5b919050565b60008060408385031215610e4c57600080fd5b82359150610e5c60208401610e24565b90509250929050565b600060208284031215610e7757600080fd5b5035919050565b80356001600160a01b0381168114610e3457600080fd5b600080600080600060a08688031215610ead57600080fd5b8535945060208601359350610ec460408701610e24565b925060608601359150610ed960808701610e7e565b90509295509295909350565b60008060408385031215610ef857600080fd5b610f0183610e7e565b946020939093013593505050565b600060208284031215610f2157600080fd5b610db682610e7e565b602080825282518282018190526000919060409081850190868401855b82811015610fa057815180518552868101518786015285810151868601526060808201511515908601526080808201519086015260a0908101516001600160a01b03169085015260c09093019290850190600101610f47565b5091979650505050505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610a2057610a20610fad565b634e487b7160e01b600052601260045260246000fd5b600082610fff57610fff610fda565b500490565b6020808252818101527f4e756d626572206d7573742062652067726561746572207468616e207a65726f604082015260600190565b81810381811115610a2057610a20610fad565b634e487b7160e01b600052603260045260246000fd5b60008261107157611071610fda565b500690565b80820180821115610a2057610a20610fad565b60006001820161109b5761109b610fad565b506001019056fea26469706673582212203dd2753c1016057124bb073bf862693b988133278b394d074c4f39cb551fac5e64736f6c63430008140033
Deployed ByteCode
0x60806040526004361061012e5760003560e01c8063881eff1e116100ab578063998724421161006f578063998724421461033c578063b97e707d14610351578063c34f6b0d14610371578063e8d7232514610386578063f2fde38b146103a6578063fb9213ff146103c657600080fd5b8063881eff1e146102a857806388ea41b9146102c85780638da5cb5b146102e85780638e3ae0db146103105780639619367d1461032657600080fd5b80632e5b2168116100f25780632e5b2168146101d85780633a8aa684146101ee5780634a39ec901461020e578063715018a61461026657806381e074ba1461027b57600080fd5b806302f715081461013a57806312508ea414610163578063127cfbe814610178578063268b67d81461019857806327121d74146101b857600080fd5b3661013557005b600080fd5b34801561014657600080fd5b5061015060065481565b6040519081526020015b60405180910390f35b610176610171366004610e39565b6103e6565b005b34801561018457600080fd5b50610176610193366004610e65565b61061e565b3480156101a457600080fd5b506101766101b3366004610e65565b61064d565b3480156101c457600080fd5b506101506101d3366004610e95565b61067c565b3480156101e457600080fd5b5061015060045481565b3480156101fa57600080fd5b50610176610209366004610e65565b61079c565b34801561021a57600080fd5b5061022e610229366004610ee5565b6107b1565b604080519687526020870195909552938501929092521515606084015260808301526001600160a01b031660a082015260c00161015a565b34801561027257600080fd5b50610176610812565b34801561028757600080fd5b5061029b610296366004610f0f565b610826565b60405161015a9190610f2a565b3480156102b457600080fd5b506101766102c3366004610e65565b6108df565b3480156102d457600080fd5b506101766102e3366004610e65565b61090e565b3480156102f457600080fd5b506000546040516001600160a01b03909116815260200161015a565b34801561031c57600080fd5b5061015060055481565b34801561033257600080fd5b5061015060035481565b34801561034857600080fd5b50610150606481565b34801561035d57600080fd5b5061015061036c366004610ee5565b61093d565b34801561037d57600080fd5b50610176610a26565b34801561039257600080fd5b506101506103a1366004610e39565b610adf565b3480156103b257600080fd5b506101766103c1366004610f0f565b610b18565b3480156103d257600080fd5b506101506103e1366004610f0f565b610b53565b6103ee610ba8565b6064600554346103fe9190610fc3565b6104089190610ff0565b4710156104515760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064015b60405180910390fd5b6000821180156104615750600482105b6104a45760405162461bcd60e51b815260206004820152601460248201527324b731b7b93932b1ba103132ba10373ab6b132b960611b6044820152606401610448565b60035434101580156104b857506004543411155b6104fb5760405162461bcd60e51b8152602060048201526014602482015273125b98dbdc9c9958dd0818995d08185b5bdd5b9d60621b6044820152606401610448565b336000818152600760209081526040808320815160c08101835243808252348286018181528386018b81528a151560608601908152600280546080880190815260a088018d8152895460018181018c559a8e529b909c2097516006909b02909701998a559251968901969096555187820155935160038701805491151560ff19909216919091179055915160048601559451600590940180546001600160a01b03959095166001600160a01b0319909516949094179093555490517f0e0d65833a4e590322107211ce07d93f80f59a5617e92157f8d2c69f88ffaac5936106099390929091889188919485526020850193909352604084019190915215156060830152608082015260a00190565b60405180910390a261061a60018055565b5050565b610626610bd2565b80600081116106475760405162461bcd60e51b815260040161044890611004565b50600555565b610655610bd2565b80600081116106765760405162461bcd60e51b815260040161044890611004565b50600655565b6001600160a01b038116600090815260076020526040812080548291906106a590600190611039565b815481106106b5576106b561104c565b90600052602060002090600602019050600060038883600401548660405160200161070593929190928352602083019190915260601b6bffffffffffffffffffffffff1916604082015260540190565b6040516020818303038152906040528051906020012060001c6107289190611062565b610733906001611076565b90508087148015610742575085155b1561076a576064600554866107579190610fc3565b6107619190610ff0565b92505050610793565b8087141580156107775750855b1561078c576064600654866107579190610fc3565b6000925050505b95945050505050565b6107a4610bd2565b6107ae3382610bff565b50565b600760205281600052604060002081815481106107cd57600080fd5b60009182526020909120600690910201805460018201546002830154600384015460048501546005909501549396509194509260ff909116916001600160a01b031686565b61081a610bd2565b6108246000610c9b565b565b6001600160a01b0381166000908152600760209081526040808320805482518185028101850190935280835260609492939192909184015b828210156108d45760008481526020908190206040805160c081018252600686029092018054835260018082015484860152600282015492840192909252600381015460ff161515606084015260048101546080840152600501546001600160a01b031660a0830152908352909201910161085e565b505050509050919050565b6108e7610bd2565b80600081116109085760405162461bcd60e51b815260040161044890611004565b50600455565b610916610bd2565b80600081116109375760405162461bcd60e51b815260040161044890611004565b50600355565b6001600160a01b038216600090815260076020526040812080548291908490811061096a5761096a61104c565b90600052602060002090600602019050600061098f8260000154836004015487610ceb565b9050806000036109a457600092505050610a20565b8082600201541480156109bc5750600382015460ff16155b156109e857606460055483600101546109d59190610fc3565b6109df9190610ff0565b92505050610a20565b80826002015414158015610a005750600382015460ff165b15610a1957606460065483600101546109d59190610fc3565b6000925050505b92915050565b610a2e610ba8565b6000610a3933610b53565b905060008111610a7e5760405162461bcd60e51b815260206004820152601060248201526f2cb7ba903430bb32903737ba103bb4b760811b6044820152606401610448565b336000908152600760205260408120610a9691610dbd565b610aa03382610bff565b60405181815233907f95681e512bc0fe659e195e06c283eada494316f3d801213e48e7101af92bf7709060200160405180910390a25061082460018055565b60008115610b0857606460065484610af79190610fc3565b610b019190610ff0565b9050610a20565b606460055484610af79190610fc3565b610b20610bd2565b6001600160a01b038116610b4a57604051631e4fbdf760e01b815260006004820152602401610448565b6107ae81610c9b565b60008060005b6001600160a01b038416600090815260076020526040902054811015610ba157610b83848261093d565b610b8d9083611076565b915080610b9981611089565b915050610b59565b5092915050565b600260015403610bcb57604051633ee5aeb560e01b815260040160405180910390fd5b6002600155565b6000546001600160a01b031633146108245760405163118cdaa760e01b8152336004820152602401610448565b80471015610c225760405163cd78605960e01b8152306004820152602401610448565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114610c6f576040519150601f19603f3d011682016040523d82523d6000602084013e610c74565b606091505b5050905080610c9657604051630a12f52160e11b815260040160405180910390fd5b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000834311610d3c5760405162461bcd60e51b815260206004820152601960248201527f426c6f636b206e756d626572206f7574206f662072616e6765000000000000006044820152606401610448565b43610d488560fa611076565b1015610d5657506000610db6565b6040805185406020820152908101849052606083811b6bffffffffffffffffffffffff1916908201526003906074016040516020818303038152906040528051906020012060001c610da89190611062565b610db3906001611076565b90505b9392505050565b50805460008255600602906000526020600020908101906107ae91905b80821115610e20576000808255600182018190556002820181905560038201805460ff1916905560048201556005810180546001600160a01b0319169055600601610dda565b5090565b80358015158114610e3457600080fd5b919050565b60008060408385031215610e4c57600080fd5b82359150610e5c60208401610e24565b90509250929050565b600060208284031215610e7757600080fd5b5035919050565b80356001600160a01b0381168114610e3457600080fd5b600080600080600060a08688031215610ead57600080fd5b8535945060208601359350610ec460408701610e24565b925060608601359150610ed960808701610e7e565b90509295509295909350565b60008060408385031215610ef857600080fd5b610f0183610e7e565b946020939093013593505050565b600060208284031215610f2157600080fd5b610db682610e7e565b602080825282518282018190526000919060409081850190868401855b82811015610fa057815180518552868101518786015285810151868601526060808201511515908601526080808201519086015260a0908101516001600160a01b03169085015260c09093019290850190600101610f47565b5091979650505050505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610a2057610a20610fad565b634e487b7160e01b600052601260045260246000fd5b600082610fff57610fff610fda565b500490565b6020808252818101527f4e756d626572206d7573742062652067726561746572207468616e207a65726f604082015260600190565b81810381811115610a2057610a20610fad565b634e487b7160e01b600052603260045260246000fd5b60008261107157611071610fda565b500690565b80820180821115610a2057610a20610fad565b60006001820161109b5761109b610fad565b506001019056fea26469706673582212203dd2753c1016057124bb073bf862693b988133278b394d074c4f39cb551fac5e64736f6c63430008140033