Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
- Contract name:
- SuperFirst
- Optimization enabled
- true
- Compiler version
- v0.8.20+commit.a1b79de6
- Optimization runs
- 200
- EVM Version
- london
- Verified at
- 2024-05-20T14:09:11.058228Z
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/SuperFirst.sol pragma solidity 0.8.20; /** * @title SuperFirst * @dev A simple betting contract where players can bet on boxes, and if their bet matches the randomly selected box, they win a prize. */ contract SuperFirst is Ownable, ReentrancyGuard { using Address for address payable; uint256 private salt; uint256 public minBet; uint256 public maxBet; uint256 public winCoefficient; uint256 public numberOfBoxes; uint256 public constant COEFFICIENT_DENOMINATOR = 100; struct Bet { uint256 blockNumber; uint256 amount; uint256 boxNumber; 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 boxNumber The player's selected box number. */ event BetPlaced( address indexed player, uint256 blockNumber, uint256 amount, uint256 boxNumber, 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 = 10 * 10 ** 18; numberOfBoxes = 5; winCoefficient = numberOfBoxes * COEFFICIENT_DENOMINATOR; } 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 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 _numberOfBoxes The new number of boxes. */ function setNumberOfBoxes( uint256 _numberOfBoxes ) external onlyOwner notZero(_numberOfBoxes) { numberOfBoxes = _numberOfBoxes; } /** * @dev Allows a player to place a bet on a box. * @param _boxNumber The player's selected box number. */ function play(uint256 _boxNumber) external payable nonReentrant { require( address(this).balance >= (msg.value * winCoefficient) / COEFFICIENT_DENOMINATOR, "Insufficient funds" ); require( _boxNumber > 0 && _boxNumber <= numberOfBoxes, "Incorrect bet number" ); require( msg.value >= minBet && msg.value <= maxBet, "Incorrect bet amount" ); bets[msg.sender].push( Bet(block.number, msg.value, _boxNumber, salt, msg.sender) ); emit BetPlaced(msg.sender, block.number, msg.value, _boxNumber, salt); salt++; } /** * @dev Allows a player to claim their prize. */ function getPrize() external nonReentrant { uint256 winAmount = calculateTotalWin(msg.sender); require(winAmount > 0, "You have not won"); 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 getPlayerBets( 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 for player's specific bet. * @param _player The address of the player. * @param _betIndex The index of the bet in the player's array of bets. * @return The amount of prize 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 (_bet.boxNumber == 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 of bet and the win coefficient stated in this smart contract. * The estimate does not represent the actual reward claimable by the player. * To claim the actual reward, use the 'getPrize' function after the bet's outcome is determined. * @dev The win coefficient used for the calculation is set by the contract owner. */ function estimatePotentialReward( uint256 _amount ) public view returns (uint256) { return (_amount * winCoefficient) / COEFFICIENT_DENOMINATOR; } /** * @dev Generates a random number based on the hash of the past block. * @param _blockNumber The block number to use for generation of a random number. * @return The random number. */ function getRand( uint256 _blockNumber, uint256 _salt, address _player ) internal view returns (uint256) { require(block.number > _blockNumber, "Block number is out of range"); if (_blockNumber + 250 < block.number) { return 0; } return (uint256( keccak256( abi.encodePacked((blockhash(_blockNumber)), _salt, _player) ) ) % numberOfBoxes) + 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 _boxNumber The player's selected box number. * @param _betAmount The amount of FTN staked in the bet. * @return The potential prize based on the bet outcome. * @dev The win coefficient used for the calculation is set by the contract owner. */ function checkGameResult( bytes32 _blockHash, uint256 _boxNumber, 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)) ) % numberOfBoxes) + 1; if (winNum == _boxNumber) { 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":"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":"boxNumber","internalType":"uint256","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":"boxNumber","internalType":"uint256"},{"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":"checkGameResult","inputs":[{"type":"bytes32","name":"_blockHash","internalType":"bytes32"},{"type":"uint256","name":"_boxNumber","internalType":"uint256"},{"type":"uint256","name":"_betAmount","internalType":"uint256"},{"type":"address","name":"_player","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"estimatePotentialReward","inputs":[{"type":"uint256","name":"_amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"tuple[]","name":"","internalType":"struct SuperFirst.Bet[]","components":[{"type":"uint256","name":"blockNumber","internalType":"uint256"},{"type":"uint256","name":"amount","internalType":"uint256"},{"type":"uint256","name":"boxNumber","internalType":"uint256"},{"type":"uint256","name":"salt","internalType":"uint256"},{"type":"address","name":"player","internalType":"address"}]}],"name":"getPlayerBets","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":"uint256","name":"","internalType":"uint256"}],"name":"numberOfBoxes","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":"_boxNumber","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"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":"setNumberOfBoxes","inputs":[{"type":"uint256","name":"_numberOfBoxes","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
0x608060405234801561001057600080fd5b50338061003757604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b61004081610078565b5060018055670de0b6b3a7640000600355678ac7230489e8000060045560056006819055610070906064906100c8565b6005556100f3565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80820281158282048414176100ed57634e487b7160e01b600052601160045260246000fd5b92915050565b610f94806101026000396000f3fe60806040526004361061012e5760003560e01c806388ea41b9116100ab578063b97e707d1161006f578063b97e707d14610327578063c34f6b0d14610347578063e9d5e3ad1461035c578063eaf07c8c14610372578063f2fde38b1461039f578063fb9213ff146103bf57600080fd5b806388ea41b9146102945780638da5cb5b146102b457806390e50774146102dc5780639619367d146102fc578063998724421461031257600080fd5b80635a8c8a4a116100f25780635a8c8a4a1461021657806365f05d861461022c5780636898f82b1461024c578063715018a61461025f578063881eff1e1461027457600080fd5b80630f69632c1461013a57806319706f711461015c5780632e5b21681461018f5780633a8aa684146101a55780634a39ec90146101c557600080fd5b3661013557005b600080fd5b34801561014657600080fd5b5061015a610155366004610d39565b6103df565b005b34801561016857600080fd5b5061017c610177366004610d6e565b610417565b6040519081526020015b60405180910390f35b34801561019b57600080fd5b5061017c60045481565b3480156101b157600080fd5b5061015a6101c0366004610d39565b61050a565b3480156101d157600080fd5b506101e56101e0366004610dad565b61051f565b6040805195865260208601949094529284019190915260608301526001600160a01b0316608082015260a001610186565b34801561022257600080fd5b5061017c60055481565b34801561023857600080fd5b5061017c610247366004610d39565b610576565b61015a61025a366004610d39565b610598565b34801561026b57600080fd5b5061015a6107a4565b34801561028057600080fd5b5061015a61028f366004610d39565b6107b8565b3480156102a057600080fd5b5061015a6102af366004610d39565b6107e7565b3480156102c057600080fd5b506000546040516001600160a01b039091168152602001610186565b3480156102e857600080fd5b5061015a6102f7366004610d39565b610816565b34801561030857600080fd5b5061017c60035481565b34801561031e57600080fd5b5061017c606481565b34801561033357600080fd5b5061017c610342366004610dad565b610845565b34801561035357600080fd5b5061015a6108d6565b34801561036857600080fd5b5061017c60065481565b34801561037e57600080fd5b5061039261038d366004610dd7565b61098f565b6040516101869190610df2565b3480156103ab57600080fd5b5061015a6103ba366004610dd7565b610a39565b3480156103cb57600080fd5b5061017c6103da366004610dd7565b610a74565b6103e7610ac9565b80600081116104115760405162461bcd60e51b815260040161040890610e69565b60405180910390fd5b50600655565b6001600160a01b0381166000908152600760205260408120805482919061044090600190610eb4565b8154811061045057610450610ec7565b906000526020600020906005020190506000600654878360030154866040516020016104a193929190928352602083019190915260601b6bffffffffffffffffffffffff1916604082015260540190565b6040516020818303038152906040528051906020012060001c6104c49190610ef3565b6104cf906001610f07565b90508581036104fb576064600554866104e89190610f1a565b6104f29190610f31565b92505050610502565b6000925050505b949350505050565b610512610ac9565b61051c3382610af6565b50565b6007602052816000526040600020818154811061053b57600080fd5b60009182526020909120600590910201805460018201546002830154600384015460049094015492955090935091906001600160a01b031685565b60006064600554836105889190610f1a565b6105929190610f31565b92915050565b6105a0610b92565b6064600554346105b09190610f1a565b6105ba9190610f31565b4710156105fe5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610408565b60008111801561061057506006548111155b6106535760405162461bcd60e51b815260206004820152601460248201527324b731b7b93932b1ba103132ba10373ab6b132b960611b6044820152606401610408565b600354341015801561066757506004543411155b6106aa5760405162461bcd60e51b8152602060048201526014602482015273125b98dbdc9c9958dd0818995d08185b5bdd5b9d60621b6044820152606401610408565b336000818152600760209081526040808320815160a08101835243808252348286018181528386018a815260028054606080880191825260808089018e81528a5460018082018d559b8f529d8d902099516005909e029099019c8d559451988c019890985591518a820155905160038a01559351600490980180546001600160a01b0319166001600160a01b039099169890981790975591548451918252948101919091529182018690528101919091527f935a8686694e2b5cc90f63054b327255f6fb92db3acd6d98c5a707d4987e93e1910160405180910390a26002805490600061079683610f45565b919050555061051c60018055565b6107ac610ac9565b6107b66000610bbc565b565b6107c0610ac9565b80600081116107e15760405162461bcd60e51b815260040161040890610e69565b50600455565b6107ef610ac9565b80600081116108105760405162461bcd60e51b815260040161040890610e69565b50600355565b61081e610ac9565b806000811161083f5760405162461bcd60e51b815260040161040890610e69565b50600555565b6001600160a01b038216600090815260076020526040812080548291908490811061087257610872610ec7565b9060005260206000209060050201905060006108978260000154836003015487610c0c565b9050808260020154036108cb57606460055483600101546108b89190610f1a565b6108c29190610f31565b92505050610592565b506000949350505050565b6108de610b92565b60006108e933610a74565b90506000811161092e5760405162461bcd60e51b815260206004820152601060248201526f2cb7ba903430bb32903737ba103bb7b760811b6044820152606401610408565b33600090815260076020526040812061094691610cde565b6109503382610af6565b60405181815233907f95681e512bc0fe659e195e06c283eada494316f3d801213e48e7101af92bf7709060200160405180910390a2506107b660018055565b6001600160a01b0381166000908152600760209081526040808320805482518185028101850190935280835260609492939192909184015b82821015610a2e5760008481526020908190206040805160a08101825260058602909201805483526001808201548486015260028201549284019290925260038101546060840152600401546001600160a01b0316608083015290835290920191016109c7565b505050509050919050565b610a41610ac9565b6001600160a01b038116610a6b57604051631e4fbdf760e01b815260006004820152602401610408565b61051c81610bbc565b60008060005b6001600160a01b038416600090815260076020526040902054811015610ac257610aa48482610845565b610aae9083610f07565b915080610aba81610f45565b915050610a7a565b5092915050565b6000546001600160a01b031633146107b65760405163118cdaa760e01b8152336004820152602401610408565b80471015610b195760405163cd78605960e01b8152306004820152602401610408565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114610b66576040519150601f19603f3d011682016040523d82523d6000602084013e610b6b565b606091505b5050905080610b8d57604051630a12f52160e11b815260040160405180910390fd5b505050565b600260015403610bb557604051633ee5aeb560e01b815260040160405180910390fd5b6002600155565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000834311610c5d5760405162461bcd60e51b815260206004820152601c60248201527f426c6f636b206e756d626572206973206f7574206f662072616e6765000000006044820152606401610408565b43610c698560fa610f07565b1015610c7757506000610cd7565b6006546040805186406020820152908101859052606084811b6bffffffffffffffffffffffff1916908201526074016040516020818303038152906040528051906020012060001c610cc99190610ef3565b610cd4906001610f07565b90505b9392505050565b508054600082556005029060005260206000209081019061051c91905b80821115610d35576000808255600182018190556002820181905560038201556004810180546001600160a01b0319169055600501610cfb565b5090565b600060208284031215610d4b57600080fd5b5035919050565b80356001600160a01b0381168114610d6957600080fd5b919050565b60008060008060808587031215610d8457600080fd5b843593506020850135925060408501359150610da260608601610d52565b905092959194509250565b60008060408385031215610dc057600080fd5b610dc983610d52565b946020939093013593505050565b600060208284031215610de957600080fd5b610cd782610d52565b602080825282518282018190526000919060409081850190868401855b82811015610e5c5781518051855286810151878601528581015186860152606080820151908601526080908101516001600160a01b03169085015260a09093019290850190600101610e0f565b5091979650505050505050565b6020808252818101527f4e756d626572206d7573742062652067726561746572207468616e207a65726f604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8181038181111561059257610592610e9e565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601260045260246000fd5b600082610f0257610f02610edd565b500690565b8082018082111561059257610592610e9e565b808202811582820484141761059257610592610e9e565b600082610f4057610f40610edd565b500490565b600060018201610f5757610f57610e9e565b506001019056fea264697066735822122080cae829789a046413b7fbe2915ff48b87e6c9d6fa9af398c72420e4ee500c3064736f6c63430008140033
Deployed ByteCode
0x60806040526004361061012e5760003560e01c806388ea41b9116100ab578063b97e707d1161006f578063b97e707d14610327578063c34f6b0d14610347578063e9d5e3ad1461035c578063eaf07c8c14610372578063f2fde38b1461039f578063fb9213ff146103bf57600080fd5b806388ea41b9146102945780638da5cb5b146102b457806390e50774146102dc5780639619367d146102fc578063998724421461031257600080fd5b80635a8c8a4a116100f25780635a8c8a4a1461021657806365f05d861461022c5780636898f82b1461024c578063715018a61461025f578063881eff1e1461027457600080fd5b80630f69632c1461013a57806319706f711461015c5780632e5b21681461018f5780633a8aa684146101a55780634a39ec90146101c557600080fd5b3661013557005b600080fd5b34801561014657600080fd5b5061015a610155366004610d39565b6103df565b005b34801561016857600080fd5b5061017c610177366004610d6e565b610417565b6040519081526020015b60405180910390f35b34801561019b57600080fd5b5061017c60045481565b3480156101b157600080fd5b5061015a6101c0366004610d39565b61050a565b3480156101d157600080fd5b506101e56101e0366004610dad565b61051f565b6040805195865260208601949094529284019190915260608301526001600160a01b0316608082015260a001610186565b34801561022257600080fd5b5061017c60055481565b34801561023857600080fd5b5061017c610247366004610d39565b610576565b61015a61025a366004610d39565b610598565b34801561026b57600080fd5b5061015a6107a4565b34801561028057600080fd5b5061015a61028f366004610d39565b6107b8565b3480156102a057600080fd5b5061015a6102af366004610d39565b6107e7565b3480156102c057600080fd5b506000546040516001600160a01b039091168152602001610186565b3480156102e857600080fd5b5061015a6102f7366004610d39565b610816565b34801561030857600080fd5b5061017c60035481565b34801561031e57600080fd5b5061017c606481565b34801561033357600080fd5b5061017c610342366004610dad565b610845565b34801561035357600080fd5b5061015a6108d6565b34801561036857600080fd5b5061017c60065481565b34801561037e57600080fd5b5061039261038d366004610dd7565b61098f565b6040516101869190610df2565b3480156103ab57600080fd5b5061015a6103ba366004610dd7565b610a39565b3480156103cb57600080fd5b5061017c6103da366004610dd7565b610a74565b6103e7610ac9565b80600081116104115760405162461bcd60e51b815260040161040890610e69565b60405180910390fd5b50600655565b6001600160a01b0381166000908152600760205260408120805482919061044090600190610eb4565b8154811061045057610450610ec7565b906000526020600020906005020190506000600654878360030154866040516020016104a193929190928352602083019190915260601b6bffffffffffffffffffffffff1916604082015260540190565b6040516020818303038152906040528051906020012060001c6104c49190610ef3565b6104cf906001610f07565b90508581036104fb576064600554866104e89190610f1a565b6104f29190610f31565b92505050610502565b6000925050505b949350505050565b610512610ac9565b61051c3382610af6565b50565b6007602052816000526040600020818154811061053b57600080fd5b60009182526020909120600590910201805460018201546002830154600384015460049094015492955090935091906001600160a01b031685565b60006064600554836105889190610f1a565b6105929190610f31565b92915050565b6105a0610b92565b6064600554346105b09190610f1a565b6105ba9190610f31565b4710156105fe5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610408565b60008111801561061057506006548111155b6106535760405162461bcd60e51b815260206004820152601460248201527324b731b7b93932b1ba103132ba10373ab6b132b960611b6044820152606401610408565b600354341015801561066757506004543411155b6106aa5760405162461bcd60e51b8152602060048201526014602482015273125b98dbdc9c9958dd0818995d08185b5bdd5b9d60621b6044820152606401610408565b336000818152600760209081526040808320815160a08101835243808252348286018181528386018a815260028054606080880191825260808089018e81528a5460018082018d559b8f529d8d902099516005909e029099019c8d559451988c019890985591518a820155905160038a01559351600490980180546001600160a01b0319166001600160a01b039099169890981790975591548451918252948101919091529182018690528101919091527f935a8686694e2b5cc90f63054b327255f6fb92db3acd6d98c5a707d4987e93e1910160405180910390a26002805490600061079683610f45565b919050555061051c60018055565b6107ac610ac9565b6107b66000610bbc565b565b6107c0610ac9565b80600081116107e15760405162461bcd60e51b815260040161040890610e69565b50600455565b6107ef610ac9565b80600081116108105760405162461bcd60e51b815260040161040890610e69565b50600355565b61081e610ac9565b806000811161083f5760405162461bcd60e51b815260040161040890610e69565b50600555565b6001600160a01b038216600090815260076020526040812080548291908490811061087257610872610ec7565b9060005260206000209060050201905060006108978260000154836003015487610c0c565b9050808260020154036108cb57606460055483600101546108b89190610f1a565b6108c29190610f31565b92505050610592565b506000949350505050565b6108de610b92565b60006108e933610a74565b90506000811161092e5760405162461bcd60e51b815260206004820152601060248201526f2cb7ba903430bb32903737ba103bb7b760811b6044820152606401610408565b33600090815260076020526040812061094691610cde565b6109503382610af6565b60405181815233907f95681e512bc0fe659e195e06c283eada494316f3d801213e48e7101af92bf7709060200160405180910390a2506107b660018055565b6001600160a01b0381166000908152600760209081526040808320805482518185028101850190935280835260609492939192909184015b82821015610a2e5760008481526020908190206040805160a08101825260058602909201805483526001808201548486015260028201549284019290925260038101546060840152600401546001600160a01b0316608083015290835290920191016109c7565b505050509050919050565b610a41610ac9565b6001600160a01b038116610a6b57604051631e4fbdf760e01b815260006004820152602401610408565b61051c81610bbc565b60008060005b6001600160a01b038416600090815260076020526040902054811015610ac257610aa48482610845565b610aae9083610f07565b915080610aba81610f45565b915050610a7a565b5092915050565b6000546001600160a01b031633146107b65760405163118cdaa760e01b8152336004820152602401610408565b80471015610b195760405163cd78605960e01b8152306004820152602401610408565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114610b66576040519150601f19603f3d011682016040523d82523d6000602084013e610b6b565b606091505b5050905080610b8d57604051630a12f52160e11b815260040160405180910390fd5b505050565b600260015403610bb557604051633ee5aeb560e01b815260040160405180910390fd5b6002600155565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000834311610c5d5760405162461bcd60e51b815260206004820152601c60248201527f426c6f636b206e756d626572206973206f7574206f662072616e6765000000006044820152606401610408565b43610c698560fa610f07565b1015610c7757506000610cd7565b6006546040805186406020820152908101859052606084811b6bffffffffffffffffffffffff1916908201526074016040516020818303038152906040528051906020012060001c610cc99190610ef3565b610cd4906001610f07565b90505b9392505050565b508054600082556005029060005260206000209081019061051c91905b80821115610d35576000808255600182018190556002820181905560038201556004810180546001600160a01b0319169055600501610cfb565b5090565b600060208284031215610d4b57600080fd5b5035919050565b80356001600160a01b0381168114610d6957600080fd5b919050565b60008060008060808587031215610d8457600080fd5b843593506020850135925060408501359150610da260608601610d52565b905092959194509250565b60008060408385031215610dc057600080fd5b610dc983610d52565b946020939093013593505050565b600060208284031215610de957600080fd5b610cd782610d52565b602080825282518282018190526000919060409081850190868401855b82811015610e5c5781518051855286810151878601528581015186860152606080820151908601526080908101516001600160a01b03169085015260a09093019290850190600101610e0f565b5091979650505050505050565b6020808252818101527f4e756d626572206d7573742062652067726561746572207468616e207a65726f604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8181038181111561059257610592610e9e565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601260045260246000fd5b600082610f0257610f02610edd565b500690565b8082018082111561059257610592610e9e565b808202811582820484141761059257610592610e9e565b600082610f4057610f40610edd565b500490565b600060018201610f5757610f57610e9e565b506001019056fea264697066735822122080cae829789a046413b7fbe2915ff48b87e6c9d6fa9af398c72420e4ee500c3064736f6c63430008140033