ERC-721
Source Code
Overview
Max Total Supply
7,418 ERC20 ***
Holders
7,407
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 ERC20 ***Loading...
Loading
Loading...
Loading
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
MaverickV2Reward
Compiler Version
v0.8.25+commit.b61c2a91
Optimization Enabled:
Yes with 5500 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity ^0.8.25;
import {Base64} from "@openzeppelin/contracts/utils/Base64.sol";
import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {ReentrancyGuard} from "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
import {Time} from "@openzeppelin/contracts/utils/types/Time.sol";
import {SafeCast as Cast} from "@openzeppelin/contracts/utils/math/SafeCast.sol";
import {ONE} from "@maverick/v2-common/contracts/libraries/Constants.sol";
import {Math} from "@maverick/v2-common/contracts/libraries/Math.sol";
import {Multicall} from "@maverick/v2-common/contracts/base/Multicall.sol";
import {Nft} from "@maverick/v2-supplemental/contracts/positionbase/Nft.sol";
import {INft} from "@maverick/v2-supplemental/contracts/positionbase/INft.sol";
import {IMaverickV2Reward} from "./interfaces/IMaverickV2Reward.sol";
import {RewardAccounting} from "./rewardbase/RewardAccounting.sol";
import {MaverickV2RewardVault, IMaverickV2RewardVault} from "./MaverickV2RewardVault.sol";
import {IMaverickV2VotingEscrow} from "./interfaces/IMaverickV2VotingEscrow.sol";
/**
* @notice This reward contract is used to reward users who stake their
* `stakingToken` in this contract. The `stakingToken` can be any token with an
* ERC-20 interface including BoostedPosition LP tokens.
*
* @notice Incentive providers can permissionlessly add incentives to this
* contract that will be disbursed to stakers pro rata over a given duration that
* the incentive provider specifies as they add incentives.
*
* Incentives can be denominated in one of 5 possible reward tokens that the
* reward contract creator specifies on contract creation.
*
* @notice The contract creator also has the option of specifying veTokens
* associated with each of the up-to-5 reward tokens. When incentivizing a
* rewardToken that has a veToken specified, the staking users will receive a
* boost to their rewards depending on 1) how much ve tokens they own and 2) how
* long they stake their rewards disbursement.
*/
contract MaverickV2Reward is Nft, RewardAccounting, IMaverickV2Reward, Multicall, ReentrancyGuard {
using SafeERC20 for IERC20;
using Cast for uint256;
uint256 internal constant FOUR_YEARS = 1460 days;
uint256 internal constant BASE_STAKING_FACTOR = 0.2e18;
uint256 internal constant STAKING_FACTOR_SLOPE = 0.8e18;
uint256 internal constant BASE_PRORATA_FACTOR = 0.75e18;
uint256 internal constant PRORATA_FACTOR_SLOPE = 0.25e18;
/// @inheritdoc IMaverickV2Reward
uint256 public constant UNBOOSTED_MIN_TIME_GAP = 13 weeks;
/// @inheritdoc IMaverickV2Reward
IERC20 public immutable stakingToken;
IERC20 private immutable rewardToken0;
IERC20 private immutable rewardToken1;
IERC20 private immutable rewardToken2;
IERC20 private immutable rewardToken3;
IERC20 private immutable rewardToken4;
IMaverickV2VotingEscrow private immutable veToken0;
IMaverickV2VotingEscrow private immutable veToken1;
IMaverickV2VotingEscrow private immutable veToken2;
IMaverickV2VotingEscrow private immutable veToken3;
IMaverickV2VotingEscrow private immutable veToken4;
/// @inheritdoc IMaverickV2Reward
uint256 public constant MAX_DURATION = 40 days;
/// @inheritdoc IMaverickV2Reward
uint256 public constant MIN_DURATION = 3 days;
struct RewardData {
// Timestamp of when the rewards finish
uint64 finishAt;
// Minimum of last updated time and reward finish time
uint64 updatedAt;
// Reward to be paid out per second
uint128 rewardRate;
// Reward amount escrowed for staked users up to current time. this
// value is incremented on each action as by the amount of reward
// globally accumulated since the last action. when a user collects
// reward, this amount is decremented.
uint128 escrowedReward;
// Accumulator of the amount of this reward token not taken as part of
// getReward boosting. this amount gets pushed to the associated ve
// contract as an incentive for the ve holders.
uint128 unboostedAmount;
// Timestamp of last time unboosted reward was pushed to ve contract as
// incentive
uint256 lastUnboostedPushTimestamp;
// Sum of (reward rate * dt * 1e18 / total supply)
uint256 rewardPerTokenStored;
// User tokenId => rewardPerTokenStored
mapping(uint256 tokenId => uint256) userRewardPerTokenPaid;
// User tokenId => rewards to be claimed
mapping(uint256 tokenId => uint128) rewards;
}
RewardData[5] public rewardData;
uint256 public immutable rewardTokenCount;
IMaverickV2RewardVault public immutable vault;
constructor(
string memory name_,
string memory symbol_,
IERC20 _stakingToken,
IERC20[] memory rewardTokens,
IMaverickV2VotingEscrow[] memory veTokens
) Nft(name_, symbol_) {
stakingToken = _stakingToken;
vault = new MaverickV2RewardVault(_stakingToken);
rewardTokenCount = rewardTokens.length;
if (rewardTokenCount > 0) {
rewardToken0 = rewardTokens[0];
veToken0 = veTokens[0];
}
if (rewardTokenCount > 1) {
rewardToken1 = rewardTokens[1];
veToken1 = veTokens[1];
}
if (rewardTokenCount > 2) {
rewardToken2 = rewardTokens[2];
veToken2 = veTokens[2];
}
if (rewardTokenCount > 3) {
rewardToken3 = rewardTokens[3];
veToken3 = veTokens[3];
}
if (rewardTokenCount > 4) {
rewardToken4 = rewardTokens[4];
veToken4 = veTokens[4];
}
}
modifier checkAmount(uint256 amount) {
if (amount == 0) revert RewardZeroAmount();
_;
}
/////////////////////////////////////
/// Stake Management Functions
/////////////////////////////////////
/// @inheritdoc IMaverickV2Reward
function mint(address recipient) public returns (uint256 tokenId) {
tokenId = _mint(recipient);
}
/// @inheritdoc IMaverickV2Reward
function mintToSender() public returns (uint256 tokenId) {
tokenId = _mint(msg.sender);
}
/// @inheritdoc IMaverickV2Reward
function stake(uint256 tokenId) public returns (uint256 amount, uint256 stakedTokenId) {
// reverts if token is not owned
stakedTokenId = tokenId;
if (stakedTokenId == 0) {
if (tokenOfOwnerByIndexExists(msg.sender, 0)) {
stakedTokenId = tokenOfOwnerByIndex(msg.sender, 0);
} else {
stakedTokenId = mint(msg.sender);
}
}
amount = _stake(stakedTokenId);
}
/// @inheritdoc IMaverickV2Reward
function transferAndStake(uint256 tokenId, uint256 _amount) public returns (uint256 amount, uint256 stakedTokenId) {
stakingToken.safeTransferFrom(msg.sender, address(vault), _amount);
return stake(tokenId);
}
/// @inheritdoc IMaverickV2Reward
function unstakeToOwner(uint256 tokenId, uint256 amount) public onlyTokenIdAuthorizedUser(tokenId) {
address owner = ownerOf(tokenId);
_unstake(tokenId, owner, amount);
}
/// @inheritdoc IMaverickV2Reward
function unstake(uint256 tokenId, address recipient, uint256 amount) public onlyTokenIdAuthorizedUser(tokenId) {
_unstake(tokenId, recipient, amount);
}
/// @inheritdoc IMaverickV2Reward
function getRewardToOwner(
uint256 tokenId,
uint8 rewardTokenIndex,
uint256 stakeDuration
) external onlyTokenIdAuthorizedUser(tokenId) returns (RewardOutput memory) {
address owner = ownerOf(tokenId);
return _getReward(tokenId, owner, rewardTokenIndex, stakeDuration, type(uint256).max);
}
/// @inheritdoc IMaverickV2Reward
function getRewardToOwnerForExistingVeLockup(
uint256 tokenId,
uint8 rewardTokenIndex,
uint256 stakeDuration,
uint256 lockupId
) external onlyTokenIdAuthorizedUser(tokenId) returns (RewardOutput memory) {
address owner = ownerOf(tokenId);
return _getReward(tokenId, owner, rewardTokenIndex, stakeDuration, lockupId);
}
/// @inheritdoc IMaverickV2Reward
function getReward(
uint256 tokenId,
address recipient,
uint8 rewardTokenIndex,
uint256 stakeDuration
) external onlyTokenIdAuthorizedUser(tokenId) returns (RewardOutput memory) {
return _getReward(tokenId, recipient, rewardTokenIndex, stakeDuration, type(uint256).max);
}
/////////////////////////////////////
/// Admin Functions
/////////////////////////////////////
/// @inheritdoc IMaverickV2Reward
function pushUnboostedToVe(
uint8 rewardTokenIndex
) public returns (uint128 amount, uint48 timepoint, uint256 batchIndex) {
IMaverickV2VotingEscrow ve = veTokenByIndex(rewardTokenIndex);
IERC20 token = rewardTokenByIndex(rewardTokenIndex);
RewardData storage data = rewardData[rewardTokenIndex];
amount = data.unboostedAmount;
if (amount == 0) revert RewardZeroAmount();
if (block.timestamp <= data.lastUnboostedPushTimestamp + UNBOOSTED_MIN_TIME_GAP) {
// revert if not enough time has passed; will not revert if this is
// the first call and last timestamp is zero.
revert RewardUnboostedTimePeriodNotMet(
block.timestamp,
data.lastUnboostedPushTimestamp + UNBOOSTED_MIN_TIME_GAP
);
}
data.unboostedAmount = 0;
data.lastUnboostedPushTimestamp = block.timestamp;
token.forceApprove(address(ve), amount);
timepoint = Time.timestamp();
batchIndex = ve.createIncentiveBatch(amount, timepoint, ve.MAX_STAKE_DURATION().toUint128(), token);
}
/////////////////////////////////////
/// View Functions
/////////////////////////////////////
/// @inheritdoc IMaverickV2Reward
function rewardInfo() public view returns (RewardInfo[] memory info) {
uint256 length = rewardTokenCount;
info = new RewardInfo[](length);
for (uint8 i; i < length; i++) {
RewardData storage data = rewardData[i];
info[i] = RewardInfo({
finishAt: data.finishAt,
updatedAt: data.updatedAt,
rewardRate: data.rewardRate,
rewardPerTokenStored: data.rewardPerTokenStored,
rewardToken: rewardTokenByIndex(i),
veRewardToken: veTokenByIndex(i),
unboostedAmount: data.unboostedAmount,
escrowedReward: data.escrowedReward,
lastUnboostedPushTimestamp: data.lastUnboostedPushTimestamp
});
}
}
/// @inheritdoc IMaverickV2Reward
function contractInfo() external view returns (RewardInfo[] memory info, ContractInfo memory _contractInfo) {
info = rewardInfo();
_contractInfo.name = name();
_contractInfo.symbol = symbol();
_contractInfo.totalSupply = stakeTotalSupply();
_contractInfo.stakingToken = stakingToken;
}
/// @inheritdoc IMaverickV2Reward
function earned(uint256 tokenId) public view returns (EarnedInfo[] memory earnedInfo) {
uint256 length = rewardTokenCount;
earnedInfo = new EarnedInfo[](length);
for (uint8 i; i < length; i++) {
RewardData storage data = rewardData[i];
earnedInfo[i] = EarnedInfo({earned: _earned(tokenId, data), rewardToken: rewardTokenByIndex(i)});
}
}
/// @inheritdoc IMaverickV2Reward
function earned(uint256 tokenId, IERC20 rewardTokenAddress) public view returns (uint256) {
uint256 rewardTokenIndex = tokenIndex(rewardTokenAddress);
RewardData storage data = rewardData[rewardTokenIndex];
return _earned(tokenId, data);
}
function _earned(uint256 tokenId, RewardData storage data) internal view returns (uint256) {
return
data.rewards[tokenId] +
Math.mulFloor(
stakeBalanceOf(tokenId),
Math.clip(data.rewardPerTokenStored + _deltaRewardPerToken(data), data.userRewardPerTokenPaid[tokenId])
);
}
/// @inheritdoc IMaverickV2Reward
function tokenIndex(IERC20 rewardToken) public view returns (uint8 rewardTokenIndex) {
if (rewardToken == rewardToken0) return 0;
if (rewardToken == rewardToken1) return 1;
if (rewardToken == rewardToken2) return 2;
if (rewardToken == rewardToken3) return 3;
if (rewardToken == rewardToken4) return 4;
revert RewardNotValidRewardToken(rewardToken);
}
/// @inheritdoc IMaverickV2Reward
function rewardTokenByIndex(uint8 index) public view returns (IERC20 output) {
if (index >= rewardTokenCount) revert RewardNotValidIndex(index);
if (index == 0) return rewardToken0;
if (index == 1) return rewardToken1;
if (index == 2) return rewardToken2;
if (index == 3) return rewardToken3;
return rewardToken4;
}
/// @inheritdoc IMaverickV2Reward
function veTokenByIndex(uint8 index) public view returns (IMaverickV2VotingEscrow output) {
if (index >= rewardTokenCount) revert RewardNotValidIndex(index);
if (index == 0) return veToken0;
if (index == 1) return veToken1;
if (index == 2) return veToken2;
if (index == 3) return veToken3;
return veToken4;
}
/// @inheritdoc IMaverickV2Reward
function tokenList(bool includeStakingToken) public view returns (IERC20[] memory tokens) {
uint256 length = includeStakingToken ? rewardTokenCount + 1 : rewardTokenCount;
tokens = new IERC20[](length);
if (rewardTokenCount > 0) tokens[0] = rewardToken0;
if (rewardTokenCount > 1) tokens[1] = rewardToken1;
if (rewardTokenCount > 2) tokens[2] = rewardToken2;
if (rewardTokenCount > 3) tokens[3] = rewardToken3;
if (rewardTokenCount > 4) tokens[4] = rewardToken4;
if (includeStakingToken) tokens[rewardTokenCount] = stakingToken;
}
/**
* @notice Updates the global reward state for a given reward token.
* @dev Each time a user stakes or unstakes or a incentivizer adds
* incentives, this function must be called in order to checkpoint the
* rewards state before the new stake/unstake/notify occurs.
*/
function _updateGlobalReward(RewardData storage data) internal {
uint256 reward = _deltaRewardPerToken(data);
if (reward != 0) {
data.rewardPerTokenStored += reward;
// round up to ensure enough reward is set aside
data.escrowedReward += Math.mulCeil(reward, stakeTotalSupply()).toUint128();
}
data.updatedAt = _lastTimeRewardApplicable(data.finishAt).toUint64();
}
/**
* @notice Updates the reward state associated with an tokenId. Also
* updates the global reward state.
* @dev This function checkpoints the data for a user before they
* stake/unstake.
*/
function _updateReward(uint256 tokenId, RewardData storage data) internal {
_updateGlobalReward(data);
uint256 reward = _deltaEarned(tokenId, data);
if (reward != 0) data.rewards[tokenId] += reward.toUint128();
data.userRewardPerTokenPaid[tokenId] = data.rewardPerTokenStored;
}
/**
* @notice Amount an tokenId has earned since that tokenId last did a
* stake/unstake.
* @dev `deltaEarned = balance * (rewardPerToken - userRewardPerTokenPaid)`
*/
function _deltaEarned(uint256 tokenId, RewardData storage data) internal view returns (uint256) {
return
Math.mulFloor(
stakeBalanceOf(tokenId),
Math.clip(data.rewardPerTokenStored, data.userRewardPerTokenPaid[tokenId])
);
}
/**
* @notice Amount of new rewards accrued to tokens since last checkpoint.
*/
function _deltaRewardPerToken(RewardData storage data) internal view returns (uint256) {
uint256 timeDiff = Math.clip(_lastTimeRewardApplicable(data.finishAt), data.updatedAt);
if (timeDiff == 0 || stakeTotalSupply() == 0 || data.rewardRate == 0) {
return 0;
}
return Math.mulDivFloor(data.rewardRate, timeDiff * ONE, stakeTotalSupply());
}
/**
* @notice The smaller of: 1) time of end of reward period and 2) current
* block timestamp.
*/
function _lastTimeRewardApplicable(uint256 dataFinishAt) internal view returns (uint256) {
return Math.min(dataFinishAt, block.timestamp);
}
/**
* @notice Update all rewards.
*/
function _updateAllRewards(uint256 tokenId) internal {
for (uint8 i; i < rewardTokenCount; i++) {
RewardData storage data = rewardData[i];
_updateReward(tokenId, data);
}
}
/////////////////////////////////////
/// Internal User Functions
/////////////////////////////////////
function _stake(uint256 tokenId) internal nonReentrant returns (uint256 amount) {
amount = Math.clip(stakingToken.balanceOf(address(vault)), stakeTotalSupply());
if (amount == 0) revert RewardZeroAmount();
_requireOwned(tokenId);
_updateAllRewards(tokenId);
_mintStake(tokenId, amount);
emit Stake(msg.sender, tokenId, amount);
}
/**
* @notice Functions using this function must check that sender has access
* to the tokenId for this to be / safely called.
*/
function _unstake(uint256 tokenId, address recipient, uint256 amount) internal nonReentrant {
if (amount == 0) revert RewardZeroAmount();
_updateAllRewards(tokenId);
_burnStake(tokenId, amount);
vault.withdraw(recipient, amount);
emit UnStake(msg.sender, tokenId, recipient, amount);
}
/// @inheritdoc IMaverickV2Reward
function boostedAmount(
uint256 tokenId,
IMaverickV2VotingEscrow veToken,
uint256 rawAmount,
uint256 stakeDuration
) public view returns (uint256 earnedAmount, bool asVe) {
if (address(veToken) != address(0)) {
address owner = ownerOf(tokenId);
uint256 userVeProRata = Math.divFloor(veToken.balanceOf(owner), veToken.totalSupply());
uint256 userRewardProRata = Math.divFloor(stakeBalanceOf(tokenId), stakeTotalSupply());
// pro rata ratio can be bigger than one: need min operation
uint256 proRataFactor = Math.min(
ONE,
BASE_PRORATA_FACTOR + Math.mulDivFloor(PRORATA_FACTOR_SLOPE, userVeProRata, userRewardProRata)
);
uint256 stakeFactor = Math.min(
ONE,
BASE_STAKING_FACTOR + Math.mulDivFloor(STAKING_FACTOR_SLOPE, stakeDuration, FOUR_YEARS)
);
earnedAmount = Math.mulFloor(Math.mulFloor(rawAmount, stakeFactor), proRataFactor);
// if duration is non-zero, this reward is collected as ve
asVe = stakeDuration > 0;
} else {
earnedAmount = rawAmount;
}
}
/**
* @notice Internal function for computing the boost and then
* transferring/staking the resulting rewards. Can not be safely called
* without checking that the caller has permissions to access the tokenId.
*/
function _boostAndPay(
uint256 tokenId,
address recipient,
IERC20 rewardToken,
IMaverickV2VotingEscrow veToken,
uint256 rawAmount,
uint256 stakeDuration,
uint256 lockupId
) internal returns (RewardOutput memory rewardOutput) {
(rewardOutput.amount, rewardOutput.asVe) = boostedAmount(tokenId, veToken, rawAmount, stakeDuration);
if (rewardOutput.asVe) {
rewardToken.forceApprove(address(veToken), rewardOutput.amount);
rewardOutput.veContract = veToken;
if (lockupId == type(uint256).max) {
veToken.stake(rewardOutput.amount.toUint128(), stakeDuration, recipient);
} else {
veToken.extendForAccount(recipient, lockupId, stakeDuration, rewardOutput.amount.toUint128());
}
} else {
rewardToken.safeTransfer(recipient, rewardOutput.amount);
}
}
/**
* @notice Internal getReward function. Can not be safely called without
* checking that the caller has permissions to access the account.
*/
function _getReward(
uint256 tokenId,
address recipient,
uint8 rewardTokenIndex,
uint256 stakeDuration,
uint256 lockupId
) internal nonReentrant returns (RewardOutput memory rewardOutput) {
RewardData storage data = rewardData[rewardTokenIndex];
_updateReward(tokenId, data);
uint128 reward = data.rewards[tokenId];
if (reward != 0) {
data.rewards[tokenId] = 0;
data.escrowedReward -= reward;
rewardOutput = _boostAndPay(
tokenId,
recipient,
rewardTokenByIndex(rewardTokenIndex),
veTokenByIndex(rewardTokenIndex),
reward,
stakeDuration,
lockupId
);
if (reward > rewardOutput.amount) {
// set aside unboosted amount; unsafe cast is okay given conditional
data.unboostedAmount += uint128(reward - rewardOutput.amount);
}
emit GetReward(
msg.sender,
tokenId,
recipient,
rewardTokenIndex,
stakeDuration,
rewardTokenByIndex(rewardTokenIndex),
rewardOutput,
lockupId
);
}
}
/////////////////////////////////////
/// Add Reward
/////////////////////////////////////
/// @inheritdoc IMaverickV2Reward
function notifyRewardAmount(IERC20 rewardToken, uint256 duration) public nonReentrant returns (uint256) {
if (duration < MIN_DURATION) revert RewardDurationOutOfBounds(duration, MIN_DURATION, MAX_DURATION);
if (duration > MAX_DURATION) revert RewardDurationOutOfBounds(duration, MIN_DURATION, MAX_DURATION);
return _notifyRewardAmount(rewardToken, duration);
}
/// @inheritdoc IMaverickV2Reward
function transferAndNotifyRewardAmount(
IERC20 rewardToken,
uint256 duration,
uint256 amount
) public returns (uint256) {
rewardToken.safeTransferFrom(msg.sender, address(this), amount);
return notifyRewardAmount(rewardToken, duration);
}
/**
* @notice Called by reward depositor to recompute the reward rate. If
* notifier sends more than remaining amount, then notifier sets the rate.
* Else, we extend the duration at the current rate.
*/
function _notifyRewardAmount(IERC20 rewardToken, uint256 duration) internal returns (uint256) {
uint8 rewardTokenIndex = tokenIndex(rewardToken);
RewardData storage data = rewardData[rewardTokenIndex];
_updateGlobalReward(data);
uint256 remainingRewards = Math.clip(
rewardTokenByIndex(rewardTokenIndex).balanceOf(address(this)),
data.escrowedReward
);
uint256 timeRemaining = Math.clip(data.finishAt, block.timestamp);
// timeRemaining * data.rewardRate is the amount of rewards on the
// contract before the new amount was added. we are checking to see if
// the reamaining rewards is bigger than twice this value. in this
// case, the new notifier has brought more rewards than were already on
// contract and they get to set the new rewards rate.
if (remainingRewards > timeRemaining * data.rewardRate * 2 || data.rewardRate == 0) {
// if notifying new amount is bigger than, notifier gets to set the rate
data.rewardRate = (remainingRewards / duration).toUint128();
} else {
// if notifier doesn't bring enough, we extend the duration at the
// same rate
duration = remainingRewards / data.rewardRate;
}
data.finishAt = (block.timestamp + duration).toUint64();
// unsafe case is ok given safe cast in previous statement
data.updatedAt = uint64(block.timestamp);
emit NotifyRewardAmount(msg.sender, rewardToken, remainingRewards, duration, data.rewardRate);
return duration;
}
/////////////////////////////////////
/// Required Overrides
/////////////////////////////////////
function tokenURI(uint256) public view virtual override(Nft, INft) returns (string memory) {
/* solhint-disable quotes */
return
string(
abi.encodePacked(
"data:application/json;base64,",
Base64.encode(
abi.encodePacked(
'{"name":"',
name(),
'","image":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAwIiBoZWlnaHQ9IjEyMDAiIHZpZXdCb3g9IjAgMCAxMDAwIDEyMDAiIGZpbGw9Im5vbmUiPgo8cGF0aCBkPSJNMCA1MEMwIDIyLjM4NTggMjIuMzg1OCAwIDUwIDBINjUwQzg0My4zIDAgMTAwMCAxNTYuNyAxMDAwIDM1MFYxMTUwQzEwMDAgMTE3Ny42MSA5NzcuNjE0IDEyMDAgOTUwIDEyMDBIMzUwQzE1Ni43IDEyMDAgMCAxMDQzLjMgMCA4NTBWNTBaIiBmaWxsPSJibGFjayIgZmlsbC1vcGFjaXR5PSIwLjk2Ii8+CjxwYXRoIGQ9Ik04OC40MTA2IDk4LjI1NDRWODRMNTAgMTA0SDEyMS4zMDRWNjRMODguNDEwNiA5OC4yNTQ0WiIgZmlsbD0id2hpdGUiLz4KPHRleHQgeD0iNTAiIHk9IjI1MCIgZm9udC1zaXplPSIzOCIgZmlsbD0icmdiKDI1NSwgMjU1LCAyNTUpIiBsZXR0ZXItc3BhY2luZz0iMiIgZm9udC1mYW1pbHk9IidDb3VyaWVyIE5ldycsIG1vbm9zcGFjZSI+TWF2ZXJpY2sgUmV3YXJkIFBvc2l0aW9uPC90ZXh0Pjwvc3ZnPg==","description":"',
name(),
'"}'
)
)
)
);
/* solhint-enable quotes */
}
function name() public view override(INft, Nft) returns (string memory) {
return super.name();
}
function symbol() public view override(INft, Nft) returns (string memory) {
return super.symbol();
}
}// SPDX-License-Identifier: GPL-2.0-or-later
// As the copyright holder of this work, Ubiquity Labs retains
// the right to distribute, use, and modify this code under any license of
// their choosing, in addition to the terms of the GPL-v2 or later.
pragma solidity ^0.8.25;
interface IMulticall {
function multicall(bytes[] calldata data) external returns (bytes[] memory results);
}// SPDX-License-Identifier: GPL-2.0-or-later
// As the copyright holder of this work, Ubiquity Labs retains
// the right to distribute, use, and modify this code under any license of
// their choosing, in addition to the terms of the GPL-v2 or later.
pragma solidity ^0.8.25;
import {IMulticall} from "./IMulticall.sol";
import {Address} from "@openzeppelin/contracts/utils/Address.sol";
// Modified from https://github.com/OpenZeppelin/openzeppelin-contracts/blob/6ba452dea4258afe77726293435f10baf2bed265/contracts/utils/Multicall.sol
/*
* @notice Multicall
*/
abstract contract Multicall is IMulticall {
/**
* @notice This function allows multiple calls to different contract functions
* in a single transaction.
* @param data An array of encoded function call data.
* @return results An array of the results of the function calls.
*/
function multicall(bytes[] calldata data) external returns (bytes[] memory results) {
results = new bytes[](data.length);
for (uint256 i = 0; i < data.length; i++) {
results[i] = Address.functionDelegateCall(address(this), data[i]);
}
}
}// SPDX-License-Identifier: GPL-2.0-or-later // As the copyright holder of this work, Ubiquity Labs retains // the right to distribute, use, and modify this code under any license of // their choosing, in addition to the terms of the GPL-v2 or later. pragma solidity ^0.8.25; // factory contraints on pools uint8 constant MAX_PROTOCOL_FEE_RATIO_D3 = 0.25e3; // 25% uint256 constant MAX_PROTOCOL_LENDING_FEE_RATE_D18 = 0.02e18; // 2% uint64 constant MAX_POOL_FEE_D18 = 0.9e18; // 90% uint64 constant MIN_LOOKBACK = 1 seconds; uint64 constant MAX_TICK_SPACING = 10_000; // pool constraints uint8 constant NUMBER_OF_KINDS = 4; int32 constant NUMBER_OF_KINDS_32 = int32(int8(NUMBER_OF_KINDS)); uint256 constant MAX_TICK = 322_378; // max price 1e14 in D18 scale int32 constant MAX_TICK_32 = int32(int256(MAX_TICK)); int32 constant MIN_TICK_32 = int32(-int256(MAX_TICK)); uint256 constant MAX_BINS_TO_MERGE = 3; uint128 constant MINIMUM_LIQUIDITY = 1e8; // accessor named constants uint8 constant ALL_KINDS_MASK = 0xF; // 0b1111 uint8 constant PERMISSIONED_LIQUIDITY_MASK = 0x10; // 0b010000 uint8 constant PERMISSIONED_SWAP_MASK = 0x20; // 0b100000 uint8 constant OPTIONS_MASK = ALL_KINDS_MASK | PERMISSIONED_LIQUIDITY_MASK | PERMISSIONED_SWAP_MASK; // 0b111111 // named values address constant MERGED_LP_BALANCE_ADDRESS = address(0); uint256 constant MERGED_LP_BALANCE_SUBACCOUNT = 0; uint128 constant ONE = 1e18; uint128 constant ONE_SQUARED = 1e36; int256 constant INT256_ONE = 1e18; uint256 constant ONE_D8 = 1e8; uint256 constant ONE_D3 = 1e3; int40 constant INT_ONE_D8 = 1e8; int40 constant HALF_TICK_D8 = 0.5e8; uint8 constant DEFAULT_DECIMALS = 18; uint256 constant DEFAULT_SCALE = 1; bytes constant EMPTY_PRICE_BREAKS = hex"010000000000000000000000";
// SPDX-License-Identifier: GPL-2.0-or-later
// As the copyright holder of this work, Ubiquity Labs retains
// the right to distribute, use, and modify this code under any license of
// their choosing, in addition to the terms of the GPL-v2 or later.
pragma solidity ^0.8.25;
import {Math as OzMath} from "@openzeppelin/contracts/utils/math/Math.sol";
import {ONE, DEFAULT_SCALE, DEFAULT_DECIMALS, INT_ONE_D8, ONE_SQUARED} from "./Constants.sol";
/**
* @notice Math functions.
*/
library Math {
/**
* @notice Returns the lesser of two values.
* @param x First uint256 value.
* @param y Second uint256 value.
*/
function min(uint256 x, uint256 y) internal pure returns (uint256 z) {
assembly ("memory-safe") {
z := xor(x, mul(xor(x, y), lt(y, x)))
}
}
/**
* @notice Returns the lesser of two uint128 values.
* @param x First uint128 value.
* @param y Second uint128 value.
*/
function min128(uint128 x, uint128 y) internal pure returns (uint128 z) {
assembly ("memory-safe") {
z := xor(x, mul(xor(x, y), lt(y, x)))
}
}
/**
* @notice Returns the lesser of two int256 values.
* @param x First int256 value.
* @param y Second int256 value.
*/
function min(int256 x, int256 y) internal pure returns (int256 z) {
assembly ("memory-safe") {
z := xor(x, mul(xor(x, y), slt(y, x)))
}
}
/**
* @notice Returns the greater of two uint256 values.
* @param x First uint256 value.
* @param y Second uint256 value.
*/
function max(uint256 x, uint256 y) internal pure returns (uint256 z) {
assembly ("memory-safe") {
z := xor(x, mul(xor(x, y), gt(y, x)))
}
}
/**
* @notice Returns the greater of two int256 values.
* @param x First int256 value.
* @param y Second int256 value.
*/
function max(int256 x, int256 y) internal pure returns (int256 z) {
assembly ("memory-safe") {
z := xor(x, mul(xor(x, y), sgt(y, x)))
}
}
/**
* @notice Returns the greater of two uint128 values.
* @param x First uint128 value.
* @param y Second uint128 value.
*/
function max128(uint128 x, uint128 y) internal pure returns (uint128 z) {
assembly ("memory-safe") {
z := xor(x, mul(xor(x, y), gt(y, x)))
}
}
/**
* @notice Thresholds a value to be within the specified bounds.
* @param value The value to bound.
* @param lowerLimit The minimum allowable value.
* @param upperLimit The maximum allowable value.
*/
function boundValue(
uint256 value,
uint256 lowerLimit,
uint256 upperLimit
) internal pure returns (uint256 outputValue) {
outputValue = min(max(value, lowerLimit), upperLimit);
}
/**
* @notice Returns the difference between two uint128 values or zero if the result would be negative.
* @param x The minuend.
* @param y The subtrahend.
*/
function clip128(uint128 x, uint128 y) internal pure returns (uint128) {
unchecked {
return x < y ? 0 : x - y;
}
}
/**
* @notice Returns the difference between two uint256 values or zero if the result would be negative.
* @param x The minuend.
* @param y The subtrahend.
*/
function clip(uint256 x, uint256 y) internal pure returns (uint256) {
unchecked {
return x < y ? 0 : x - y;
}
}
/**
* @notice Divides one uint256 by another, rounding down to the nearest
* integer.
* @param x The dividend.
* @param y The divisor.
*/
function divFloor(uint256 x, uint256 y) internal pure returns (uint256) {
return mulDivFloor(x, ONE, y);
}
/**
* @notice Divides one uint256 by another, rounding up to the nearest integer.
* @param x The dividend.
* @param y The divisor.
*/
function divCeil(uint256 x, uint256 y) internal pure returns (uint256) {
return mulDivCeil(x, ONE, y);
}
/**
* @notice Multiplies two uint256 values and then divides by ONE, rounding down.
* @param x The multiplicand.
* @param y The multiplier.
*/
function mulFloor(uint256 x, uint256 y) internal pure returns (uint256) {
return OzMath.mulDiv(x, y, ONE);
}
/**
* @notice Multiplies two uint256 values and then divides by ONE, rounding up.
* @param x The multiplicand.
* @param y The multiplier.
*/
function mulCeil(uint256 x, uint256 y) internal pure returns (uint256) {
return mulDivCeil(x, y, ONE);
}
/**
* @notice Calculates the multiplicative inverse of a uint256, rounding down.
* @param x The value to invert.
*/
function invFloor(uint256 x) internal pure returns (uint256) {
unchecked {
return ONE_SQUARED / x;
}
}
/**
* @notice Calculates the multiplicative inverse of a uint256, rounding up.
* @param denominator The value to invert.
*/
function invCeil(uint256 denominator) internal pure returns (uint256 z) {
assembly ("memory-safe") {
// divide z - 1 by the denominator and add 1.
z := add(div(sub(ONE_SQUARED, 1), denominator), 1)
}
}
/**
* @notice Multiplies two uint256 values and divides by a third, rounding down.
* @param x The multiplicand.
* @param y The multiplier.
* @param k The divisor.
*/
function mulDivFloor(uint256 x, uint256 y, uint256 k) internal pure returns (uint256 result) {
result = OzMath.mulDiv(x, y, max(1, k));
}
/**
* @notice Multiplies two uint256 values and divides by a third, rounding up if there's a remainder.
* @param x The multiplicand.
* @param y The multiplier.
* @param k The divisor.
*/
function mulDivCeil(uint256 x, uint256 y, uint256 k) internal pure returns (uint256 result) {
result = mulDivFloor(x, y, k);
if (mulmod(x, y, max(1, k)) != 0) result = result + 1;
}
/**
* @notice Multiplies two uint256 values and divides by a third, rounding
* down. Will revert if `x * y` is larger than `type(uint256).max`.
* @param x The first operand for multiplication.
* @param y The second operand for multiplication.
* @param denominator The divisor after multiplication.
*/
function mulDivDown(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 z) {
assembly ("memory-safe") {
// Store x * y in z for now.
z := mul(x, y)
if iszero(denominator) {
denominator := 1
}
if iszero(or(iszero(x), eq(div(z, x), y))) {
revert(0, 0)
}
// Divide z by the denominator.
z := div(z, denominator)
}
}
/**
* @notice Multiplies two uint256 values and divides by a third, rounding
* up. Will revert if `x * y` is larger than `type(uint256).max`.
* @param x The first operand for multiplication.
* @param y The second operand for multiplication.
* @param denominator The divisor after multiplication.
*/
function mulDivUp(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 z) {
assembly ("memory-safe") {
// Store x * y in z for now.
z := mul(x, y)
if iszero(denominator) {
denominator := 1
}
if iszero(or(iszero(x), eq(div(z, x), y))) {
revert(0, 0)
}
// First, divide z - 1 by the denominator and add 1.
// We allow z - 1 to underflow if z is 0, because we multiply the
// end result by 0 if z is zero, ensuring we return 0 if z is zero.
z := mul(iszero(iszero(z)), add(div(sub(z, 1), denominator), 1))
}
}
/**
* @notice Multiplies a uint256 by another and divides by a constant,
* rounding down. Will revert if `x * y` is larger than
* `type(uint256).max`.
* @param x The multiplicand.
* @param y The multiplier.
*/
function mulDown(uint256 x, uint256 y) internal pure returns (uint256) {
return mulDivDown(x, y, ONE);
}
/**
* @notice Divides a uint256 by another, rounding down the result. Will
* revert if `x * 1e18` is larger than `type(uint256).max`.
* @param x The dividend.
* @param y The divisor.
*/
function divDown(uint256 x, uint256 y) internal pure returns (uint256) {
return mulDivDown(x, ONE, y);
}
/**
* @notice Divides a uint256 by another, rounding up the result. Will
* revert if `x * 1e18` is larger than `type(uint256).max`.
* @param x The dividend.
* @param y The divisor.
*/
function divUp(uint256 x, uint256 y) internal pure returns (uint256) {
return mulDivUp(x, ONE, y);
}
/**
* @notice Scales a number based on a difference in decimals from a default.
* @param decimals The new decimal precision.
*/
function scale(uint8 decimals) internal pure returns (uint256) {
unchecked {
if (decimals == DEFAULT_DECIMALS) {
return DEFAULT_SCALE;
} else {
return 10 ** (DEFAULT_DECIMALS - decimals);
}
}
}
/**
* @notice Adjusts a scaled amount to the token decimal scale.
* @param amount The scaled amount.
* @param scaleFactor The scaling factor to adjust by.
* @param ceil Whether to round up (true) or down (false).
*/
function ammScaleToTokenScale(uint256 amount, uint256 scaleFactor, bool ceil) internal pure returns (uint256 z) {
unchecked {
if (scaleFactor == DEFAULT_SCALE || amount == 0) {
return amount;
} else {
if (!ceil) return amount / scaleFactor;
assembly ("memory-safe") {
z := add(div(sub(amount, 1), scaleFactor), 1)
}
}
}
}
/**
* @notice Adjusts a token amount to the D18 AMM scale.
* @param amount The amount in token scale.
* @param scaleFactor The scale factor for adjustment.
*/
function tokenScaleToAmmScale(uint256 amount, uint256 scaleFactor) internal pure returns (uint256) {
if (scaleFactor == DEFAULT_SCALE) {
return amount;
} else {
return amount * scaleFactor;
}
}
/**
* @notice Returns the absolute value of a signed 32-bit integer.
* @param x The integer to take the absolute value of.
*/
function abs32(int32 x) internal pure returns (uint32) {
unchecked {
return uint32(x < 0 ? -x : x);
}
}
/**
* @notice Returns the absolute value of a signed 256-bit integer.
* @param x The integer to take the absolute value of.
*/
function abs(int256 x) internal pure returns (uint256) {
unchecked {
return uint256(x < 0 ? -x : x);
}
}
/**
* @notice Calculates the integer square root of a uint256 rounded down.
* @param x The number to take the square root of.
*/
function sqrt(uint256 x) internal pure returns (uint256 z) {
// from https://github.com/transmissions11/solmate/blob/e8f96f25d48fe702117ce76c79228ca4f20206cb/src/utils/FixedPointMathLib.sol
assembly ("memory-safe") {
let y := x
z := 181
if iszero(lt(y, 0x10000000000000000000000000000000000)) {
y := shr(128, y)
z := shl(64, z)
}
if iszero(lt(y, 0x1000000000000000000)) {
y := shr(64, y)
z := shl(32, z)
}
if iszero(lt(y, 0x10000000000)) {
y := shr(32, y)
z := shl(16, z)
}
if iszero(lt(y, 0x1000000)) {
y := shr(16, y)
z := shl(8, z)
}
z := shr(18, mul(z, add(y, 65536)))
z := shr(1, add(z, div(x, z)))
z := shr(1, add(z, div(x, z)))
z := shr(1, add(z, div(x, z)))
z := shr(1, add(z, div(x, z)))
z := shr(1, add(z, div(x, z)))
z := shr(1, add(z, div(x, z)))
z := shr(1, add(z, div(x, z)))
z := sub(z, lt(div(x, z), z))
}
}
/**
* @notice Computes the floor of a D8-scaled number as an int32, ignoring
* potential overflow in the cast.
* @param val The D8-scaled number.
*/
function floorD8Unchecked(int256 val) internal pure returns (int32) {
int32 val32;
bool check;
unchecked {
val32 = int32(val / INT_ONE_D8);
check = (val < 0 && val % INT_ONE_D8 != 0);
}
return check ? val32 - 1 : val32;
}
}// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity ^0.8.25;
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {INft} from "@maverick/v2-supplemental/contracts/positionbase/INft.sol";
import {IMulticall} from "@maverick/v2-common/contracts/base/IMulticall.sol";
import {IMaverickV2VotingEscrow} from "./IMaverickV2VotingEscrow.sol";
import {IMaverickV2RewardVault} from "./IMaverickV2RewardVault.sol";
import {IRewardAccounting} from "../rewardbase/IRewardAccounting.sol";
interface IMaverickV2Reward is INft, IMulticall, IRewardAccounting {
event NotifyRewardAmount(
address sender,
IERC20 rewardTokenAddress,
uint256 amount,
uint256 duration,
uint256 rewardRate
);
event GetReward(
address sender,
uint256 tokenId,
address recipient,
uint8 rewardTokenIndex,
uint256 stakeDuration,
IERC20 rewardTokenAddress,
RewardOutput rewardOutput,
uint256 lockupId
);
event UnStake(address indexed sender, uint256 indexed tokenId, address indexed recipient, uint256 amount);
event Stake(address indexed sender, uint256 indexed tokenId, uint256 amount);
error RewardDurationOutOfBounds(uint256 duration, uint256 minDuration, uint256 maxDuration);
error RewardZeroAmount();
error RewardNotValidRewardToken(IERC20 rewardTokenAddress);
error RewardNotValidIndex(uint8 index);
error RewardTokenCannotBeStakingToken(IERC20 stakingToken);
error RewardTransferNotSupported();
error RewardNotApprovedGetter(uint256 tokenId, address approved, address getter);
error RewardUnboostedTimePeriodNotMet(uint256 timestamp, uint256 minTimestamp);
struct RewardInfo {
// Timestamp of when the rewards finish
uint256 finishAt;
// Minimum of last updated time and reward finish time
uint256 updatedAt;
// Reward to be paid out per second
uint256 rewardRate;
// Escrowed rewards
uint256 escrowedReward;
// Sum of (reward rate * dt * 1e18 / total supply)
uint256 rewardPerTokenStored;
// Reward Token to be emitted
IERC20 rewardToken;
// ve locking contract
IMaverickV2VotingEscrow veRewardToken;
// amount available to push to ve as incentive
uint128 unboostedAmount;
// timestamp of unboosted push
uint256 lastUnboostedPushTimestamp;
}
struct ContractInfo {
// Reward Name
string name;
// Reward Symbol
string symbol;
// total supply staked
uint256 totalSupply;
// staking token
IERC20 stakingToken;
}
struct EarnedInfo {
// earned
uint256 earned;
// reward token
IERC20 rewardToken;
}
struct RewardOutput {
uint256 amount;
bool asVe;
IMaverickV2VotingEscrow veContract;
}
// solhint-disable-next-line func-name-mixedcase
function MAX_DURATION() external view returns (uint256);
// solhint-disable-next-line func-name-mixedcase
function MIN_DURATION() external view returns (uint256);
/**
* @notice This function retrieves the minimum time gap in seconds that
* must have elasped between calls to `pushUnboostedToVe()`.
*/
// solhint-disable-next-line func-name-mixedcase
function UNBOOSTED_MIN_TIME_GAP() external view returns (uint256);
/**
* @notice This function retrieves the address of the token used for
* staking in this reward contract.
* @return The address of the staking token (IERC20).
*/
function stakingToken() external view returns (IERC20);
/**
* @notice This function retrieves the address of the MaverickV2RewardVault
* contract associated with this reward contract.
* @return The address of the IMaverickV2RewardVault contract.
*/
function vault() external view returns (IMaverickV2RewardVault);
/**
* @notice This function retrieves information about all available reward tokens for this reward contract.
* @return info An array of RewardInfo structs containing details about each reward token.
*/
function rewardInfo() external view returns (RewardInfo[] memory info);
/**
* @notice This function retrieves information about all available reward
* tokens and overall contract details for this reward contract.
* @return info An array of RewardInfo structs containing details about each reward token.
* @return _contractInfo A ContractInfo struct containing overall contract details.
*/
function contractInfo() external view returns (RewardInfo[] memory info, ContractInfo memory _contractInfo);
/**
* @notice This function calculates the total amount of all earned rewards
* for a specific tokenId across all reward tokens.
* @param tokenId The address of the tokenId for which to calculate earned rewards.
* @return earnedInfo An array of EarnedInfo structs containing details about earned rewards for each supported token.
*/
function earned(uint256 tokenId) external view returns (EarnedInfo[] memory earnedInfo);
/**
* @notice This function calculates the total amount of earned rewards for
* a specific tokenId for a particular reward token.
* @param tokenId The address of the tokenId for which to calculate earned rewards.
* @param rewardTokenAddress The address of the specific reward token.
* @return amount The total amount of earned rewards for the specified token.
*/
function earned(uint256 tokenId, IERC20 rewardTokenAddress) external view returns (uint256);
/**
* @notice This function retrieves the internal index associated with a specific reward token address.
* @param rewardToken The address of the reward token to get the index for.
* @return rewardTokenIndex The internal index of the token within the reward contract (uint8).
*/
function tokenIndex(IERC20 rewardToken) external view returns (uint8 rewardTokenIndex);
/**
* @notice This function retrieves the total number of supported reward tokens in this reward contract.
* @return count The total number of reward tokens (uint256).
*/
function rewardTokenCount() external view returns (uint256);
/**
* @notice This function transfers a specified amount of reward tokens from
* the caller to distribute them over a defined duration. The caller will
* need to approve this rewards contract to make the transfer on the
* caller's behalf. See `notifyRewardAmount` for details of how the
* duration is set by the rewards contract.
* @param rewardToken The address of the reward token to transfer.
* @param duration The duration (in seconds) over which to distribute the rewards.
* @param amount The amount of reward tokens to transfer.
* @return _duration The duration in seconds that the incentives will be distributed over.
*/
function transferAndNotifyRewardAmount(
IERC20 rewardToken,
uint256 duration,
uint256 amount
) external returns (uint256 _duration);
/**
* @notice This function notifies the vault to distribute a previously
* transferred amount of reward tokens over a defined duration. (Assumes
* tokens are already in the contract).
* @dev The duration of the distribution may not be the same as the input
* duration. If this notify amount is less than the amount already pending
* disbursement, then this new amount will be distributed as the same rate
* as the existing rate and that will dictate the duration. Alternatively,
* if the amount is more than the pending disbursement, then the input
* duration will be honored and all pending disbursement tokens will also be
* distributed at this newly set rate.
* @param rewardToken The address of the reward token to distribute.
* @param duration The duration (in seconds) over which to distribute the rewards.
* @return _duration The duration in seconds that the incentives will be distributed over.
*/
function notifyRewardAmount(IERC20 rewardToken, uint256 duration) external returns (uint256 _duration);
/**
* @notice This function transfers a specified amount of staking tokens
* from the caller to the staking `vault()` and stakes them on the
* recipient's behalf. The user has to approve this reward contract to
* transfer the staking token on their behalf for this function not to
* revert.
* @param tokenId Nft tokenId to stake for the staked tokens.
* @param _amount The amount of staking tokens to transfer and stake.
* @return amount The amount of staking tokens staked. May differ from
* input if there were unstaked tokens in the vault prior to this call.
* @return stakedTokenId TokenId where liquidity was staked to. This may
* differ from the input tokenIf if the input `tokenId=0`.
*/
function transferAndStake(
uint256 tokenId,
uint256 _amount
) external returns (uint256 amount, uint256 stakedTokenId);
/**
* @notice This function stakes the staking tokens to the specified
* tokenId. If `tokenId=0` is passed in, then this function will look up
* the caller's tokenIds and stake to the zero-index tokenId. If the user
* does not yet have a staking NFT tokenId, this function will mint one for
* the sender and stake to that newly-minted tokenId.
*
* @dev The amount staked is derived by looking at the new balance on
* the `vault()`. So, for staking to yield a non-zero balance, the user
* will need to have transfered the `stakingToken()` to the `vault()` prior
* to calling `stake`. Note, tokens sent to the reward contract instead
* of the vault will not be stakable and instead will be eligible to be
* disbursed as rewards to stakers. This is an advanced usage function.
* If in doubt about the mechanics of staking, use `transferAndStake()`
* instead.
* @param tokenId The address of the tokenId whose tokens to stake.
* @return amount The amount of staking tokens staked (uint256).
* @return stakedTokenId TokenId where liquidity was staked to. This may
* differ from the input tokenIf if the input `tokenId=0`.
*/
function stake(uint256 tokenId) external returns (uint256 amount, uint256 stakedTokenId);
/**
* @notice This function initiates unstaking of a specified amount of
* staking tokens for the caller and sends them to a recipient.
* @param tokenId The address of the tokenId whose tokens to unstake.
* @param amount The amount of staking tokens to unstake (uint256).
*/
function unstakeToOwner(uint256 tokenId, uint256 amount) external;
/**
* @notice This function initiates unstaking of a specified amount of
* staking tokens on behalf of a specific tokenId and sends them to a recipient.
* @dev To unstakeFrom, the caller must have an approval allowance of at
* least `amount`. Approvals follow the ERC-721 approval interface.
* @param tokenId The address of the tokenId whose tokens to unstake.
* @param recipient The address to which the unstaked tokens will be sent.
* @param amount The amount of staking tokens to unstake (uint256).
*/
function unstake(uint256 tokenId, address recipient, uint256 amount) external;
/**
* @notice This function retrieves the claimable reward for a specific
* reward token and stake duration for the caller.
* @param tokenId The address of the tokenId whose reward to claim.
* @param rewardTokenIndex The internal index of the reward token.
* @param stakeDuration The duration (in seconds) for which the rewards were staked.
* @return rewardOutput A RewardOutput struct containing details about the claimable reward.
*/
function getRewardToOwner(
uint256 tokenId,
uint8 rewardTokenIndex,
uint256 stakeDuration
) external returns (RewardOutput memory rewardOutput);
/**
* @notice This function retrieves the claimable reward for a specific
* reward token, stake duration, and lockup ID for the caller.
* @param tokenId The address of the tokenId whose reward to claim.
* @param rewardTokenIndex The internal index of the reward token.
* @param stakeDuration The duration (in seconds) for which the rewards were staked.
* @param lockupId The unique identifier for the specific lockup (optional).
* @return rewardOutput A RewardOutput struct containing details about the claimable reward.
*/
function getRewardToOwnerForExistingVeLockup(
uint256 tokenId,
uint8 rewardTokenIndex,
uint256 stakeDuration,
uint256 lockupId
) external returns (RewardOutput memory);
/**
* @notice This function retrieves the claimable reward for a specific
* reward token and stake duration for a specified tokenId and sends it to
* a recipient. If the reward is staked in the corresponding veToken, a
* new lockup in the ve token will be created.
* @param tokenId The address of the tokenId whose reward to claim.
* @param recipient The address to which the claimed reward will be sent.
* @param rewardTokenIndex The internal index of the reward token.
* @param stakeDuration The duration (in seconds) for which the rewards
* will be staked in the ve contract.
* @return rewardOutput A RewardOutput struct containing details about the claimable reward.
*/
function getReward(
uint256 tokenId,
address recipient,
uint8 rewardTokenIndex,
uint256 stakeDuration
) external returns (RewardOutput memory);
/**
* @notice This function retrieves a list of all supported tokens in the reward contract.
* @param includeStakingToken A flag indicating whether to include the staking token in the list.
* @return tokens An array of IERC20 token addresses.
*/
function tokenList(bool includeStakingToken) external view returns (IERC20[] memory tokens);
/**
* @notice This function retrieves the veToken contract associated with a
* specific index within the reward contract.
* @param index The index of the veToken to retrieve.
* @return output The IMaverickV2VotingEscrow contract associated with the index.
*/
function veTokenByIndex(uint8 index) external view returns (IMaverickV2VotingEscrow output);
/**
* @notice This function retrieves the reward token contract associated
* with a specific index within the reward contract.
* @param index The index of the reward token to retrieve.
* @return output The IERC20 contract associated with the index.
*/
function rewardTokenByIndex(uint8 index) external view returns (IERC20 output);
/**
* @notice This function calculates the boosted amount an tokenId would
* receive based on their veToken balance and stake duration.
* @param tokenId The address of the tokenId for which to calculate the boosted amount.
* @param veToken The IMaverickV2VotingEscrow contract representing the veToken used for boosting.
* @param rawAmount The raw (unboosted) amount.
* @param stakeDuration The duration (in seconds) for which the rewards would be staked.
* @return earnedAmount The boosted amount the tokenId would receive (uint256).
* @return asVe A boolean indicating whether the boosted amount is
* staked in the veToken (true) or is disbursed without ve staking required (false).
*/
function boostedAmount(
uint256 tokenId,
IMaverickV2VotingEscrow veToken,
uint256 rawAmount,
uint256 stakeDuration
) external view returns (uint256 earnedAmount, bool asVe);
/**
* @notice This function is used to push unboosted rewards to the veToken
* contract. This unboosted reward amount is then distributed to the
* veToken holders. This function will revert if less than
* `UNBOOSTED_MIN_TIME_GAP()` seconds have passed since the last call.
* @param rewardTokenIndex The internal index of the reward token.
* @return amount The amount of unboosted rewards pushed (uint128).
* @return timepoint The timestamp associated with the pushed rewards (uint48).
* @return batchIndex The batch index for the pushed rewards (uint256).
*/
function pushUnboostedToVe(
uint8 rewardTokenIndex
) external returns (uint128 amount, uint48 timepoint, uint256 batchIndex);
/**
* @notice Mints an NFT stake to a user. This NFT will not possesses any
* assets until a user `stake`s asset to the NFT tokenId as part of a
* separate call.
* @param recipient The address that owns the output NFT
*/
function mint(address recipient) external returns (uint256 tokenId);
/**
* @notice Mints an NFT stake to caller. This NFT will not possesses any
* assets until a user `stake`s asset to the NFT tokenId as part of a
* separate call.
*/
function mintToSender() external returns (uint256 tokenId);
}// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity ^0.8.25;
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
interface IMaverickV2RewardVault {
error RewardVaultUnauthorizedAccount(address caller, address owner);
/**
* @notice This function allows the owner of the reward vault to withdraw a
* specified amount of staking tokens to a recipient address. If non-owner
* calls this function, it will revert.
* @param recipient The address to which the withdrawn staking tokens will be sent.
* @param amount The amount of staking tokens to withdraw.
*/
function withdraw(address recipient, uint256 amount) external;
/**
* @notice This function retrieves the address of the owner of the reward
* vault contract.
*/
function owner() external view returns (address);
/**
* @notice This function retrieves the address of the ERC20 token used for
* staking within the reward vault.
*/
function stakingToken() external view returns (IERC20);
}// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity ^0.8.25;
import {IVotes} from "@openzeppelin/contracts/governance/utils/IVotes.sol";
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import {IERC6372} from "@openzeppelin/contracts/interfaces/IERC6372.sol";
import {IHistoricalBalance} from "../votingescrowbase/IHistoricalBalance.sol";
interface IMaverickV2VotingEscrowBase is IVotes, IHistoricalBalance {
error VotingEscrowTransferNotSupported();
error VotingEscrowInvalidAddress(address);
error VotingEscrowInvalidAmount(uint256);
error VotingEscrowInvalidDuration(uint256 duration, uint256 minDuration, uint256 maxDuration);
error VotingEscrowInvalidEndTime(uint256 newEnd, uint256 oldEnd);
error VotingEscrowStakeStillLocked(uint256 currentTime, uint256 endTime);
error VotingEscrowStakeAlreadyRedeemed();
error VotingEscrowNotApprovedExtender(address account, address extender, uint256 lockupId);
error VotingEscrowIncentiveAlreadyClaimed(address account, uint256 batchIndex);
error VotingEscrowNoIncentivesToClaim(address account, uint256 batchIndex);
error VotingEscrowInvalidExtendIncentiveToken(IERC20 incentiveToken);
error VotingEscrowNoSupplyAtTimepoint();
error VotingEscrowIncentiveTimepointInFuture(uint256 timestamp, uint256 claimTimepoint);
event Stake(address indexed user, uint256 lockupId, Lockup);
event Unstake(address indexed user, uint256 lockupId, Lockup);
event ExtenderApproval(address staker, address extender, uint256 lockupId, bool newState);
event ClaimIncentiveBatch(uint256 batchIndex, address account, uint256 claimAmount);
event CreateNewIncentiveBatch(
address user,
uint256 amount,
uint256 timepoint,
uint256 stakeDuration,
IERC20 incentiveToken
);
struct Lockup {
uint128 amount;
uint128 end;
uint256 votes;
}
struct ClaimInformation {
bool timepointInPast;
bool hasClaimed;
uint128 claimAmount;
}
struct BatchInformation {
uint128 totalIncentives;
uint128 stakeDuration;
uint48 claimTimepoint;
IERC20 incentiveToken;
}
struct TokenIncentiveTotals {
uint128 totalIncentives;
uint128 claimedIncentives;
}
// solhint-disable-next-line func-name-mixedcase
function MIN_STAKE_DURATION() external returns (uint256 duration);
// solhint-disable-next-line func-name-mixedcase
function MAX_STAKE_DURATION() external returns (uint256 duration);
// solhint-disable-next-line func-name-mixedcase
function YEAR_BASE() external returns (uint256);
/**
* @notice This function retrieves the address of the ERC20 token used as the base token for staking and rewards.
* @return baseToken The address of the IERC20 base token contract.
*/
function baseToken() external returns (IERC20);
/**
* @notice This function retrieves the starting timestamp. This may be used
* for reward calculations or other time-based logic.
*/
function startTimestamp() external returns (uint256 timestamp);
/**
* @notice This function retrieves the details of a specific lockup for a given staker and lockup index.
* @param staker The address of the staker for which to retrieve the lockup details.
* @param index The index of the lockup within the staker's lockup history.
* @return lockup A Lockup struct containing details about the lockup (see struct definition for details).
*/
function getLockup(address staker, uint256 index) external view returns (Lockup memory lockup);
/**
* @notice This function retrieves the total number of lockups associated with a specific staker.
* @param staker The address of the staker for which to retrieve the lockup count.
* @return count The total number of lockups for the staker.
*/
function lockupCount(address staker) external view returns (uint256 count);
/**
* @notice This function simulates a lockup scenario, providing details about the resulting lockup structure for a specified amount and duration.
* @param amount The amount of tokens to be locked.
* @param duration The duration of the lockup period.
* @return lockup A Lockup struct containing details about the simulated lockup (see struct definition for details).
*/
function previewVotes(uint128 amount, uint256 duration) external view returns (Lockup memory lockup);
/**
* @notice This function grants approval for a designated extender contract to manage a specific lockup on behalf of the staker.
* @param extender The address of the extender contract to be approved.
* @param lockupId The ID of the lockup for which to grant approval.
*/
function approveExtender(address extender, uint256 lockupId) external;
/**
* @notice This function revokes approval previously granted to an extender contract for managing a specific lockup.
* @param extender The address of the extender contract whose approval is being revoked.
* @param lockupId The ID of the lockup for which to revoke approval.
*/
function revokeExtender(address extender, uint256 lockupId) external;
/**
* @notice This function checks whether a specific account has been approved by a staker to manage a particular lockup through an extender contract.
* @param account The address of the account to check for approval (may be the extender or another account).
* @param extender The address of the extender contract for which to check approval.
* @param lockupId The ID of the lockup to verify approval for.
* @return isApproved True if the account is approved for the lockup, False otherwise (bool).
*/
function isApprovedExtender(address account, address extender, uint256 lockupId) external view returns (bool);
/**
* @notice This function extends the lockup period for the caller (msg.sender) for a specified lockup ID, adding a new duration and amount.
* @param lockupId The ID of the lockup to be extended.
* @param duration The additional duration to extend the lockup by.
* @param amount The additional amount of tokens to be locked.
* @return newLockup A Lockup struct containing details about the newly extended lockup (see struct definition for details).
*/
function extendForSender(
uint256 lockupId,
uint256 duration,
uint128 amount
) external returns (Lockup memory newLockup);
/**
* @notice This function extends the lockup period for a specified account, adding a new duration and amount. The caller (msg.sender) must be authorized to manage the lockup through an extender contract.
* @param account The address of the account whose lockup is being extended.
* @param lockupId The ID of the lockup to be extended.
* @param duration The additional duration to extend the lockup by.
* @param amount The additional amount of tokens to be locked.
* @return newLockup A Lockup struct containing details about the newly extended lockup (see struct definition for details).
*/
function extendForAccount(
address account,
uint256 lockupId,
uint256 duration,
uint128 amount
) external returns (Lockup memory newLockup);
/**
* @notice This function merges multiple lockups associated with the caller
* (msg.sender) into a single new lockup.
* @param lockupIds An array containing the IDs of the lockups to be merged.
* @return newLockup A Lockup struct containing details about the newly merged lockup (see struct definition for details).
*/
function merge(uint256[] memory lockupIds) external returns (Lockup memory newLockup);
/**
* @notice This function unstakes the specified lockup ID for the caller (msg.sender), returning the details of the unstaked lockup.
* @param lockupId The ID of the lockup to be unstaked.
* @param to The address to which the unstaked tokens should be sent (optional, defaults to msg.sender).
* @return lockup A Lockup struct containing details about the unstaked lockup (see struct definition for details).
*/
function unstake(uint256 lockupId, address to) external returns (Lockup memory lockup);
/**
* @notice This function is a simplified version of `unstake` that automatically sends the unstaked tokens to the caller (msg.sender).
* @param lockupId The ID of the lockup to be unstaked.
* @return lockup A Lockup struct containing details about the unstaked lockup (see struct definition for details).
*/
function unstakeToSender(uint256 lockupId) external returns (Lockup memory lockup);
/**
* @notice This function stakes a specified amount of tokens for the caller
* (msg.sender) for a defined duration.
* @param amount The amount of tokens to be staked.
* @param duration The duration of the lockup period.
* @return lockup A Lockup struct containing details about the newly
* created lockup (see struct definition for details).
*/
function stakeToSender(uint128 amount, uint256 duration) external returns (Lockup memory lockup);
/**
* @notice This function stakes a specified amount of tokens for a defined
* duration, allowing the caller (msg.sender) to specify an optional
* recipient for the staked tokens.
* @param amount The amount of tokens to be staked.
* @param duration The duration of the lockup period.
* @param to The address to which the staked tokens will be credited (optional, defaults to msg.sender).
* @return lockup A Lockup struct containing details about the newly
* created lockup (see struct definition for details).
*/
function stake(uint128 amount, uint256 duration, address to) external returns (Lockup memory);
/**
* @notice This function retrieves the total incentive information for a specific ERC-20 token.
* @param token The address of the ERC20 token for which to retrieve incentive totals.
* @return totals A TokenIncentiveTotals struct containing details about
* the token's incentives (see struct definition for details).
*/
function incentiveTotals(IERC20 token) external view returns (TokenIncentiveTotals memory);
/**
* @notice This function retrieves the total number of created incentive batches.
* @return count The total number of incentive batches.
*/
function incentiveBatchCount() external view returns (uint256);
/**
* @notice This function retrieves claim information for a specific account and incentive batch index.
* @param account The address of the account for which to retrieve claim information.
* @param batchIndex The index of the incentive batch for which to retrieve
* claim information.
* @return claimInformation A ClaimInformation struct containing details about the
* account's claims for the specified batch (see struct definition for
* details).
* @return batchInformation A BatchInformation struct containing details about the
* specified batch (see struct definition for details).
*/
function claimAndBatchInformation(
address account,
uint256 batchIndex
) external view returns (ClaimInformation memory claimInformation, BatchInformation memory batchInformation);
/**
* @notice This function retrieves batch information for a incentive batch index.
* @param batchIndex The index of the incentive batch for which to retrieve
* claim information.
* @return info A BatchInformation struct containing details about the
* specified batch (see struct definition for details).
*/
function incentiveBatchInformation(uint256 batchIndex) external view returns (BatchInformation memory info);
/**
* @notice This function allows claiming rewards from a specific incentive
* batch while simultaneously extending a lockup with the claimed tokens.
* @param batchIndex The index of the incentive batch from which to claim rewards.
* @param lockupId The ID of the lockup to be extended with the claimed tokens.
* @return lockup A Lockup struct containing details about the updated
* lockup after extension (see struct definition for details).
* @return claimAmount The amount of tokens claimed from the incentive batch.
*/
function claimFromIncentiveBatchAndExtend(
uint256 batchIndex,
uint256 lockupId
) external returns (Lockup memory lockup, uint128 claimAmount);
/**
* @notice This function allows claiming rewards from a specific incentive
* batch, without extending any lockups.
* @param batchIndex The index of the incentive batch from which to claim rewards.
* @return lockup A Lockup struct containing details about the user's
* lockup that might have been affected by the claim (see struct definition
* for details).
* @return claimAmount The amount of tokens claimed from the incentive batch.
*/
function claimFromIncentiveBatch(uint256 batchIndex) external returns (Lockup memory lockup, uint128 claimAmount);
/**
* @notice This function creates a new incentive batch for a specified amount
* of incentive tokens, timepoint, stake duration, and associated ERC-20
* token. An incentive batch is a reward of incentives put up by the
* caller at a certain timepoint. The incentive batch is claimable by ve
* holders after the timepoint has passed. The ve holders will receive
* their incentive pro rata of their vote balance (`pastbalanceOf`) at that
* timepoint. The incentivizer can specify that users have to stake the
* resulting incentive for a given `stakeDuration` number of seconds.
* `stakeDuration` can either be zero, meaning that no staking is required
* on redemption, or can be a number between `MIN_STAKE_DURATION()` and
* `MAX_STAKE_DURATION()`.
* @param amount The total amount of incentive tokens to be distributed in the batch.
* @param timepoint The timepoint at which the incentive batch starts accruing rewards.
* @param stakeDuration The duration of the lockup period required to be
* eligible for the incentive batch rewards.
* @param incentiveToken The address of the ERC20 token used for the incentive rewards.
* @return index The index of the newly created incentive batch.
*/
function createIncentiveBatch(
uint128 amount,
uint48 timepoint,
uint128 stakeDuration,
IERC20 incentiveToken
) external returns (uint256 index);
}
interface IMaverickV2VotingEscrow is IMaverickV2VotingEscrowBase, IERC20Metadata, IERC6372 {}// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity ^0.8.25;
import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {IMaverickV2RewardVault} from "./interfaces/IMaverickV2RewardVault.sol";
/**
* @notice Vault contract with owner-only withdraw function. Used by the
* Reward contract to segregate staking funds from incentive rewards funds.
*/
contract MaverickV2RewardVault is IMaverickV2RewardVault {
using SafeERC20 for IERC20;
/// @inheritdoc IMaverickV2RewardVault
address public immutable owner;
/// @inheritdoc IMaverickV2RewardVault
IERC20 public immutable stakingToken;
constructor(IERC20 _stakingToken) {
owner = msg.sender;
stakingToken = _stakingToken;
}
/// @inheritdoc IMaverickV2RewardVault
function withdraw(address recipient, uint256 amount) public {
if (owner != msg.sender) {
revert RewardVaultUnauthorizedAccount(msg.sender, owner);
}
stakingToken.safeTransfer(recipient, amount);
}
}// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity ^0.8.25;
interface IRewardAccounting {
error InsufficientBalance(uint256 tokenId, uint256 currentBalance, uint256 value);
/**
* @notice Balance of stake for a given `tokenId` account.
*/
function stakeBalanceOf(uint256 tokenId) external view returns (uint256 balance);
/**
* @notice Sum of all balances across all tokenIds.
*/
function stakeTotalSupply() external view returns (uint256 supply);
}// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity ^0.8.25;
import {IRewardAccounting} from "./IRewardAccounting.sol";
/**
* @notice Provides ERC20-like functions for minting, burning, balance tracking
* and total supply. Tracking is based on a tokenId user index instead of an
* address.
*/
abstract contract RewardAccounting is IRewardAccounting {
mapping(uint256 account => uint256) private _stakeBalances;
uint256 private _stakeTotalSupply;
/// @inheritdoc IRewardAccounting
function stakeBalanceOf(uint256 tokenId) public view returns (uint256 balance) {
balance = _stakeBalances[tokenId];
}
/// @inheritdoc IRewardAccounting
function stakeTotalSupply() public view returns (uint256 supply) {
supply = _stakeTotalSupply;
}
/**
* @notice Mint to staking account for a tokenId account.
*/
function _mintStake(uint256 tokenId, uint256 value) internal {
// checked; will revert if supply overflows.
_stakeTotalSupply += value;
unchecked {
// unchecked; totalsupply will overflow before balance for a given
// account does.
_stakeBalances[tokenId] += value;
}
}
/**
* @notice Burn from staking account for a tokenId account.
*/
function _burnStake(uint256 tokenId, uint256 value) internal {
uint256 currentBalance = _stakeBalances[tokenId];
if (value > currentBalance) revert InsufficientBalance(tokenId, currentBalance, value);
unchecked {
_stakeTotalSupply -= value;
_stakeBalances[tokenId] = currentBalance - value;
}
}
}// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity ^0.8.25;
interface IHistoricalBalance {
/**
* @notice This function retrieves the historical balance of an account at
* a specific point in time.
* @param account The address of the account for which to retrieve the
* historical balance.
* @param timepoint The timepoint (block number or timestamp depending on
* implementation) at which to query the balance (uint256).
* @return balance The balance of the account at the specified timepoint.
*/
function getPastBalanceOf(address account, uint256 timepoint) external view returns (uint256 balance);
}// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity ^0.8.25;
import {IERC721Enumerable} from "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
interface INft is IERC721Enumerable {
/**
* @notice Check if an NFT exists for a given owner and index.
*/
function tokenOfOwnerByIndexExists(address owner, uint256 index) external view returns (bool);
/**
* @notice Return Id of the next token minted.
*/
function nextTokenId() external view returns (uint256 nextTokenId_);
/**
* @notice Check if the caller has access to a specific NFT by tokenId.
*/
function checkAuthorized(address spender, uint256 tokenId) external view returns (address owner);
/**
* @notice List of tokenIds by owner.
*/
function tokenIdsOfOwner(address owner) external view returns (uint256[] memory tokenIds);
/**
* @notice Get the token URI for a given tokenId.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
function name() external view returns (string memory);
function symbol() external view returns (string memory);
}// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity ^0.8.25;
import {ERC721, IERC165} from "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import {ERC721Enumerable} from "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import {INft} from "./INft.sol";
/**
* @notice Extensions to ECR-721 to support an image contract and owner
* enumeration.
*/
abstract contract Nft is ERC721Enumerable, INft {
uint256 private _nextTokenId = 1;
constructor(string memory __name, string memory __symbol) ERC721(__name, __symbol) {}
/**
* @notice Internal function to mint a new NFT and assign it to the
* specified address.
* @param to The address to which the NFT will be minted.
* @return tokenId The ID of the newly minted NFT.
*/
function _mint(address to) internal returns (uint256 tokenId) {
super._mint(to, _nextTokenId);
tokenId = _nextTokenId++;
}
/**
* @notice Modifier to restrict access to functions to the owner of a
* specific NFT by its tokenId.
*/
modifier onlyTokenIdAuthorizedUser(uint256 tokenId) {
checkAuthorized(msg.sender, tokenId);
_;
}
/// @inheritdoc INft
function nextTokenId() public view returns (uint256 nextTokenId_) {
return _nextTokenId;
}
/// @inheritdoc INft
function tokenOfOwnerByIndexExists(address ownerToCheck, uint256 index) public view returns (bool exists) {
return index < balanceOf(ownerToCheck);
}
/// @inheritdoc INft
function tokenIdsOfOwner(address owner) public view returns (uint256[] memory tokenIds) {
uint256 tokenCount = balanceOf(owner);
tokenIds = new uint256[](tokenCount);
for (uint256 k; k < tokenCount; k++) {
tokenIds[k] = tokenOfOwnerByIndex(owner, k);
}
}
/// @inheritdoc INft
function checkAuthorized(address spender, uint256 tokenId) public view returns (address owner) {
owner = ownerOf(tokenId);
_checkAuthorized(owner, spender, tokenId);
}
// ************************************************************
// The following functions are overrides required by Solidity.
function _update(address to, uint256 tokenId, address auth) internal override(ERC721Enumerable) returns (address) {
return super._update(to, tokenId, auth);
}
function _increaseBalance(address account, uint128 value) internal override(ERC721Enumerable) {
super._increaseBalance(account, value);
}
function name() public view virtual override(INft, ERC721) returns (string memory) {
return super.name();
}
function symbol() public view virtual override(INft, ERC721) returns (string memory) {
return super.symbol();
}
function supportsInterface(bytes4 interfaceId) public view override(ERC721Enumerable, IERC165) returns (bool) {
return super.supportsInterface(interfaceId);
}
function tokenURI(uint256 tokenId) public view virtual override(INft, ERC721) returns (string memory) {
return super.tokenURI(tokenId);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (governance/utils/IVotes.sol)
pragma solidity ^0.8.20;
/**
* @dev Common interface for {ERC20Votes}, {ERC721Votes}, and other {Votes}-enabled contracts.
*/
interface IVotes {
/**
* @dev The signature used has expired.
*/
error VotesExpiredSignature(uint256 expiry);
/**
* @dev Emitted when an account changes their delegate.
*/
event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);
/**
* @dev Emitted when a token transfer or delegate change results in changes to a delegate's number of voting units.
*/
event DelegateVotesChanged(address indexed delegate, uint256 previousVotes, uint256 newVotes);
/**
* @dev Returns the current amount of votes that `account` has.
*/
function getVotes(address account) external view returns (uint256);
/**
* @dev Returns the amount of votes that `account` had at a specific moment in the past. If the `clock()` is
* configured to use block numbers, this will return the value at the end of the corresponding block.
*/
function getPastVotes(address account, uint256 timepoint) external view returns (uint256);
/**
* @dev Returns the total supply of votes available at a specific moment in the past. If the `clock()` is
* configured to use block numbers, this will return the value at the end of the corresponding block.
*
* NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes.
* Votes that have not been delegated are still part of total supply, even though they would not participate in a
* vote.
*/
function getPastTotalSupply(uint256 timepoint) external view returns (uint256);
/**
* @dev Returns the delegate that `account` has chosen.
*/
function delegates(address account) external view returns (address);
/**
* @dev Delegates votes from the sender to `delegatee`.
*/
function delegate(address delegatee) external;
/**
* @dev Delegates votes from signer to `delegatee`.
*/
function delegateBySig(address delegatee, uint256 nonce, uint256 expiry, uint8 v, bytes32 r, bytes32 s) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;
/**
* @dev Standard ERC20 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
*/
interface IERC20Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC20InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC20InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
* @param spender Address that may be allowed to operate on tokens without being their owner.
* @param allowance Amount of tokens a `spender` is allowed to operate with.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC20InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `spender` to be approved. Used in approvals.
* @param spender Address that may be allowed to operate on tokens without being their owner.
*/
error ERC20InvalidSpender(address spender);
}
/**
* @dev Standard ERC721 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
*/
interface IERC721Errors {
/**
* @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
* Used in balance queries.
* @param owner Address of the current owner of a token.
*/
error ERC721InvalidOwner(address owner);
/**
* @dev Indicates a `tokenId` whose `owner` is the zero address.
* @param tokenId Identifier number of a token.
*/
error ERC721NonexistentToken(uint256 tokenId);
/**
* @dev Indicates an error related to the ownership over a particular token. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param tokenId Identifier number of a token.
* @param owner Address of the current owner of a token.
*/
error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC721InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC721InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param tokenId Identifier number of a token.
*/
error ERC721InsufficientApproval(address operator, uint256 tokenId);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC721InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC721InvalidOperator(address operator);
}
/**
* @dev Standard ERC1155 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
*/
interface IERC1155Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
* @param tokenId Identifier number of a token.
*/
error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC1155InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC1155InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param owner Address of the current owner of a token.
*/
error ERC1155MissingApprovalForAll(address operator, address owner);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC1155InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC1155InvalidOperator(address operator);
/**
* @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
* Used in batch transfers.
* @param idsLength Length of the array of token identifiers
* @param valuesLength Length of the array of token amounts
*/
error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC6372.sol)
pragma solidity ^0.8.20;
interface IERC6372 {
/**
* @dev Clock used for flagging checkpoints. Can be overridden to implement timestamp based checkpoints (and voting).
*/
function clock() external view returns (uint48);
/**
* @dev Description of the clock
*/
// solhint-disable-next-line func-name-mixedcase
function CLOCK_MODE() external view returns (string memory);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.20;
import {IERC20} from "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol)
pragma solidity ^0.8.20;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*
* ==== Security Considerations
*
* There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
* expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
* considered as an intention to spend the allowance in any specific way. The second is that because permits have
* built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
* take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
* generally recommended is:
*
* ```solidity
* function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
* try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
* doThing(..., value);
* }
*
* function doThing(..., uint256 value) public {
* token.safeTransferFrom(msg.sender, address(this), value);
* ...
* }
* ```
*
* Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of
* `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also
* {SafeERC20-safeTransferFrom}).
*
* Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so
* contracts should have entry points that don't rely on permit.
*/
interface IERC20Permit {
/**
* @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
* given ``owner``'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
* over the EIP712-formatted function arguments.
* - the signature must use ``owner``'s current nonce (see {nonces}).
*
* For more information on the signature format, see the
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
* section].
*
* CAUTION: See Security Considerations above.
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
/**
* @dev Returns the current nonce for `owner`. This value must be
* included whenever a signature is generated for {permit}.
*
* Every successful call to {permit} increases ``owner``'s nonce by one. This
* prevents a signature from being used multiple times.
*/
function nonces(address owner) external view returns (uint256);
/**
* @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view returns (bytes32);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.20;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the value of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the value of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves a `value` amount of tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 value) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets a `value` amount of tokens as the allowance of `spender` over the
* caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the
* allowance mechanism. `value` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 value) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.20;
import {IERC20} from "../IERC20.sol";
import {IERC20Permit} from "../extensions/IERC20Permit.sol";
import {Address} from "../../../utils/Address.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using Address for address;
/**
* @dev An operation with an ERC20 token failed.
*/
error SafeERC20FailedOperation(address token);
/**
* @dev Indicates a failed `decreaseAllowance` request.
*/
error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);
/**
* @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*/
function safeTransfer(IERC20 token, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value)));
}
/**
* @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
* calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
*/
function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value)));
}
/**
* @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*/
function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 oldAllowance = token.allowance(address(this), spender);
forceApprove(token, spender, oldAllowance + value);
}
/**
* @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no
* value, non-reverting calls are assumed to be successful.
*/
function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal {
unchecked {
uint256 currentAllowance = token.allowance(address(this), spender);
if (currentAllowance < requestedDecrease) {
revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
}
forceApprove(token, spender, currentAllowance - requestedDecrease);
}
}
/**
* @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
* to be set to zero before setting it to a non-zero value, such as USDT.
*/
function forceApprove(IERC20 token, address spender, uint256 value) internal {
bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value));
if (!_callOptionalReturnBool(token, approvalCall)) {
_callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0)));
_callOptionalReturn(token, approvalCall);
}
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data);
if (returndata.length != 0 && !abi.decode(returndata, (bool))) {
revert SafeERC20FailedOperation(address(token));
}
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*
* This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
*/
function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false
// and not revert is the subcall reverts.
(bool success, bytes memory returndata) = address(token).call(data);
return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/ERC721.sol)
pragma solidity ^0.8.20;
import {IERC721} from "./IERC721.sol";
import {IERC721Receiver} from "./IERC721Receiver.sol";
import {IERC721Metadata} from "./extensions/IERC721Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {Strings} from "../../utils/Strings.sol";
import {IERC165, ERC165} from "../../utils/introspection/ERC165.sol";
import {IERC721Errors} from "../../interfaces/draft-IERC6093.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Errors {
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
mapping(uint256 tokenId => address) private _owners;
mapping(address owner => uint256) private _balances;
mapping(uint256 tokenId => address) private _tokenApprovals;
mapping(address owner => mapping(address operator => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual returns (uint256) {
if (owner == address(0)) {
revert ERC721InvalidOwner(address(0));
}
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual returns (address) {
return _requireOwned(tokenId);
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual returns (string memory) {
_requireOwned(tokenId);
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string.concat(baseURI, tokenId.toString()) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overridden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual {
_approve(to, tokenId, _msgSender());
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual returns (address) {
_requireOwned(tokenId);
return _getApproved(tokenId);
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual {
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(address from, address to, uint256 tokenId) public virtual {
if (to == address(0)) {
revert ERC721InvalidReceiver(address(0));
}
// Setting an "auth" arguments enables the `_isAuthorized` check which verifies that the token exists
// (from != 0). Therefore, it is not needed to verify that the return value is not 0 here.
address previousOwner = _update(to, tokenId, _msgSender());
if (previousOwner != from) {
revert ERC721IncorrectOwner(from, tokenId, previousOwner);
}
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(address from, address to, uint256 tokenId) public {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual {
transferFrom(from, to, tokenId);
_checkOnERC721Received(from, to, tokenId, data);
}
/**
* @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
*
* IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the
* core ERC721 logic MUST be matched with the use of {_increaseBalance} to keep balances
* consistent with ownership. The invariant to preserve is that for any address `a` the value returned by
* `balanceOf(a)` must be equal to the number of tokens such that `_ownerOf(tokenId)` is `a`.
*/
function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
return _owners[tokenId];
}
/**
* @dev Returns the approved address for `tokenId`. Returns 0 if `tokenId` is not minted.
*/
function _getApproved(uint256 tokenId) internal view virtual returns (address) {
return _tokenApprovals[tokenId];
}
/**
* @dev Returns whether `spender` is allowed to manage `owner`'s tokens, or `tokenId` in
* particular (ignoring whether it is owned by `owner`).
*
* WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this
* assumption.
*/
function _isAuthorized(address owner, address spender, uint256 tokenId) internal view virtual returns (bool) {
return
spender != address(0) &&
(owner == spender || isApprovedForAll(owner, spender) || _getApproved(tokenId) == spender);
}
/**
* @dev Checks if `spender` can operate on `tokenId`, assuming the provided `owner` is the actual owner.
* Reverts if `spender` does not have approval from the provided `owner` for the given token or for all its assets
* the `spender` for the specific `tokenId`.
*
* WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this
* assumption.
*/
function _checkAuthorized(address owner, address spender, uint256 tokenId) internal view virtual {
if (!_isAuthorized(owner, spender, tokenId)) {
if (owner == address(0)) {
revert ERC721NonexistentToken(tokenId);
} else {
revert ERC721InsufficientApproval(spender, tokenId);
}
}
}
/**
* @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
*
* NOTE: the value is limited to type(uint128).max. This protect against _balance overflow. It is unrealistic that
* a uint256 would ever overflow from increments when these increments are bounded to uint128 values.
*
* WARNING: Increasing an account's balance using this function tends to be paired with an override of the
* {_ownerOf} function to resolve the ownership of the corresponding tokens so that balances and ownership
* remain consistent with one another.
*/
function _increaseBalance(address account, uint128 value) internal virtual {
unchecked {
_balances[account] += value;
}
}
/**
* @dev Transfers `tokenId` from its current owner to `to`, or alternatively mints (or burns) if the current owner
* (or `to`) is the zero address. Returns the owner of the `tokenId` before the update.
*
* The `auth` argument is optional. If the value passed is non 0, then this function will check that
* `auth` is either the owner of the token, or approved to operate on the token (by the owner).
*
* Emits a {Transfer} event.
*
* NOTE: If overriding this function in a way that tracks balances, see also {_increaseBalance}.
*/
function _update(address to, uint256 tokenId, address auth) internal virtual returns (address) {
address from = _ownerOf(tokenId);
// Perform (optional) operator check
if (auth != address(0)) {
_checkAuthorized(from, auth, tokenId);
}
// Execute the update
if (from != address(0)) {
// Clear approval. No need to re-authorize or emit the Approval event
_approve(address(0), tokenId, address(0), false);
unchecked {
_balances[from] -= 1;
}
}
if (to != address(0)) {
unchecked {
_balances[to] += 1;
}
}
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
return from;
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal {
if (to == address(0)) {
revert ERC721InvalidReceiver(address(0));
}
address previousOwner = _update(to, tokenId, address(0));
if (previousOwner != address(0)) {
revert ERC721InvalidSender(address(0));
}
}
/**
* @dev Mints `tokenId`, transfers it to `to` and checks for `to` acceptance.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(address to, uint256 tokenId, bytes memory data) internal virtual {
_mint(to, tokenId);
_checkOnERC721Received(address(0), to, tokenId, data);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
* This is an internal function that does not check if the sender is authorized to operate on the token.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal {
address previousOwner = _update(address(0), tokenId, address(0));
if (previousOwner == address(0)) {
revert ERC721NonexistentToken(tokenId);
}
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(address from, address to, uint256 tokenId) internal {
if (to == address(0)) {
revert ERC721InvalidReceiver(address(0));
}
address previousOwner = _update(to, tokenId, address(0));
if (previousOwner == address(0)) {
revert ERC721NonexistentToken(tokenId);
} else if (previousOwner != from) {
revert ERC721IncorrectOwner(from, tokenId, previousOwner);
}
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking that contract recipients
* are aware of the ERC721 standard to prevent tokens from being forever locked.
*
* `data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is like {safeTransferFrom} in the sense that it invokes
* {IERC721Receiver-onERC721Received} on the receiver, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `tokenId` token must exist and be owned by `from`.
* - `to` cannot be the zero address.
* - `from` cannot be the zero address.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(address from, address to, uint256 tokenId) internal {
_safeTransfer(from, to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeTransfer-address-address-uint256-}[`_safeTransfer`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual {
_transfer(from, to, tokenId);
_checkOnERC721Received(from, to, tokenId, data);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* The `auth` argument is optional. If the value passed is non 0, then this function will check that `auth` is
* either the owner of the token, or approved to operate on all tokens held by this owner.
*
* Emits an {Approval} event.
*
* Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
*/
function _approve(address to, uint256 tokenId, address auth) internal {
_approve(to, tokenId, auth, true);
}
/**
* @dev Variant of `_approve` with an optional flag to enable or disable the {Approval} event. The event is not
* emitted in the context of transfers.
*/
function _approve(address to, uint256 tokenId, address auth, bool emitEvent) internal virtual {
// Avoid reading the owner unless necessary
if (emitEvent || auth != address(0)) {
address owner = _requireOwned(tokenId);
// We do not use _isAuthorized because single-token approvals should not be able to call approve
if (auth != address(0) && owner != auth && !isApprovedForAll(owner, auth)) {
revert ERC721InvalidApprover(auth);
}
if (emitEvent) {
emit Approval(owner, to, tokenId);
}
}
_tokenApprovals[tokenId] = to;
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Requirements:
* - operator can't be the address zero.
*
* Emits an {ApprovalForAll} event.
*/
function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {
if (operator == address(0)) {
revert ERC721InvalidOperator(operator);
}
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Reverts if the `tokenId` doesn't have a current owner (it hasn't been minted, or it has been burned).
* Returns the owner.
*
* Overrides to ownership logic should be done to {_ownerOf}.
*/
function _requireOwned(uint256 tokenId) internal view returns (address) {
address owner = _ownerOf(tokenId);
if (owner == address(0)) {
revert ERC721NonexistentToken(tokenId);
}
return owner;
}
/**
* @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target address. This will revert if the
* recipient doesn't accept the token transfer. The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param data bytes optional data to send along with the call
*/
function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory data) private {
if (to.code.length > 0) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
if (retval != IERC721Receiver.onERC721Received.selector) {
revert ERC721InvalidReceiver(to);
}
} catch (bytes memory reason) {
if (reason.length == 0) {
revert ERC721InvalidReceiver(to);
} else {
/// @solidity memory-safe-assembly
assembly {
revert(add(32, reason), mload(reason))
}
}
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/ERC721Enumerable.sol)
pragma solidity ^0.8.20;
import {ERC721} from "../ERC721.sol";
import {IERC721Enumerable} from "./IERC721Enumerable.sol";
import {IERC165} from "../../../utils/introspection/ERC165.sol";
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds enumerability
* of all the token ids in the contract as well as all token ids owned by each account.
*
* CAUTION: `ERC721` extensions that implement custom `balanceOf` logic, such as `ERC721Consecutive`,
* interfere with enumerability and should not be used together with `ERC721Enumerable`.
*/
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
mapping(address owner => mapping(uint256 index => uint256)) private _ownedTokens;
mapping(uint256 tokenId => uint256) private _ownedTokensIndex;
uint256[] private _allTokens;
mapping(uint256 tokenId => uint256) private _allTokensIndex;
/**
* @dev An `owner`'s token query was out of bounds for `index`.
*
* NOTE: The owner being `address(0)` indicates a global out of bounds index.
*/
error ERC721OutOfBoundsIndex(address owner, uint256 index);
/**
* @dev Batch mint is not allowed.
*/
error ERC721EnumerableForbiddenBatchMint();
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual returns (uint256) {
if (index >= balanceOf(owner)) {
revert ERC721OutOfBoundsIndex(owner, index);
}
return _ownedTokens[owner][index];
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view virtual returns (uint256) {
return _allTokens.length;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index) public view virtual returns (uint256) {
if (index >= totalSupply()) {
revert ERC721OutOfBoundsIndex(address(0), index);
}
return _allTokens[index];
}
/**
* @dev See {ERC721-_update}.
*/
function _update(address to, uint256 tokenId, address auth) internal virtual override returns (address) {
address previousOwner = super._update(to, tokenId, auth);
if (previousOwner == address(0)) {
_addTokenToAllTokensEnumeration(tokenId);
} else if (previousOwner != to) {
_removeTokenFromOwnerEnumeration(previousOwner, tokenId);
}
if (to == address(0)) {
_removeTokenFromAllTokensEnumeration(tokenId);
} else if (previousOwner != to) {
_addTokenToOwnerEnumeration(to, tokenId);
}
return previousOwner;
}
/**
* @dev Private function to add a token to this extension's ownership-tracking data structures.
* @param to address representing the new owner of the given token ID
* @param tokenId uint256 ID of the token to be added to the tokens list of the given address
*/
function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
uint256 length = balanceOf(to) - 1;
_ownedTokens[to][length] = tokenId;
_ownedTokensIndex[tokenId] = length;
}
/**
* @dev Private function to add a token to this extension's token tracking data structures.
* @param tokenId uint256 ID of the token to be added to the tokens list
*/
function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
_allTokensIndex[tokenId] = _allTokens.length;
_allTokens.push(tokenId);
}
/**
* @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
* while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
* gas optimizations e.g. when performing a transfer operation (avoiding double writes).
* This has O(1) time complexity, but alters the order of the _ownedTokens array.
* @param from address representing the previous owner of the given token ID
* @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
*/
function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
// To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = balanceOf(from);
uint256 tokenIndex = _ownedTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary
if (tokenIndex != lastTokenIndex) {
uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];
_ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
}
// This also deletes the contents at the last position of the array
delete _ownedTokensIndex[tokenId];
delete _ownedTokens[from][lastTokenIndex];
}
/**
* @dev Private function to remove a token from this extension's token tracking data structures.
* This has O(1) time complexity, but alters the order of the _allTokens array.
* @param tokenId uint256 ID of the token to be removed from the tokens list
*/
function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
// To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = _allTokens.length - 1;
uint256 tokenIndex = _allTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
// rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
// an 'if' statement (like in _removeTokenFromOwnerEnumeration)
uint256 lastTokenId = _allTokens[lastTokenIndex];
_allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
// This also deletes the contents at the last position of the array
delete _allTokensIndex[tokenId];
_allTokens.pop();
}
/**
* See {ERC721-_increaseBalance}. We need that to account tokens that were minted in batch
*/
function _increaseBalance(address account, uint128 amount) internal virtual override {
if (amount > 0) {
revert ERC721EnumerableForbiddenBatchMint();
}
super._increaseBalance(account, amount);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Enumerable.sol)
pragma solidity ^0.8.20;
import {IERC721} from "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.20;
import {IERC721} from "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721.sol)
pragma solidity ^0.8.20;
import {IERC165} from "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon
* a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must have been allowed to move this token by either {approve} or
* {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon
* a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(address from, address to, uint256 tokenId) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
* or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
* understand this adds an external call which potentially creates a reentrancy vulnerability.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 tokenId) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the address zero.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool approved) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.20;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be
* reverted.
*
* The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}// SPDX-License-Identifier: MIT
// 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();
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Base64.sol)
pragma solidity ^0.8.20;
/**
* @dev Provides a set of functions to operate with Base64 strings.
*/
library Base64 {
/**
* @dev Base64 Encoding/Decoding Table
*/
string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
/**
* @dev Converts a `bytes` to its Bytes64 `string` representation.
*/
function encode(bytes memory data) internal pure returns (string memory) {
/**
* Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
* https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
*/
if (data.length == 0) return "";
// Loads the table into memory
string memory table = _TABLE;
// Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
// and split into 4 numbers of 6 bits.
// The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
// - `data.length + 2` -> Round up
// - `/ 3` -> Number of 3-bytes chunks
// - `4 *` -> 4 characters for each chunk
string memory result = new string(4 * ((data.length + 2) / 3));
/// @solidity memory-safe-assembly
assembly {
// Prepare the lookup table (skip the first "length" byte)
let tablePtr := add(table, 1)
// Prepare result pointer, jump over length
let resultPtr := add(result, 32)
// Run over the input, 3 bytes at a time
for {
let dataPtr := data
let endPtr := add(data, mload(data))
} lt(dataPtr, endPtr) {
} {
// Advance 3 bytes
dataPtr := add(dataPtr, 3)
let input := mload(dataPtr)
// To write each character, shift the 3 bytes (18 bits) chunk
// 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
// and apply logical AND with 0x3F which is the number of
// the previous character in the ASCII table prior to the Base64 Table
// The result is then added to the table to get the character to write,
// and finally write it in the result pointer but with a left shift
// of 256 (1 byte) - 8 (1 ASCII char) = 248 bits
mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
resultPtr := add(resultPtr, 1) // Advance
mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
resultPtr := add(resultPtr, 1) // Advance
mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
resultPtr := add(resultPtr, 1) // Advance
mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
resultPtr := add(resultPtr, 1) // Advance
}
// When data `bytes` is not exactly 3 bytes long
// it is padded with `=` characters at the end
switch mod(mload(data), 3)
case 1 {
mstore8(sub(resultPtr, 1), 0x3d)
mstore8(sub(resultPtr, 2), 0x3d)
}
case 2 {
mstore8(sub(resultPtr, 1), 0x3d)
}
}
return result;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
pragma solidity ^0.8.20;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol)
pragma solidity ^0.8.20;
import {IERC165} from "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)
pragma solidity ^0.8.20;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)
pragma solidity ^0.8.20;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
/**
* @dev Muldiv operation overflow.
*/
error MathOverflowedMulDiv();
enum Rounding {
Floor, // Toward negative infinity
Ceil, // Toward positive infinity
Trunc, // Toward zero
Expand // Away from zero
}
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the subtraction of two unsigned integers, with an overflow flag.
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds towards infinity instead
* of rounding towards zero.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
if (b == 0) {
// Guarantee the same behavior as in a regular Solidity division.
return a / b;
}
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or
* denominator == 0.
* @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by
* Uniswap Labs also under MIT license.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0 = x * y; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
// Solidity will revert if denominator == 0, unlike the div opcode on its own.
// The surrounding unchecked block does not change this fact.
// See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
if (denominator <= prod1) {
revert MathOverflowedMulDiv();
}
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator.
// Always >= 1. See https://cs.stackexchange.com/q/138556/92363.
uint256 twos = denominator & (0 - denominator);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also
// works in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
* towards zero.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
//
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
//
// This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
// → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
// → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
//
// Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1 << (log2(a) >> 1);
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2 of a positive value rounded towards zero.
* Returns 0 if given 0.
*/
function log2(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 128;
}
if (value >> 64 > 0) {
value >>= 64;
result += 64;
}
if (value >> 32 > 0) {
value >>= 32;
result += 32;
}
if (value >> 16 > 0) {
value >>= 16;
result += 16;
}
if (value >> 8 > 0) {
value >>= 8;
result += 8;
}
if (value >> 4 > 0) {
value >>= 4;
result += 4;
}
if (value >> 2 > 0) {
value >>= 2;
result += 2;
}
if (value >> 1 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 2, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 10 of a positive value rounded towards zero.
* Returns 0 if given 0.
*/
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10 ** 64) {
value /= 10 ** 64;
result += 64;
}
if (value >= 10 ** 32) {
value /= 10 ** 32;
result += 32;
}
if (value >= 10 ** 16) {
value /= 10 ** 16;
result += 16;
}
if (value >= 10 ** 8) {
value /= 10 ** 8;
result += 8;
}
if (value >= 10 ** 4) {
value /= 10 ** 4;
result += 4;
}
if (value >= 10 ** 2) {
value /= 10 ** 2;
result += 2;
}
if (value >= 10 ** 1) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 256 of a positive value rounded towards zero.
* Returns 0 if given 0.
*
* Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
*/
function log256(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 16;
}
if (value >> 64 > 0) {
value >>= 64;
result += 8;
}
if (value >> 32 > 0) {
value >>= 32;
result += 4;
}
if (value >> 16 > 0) {
value >>= 16;
result += 2;
}
if (value >> 8 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 256, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
}
}
/**
* @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
*/
function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
return uint8(rounding) % 2 == 1;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SafeCast.sol)
// This file was procedurally generated from scripts/generate/templates/SafeCast.js.
pragma solidity ^0.8.20;
/**
* @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow
* checks.
*
* Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
* easily result in undesired exploitation or bugs, since developers usually
* assume that overflows raise errors. `SafeCast` restores this intuition by
* reverting the transaction when such an operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeCast {
/**
* @dev Value doesn't fit in an uint of `bits` size.
*/
error SafeCastOverflowedUintDowncast(uint8 bits, uint256 value);
/**
* @dev An int value doesn't fit in an uint of `bits` size.
*/
error SafeCastOverflowedIntToUint(int256 value);
/**
* @dev Value doesn't fit in an int of `bits` size.
*/
error SafeCastOverflowedIntDowncast(uint8 bits, int256 value);
/**
* @dev An uint value doesn't fit in an int of `bits` size.
*/
error SafeCastOverflowedUintToInt(uint256 value);
/**
* @dev Returns the downcasted uint248 from uint256, reverting on
* overflow (when the input is greater than largest uint248).
*
* Counterpart to Solidity's `uint248` operator.
*
* Requirements:
*
* - input must fit into 248 bits
*/
function toUint248(uint256 value) internal pure returns (uint248) {
if (value > type(uint248).max) {
revert SafeCastOverflowedUintDowncast(248, value);
}
return uint248(value);
}
/**
* @dev Returns the downcasted uint240 from uint256, reverting on
* overflow (when the input is greater than largest uint240).
*
* Counterpart to Solidity's `uint240` operator.
*
* Requirements:
*
* - input must fit into 240 bits
*/
function toUint240(uint256 value) internal pure returns (uint240) {
if (value > type(uint240).max) {
revert SafeCastOverflowedUintDowncast(240, value);
}
return uint240(value);
}
/**
* @dev Returns the downcasted uint232 from uint256, reverting on
* overflow (when the input is greater than largest uint232).
*
* Counterpart to Solidity's `uint232` operator.
*
* Requirements:
*
* - input must fit into 232 bits
*/
function toUint232(uint256 value) internal pure returns (uint232) {
if (value > type(uint232).max) {
revert SafeCastOverflowedUintDowncast(232, value);
}
return uint232(value);
}
/**
* @dev Returns the downcasted uint224 from uint256, reverting on
* overflow (when the input is greater than largest uint224).
*
* Counterpart to Solidity's `uint224` operator.
*
* Requirements:
*
* - input must fit into 224 bits
*/
function toUint224(uint256 value) internal pure returns (uint224) {
if (value > type(uint224).max) {
revert SafeCastOverflowedUintDowncast(224, value);
}
return uint224(value);
}
/**
* @dev Returns the downcasted uint216 from uint256, reverting on
* overflow (when the input is greater than largest uint216).
*
* Counterpart to Solidity's `uint216` operator.
*
* Requirements:
*
* - input must fit into 216 bits
*/
function toUint216(uint256 value) internal pure returns (uint216) {
if (value > type(uint216).max) {
revert SafeCastOverflowedUintDowncast(216, value);
}
return uint216(value);
}
/**
* @dev Returns the downcasted uint208 from uint256, reverting on
* overflow (when the input is greater than largest uint208).
*
* Counterpart to Solidity's `uint208` operator.
*
* Requirements:
*
* - input must fit into 208 bits
*/
function toUint208(uint256 value) internal pure returns (uint208) {
if (value > type(uint208).max) {
revert SafeCastOverflowedUintDowncast(208, value);
}
return uint208(value);
}
/**
* @dev Returns the downcasted uint200 from uint256, reverting on
* overflow (when the input is greater than largest uint200).
*
* Counterpart to Solidity's `uint200` operator.
*
* Requirements:
*
* - input must fit into 200 bits
*/
function toUint200(uint256 value) internal pure returns (uint200) {
if (value > type(uint200).max) {
revert SafeCastOverflowedUintDowncast(200, value);
}
return uint200(value);
}
/**
* @dev Returns the downcasted uint192 from uint256, reverting on
* overflow (when the input is greater than largest uint192).
*
* Counterpart to Solidity's `uint192` operator.
*
* Requirements:
*
* - input must fit into 192 bits
*/
function toUint192(uint256 value) internal pure returns (uint192) {
if (value > type(uint192).max) {
revert SafeCastOverflowedUintDowncast(192, value);
}
return uint192(value);
}
/**
* @dev Returns the downcasted uint184 from uint256, reverting on
* overflow (when the input is greater than largest uint184).
*
* Counterpart to Solidity's `uint184` operator.
*
* Requirements:
*
* - input must fit into 184 bits
*/
function toUint184(uint256 value) internal pure returns (uint184) {
if (value > type(uint184).max) {
revert SafeCastOverflowedUintDowncast(184, value);
}
return uint184(value);
}
/**
* @dev Returns the downcasted uint176 from uint256, reverting on
* overflow (when the input is greater than largest uint176).
*
* Counterpart to Solidity's `uint176` operator.
*
* Requirements:
*
* - input must fit into 176 bits
*/
function toUint176(uint256 value) internal pure returns (uint176) {
if (value > type(uint176).max) {
revert SafeCastOverflowedUintDowncast(176, value);
}
return uint176(value);
}
/**
* @dev Returns the downcasted uint168 from uint256, reverting on
* overflow (when the input is greater than largest uint168).
*
* Counterpart to Solidity's `uint168` operator.
*
* Requirements:
*
* - input must fit into 168 bits
*/
function toUint168(uint256 value) internal pure returns (uint168) {
if (value > type(uint168).max) {
revert SafeCastOverflowedUintDowncast(168, value);
}
return uint168(value);
}
/**
* @dev Returns the downcasted uint160 from uint256, reverting on
* overflow (when the input is greater than largest uint160).
*
* Counterpart to Solidity's `uint160` operator.
*
* Requirements:
*
* - input must fit into 160 bits
*/
function toUint160(uint256 value) internal pure returns (uint160) {
if (value > type(uint160).max) {
revert SafeCastOverflowedUintDowncast(160, value);
}
return uint160(value);
}
/**
* @dev Returns the downcasted uint152 from uint256, reverting on
* overflow (when the input is greater than largest uint152).
*
* Counterpart to Solidity's `uint152` operator.
*
* Requirements:
*
* - input must fit into 152 bits
*/
function toUint152(uint256 value) internal pure returns (uint152) {
if (value > type(uint152).max) {
revert SafeCastOverflowedUintDowncast(152, value);
}
return uint152(value);
}
/**
* @dev Returns the downcasted uint144 from uint256, reverting on
* overflow (when the input is greater than largest uint144).
*
* Counterpart to Solidity's `uint144` operator.
*
* Requirements:
*
* - input must fit into 144 bits
*/
function toUint144(uint256 value) internal pure returns (uint144) {
if (value > type(uint144).max) {
revert SafeCastOverflowedUintDowncast(144, value);
}
return uint144(value);
}
/**
* @dev Returns the downcasted uint136 from uint256, reverting on
* overflow (when the input is greater than largest uint136).
*
* Counterpart to Solidity's `uint136` operator.
*
* Requirements:
*
* - input must fit into 136 bits
*/
function toUint136(uint256 value) internal pure returns (uint136) {
if (value > type(uint136).max) {
revert SafeCastOverflowedUintDowncast(136, value);
}
return uint136(value);
}
/**
* @dev Returns the downcasted uint128 from uint256, reverting on
* overflow (when the input is greater than largest uint128).
*
* Counterpart to Solidity's `uint128` operator.
*
* Requirements:
*
* - input must fit into 128 bits
*/
function toUint128(uint256 value) internal pure returns (uint128) {
if (value > type(uint128).max) {
revert SafeCastOverflowedUintDowncast(128, value);
}
return uint128(value);
}
/**
* @dev Returns the downcasted uint120 from uint256, reverting on
* overflow (when the input is greater than largest uint120).
*
* Counterpart to Solidity's `uint120` operator.
*
* Requirements:
*
* - input must fit into 120 bits
*/
function toUint120(uint256 value) internal pure returns (uint120) {
if (value > type(uint120).max) {
revert SafeCastOverflowedUintDowncast(120, value);
}
return uint120(value);
}
/**
* @dev Returns the downcasted uint112 from uint256, reverting on
* overflow (when the input is greater than largest uint112).
*
* Counterpart to Solidity's `uint112` operator.
*
* Requirements:
*
* - input must fit into 112 bits
*/
function toUint112(uint256 value) internal pure returns (uint112) {
if (value > type(uint112).max) {
revert SafeCastOverflowedUintDowncast(112, value);
}
return uint112(value);
}
/**
* @dev Returns the downcasted uint104 from uint256, reverting on
* overflow (when the input is greater than largest uint104).
*
* Counterpart to Solidity's `uint104` operator.
*
* Requirements:
*
* - input must fit into 104 bits
*/
function toUint104(uint256 value) internal pure returns (uint104) {
if (value > type(uint104).max) {
revert SafeCastOverflowedUintDowncast(104, value);
}
return uint104(value);
}
/**
* @dev Returns the downcasted uint96 from uint256, reverting on
* overflow (when the input is greater than largest uint96).
*
* Counterpart to Solidity's `uint96` operator.
*
* Requirements:
*
* - input must fit into 96 bits
*/
function toUint96(uint256 value) internal pure returns (uint96) {
if (value > type(uint96).max) {
revert SafeCastOverflowedUintDowncast(96, value);
}
return uint96(value);
}
/**
* @dev Returns the downcasted uint88 from uint256, reverting on
* overflow (when the input is greater than largest uint88).
*
* Counterpart to Solidity's `uint88` operator.
*
* Requirements:
*
* - input must fit into 88 bits
*/
function toUint88(uint256 value) internal pure returns (uint88) {
if (value > type(uint88).max) {
revert SafeCastOverflowedUintDowncast(88, value);
}
return uint88(value);
}
/**
* @dev Returns the downcasted uint80 from uint256, reverting on
* overflow (when the input is greater than largest uint80).
*
* Counterpart to Solidity's `uint80` operator.
*
* Requirements:
*
* - input must fit into 80 bits
*/
function toUint80(uint256 value) internal pure returns (uint80) {
if (value > type(uint80).max) {
revert SafeCastOverflowedUintDowncast(80, value);
}
return uint80(value);
}
/**
* @dev Returns the downcasted uint72 from uint256, reverting on
* overflow (when the input is greater than largest uint72).
*
* Counterpart to Solidity's `uint72` operator.
*
* Requirements:
*
* - input must fit into 72 bits
*/
function toUint72(uint256 value) internal pure returns (uint72) {
if (value > type(uint72).max) {
revert SafeCastOverflowedUintDowncast(72, value);
}
return uint72(value);
}
/**
* @dev Returns the downcasted uint64 from uint256, reverting on
* overflow (when the input is greater than largest uint64).
*
* Counterpart to Solidity's `uint64` operator.
*
* Requirements:
*
* - input must fit into 64 bits
*/
function toUint64(uint256 value) internal pure returns (uint64) {
if (value > type(uint64).max) {
revert SafeCastOverflowedUintDowncast(64, value);
}
return uint64(value);
}
/**
* @dev Returns the downcasted uint56 from uint256, reverting on
* overflow (when the input is greater than largest uint56).
*
* Counterpart to Solidity's `uint56` operator.
*
* Requirements:
*
* - input must fit into 56 bits
*/
function toUint56(uint256 value) internal pure returns (uint56) {
if (value > type(uint56).max) {
revert SafeCastOverflowedUintDowncast(56, value);
}
return uint56(value);
}
/**
* @dev Returns the downcasted uint48 from uint256, reverting on
* overflow (when the input is greater than largest uint48).
*
* Counterpart to Solidity's `uint48` operator.
*
* Requirements:
*
* - input must fit into 48 bits
*/
function toUint48(uint256 value) internal pure returns (uint48) {
if (value > type(uint48).max) {
revert SafeCastOverflowedUintDowncast(48, value);
}
return uint48(value);
}
/**
* @dev Returns the downcasted uint40 from uint256, reverting on
* overflow (when the input is greater than largest uint40).
*
* Counterpart to Solidity's `uint40` operator.
*
* Requirements:
*
* - input must fit into 40 bits
*/
function toUint40(uint256 value) internal pure returns (uint40) {
if (value > type(uint40).max) {
revert SafeCastOverflowedUintDowncast(40, value);
}
return uint40(value);
}
/**
* @dev Returns the downcasted uint32 from uint256, reverting on
* overflow (when the input is greater than largest uint32).
*
* Counterpart to Solidity's `uint32` operator.
*
* Requirements:
*
* - input must fit into 32 bits
*/
function toUint32(uint256 value) internal pure returns (uint32) {
if (value > type(uint32).max) {
revert SafeCastOverflowedUintDowncast(32, value);
}
return uint32(value);
}
/**
* @dev Returns the downcasted uint24 from uint256, reverting on
* overflow (when the input is greater than largest uint24).
*
* Counterpart to Solidity's `uint24` operator.
*
* Requirements:
*
* - input must fit into 24 bits
*/
function toUint24(uint256 value) internal pure returns (uint24) {
if (value > type(uint24).max) {
revert SafeCastOverflowedUintDowncast(24, value);
}
return uint24(value);
}
/**
* @dev Returns the downcasted uint16 from uint256, reverting on
* overflow (when the input is greater than largest uint16).
*
* Counterpart to Solidity's `uint16` operator.
*
* Requirements:
*
* - input must fit into 16 bits
*/
function toUint16(uint256 value) internal pure returns (uint16) {
if (value > type(uint16).max) {
revert SafeCastOverflowedUintDowncast(16, value);
}
return uint16(value);
}
/**
* @dev Returns the downcasted uint8 from uint256, reverting on
* overflow (when the input is greater than largest uint8).
*
* Counterpart to Solidity's `uint8` operator.
*
* Requirements:
*
* - input must fit into 8 bits
*/
function toUint8(uint256 value) internal pure returns (uint8) {
if (value > type(uint8).max) {
revert SafeCastOverflowedUintDowncast(8, value);
}
return uint8(value);
}
/**
* @dev Converts a signed int256 into an unsigned uint256.
*
* Requirements:
*
* - input must be greater than or equal to 0.
*/
function toUint256(int256 value) internal pure returns (uint256) {
if (value < 0) {
revert SafeCastOverflowedIntToUint(value);
}
return uint256(value);
}
/**
* @dev Returns the downcasted int248 from int256, reverting on
* overflow (when the input is less than smallest int248 or
* greater than largest int248).
*
* Counterpart to Solidity's `int248` operator.
*
* Requirements:
*
* - input must fit into 248 bits
*/
function toInt248(int256 value) internal pure returns (int248 downcasted) {
downcasted = int248(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(248, value);
}
}
/**
* @dev Returns the downcasted int240 from int256, reverting on
* overflow (when the input is less than smallest int240 or
* greater than largest int240).
*
* Counterpart to Solidity's `int240` operator.
*
* Requirements:
*
* - input must fit into 240 bits
*/
function toInt240(int256 value) internal pure returns (int240 downcasted) {
downcasted = int240(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(240, value);
}
}
/**
* @dev Returns the downcasted int232 from int256, reverting on
* overflow (when the input is less than smallest int232 or
* greater than largest int232).
*
* Counterpart to Solidity's `int232` operator.
*
* Requirements:
*
* - input must fit into 232 bits
*/
function toInt232(int256 value) internal pure returns (int232 downcasted) {
downcasted = int232(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(232, value);
}
}
/**
* @dev Returns the downcasted int224 from int256, reverting on
* overflow (when the input is less than smallest int224 or
* greater than largest int224).
*
* Counterpart to Solidity's `int224` operator.
*
* Requirements:
*
* - input must fit into 224 bits
*/
function toInt224(int256 value) internal pure returns (int224 downcasted) {
downcasted = int224(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(224, value);
}
}
/**
* @dev Returns the downcasted int216 from int256, reverting on
* overflow (when the input is less than smallest int216 or
* greater than largest int216).
*
* Counterpart to Solidity's `int216` operator.
*
* Requirements:
*
* - input must fit into 216 bits
*/
function toInt216(int256 value) internal pure returns (int216 downcasted) {
downcasted = int216(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(216, value);
}
}
/**
* @dev Returns the downcasted int208 from int256, reverting on
* overflow (when the input is less than smallest int208 or
* greater than largest int208).
*
* Counterpart to Solidity's `int208` operator.
*
* Requirements:
*
* - input must fit into 208 bits
*/
function toInt208(int256 value) internal pure returns (int208 downcasted) {
downcasted = int208(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(208, value);
}
}
/**
* @dev Returns the downcasted int200 from int256, reverting on
* overflow (when the input is less than smallest int200 or
* greater than largest int200).
*
* Counterpart to Solidity's `int200` operator.
*
* Requirements:
*
* - input must fit into 200 bits
*/
function toInt200(int256 value) internal pure returns (int200 downcasted) {
downcasted = int200(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(200, value);
}
}
/**
* @dev Returns the downcasted int192 from int256, reverting on
* overflow (when the input is less than smallest int192 or
* greater than largest int192).
*
* Counterpart to Solidity's `int192` operator.
*
* Requirements:
*
* - input must fit into 192 bits
*/
function toInt192(int256 value) internal pure returns (int192 downcasted) {
downcasted = int192(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(192, value);
}
}
/**
* @dev Returns the downcasted int184 from int256, reverting on
* overflow (when the input is less than smallest int184 or
* greater than largest int184).
*
* Counterpart to Solidity's `int184` operator.
*
* Requirements:
*
* - input must fit into 184 bits
*/
function toInt184(int256 value) internal pure returns (int184 downcasted) {
downcasted = int184(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(184, value);
}
}
/**
* @dev Returns the downcasted int176 from int256, reverting on
* overflow (when the input is less than smallest int176 or
* greater than largest int176).
*
* Counterpart to Solidity's `int176` operator.
*
* Requirements:
*
* - input must fit into 176 bits
*/
function toInt176(int256 value) internal pure returns (int176 downcasted) {
downcasted = int176(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(176, value);
}
}
/**
* @dev Returns the downcasted int168 from int256, reverting on
* overflow (when the input is less than smallest int168 or
* greater than largest int168).
*
* Counterpart to Solidity's `int168` operator.
*
* Requirements:
*
* - input must fit into 168 bits
*/
function toInt168(int256 value) internal pure returns (int168 downcasted) {
downcasted = int168(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(168, value);
}
}
/**
* @dev Returns the downcasted int160 from int256, reverting on
* overflow (when the input is less than smallest int160 or
* greater than largest int160).
*
* Counterpart to Solidity's `int160` operator.
*
* Requirements:
*
* - input must fit into 160 bits
*/
function toInt160(int256 value) internal pure returns (int160 downcasted) {
downcasted = int160(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(160, value);
}
}
/**
* @dev Returns the downcasted int152 from int256, reverting on
* overflow (when the input is less than smallest int152 or
* greater than largest int152).
*
* Counterpart to Solidity's `int152` operator.
*
* Requirements:
*
* - input must fit into 152 bits
*/
function toInt152(int256 value) internal pure returns (int152 downcasted) {
downcasted = int152(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(152, value);
}
}
/**
* @dev Returns the downcasted int144 from int256, reverting on
* overflow (when the input is less than smallest int144 or
* greater than largest int144).
*
* Counterpart to Solidity's `int144` operator.
*
* Requirements:
*
* - input must fit into 144 bits
*/
function toInt144(int256 value) internal pure returns (int144 downcasted) {
downcasted = int144(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(144, value);
}
}
/**
* @dev Returns the downcasted int136 from int256, reverting on
* overflow (when the input is less than smallest int136 or
* greater than largest int136).
*
* Counterpart to Solidity's `int136` operator.
*
* Requirements:
*
* - input must fit into 136 bits
*/
function toInt136(int256 value) internal pure returns (int136 downcasted) {
downcasted = int136(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(136, value);
}
}
/**
* @dev Returns the downcasted int128 from int256, reverting on
* overflow (when the input is less than smallest int128 or
* greater than largest int128).
*
* Counterpart to Solidity's `int128` operator.
*
* Requirements:
*
* - input must fit into 128 bits
*/
function toInt128(int256 value) internal pure returns (int128 downcasted) {
downcasted = int128(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(128, value);
}
}
/**
* @dev Returns the downcasted int120 from int256, reverting on
* overflow (when the input is less than smallest int120 or
* greater than largest int120).
*
* Counterpart to Solidity's `int120` operator.
*
* Requirements:
*
* - input must fit into 120 bits
*/
function toInt120(int256 value) internal pure returns (int120 downcasted) {
downcasted = int120(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(120, value);
}
}
/**
* @dev Returns the downcasted int112 from int256, reverting on
* overflow (when the input is less than smallest int112 or
* greater than largest int112).
*
* Counterpart to Solidity's `int112` operator.
*
* Requirements:
*
* - input must fit into 112 bits
*/
function toInt112(int256 value) internal pure returns (int112 downcasted) {
downcasted = int112(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(112, value);
}
}
/**
* @dev Returns the downcasted int104 from int256, reverting on
* overflow (when the input is less than smallest int104 or
* greater than largest int104).
*
* Counterpart to Solidity's `int104` operator.
*
* Requirements:
*
* - input must fit into 104 bits
*/
function toInt104(int256 value) internal pure returns (int104 downcasted) {
downcasted = int104(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(104, value);
}
}
/**
* @dev Returns the downcasted int96 from int256, reverting on
* overflow (when the input is less than smallest int96 or
* greater than largest int96).
*
* Counterpart to Solidity's `int96` operator.
*
* Requirements:
*
* - input must fit into 96 bits
*/
function toInt96(int256 value) internal pure returns (int96 downcasted) {
downcasted = int96(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(96, value);
}
}
/**
* @dev Returns the downcasted int88 from int256, reverting on
* overflow (when the input is less than smallest int88 or
* greater than largest int88).
*
* Counterpart to Solidity's `int88` operator.
*
* Requirements:
*
* - input must fit into 88 bits
*/
function toInt88(int256 value) internal pure returns (int88 downcasted) {
downcasted = int88(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(88, value);
}
}
/**
* @dev Returns the downcasted int80 from int256, reverting on
* overflow (when the input is less than smallest int80 or
* greater than largest int80).
*
* Counterpart to Solidity's `int80` operator.
*
* Requirements:
*
* - input must fit into 80 bits
*/
function toInt80(int256 value) internal pure returns (int80 downcasted) {
downcasted = int80(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(80, value);
}
}
/**
* @dev Returns the downcasted int72 from int256, reverting on
* overflow (when the input is less than smallest int72 or
* greater than largest int72).
*
* Counterpart to Solidity's `int72` operator.
*
* Requirements:
*
* - input must fit into 72 bits
*/
function toInt72(int256 value) internal pure returns (int72 downcasted) {
downcasted = int72(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(72, value);
}
}
/**
* @dev Returns the downcasted int64 from int256, reverting on
* overflow (when the input is less than smallest int64 or
* greater than largest int64).
*
* Counterpart to Solidity's `int64` operator.
*
* Requirements:
*
* - input must fit into 64 bits
*/
function toInt64(int256 value) internal pure returns (int64 downcasted) {
downcasted = int64(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(64, value);
}
}
/**
* @dev Returns the downcasted int56 from int256, reverting on
* overflow (when the input is less than smallest int56 or
* greater than largest int56).
*
* Counterpart to Solidity's `int56` operator.
*
* Requirements:
*
* - input must fit into 56 bits
*/
function toInt56(int256 value) internal pure returns (int56 downcasted) {
downcasted = int56(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(56, value);
}
}
/**
* @dev Returns the downcasted int48 from int256, reverting on
* overflow (when the input is less than smallest int48 or
* greater than largest int48).
*
* Counterpart to Solidity's `int48` operator.
*
* Requirements:
*
* - input must fit into 48 bits
*/
function toInt48(int256 value) internal pure returns (int48 downcasted) {
downcasted = int48(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(48, value);
}
}
/**
* @dev Returns the downcasted int40 from int256, reverting on
* overflow (when the input is less than smallest int40 or
* greater than largest int40).
*
* Counterpart to Solidity's `int40` operator.
*
* Requirements:
*
* - input must fit into 40 bits
*/
function toInt40(int256 value) internal pure returns (int40 downcasted) {
downcasted = int40(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(40, value);
}
}
/**
* @dev Returns the downcasted int32 from int256, reverting on
* overflow (when the input is less than smallest int32 or
* greater than largest int32).
*
* Counterpart to Solidity's `int32` operator.
*
* Requirements:
*
* - input must fit into 32 bits
*/
function toInt32(int256 value) internal pure returns (int32 downcasted) {
downcasted = int32(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(32, value);
}
}
/**
* @dev Returns the downcasted int24 from int256, reverting on
* overflow (when the input is less than smallest int24 or
* greater than largest int24).
*
* Counterpart to Solidity's `int24` operator.
*
* Requirements:
*
* - input must fit into 24 bits
*/
function toInt24(int256 value) internal pure returns (int24 downcasted) {
downcasted = int24(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(24, value);
}
}
/**
* @dev Returns the downcasted int16 from int256, reverting on
* overflow (when the input is less than smallest int16 or
* greater than largest int16).
*
* Counterpart to Solidity's `int16` operator.
*
* Requirements:
*
* - input must fit into 16 bits
*/
function toInt16(int256 value) internal pure returns (int16 downcasted) {
downcasted = int16(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(16, value);
}
}
/**
* @dev Returns the downcasted int8 from int256, reverting on
* overflow (when the input is less than smallest int8 or
* greater than largest int8).
*
* Counterpart to Solidity's `int8` operator.
*
* Requirements:
*
* - input must fit into 8 bits
*/
function toInt8(int256 value) internal pure returns (int8 downcasted) {
downcasted = int8(value);
if (downcasted != value) {
revert SafeCastOverflowedIntDowncast(8, value);
}
}
/**
* @dev Converts an unsigned uint256 into a signed int256.
*
* Requirements:
*
* - input must be less than or equal to maxInt256.
*/
function toInt256(uint256 value) internal pure returns (int256) {
// Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive
if (value > uint256(type(int256).max)) {
revert SafeCastOverflowedUintToInt(value);
}
return int256(value);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)
pragma solidity ^0.8.20;
/**
* @dev Standard signed math utilities missing in the Solidity language.
*/
library SignedMath {
/**
* @dev Returns the largest of two signed numbers.
*/
function max(int256 a, int256 b) internal pure returns (int256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two signed numbers.
*/
function min(int256 a, int256 b) internal pure returns (int256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two signed numbers without overflow.
* The result is rounded towards zero.
*/
function average(int256 a, int256 b) internal pure returns (int256) {
// Formula from the book "Hacker's Delight"
int256 x = (a & b) + ((a ^ b) >> 1);
return x + (int256(uint256(x) >> 255) & (a ^ b));
}
/**
* @dev Returns the absolute unsigned value of a signed value.
*/
function abs(int256 n) internal pure returns (uint256) {
unchecked {
// must be unchecked in order to support `n = type(int256).min`
return uint256(n >= 0 ? n : -n);
}
}
}// SPDX-License-Identifier: MIT
// 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;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)
pragma solidity ^0.8.20;
import {Math} from "./math/Math.sol";
import {SignedMath} from "./math/SignedMath.sol";
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant HEX_DIGITS = "0123456789abcdef";
uint8 private constant ADDRESS_LENGTH = 20;
/**
* @dev The `value` string doesn't fit in the specified `length`.
*/
error StringsInsufficientHexLength(uint256 value, uint256 length);
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
unchecked {
uint256 length = Math.log10(value) + 1;
string memory buffer = new string(length);
uint256 ptr;
/// @solidity memory-safe-assembly
assembly {
ptr := add(buffer, add(32, length))
}
while (true) {
ptr--;
/// @solidity memory-safe-assembly
assembly {
mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))
}
value /= 10;
if (value == 0) break;
}
return buffer;
}
}
/**
* @dev Converts a `int256` to its ASCII `string` decimal representation.
*/
function toStringSigned(int256 value) internal pure returns (string memory) {
return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value)));
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
unchecked {
return toHexString(value, Math.log256(value) + 1);
}
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
uint256 localValue = value;
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = HEX_DIGITS[localValue & 0xf];
localValue >>= 4;
}
if (localValue != 0) {
revert StringsInsufficientHexLength(value, length);
}
return string(buffer);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal
* representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH);
}
/**
* @dev Returns true if the two strings are equal.
*/
function equal(string memory a, string memory b) internal pure returns (bool) {
return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/types/Time.sol)
pragma solidity ^0.8.20;
import {Math} from "../math/Math.sol";
import {SafeCast} from "../math/SafeCast.sol";
/**
* @dev This library provides helpers for manipulating time-related objects.
*
* It uses the following types:
* - `uint48` for timepoints
* - `uint32` for durations
*
* While the library doesn't provide specific types for timepoints and duration, it does provide:
* - a `Delay` type to represent duration that can be programmed to change value automatically at a given point
* - additional helper functions
*/
library Time {
using Time for *;
/**
* @dev Get the block timestamp as a Timepoint.
*/
function timestamp() internal view returns (uint48) {
return SafeCast.toUint48(block.timestamp);
}
/**
* @dev Get the block number as a Timepoint.
*/
function blockNumber() internal view returns (uint48) {
return SafeCast.toUint48(block.number);
}
// ==================================================== Delay =====================================================
/**
* @dev A `Delay` is a uint32 duration that can be programmed to change value automatically at a given point in the
* future. The "effect" timepoint describes when the transitions happens from the "old" value to the "new" value.
* This allows updating the delay applied to some operation while keeping some guarantees.
*
* In particular, the {update} function guarantees that if the delay is reduced, the old delay still applies for
* some time. For example if the delay is currently 7 days to do an upgrade, the admin should not be able to set
* the delay to 0 and upgrade immediately. If the admin wants to reduce the delay, the old delay (7 days) should
* still apply for some time.
*
*
* The `Delay` type is 112 bits long, and packs the following:
*
* ```
* | [uint48]: effect date (timepoint)
* | | [uint32]: value before (duration)
* ↓ ↓ ↓ [uint32]: value after (duration)
* 0xAAAAAAAAAAAABBBBBBBBCCCCCCCC
* ```
*
* NOTE: The {get} and {withUpdate} functions operate using timestamps. Block number based delays are not currently
* supported.
*/
type Delay is uint112;
/**
* @dev Wrap a duration into a Delay to add the one-step "update in the future" feature
*/
function toDelay(uint32 duration) internal pure returns (Delay) {
return Delay.wrap(duration);
}
/**
* @dev Get the value at a given timepoint plus the pending value and effect timepoint if there is a scheduled
* change after this timepoint. If the effect timepoint is 0, then the pending value should not be considered.
*/
function _getFullAt(Delay self, uint48 timepoint) private pure returns (uint32, uint32, uint48) {
(uint32 valueBefore, uint32 valueAfter, uint48 effect) = self.unpack();
return effect <= timepoint ? (valueAfter, 0, 0) : (valueBefore, valueAfter, effect);
}
/**
* @dev Get the current value plus the pending value and effect timepoint if there is a scheduled change. If the
* effect timepoint is 0, then the pending value should not be considered.
*/
function getFull(Delay self) internal view returns (uint32, uint32, uint48) {
return _getFullAt(self, timestamp());
}
/**
* @dev Get the current value.
*/
function get(Delay self) internal view returns (uint32) {
(uint32 delay, , ) = self.getFull();
return delay;
}
/**
* @dev Update a Delay object so that it takes a new duration after a timepoint that is automatically computed to
* enforce the old delay at the moment of the update. Returns the updated Delay object and the timestamp when the
* new delay becomes effective.
*/
function withUpdate(
Delay self,
uint32 newValue,
uint32 minSetback
) internal view returns (Delay updatedDelay, uint48 effect) {
uint32 value = self.get();
uint32 setback = uint32(Math.max(minSetback, value > newValue ? value - newValue : 0));
effect = timestamp() + setback;
return (pack(value, newValue, effect), effect);
}
/**
* @dev Split a delay into its components: valueBefore, valueAfter and effect (transition timepoint).
*/
function unpack(Delay self) internal pure returns (uint32 valueBefore, uint32 valueAfter, uint48 effect) {
uint112 raw = Delay.unwrap(self);
valueAfter = uint32(raw);
valueBefore = uint32(raw >> 32);
effect = uint48(raw >> 64);
return (valueBefore, valueAfter, effect);
}
/**
* @dev pack the components into a Delay object.
*/
function pack(uint32 valueBefore, uint32 valueAfter, uint48 effect) internal pure returns (Delay) {
return Delay.wrap((uint112(effect) << 64) | (uint112(valueBefore) << 32) | uint112(valueAfter));
}
}{
"optimizer": {
"enabled": true,
"runs": 5500
},
"viaIR": true,
"evmVersion": "paris",
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"metadata": {
"useLiteralContent": true
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"contract IERC20","name":"_stakingToken","type":"address"},{"internalType":"contract IERC20[]","name":"rewardTokens","type":"address[]"},{"internalType":"contract IMaverickV2VotingEscrow[]","name":"veTokens","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[],"name":"ERC721EnumerableForbiddenBatchMint","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721IncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721InsufficientApproval","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC721InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC721InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721InvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC721InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC721InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"ERC721OutOfBoundsIndex","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"currentBalance","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"InsufficientBalance","type":"error"},{"inputs":[],"name":"MathOverflowedMulDiv","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"inputs":[{"internalType":"uint256","name":"duration","type":"uint256"},{"internalType":"uint256","name":"minDuration","type":"uint256"},{"internalType":"uint256","name":"maxDuration","type":"uint256"}],"name":"RewardDurationOutOfBounds","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"approved","type":"address"},{"internalType":"address","name":"getter","type":"address"}],"name":"RewardNotApprovedGetter","type":"error"},{"inputs":[{"internalType":"uint8","name":"index","type":"uint8"}],"name":"RewardNotValidIndex","type":"error"},{"inputs":[{"internalType":"contract IERC20","name":"rewardTokenAddress","type":"address"}],"name":"RewardNotValidRewardToken","type":"error"},{"inputs":[{"internalType":"contract IERC20","name":"stakingToken","type":"address"}],"name":"RewardTokenCannotBeStakingToken","type":"error"},{"inputs":[],"name":"RewardTransferNotSupported","type":"error"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"uint256","name":"minTimestamp","type":"uint256"}],"name":"RewardUnboostedTimePeriodNotMet","type":"error"},{"inputs":[],"name":"RewardZeroAmount","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint8","name":"rewardTokenIndex","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"stakeDuration","type":"uint256"},{"indexed":false,"internalType":"contract IERC20","name":"rewardTokenAddress","type":"address"},{"components":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bool","name":"asVe","type":"bool"},{"internalType":"contract IMaverickV2VotingEscrow","name":"veContract","type":"address"}],"indexed":false,"internalType":"struct IMaverickV2Reward.RewardOutput","name":"rewardOutput","type":"tuple"},{"indexed":false,"internalType":"uint256","name":"lockupId","type":"uint256"}],"name":"GetReward","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"contract IERC20","name":"rewardTokenAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"duration","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"rewardRate","type":"uint256"}],"name":"NotifyRewardAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Stake","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"UnStake","type":"event"},{"inputs":[],"name":"MAX_DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIN_DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNBOOSTED_MIN_TIME_GAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"contract IMaverickV2VotingEscrow","name":"veToken","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"},{"internalType":"uint256","name":"stakeDuration","type":"uint256"}],"name":"boostedAmount","outputs":[{"internalType":"uint256","name":"earnedAmount","type":"uint256"},{"internalType":"bool","name":"asVe","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"checkAuthorized","outputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractInfo","outputs":[{"components":[{"internalType":"uint256","name":"finishAt","type":"uint256"},{"internalType":"uint256","name":"updatedAt","type":"uint256"},{"internalType":"uint256","name":"rewardRate","type":"uint256"},{"internalType":"uint256","name":"escrowedReward","type":"uint256"},{"internalType":"uint256","name":"rewardPerTokenStored","type":"uint256"},{"internalType":"contract IERC20","name":"rewardToken","type":"address"},{"internalType":"contract IMaverickV2VotingEscrow","name":"veRewardToken","type":"address"},{"internalType":"uint128","name":"unboostedAmount","type":"uint128"},{"internalType":"uint256","name":"lastUnboostedPushTimestamp","type":"uint256"}],"internalType":"struct IMaverickV2Reward.RewardInfo[]","name":"info","type":"tuple[]"},{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"contract IERC20","name":"stakingToken","type":"address"}],"internalType":"struct IMaverickV2Reward.ContractInfo","name":"_contractInfo","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"earned","outputs":[{"components":[{"internalType":"uint256","name":"earned","type":"uint256"},{"internalType":"contract IERC20","name":"rewardToken","type":"address"}],"internalType":"struct IMaverickV2Reward.EarnedInfo[]","name":"earnedInfo","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"contract IERC20","name":"rewardTokenAddress","type":"address"}],"name":"earned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint8","name":"rewardTokenIndex","type":"uint8"},{"internalType":"uint256","name":"stakeDuration","type":"uint256"}],"name":"getReward","outputs":[{"components":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bool","name":"asVe","type":"bool"},{"internalType":"contract IMaverickV2VotingEscrow","name":"veContract","type":"address"}],"internalType":"struct IMaverickV2Reward.RewardOutput","name":"","type":"tuple"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint8","name":"rewardTokenIndex","type":"uint8"},{"internalType":"uint256","name":"stakeDuration","type":"uint256"}],"name":"getRewardToOwner","outputs":[{"components":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bool","name":"asVe","type":"bool"},{"internalType":"contract IMaverickV2VotingEscrow","name":"veContract","type":"address"}],"internalType":"struct IMaverickV2Reward.RewardOutput","name":"","type":"tuple"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint8","name":"rewardTokenIndex","type":"uint8"},{"internalType":"uint256","name":"stakeDuration","type":"uint256"},{"internalType":"uint256","name":"lockupId","type":"uint256"}],"name":"getRewardToOwnerForExistingVeLockup","outputs":[{"components":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bool","name":"asVe","type":"bool"},{"internalType":"contract IMaverickV2VotingEscrow","name":"veContract","type":"address"}],"internalType":"struct IMaverickV2Reward.RewardOutput","name":"","type":"tuple"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintToSender","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"multicall","outputs":[{"internalType":"bytes[]","name":"results","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextTokenId","outputs":[{"internalType":"uint256","name":"nextTokenId_","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"rewardToken","type":"address"},{"internalType":"uint256","name":"duration","type":"uint256"}],"name":"notifyRewardAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"rewardTokenIndex","type":"uint8"}],"name":"pushUnboostedToVe","outputs":[{"internalType":"uint128","name":"amount","type":"uint128"},{"internalType":"uint48","name":"timepoint","type":"uint48"},{"internalType":"uint256","name":"batchIndex","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rewardData","outputs":[{"internalType":"uint64","name":"finishAt","type":"uint64"},{"internalType":"uint64","name":"updatedAt","type":"uint64"},{"internalType":"uint128","name":"rewardRate","type":"uint128"},{"internalType":"uint128","name":"escrowedReward","type":"uint128"},{"internalType":"uint128","name":"unboostedAmount","type":"uint128"},{"internalType":"uint256","name":"lastUnboostedPushTimestamp","type":"uint256"},{"internalType":"uint256","name":"rewardPerTokenStored","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardInfo","outputs":[{"components":[{"internalType":"uint256","name":"finishAt","type":"uint256"},{"internalType":"uint256","name":"updatedAt","type":"uint256"},{"internalType":"uint256","name":"rewardRate","type":"uint256"},{"internalType":"uint256","name":"escrowedReward","type":"uint256"},{"internalType":"uint256","name":"rewardPerTokenStored","type":"uint256"},{"internalType":"contract IERC20","name":"rewardToken","type":"address"},{"internalType":"contract IMaverickV2VotingEscrow","name":"veRewardToken","type":"address"},{"internalType":"uint128","name":"unboostedAmount","type":"uint128"},{"internalType":"uint256","name":"lastUnboostedPushTimestamp","type":"uint256"}],"internalType":"struct IMaverickV2Reward.RewardInfo[]","name":"info","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"index","type":"uint8"}],"name":"rewardTokenByIndex","outputs":[{"internalType":"contract IERC20","name":"output","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardTokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"stake","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"stakedTokenId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"stakeBalanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakeTotalSupply","outputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakingToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokenIdsOfOwner","outputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"rewardToken","type":"address"}],"name":"tokenIndex","outputs":[{"internalType":"uint8","name":"rewardTokenIndex","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"includeStakingToken","type":"bool"}],"name":"tokenList","outputs":[{"internalType":"contract IERC20[]","name":"tokens","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"ownerToCheck","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndexExists","outputs":[{"internalType":"bool","name":"exists","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"rewardToken","type":"address"},{"internalType":"uint256","name":"duration","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferAndNotifyRewardAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transferAndStake","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"stakedTokenId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"unstake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"unstakeToOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vault","outputs":[{"internalType":"contract IMaverickV2RewardVault","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"index","type":"uint8"}],"name":"veTokenByIndex","outputs":[{"internalType":"contract IMaverickV2VotingEscrow","name":"output","type":"address"}],"stateMutability":"view","type":"function"}]Contract Creation Code
6102206040523461065d57615a778038038061001a8161067a565b928339810160a08282031261065d5781516001600160401b03919082811161065d578161004891850161069f565b926020918282015184811161065d578161006391840161069f565b936100706040840161070a565b93606084015182811161065d57840193601f84818701121561065d578551916100a061009b8461071e565b61067a565b9684888581520185600595861b8301019188831161065d5786809101915b838310610662575050505060808101519085821161065d57019480828701121561065d5785516100f061009b8261071e565b968580898481520192861b82010192831161065d578501905b82821061063e575050508851978489116106285760009889549a60019b8c81811c9116801561061e575b8782101461060a579081858493116105be575b508690858311600114610556578c9261054b575b5050600019600383901b1c1916908b1b1789555b805192858411610537578a54908b82811c9216801561052d575b868310146105195790839291859482116104c8575b50508491831160011461046957899261045e575b5050600019600383901b1c191690881b1787555b86600a5586600d5584608052604051916104d4808401918483109083111761044a579083916155a383396001600160a01b03968716815203019085f093841561043e575082610200941684528151946101e09580875261041a575b8551116103f6575b60028551116103d2575b60038551116103ad575b6004855111610387575b50505060405190614e0a92836107998439608051838181610e78015281816110df01528181611793015281816121da015261315f015260a0518381816118d901528181612abe0152612cb7015260c05183818161189f01528181612ae70152612c92015260e05183818161186101528181612b100152612c6d01526101005183818161182301528181612b390152612c480152610120518381816117cf01528181612b610152612c240152610140518361307b015261016051836130560152610180518361303101526101a0518361300c01526101c05183612fe8015251828181610c1301528181611690015281816116eb0152818161192a01528181611b2601528181612bdf01528181612fa3015281816137dc0152614b7701525181818161027401528181610e5501528181610f1b015281816119cd01526131300152f35b8261039461039f93610788565b511661012052610788565b51166101c052388080610246565b826103b783610778565b511661010052826103c782610778565b51166101a05261023c565b826103dc83610768565b511660e052826103eb82610768565b511661018052610232565b8261040083610758565b511660c0528261040f82610758565b511661016052610228565b8361042484610735565b511660a0528361043383610735565b511661014052610220565b604051903d90823e3d90fd5b634e487b7160e01b88526041600452602488fd5b0151905038806101b1565b8a8a52848a208b94509190601f1984168b5b878282106104b25750508411610499575b505050811b0187556101c5565b015160001960f88460031b161c1916905538808061048c565b8385015186558e9790950194938401930161047b565b90919293508b8b52858b209084808701821c830193888810610510575b9187968f93969594929601901c01915b828110610502575061019d565b8c81558695508d91016104f5565b935082936104e5565b634e487b7160e01b8b52602260045260248bfd5b91607f1691610188565b634e487b7160e01b8a52604160045260248afd5b01519050388061015a565b8c8052878d208e94509190601f1984168e5b8a82821061059f5750508411610586575b505050811b01895561016e565b015160001960f88460031b161c19169055388080610579565b91929395968291958786015181550195019301908f9594939291610568565b9091508b8052868c2085808501881c820192898610610601575b918f918695949301891c01915b8281106105f3575050610146565b8e81558594508f91016105e5565b925081926105d8565b634e487b7160e01b8c52602260045260248cfd5b90607f1690610133565b634e487b7160e01b600052604160045260246000fd5b81516001600160a01b038116810361065d578152908501908501610109565b600080fd5b819061066d8461070a565b81520191019086906100be565b6040519190601f01601f191682016001600160401b0381118382101761062857604052565b919080601f8401121561065d5782516001600160401b038111610628576020906106d1601f8201601f1916830161067a565b9281845282828701011161065d5760005b8181106106f757508260009394955001015290565b85810183015184820184015282016106e2565b51906001600160a01b038216820361065d57565b6001600160401b0381116106285760051b60200190565b8051156107425760200190565b634e487b7160e01b600052603260045260246000fd5b8051600110156107425760400190565b8051600210156107425760600190565b8051600310156107425760800190565b8051600410156107425760a0019056fe608060408181526004918236101561001657600080fd5b600092833560e01c91826301ffc9a7146123bd5750816306fdde031461239f578163081812fc14612365578163095ea7b31461225957816315c43aaf1461215d57816318160ddd1461213e57816323b872dd146121265781632f745c59146120fd5781633a3619de146120aa5781633e3cc23914612020578163427f91a614611ffd57816342842e0e14611fd45781634709b70914611fb6578163482af13b14611f8857816348fd65fe14611f5d5781634b986ec214611f155781634c46589914611c715781634d6ed8c414611b0c5781634f6ccce714611a9e57816351a7c7161461194f5781635d62fd5f146116675781636352211e1461163f5781636565ac99146116095781636a627842146115e35781636deda0fc1461112957816370a082311461110357816372f702f3146110bf578163751df17a1461107c57816375794a3c1461105d5781637aaa90e114610ea157816388a2955214610e3157816395d89b4114610e005781639e59e59814610d38578163a22cb46514610c61578163a694fc3a14610c36578163abb06b9514610bfb578163ac9650d814610a3e578163b1724b4614610a20578163b66503cf14610a00578163b6a6d177146109e2578163b88d4fde1461097a578163c58181c41461095b578163c87b56dd14610498578163c9f6707214610463578163d6d8266f146103cf578163e39c08fc14610375578163e48e622714610357578163e985e9c514610306578163f01a11fc146102da57508063f476eaf21461029c5763fbfa77cf1461025657600080fd5b34610298578160031936011261029857602090516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168152f35b5080fd5b5034610298576060600319360112610298576020906102d36102bc612507565b6102ca604435303384614230565b602435906132ff565b9051908152f35b905034610302576020600319360112610302576020928291358152600b845220549051908152f35b8280fd5b505034610298578060031936011261029857602091610323612507565b8261032c61251d565b926001600160a01b03809316815260058652209116600052825260ff81600020541690519015158152f35b5050346102985781600319360112610298576020906102d333613ecd565b8284346103cc57816003193601126103cc5760ff61039961039461251d565b612aaf565b169060058210156103b9575060209260066102d39202600e019035613e55565b80603285634e487b7160e01b6024945252fd5b80fd5b905082346103cc5760806003193601126103cc575035906103ee61251d565b6044359060ff8216820361045e5760609361045c926104349261040f612a90565b50610423833361041e8261395d565b614135565b6064359261042f612a90565b6139b1565b915180926001600160a01b036040809280518552602081015115156020860152015116910152565bf35b600080fd5b505034610298578160031936011261029857610494906104816137da565b9051918291602083526020830190612533565b0390f35b8284346103cc57602090816003193601126103cc57506104946108fb7f227d0000000000000000000000000000000000000000000000000000000000006108f661031d6104e36144d3565b6104eb6144d3565b88519485927f7b226e616d65223a2200000000000000000000000000000000000000000000008a850152610528815180928c6029880191016124bf565b8301917f222c22696d616765223a22646174613a696d6167652f7376672b786d6c3b626160298401527f736536342c50484e325a79423462577875637a30696148523063446f764c336460498401527f33647935334d793576636d63764d6a41774d43397a646d6369494864705a485260698401527f6f505349784d4441774969426f5a576c6e61485139496a45794d44416949485a60898401527f705a58644362336739496a41674d4341784d444177494445794d44416949475a60a98401527f7062477739496d3576626d556950676f38634746306143426b50534a4e4d434160c98401527f314d454d77494449794c6a4d344e5467674d6a49754d7a67314f43417749445560e98401527f77494442494e6a5577517a67304d79347a494441674d5441774d4341784e54596101098401527f754e7941784d44417749444d314d4659784d545577517a45774d4441674d54456101298401527f334e7934324d5341354e7a63754e6a4530494445794d4441674f5455774944456101498401527f794d4442494d7a5577517a45314e693433494445794d4441674d4341784d44516101698401527f7a4c6a4d674d4341344e5442574e5442614969426d6157787350534a696247466101898401527f6a617949675a6d6c73624331766347466a61585235505349774c6a6b324969386101a98401527f2b436a78775958526f49475139496b30344f4334304d54413249446b344c6a496101c98401527f314e4452574f44524d4e5441674d544130534445794d53347a4d4452574e6a526101e98401527f4d4f4467754e4445774e6941354f4334794e545130576949675a6d6c736244306102098401527f6964326870644755694c7a344b5048526c65485167654430694e54416949486b6102298401527f39496a49314d4349675a6d39756443317a6158706c5053497a4f4349675a6d6c6102498401527f7362443069636d64694b4449314e5377674d6a55314c4341794e5455704969426102698401527f735a5852305a5849746333426859326c755a7a30694d6949675a6d39756443316102898401527f6d5957317062486b394969644462335679615756794945356c647963734947316102a98401527f76626d397a6347466a5a53492b545746325a584a7059327367556d563359584a6102c98401527f6b4946427663326c3061573975504339305a586830506a777663335a6e50673d6102e98401527f3d222c226465736372697074696f6e223a22000000000000000000000000000061030984015261031b926108e2825180938d87850191016124bf565b0191820152036102fd8101845201826126e4565b61432c565b9261094c603d825180967f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008783015261093c815180928986860191016124bf565b810103601d8101875201856126e4565b519282849384528301906124e2565b505034610298578160031936011261029857602090600c549051908152f35b83903461029857608060031936011261029857610995612507565b61099d61251d565b9060643567ffffffffffffffff81116109de57366023820112156109de576109db938160246109d193369301359101612723565b916044359161363b565b80f35b8480fd5b505034610298578160031936011261029857602090516203f4808152f35b5050346102985780600319360112610298576020906102d36102ca612507565b505034610298578160031936011261029857602090516234bc008152f35b8391503461029857602091826003193601126103cc5781359167ffffffffffffffff90818411610302573660238501121561030257830135908082116103025760246005923660248260051b880101116109de5792610a9c84612f14565b95610aa9895197886126e4565b848752601f19610ab886612f14565b0188875b828110610beb5750505085917fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffbd82360301925b868110610b71578a8a8a8a83519280840190808552835180925280868601968360051b870101940192955b828710610b275785850386f35b909192938280610b61837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc08a6001960301865288516124e2565b9601920196019592919092610b1a565b8481831b8401013584811215610be75783018581013590878211610be357604401908036038213610be35789808d610bb160019695610bc7953691612723565b80519101305af4610bc06142a1565b9030614be5565b610bd1828c612f3d565b52610bdc818b612f3d565b5001610aef565b8980fd5b8880fd5b60608a82018301528a9101610abc565b505034610298578160031936011261029857602090517f00000000000000000000000000000000000000000000000000000000000000008152f35b905082346103cc5760206003193601126103cc5750610c5590356130ee565b82519182526020820152f35b91905034610302578060031936011261030257610c7c612507565b906024359182151580930361045e576001600160a01b0316928315610d0a5750338452600560205280842083600052602052806000207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0081541660ff8416179055519081527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3160203392a380f35b8360249251917f5b08ba18000000000000000000000000000000000000000000000000000000008352820152fd5b8284346103cc57602090816003193601126103cc578290610d57612507565b90610d618261309d565b610d6a81612f14565b90610d77855192836126e4565b808252610d8381612f14565b93601f198784019501368637835b828110610dd65750505083519485948186019282875251809352850193925b828110610dbf57505050500390f35b835185528695509381019392810192600101610db0565b80610de9600192849a979698999a612a16565b610df38289612f3d565b5201969594929396610d91565b50503461029857816003193601126102985761049490610e1e6145d9565b90519182916020835260208301906124e2565b8284346103cc5750610c55610e9c610e4836612633565b6001600160a01b039291927f000000000000000000000000000000000000000000000000000000000000000016337f0000000000000000000000000000000000000000000000000000000000000000614230565b6130ee565b9190503461030257610eb236612633565b929091610ec3833361041e8261395d565b610ecc8361395d565b90610ed56142d1565b841561103557610ee484614b75565b838652600b60205280862054808611610ff357859081600c5403600c55858852600b6020520381872055856001600160a01b0393847f000000000000000000000000000000000000000000000000000000000000000016803b156103025783517ff3fef3a30000000000000000000000000000000000000000000000000000000081526001600160a01b03861692810192835260208301899052918391839182908490829060400103925af18015610fe957610fd1575b50505193845216917f8e61469f8c29c4968b91d96c2003a756f42faf9e56e685113e7776492260aa1760203392a46001600d5580f35b610fda9061267b565b610fe5578538610f9b565b8580fd5b83513d84823e3d90fd5b90517ffcca3733000000000000000000000000000000000000000000000000000000008152928301938452602084015250604082018390529081906060010390fd5b9050517f14f29f88000000000000000000000000000000000000000000000000000000008152fd5b505034610298578160031936011261029857602090600a549051908152f35b5050346102985780600319360112610298576020906001600160a01b036110a1612507565b916110b86024356110b18161395d565b9485614135565b5191168152f35b505034610298578160031936011261029857602090516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168152f35b505034610298576020600319360112610298576020906102d3611124612507565b61309d565b8284346103cc5760806003193601126103cc5750813591611148612613565b9260443590606435611158612a90565b50611167823361041e8261395d565b6111708261395d565b611178612a90565b6111806142d1565b9660058110156115ce57600681029461119c86600e0186614690565b8460005260138601602052876000208054976fffffffffffffffffffffffffffffffff97888a1692836111fd575b60608d61045c8e6001600d555180926001600160a01b036040809280518552602081015115156020860152015116910152565b600f92939495969798999a9c506fffffffffffffffffffffffffffffffff19809d16905501908154838a8216039b8a8d116115b9578a8a9b9c9d9a999a16911617825561124985612bda565b61125286612f9e565b90611267868684611261612a90565b9c612d2d565b15801560208c0152818b526115105750908b8d6060938b8b8e6112986001600160a01b038098169485855191613ccd565b8385840152600019811460001461145457505090606493946112bc60009351613e00565b935197889687957f1ef3467b00000000000000000000000000000000000000000000000000000000875216908501528a60248501528c1660448401525af18015611449579460609b98946113ae947fe47c57318950d2a193de7632844e22ae34cd95299259fc16515741c22b5d91ad9994610140999461045c9d9961141a575b505b859d8651908184116113c5575b5050505060ff61135a83612bda565b928b5198338a5260208a01526001600160a01b038095168c8a0152168d88015260808701521660a085015260c08401906001600160a01b036040809280518552602081015115156020860152015116910152565b610120820152a191928480808080808080806111ca565b6113d56113e09261141195613c9c565b16825460801c613ca9565b6fffffffffffffffffffffffffffffffff6fffffffffffffffffffffffffffffffff1983549260801b169116179055565b8d80808061134b565b8f9061143b913d606011611442575b61143381836126e4565b810190614766565b508f61133c565b503d611429565b8b513d6000823e3d90fd5b9360849591946114676000959451613e00565b9151998a9889977fea4914ef000000000000000000000000000000000000000000000000000000008952169087015260248601528b60448601521660648401525af18015611449579460609b98946113ae947fe47c57318950d2a193de7632844e22ae34cd95299259fc16515741c22b5d91ad9994610140999461045c9d996114f1575b5061133e565b8f90611509913d6060116114425761143381836126e4565b508f6114eb565b61014098935061045c9b979250947fe47c57318950d2a193de7632844e22ae34cd95299259fc16515741c22b5d91ad99946115b460609f9c98936115a1906115af8f9a6113ae9b519384917fa9059cbb0000000000000000000000000000000000000000000000000000000060208401528b60248401602090939291936001600160a01b0360408201951681520152565b03601f1981018452836126e4565b614a52565b61133e565b601183634e487b7160e01b6000525260246000fd5b603286634e487b7160e01b6000525260246000fd5b505034610298576020600319360112610298576020906102d3611604612507565b613ecd565b505034610298576020600319360112610298576020906001600160a01b03611637611632612623565b612f9e565b915191168152f35b8284346103cc5760206003193601126103cc57506001600160a01b036116376020933561395d565b8284346103cc57602090816003193601126103cc57833591821515830361045e578215611928577f00000000000000000000000000000000000000000000000000000000000000006001810180911161191557915b6116dd6116c884612f14565b936116d5875195866126e4565b808552612f14565b93601f1983850195013686377f000000000000000000000000000000000000000000000000000000000000000090816118c8575b6001976001831161188b575b6002831161184d575b6003831161180f575b8083116117bb575b5061177f575b5091908495939551948186019282875251809352850195925b8281106117635785870386f35b83516001600160a01b0316875295810195928101928401611756565b6117899084612f3d565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690528661173d565b85518110156117fa57506001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001660a086015288611737565b603290634e487b7160e01b6000525260246000fd5b8551600310156117fa576001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016608087015261172f565b8551600210156117fa576001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166060870152611726565b8551600110156117fa576001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168887015261171d565b845115611900576001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168652611711565b603288634e487b7160e01b6000525260246000fd5b602483601188634e487b7160e01b835252fd5b7f0000000000000000000000000000000000000000000000000000000000000000916116bc565b9050346103025760606003193601126103025780359061196d61251d565b6044359361197f843361041e8261395d565b6119876142d1565b84156110355761199684614b75565b838652600b60205280862054808611610ff357859081600c5403600c55858852600b60205203818720556001600160a01b039286847f00000000000000000000000000000000000000000000000000000000000000001691823b156102985783517ff3fef3a30000000000000000000000000000000000000000000000000000000081526001600160a01b0386169181019182526020820189905292839182908490829060400103925af18015611a9457611a81575b505193845216917f8e61469f8c29c4968b91d96c2003a756f42faf9e56e685113e7776492260aa1760203392a46001600d5580f35b611a8d9096919661267b565b9438611a4c565b82513d89823e3d90fd5b90503461030257602060031936011261030257803592600854841015611ad857602083611aca86612f67565b91905490519160031b1c8152f35b604493919251927fa57d13dc0000000000000000000000000000000000000000000000000000000084528301526024820152fd5b8383346102985760209081600319360112610302578335907f000000000000000000000000000000000000000000000000000000000000000092611b4f84612f14565b92611b5c835194856126e4565b848452601f19611b6b86612f14565b0182875b828110611c5057505050855b60ff811686811015611bfb576005821015611be85790611bdd611be392611ba860068402600e0186613e55565b6001600160a01b03611bb985612bda565b895192611bc584612649565b83521687820152611bd6828a612f3d565b5287612f3d565b50612f2c565b611b7b565b60248860328b634e487b7160e01b835252fd5b8451848152865181860181905281908188019089880190888d8b5b838210611c235786860387f35b8451805187528301516001600160a01b031686840152879650948501949382019360019190910190611c16565b8551611c5b81612649565b8981528983820152828289010152018390611b6f565b9050346103025760209182600319360112611f1157611c8e612623565b92611c9884612f9e565b90611ca285612bda565b946005811015611efe5760060294600f8601948554958660801c978815611ed6576010019081546277f8808101809111611ec35780421115611e8d57506fffffffffffffffffffffffffffffffff80981690554290556001600160a01b03809416611d0e888285613ccd565b65ffffffffffff804211611e57579089914216958751947faa902b4d0000000000000000000000000000000000000000000000000000000086528686868187875af1958615611e4d57918795939185938d9698611e13575b50611d746084969798613e00565b9b8b519c8d9889977f3082f0e90000000000000000000000000000000000000000000000000000000089528801528b60248801521660448601521660648401525af1938415611e09578694611dd6575b50606095508251948552840152820152f35b9080945081813d8311611e02575b611dee81836126e4565b81010312610fe55760609550519238611dc4565b503d611de4565b83513d88823e3d90fd5b95509590965084813d8311611e46575b611e2d81836126e4565b810103126102985792519486948b949190611d74611d66565b503d611e23565b89513d86823e3d90fd5b60448360308951917f6dfcc650000000000000000000000000000000000000000000000000000000008352820152426024820152fd5b836044918951917fb5b2827a00000000000000000000000000000000000000000000000000000000835242908301526024820152fd5b60248b601186634e487b7160e01b835252fd5b8287517f14f29f88000000000000000000000000000000000000000000000000000000008152fd5b602487603287634e487b7160e01b835252fd5b8380fd5b90503461030257608060031936011261030257602435906001600160a01b0382168203611f115790611f4f91606435916044359135612d2d565b825191825215156020820152f35b505034610298578060031936011261029857602090611f7d611124612507565b602435109051908152f35b505034610298576020600319360112610298576020906001600160a01b03611637611fb1612623565b612bda565b505034610298578160031936011261029857602090516277f8808152f35b505034610298576109db90611fe8366125de565b91925192611ff5846126c8565b85845261363b565b5050346102985760206003193601126102985760209060ff611637610394612507565b90503461030257602060031936011261030257359160058310156103cc5750600660e0920280600e01549067ffffffffffffffff92600f820154906011601084015493015493815195808216875281831c16602087015260801c908501526fffffffffffffffffffffffffffffffff8116606085015260801c608084015260a083015260c0820152f35b8284346103cc5760606003193601126103cc575061045c610434606093356120d0612613565b6120d8612a90565b506120e7823361041e8261395d565b604435916120f48161395d565b9061042f612a90565b5050346102985780600319360112610298576020906102d361211d612507565b60243590612a16565b83346103cc576109db612138366125de565b9161275a565b5050346102985781600319360112610298576020906008549051908152f35b8284346103cc57806003193601126103cc5781516080810181811067ffffffffffffffff821117612246576122109450835260608152606060208201818152848301938085528284019081526121b16137da565b956121ba6144d3565b85526121c46145d9565b8352600c5486526122376001600160a01b0393847f000000000000000000000000000000000000000000000000000000000000000016845261222883519a8b9a858c52858c0190612533565b978a890360208c0152516080895260808901906124e2565b905187820360208901526124e2565b95519085015251169101520390f35b602483604187634e487b7160e01b835252fd5b91905034610302578060031936011261030257612274612507565b916024356122818161395d565b33151580612352575b8061232a575b6122fb5781906001600160a01b03809616958691167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258880a484526020528220907fffffffffffffffffffffffff000000000000000000000000000000000000000082541617905580f35b83517fa9fbf51f0000000000000000000000000000000000000000000000000000000081523381850152602490fd5b506001600160a01b0381168652600560205283862033875260205260ff848720541615612290565b50336001600160a01b038216141561228a565b9050346103025760206003193601126103025781602093826001600160a01b0393356123908161395d565b50825285522054169051908152f35b50503461029857816003193601126102985761049490610e1e6144d3565b84913461030257602060031936011261030257357fffffffff00000000000000000000000000000000000000000000000000000000811680910361030257602092507f780e9d63000000000000000000000000000000000000000000000000000000008114908115612431575b5015158152f35b7f80ac58cd00000000000000000000000000000000000000000000000000000000811491508115612495575b811561246b575b508361242a565b7f01ffc9a70000000000000000000000000000000000000000000000000000000091501483612464565b7f5b5e139f000000000000000000000000000000000000000000000000000000008114915061245d565b60005b8381106124d25750506000910152565b81810151838201526020016124c2565b90601f19601f602093612500815180928187528780880191016124bf565b0116010190565b600435906001600160a01b038216820361045e57565b602435906001600160a01b038216820361045e57565b90815180825260208080930193019160005b828110612553575050505090565b835180518652808301518684015260408082015190870152606080820151908701526080808201519087015260a0808201516001600160a01b039081169188019190915260c0808301519091169087015260e0808201516fffffffffffffffffffffffffffffffff169087015261010090810151908601526101209094019392810192600101612545565b600319606091011261045e576001600160a01b0390600435828116810361045e5791602435908116810361045e579060443590565b6024359060ff8216820361045e57565b6004359060ff8216820361045e57565b600319604091011261045e576004359060243590565b6040810190811067ffffffffffffffff82111761266557604052565b634e487b7160e01b600052604160045260246000fd5b67ffffffffffffffff811161266557604052565b6060810190811067ffffffffffffffff82111761266557604052565b610120810190811067ffffffffffffffff82111761266557604052565b6020810190811067ffffffffffffffff82111761266557604052565b90601f601f19910116810190811067ffffffffffffffff82111761266557604052565b67ffffffffffffffff811161266557601f01601f191660200190565b92919261272f82612707565b9161273d60405193846126e4565b82948184528183011161045e578281602093846000960137010152565b916001600160a01b038083169384156129e5576000948386526020956002875260409684888320541696336129d5575b87158015612985575b848452600383528984206001815401905587845260028352898420857fffffffffffffffffffffffff000000000000000000000000000000000000000082541617905587858a7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8780a4156129095760085487845260098352808a852055680100000000000000008110156128f5578761283682600161284e9401600855612f67565b90919060001983549160031b92831b921b1916179055565b8388036128a3575b5050505016928383036128695750505050565b6064945051927f64283d7b000000000000000000000000000000000000000000000000000000008452600484015260248301526044820152fd5b6128ac9061309d565b9260001984019384116128e15782916007918a9452600681528383208584528152878484205587835252205538808080612856565b602483634e487b7160e01b81526011600452fd5b602484634e487b7160e01b81526041600452fd5b87841461284e576129198861309d565b878452600783528984205481810361294e575b50878452838a812055888452600683528984209084528252828981205561284e565b898552600684528a852082865284528a8520548a8652600685528b86208287528552808c8720558552600784528a8520553861292c565b6129be88600052600460205260406000207fffffffffffffffffffffffff00000000000000000000000000000000000000008154169055565b888452600383528984206000198154019055612793565b6129e087338a614135565b61278a565b60246040517f64a0ae9200000000000000000000000000000000000000000000000000000000815260006004820152fd5b612a1f8161309d565b821015612a4c576001600160a01b0316600052600660205260406000209060005260205260406000205490565b6040517fa57d13dc0000000000000000000000000000000000000000000000000000000081526001600160a01b039190911660048201526024810191909152604490fd5b60405190612a9d8261268f565b60006040838281528260208201520152565b6001600160a01b0380911690807f0000000000000000000000000000000000000000000000000000000000000000168214612bd357807f0000000000000000000000000000000000000000000000000000000000000000168214612bcc57807f0000000000000000000000000000000000000000000000000000000000000000168214612bc557807f0000000000000000000000000000000000000000000000000000000000000000168214612bbe577f0000000000000000000000000000000000000000000000000000000000000000168114612bb857602490604051907f3dc09a5c0000000000000000000000000000000000000000000000000000000082526004820152fd5b50600490565b5050600390565b5050600290565b5050600190565b5050600090565b60ff167f0000000000000000000000000000000000000000000000000000000000000000811015612cd9578015612cb45760018114612c8f5760028114612c6a57600314612c46577f000000000000000000000000000000000000000000000000000000000000000090565b7f000000000000000000000000000000000000000000000000000000000000000090565b507f000000000000000000000000000000000000000000000000000000000000000090565b507f000000000000000000000000000000000000000000000000000000000000000090565b507f000000000000000000000000000000000000000000000000000000000000000090565b602490604051907f205467d70000000000000000000000000000000000000000000000000000000082526004820152fd5b91908201809211612d1757565b634e487b7160e01b600052601160045260246000fd5b929392600092916001600160a01b0390811690848215612f095750612d518361395d565b6040517f70a08231000000000000000000000000000000000000000000000000000000008152911660048201526020918282602481845afa918215612ecf578692612eda575b50908260049392604051948580927f18160ddd0000000000000000000000000000000000000000000000000000000082525afa928315612ecf578693612e9f575b50612e23939291612df7600b92600194858111908618028518906147a5565b93875252612e156040862054600c54838111908418028318906147a5565b81811190821802189061485a565b670a688906bd8b00009081018091116128e157670de0b6b3a764000090612e49866148d9565b936702c68af0bb140000948501809511612e8b5750918183612e8093612e859695109082180281189381811090821802189061494f565b61494f565b91151590565b80634e487b7160e01b602492526011600452fd5b9092508181813d8311612ec8575b612eb781836126e4565b81010312610fe5575191600b612dd8565b503d612ead565b6040513d88823e3d90fd5b9091508281813d8311612f02575b612ef281836126e4565b81010312610fe557519082612d97565b503d612ee8565b959650505050905091565b67ffffffffffffffff81116126655760051b60200190565b60ff1660ff8114612d175760010190565b8051821015612f515760209160051b010190565b634e487b7160e01b600052603260045260246000fd5b600854811015612f515760086000527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30190600090565b60ff167f0000000000000000000000000000000000000000000000000000000000000000811015612cd95780156130785760018114613053576002811461302e5760031461300a577f000000000000000000000000000000000000000000000000000000000000000090565b7f000000000000000000000000000000000000000000000000000000000000000090565b507f000000000000000000000000000000000000000000000000000000000000000090565b507f000000000000000000000000000000000000000000000000000000000000000090565b507f000000000000000000000000000000000000000000000000000000000000000090565b6001600160a01b031680156130bd57600052600360205260406000205490565b60246040517f89c62b6400000000000000000000000000000000000000000000000000000000815260006004820152fd5b801561327d575b6130fd6142d1565b6001600160a01b0360405180917f70a08231000000000000000000000000000000000000000000000000000000008252807f000000000000000000000000000000000000000000000000000000000000000016600483015281602460209485937f0000000000000000000000000000000000000000000000000000000000000000165afa90811561327157600091613244575b50600c54908181101561323d5750506000905b81156132135782906131b48261395d565b506131be82614b75565b6131ca83600c54612d0a565b600c5581600052600b815260406000208381540190557f5af417134f72a9d41143ace85b0a26dce6f550f894f2cbc1eeee8810603d91b6604051918483523392a36001600d5591565b60046040517f14f29f88000000000000000000000000000000000000000000000000000000008152fd5b03906131a3565b90508181813d831161326a575b61325b81836126e4565b8101031261045e575138613190565b503d613251565b6040513d6000823e3d90fd5b506132873361309d565b156132f1576132953361309d565b156132ba573360005260066020526040600020600080526020526040600020546130f5565b60446040517fa57d13dc00000000000000000000000000000000000000000000000000000000815233600482015260006024820152fd5b6132fa33613ecd565b6130f5565b906133086142d1565b6203f4808082106135fb576234bc00908183116135bf5750509061332b81612aaf565b6005811015612f5157806024600661335e9302602081600e019361334e85614c78565b6001600160a01b03958691612bda565b16604051938480927f70a082310000000000000000000000000000000000000000000000000000000082523060048301525afa9182156132715760009261358a575b50600f01546fffffffffffffffffffffffffffffffff1690818110156135835750506000905b805467ffffffffffffffff908181164281101561357a57506000905b60801c9081810290808204831490151715612d17578060011b9080820460021490151715612d175784118015613572575b1561353557509160a0939161350a7ffcb9ca03b70a876a8d62dc2ef18aa125118fd02dae56cfffc36a627e7b1c4811969461348b6134596134548b8761430c565b613e00565b84546fffffffffffffffffffffffffffffffff1660809190911b6fffffffffffffffffffffffffffffffff1916178455565b8061349e6134998b42612d0a565b614d87565b167fffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000845416178355421682907fffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff6fffffffffffffffff000000000000000083549260401b169116179055565b5460801c916040519333855216602084015260408301528460608301526080820152a1906001600d55565b839196509161350a61356c60a096947ffcb9ca03b70a876a8d62dc2ef18aa125118fd02dae56cfffc36a627e7b1c4811989661430c565b9761348b565b508015613413565b429003906133e2565b03906133c6565b9091506020813d6020116135b7575b816135a6602093836126e4565b8101031261045e575190600f6133a0565b3d9150613599565b60649350604051927fd3350e51000000000000000000000000000000000000000000000000000000008452600484015260248301526044820152fd5b60649250604051917fd3350e51000000000000000000000000000000000000000000000000000000008352600483015260248201526234bc006044820152fd5b919061364882828561275a565b803b613655575b50505050565b6136b16001600160a01b03809216946040519384937f150b7a02000000000000000000000000000000000000000000000000000000009687865233600487015216602485015260448401526080606484015260848301906124e2565b03906020816000938185885af190829082613779575b505061371757826136d66142a1565b805191908261371057602482604051907f64a0ae920000000000000000000000000000000000000000000000000000000082526004820152fd5b9050602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000160361374857503880808061364f565b602490604051907f64a0ae920000000000000000000000000000000000000000000000000000000082526004820152fd5b909192506020813d6020116137d2575b81613796602093836126e4565b810103126102985751907fffffffff00000000000000000000000000000000000000000000000000000000821682036103cc57509038806136c7565b3d9150613789565b7f00000000000000000000000000000000000000000000000000000000000000009061380582612f14565b91604090613815825194856126e4565b808452601f1961382482612f14565b0160005b8181106139085750508360005b60ff81169083821015613900576005811015612f5157611bdd6138fb926006830280600e015467ffffffffffffffff916080601182015461387588612bda565b9061387f89612f9e565b908d6010600f870154960154968151986138988a6126ab565b8082168a5281831c1660208a0152851c908801526fffffffffffffffffffffffffffffffff85166060880152838701526001600160a01b0380921660a08701521660c08501521c60e08301526101008201526138f4828b612f3d565b5288612f3d565b613835565b505093505050565b6020908451613916816126ab565b60008152826000818301526000878301526000606083015260006080830152600060a0830152600060c0830152600060e08301526000610100830152828901015201613828565b8060005260026020526001600160a01b0360406000205416908115613980575090565b602490604051907f7e2732890000000000000000000000000000000000000000000000000000000082526004820152fd5b93929091936139be6142d1565b936005821015612f515760068202936139da85600e0185614690565b836000526013850160205260409081600020938454946fffffffffffffffffffffffffffffffff978887169182613a1e575b50505050505050505050906001600d55565b600f92939495969798999a506fffffffffffffffffffffffffffffffff198099169055018054828a821603978a8911612d17578a8a99169116178155613a6383612bda565b89613a6d85612f9e565b91613a82878685613a7c612a90565b9d612d2d565b15801560208d0152818c52613c0c57509060648a613ab06060946001600160a01b0380971680935191613ccd565b808a8d01526000613ac18d51613e00565b918b5196879586947f1ef3467b0000000000000000000000000000000000000000000000000000000086521660048501528b60248501528d1660448401525af18015613c015793613bb0969361014099969360ff937fe47c57318950d2a193de7632844e22ae34cd95299259fc16515741c22b5d91ad9c9a97613be2575b505b879c885190818411613bc9575b50505050613b5b81612bda565b93805198338a5260208a01526001600160a01b038096169089015216606087015260808601521660a084015260c08301906001600160a01b036040809280518552602081015115156020860152015116910152565b600019610120820152a138808080808080808080613a0c565b6113d56113e092613bd995613c9c565b38808080613b4e565b613bfa9060603d6060116114425761143381836126e4565b5038613b3f565b86513d6000823e3d90fd5b60ff93507fe47c57318950d2a193de7632844e22ae34cd95299259fc16515741c22b5d91ad9b9996925093613c976115a18a97936115af6101409e9b98613bb09d519384917fa9059cbb0000000000000000000000000000000000000000000000000000000060208401528d60248401602090939291936001600160a01b0360408201951681520152565b613b41565b91908203918211612d1757565b9190916fffffffffffffffffffffffffffffffff80809416911601918211612d1757565b6040517f095ea7b300000000000000000000000000000000000000000000000000000000602082018181526001600160a01b038516602484015260448084019690965294825294939092613d226064856126e4565b6001600160a01b0390818416600080809588519082855af190613d436142a1565b82613dce575b5081613dc3575b5015613d60575b50505050509050565b60405196602088015216602486015280604486015260448552608085019085821067ffffffffffffffff831117613daf5750613da493946115af9160405282614a52565b803880808080613d57565b80634e487b7160e01b602492526041600452fd5b90503b151538613d50565b80519192508115918215613de6575b50509038613d49565b613df99250602080918301019101614a3a565b3880613ddd565b6fffffffffffffffffffffffffffffffff90818111613e1d571690565b604490604051907f6dfcc650000000000000000000000000000000000000000000000000000000008252608060048301526024820152fd5b613e9e613ec1926000838152600582016020526fffffffffffffffffffffffffffffffff60408220541693600b6020526004604083205493613ea46003820154613e9e83614ade565b90612d0a565b9284520160205260408220549081811015613ec45750509061494f565b90565b0391905061494f565b600a54906001600160a01b039081811680156129e5576000938085526020906002825260409485872054169384159484861596876140e5575b818a5260038652888a2060018154019055848a5260028652888a20827fffffffffffffffffffffffff00000000000000000000000000000000000000008254161790558482847fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8d80a41561406857506008548389526009855280888a2055680100000000000000008110156140545790613fac846128368460018a9601600855612f67565b03614003575b50505050613fd35750600a54906000198214612e8b575060018101600a5590565b6024925051907f73c6ac6e0000000000000000000000000000000000000000000000000000000082526004820152fd5b61400c9061309d565b9260001984019384116140405786526006825284862083875282528486208190558552600790528284205538808080613fb2565b602487634e487b7160e01b81526011600452fd5b602489634e487b7160e01b81526041600452fd5b90808214613fac576140798161309d565b848a5260078652888a20548181036140ae575b50848a528989812055818a5260068652888a20908a5285528888812055613fac565b828b5260068752898b20828c528752898b2054838c52600688528a8c20828d528852808b8d20558b5260078752898b20553861408c565b61411e85600052600460205260406000207fffffffffffffffffffffffff00000000000000000000000000000000000000008154169055565b828a5260038652888a206000198154019055613f06565b6001600160a01b039081831680151590816141d1575b50156141575750505050565b1661418d57602482604051907f7e2732890000000000000000000000000000000000000000000000000000000082526004820152fd5b6040517f177e802f0000000000000000000000000000000000000000000000000000000081526001600160a01b039190911660048201526024810191909152604490fd5b82841680821492508215614209575b5081156141ef575b503861414b565b9050846000526004602052826040600020541614386141e8565b909150600052600560205260406000208160005260205260ff6040600020541690386141e0565b9290604051927f23b872dd0000000000000000000000000000000000000000000000000000000060208501526001600160a01b03809216602485015216604483015260648201526064815260a081019181831067ffffffffffffffff8411176126655761429f92604052614a52565b565b3d156142cc573d906142b282612707565b916142c060405193846126e4565b82523d6000602084013e565b606090565b6002600d54146142e2576002600d55565b60046040517f3ee5aeb5000000000000000000000000000000000000000000000000000000008152fd5b8115614316570490565b634e487b7160e01b600052601260045260246000fd5b8051156144bf5760405161433f8161268f565b604081527f4142434445464748494a4b4c4d4e4f505152535455565758595a61626364656660208201527f6768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f604082015281519160029260028101809111612d17576003809104938460021b947f3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811603612d175792906143f76143e186612707565b956143ef60405197886126e4565b808752612707565b601f1960208701910136823793839284518501935b84811061446c57505050505060039051068060011461443b57600214614430575090565b600019603d91015390565b507ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe81603d60001981940153015390565b8360049197929394959701918251600190603f9082828260121c16880101518453828282600c1c16880101518385015382828260061c16880101518885015316850101518682015301959392919061440c565b506040516144cc816126c8565b6000815290565b60405190600080549060018260011c90600184169384156145cf575b60209485841081146145bb578388528794939291811561457c5750600114614520575b505061429f925003836126e4565b60008080527f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e56395935091905b81831061456457505061429f93508201013880614512565b8554888401850152948501948794509183019161454c565b905061429f9593507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0091501682840152151560051b8201013880614512565b602485634e487b7160e01b81526022600452fd5b91607f16916144ef565b604051906000600190600154918260011c9060018416938415614686575b60209485841081146145bb578388528794939291811561457c575060011461462757505061429f925003836126e4565b9093915060016000527fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6936000915b81831061466e57505061429f93508201013880614512565b85548884018501529485019487945091830191614656565b91607f16916145f7565b9060409061469d81614c78565b600090838252600b602052828220549060038101906146d98254936004830194856020528787205490818110600014614742575050859061494f565b806146ec575b5050549382526020522055565b6146f7600591613e00565b9187865201602052848420906fffffffffffffffffffffffffffffffff198254916147356fffffffffffffffffffffffffffffffff91828516613ca9565b16911617905538806146df565b039061494f565b51906fffffffffffffffffffffffffffffffff8216820361045e57565b9081606091031261045e57604080519161477f8361268f565b61478881614749565b835261479660208201614749565b60208401520151604082015290565b670de0b6b3a764000091828202916000198482099383808610950394808603951461484d57848311156148235782910981600003821680920460028082600302188083028203028083028203028083028203028083028203028083028203028092029003029360018380600003040190848311900302920304170290565b60046040517f227bc153000000000000000000000000000000000000000000000000000000008152fd5b505090613ec1925061430c565b906703782dace9d9000090828202916000198482099383808610950394808603951461484d57848311156148235782910981600003821680920460028082600302188083028203028083028203028083028203028083028203028083028203028092029003029360018380600003040190848311900302920304170290565b670b1a2bc2ec50000090808202906000198184099082808310920391808303921461494257630784ce009082821115614823577f98f5be4dd1e14769fbd6666224dc1eb80dd2e0a3d2c8b328f57e76b7ae103957940990828211900360f71b910360091c170290565b5050630784ce0091500490565b9080820290600019818409908280831092039180830392146149b357670de0b6b3a76400009082821115614823577faccb18165bd6fe31ae1cf318dc5b51eee0e1ba569b88cd74c1773b91fac10669940990828211900360ee1b910360121c170290565b5050670de0b6b3a764000091500490565b9091828202916000198482099383808610950394808603951461484d57848311156148235782910981600003821680920460028082600302188083028203028083028203028083028203028083028203028083028203028092029003029360018380600003040190848311900302920304170290565b9081602091031261045e5751801515810361045e5790565b6000806001600160a01b03614a7c93169360208151910182865af1614a756142a1565b9083614be5565b8051908115159182614ac3575b5050614a925750565b602490604051907f5274afe70000000000000000000000000000000000000000000000000000000082526004820152fd5b614ad69250602080918301019101614a3a565b153880614a89565b5467ffffffffffffffff8082168042104282180218908260401c1690818110600014614b6e5750506000905b8115808015614b64575b8015614b59575b614b5157670de0b6b3a7640000808402938404141715612d1757613ec191600c546001811190600118026001189160801c6149c4565b505050600090565b508160801c15614b1b565b50600c5415614b14565b0390614b0a565b7f00000000000000000000000000000000000000000000000000000000000000006000805b8260ff821610614baa5750505050565b6005811015614bd15780614bc76006614bcc9302600e0186614690565b612f2c565b614b9a565b602482634e487b7160e01b81526032600452fd5b90614c245750805115614bfa57805190602001fd5b60046040517f1425ea42000000000000000000000000000000000000000000000000000000008152fd5b81511580614c6f575b614c35575090565b6024906001600160a01b03604051917f9996b315000000000000000000000000000000000000000000000000000000008352166004820152fd5b50803b15614c2d565b614c8181614ade565b9081614ce9575b61429f9150614ca967ffffffffffffffff8254168042104282180218614d87565b7fffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff6fffffffffffffffff000000000000000083549260401b169116179055565b60038101614cf8838254612d0a565b9055670de0b6b3a7640000600c54614d10818561494f565b9309614d65575b614d2361429f92613e00565b60018201906fffffffffffffffffffffffffffffffff19825491614d5a6fffffffffffffffffffffffffffffffff91828516613ca9565b169116179055614c88565b6001820180921115614d1757634e487b7160e01b600052601160045260246000fd5b67ffffffffffffffff90818111614d9c571690565b604490604051907f6dfcc650000000000000000000000000000000000000000000000000000000008252604060048301526024820152fdfea26469706673582212202209b1f509f09bc92fab613faa1bdfaf26f9f4f5ae3c637f5bbcd35313cdbe3e64736f6c6343000819003360c034608057601f6104d438819003918201601f19168301916001600160401b03831184841017608557808492602094604052833981010312608057516001600160a01b03811681036080573360805260a052604051610438908161009c8239608051818181607d01526102ee015260a051818181610105015261033e0152f35b600080fd5b634e487b7160e01b600052604160045260246000fdfe608060409080825260048036101561001657600080fd5b600091823560e01c90816372f702f314610312575080638da5cb5b146102c15763f3fef3a31461004557600080fd5b346102bd57826003193601126102bd57803573ffffffffffffffffffffffffffffffffffffffff938482168092036102b957602494807f000000000000000000000000000000000000000000000000000000000000000016338103610284575081519260208401907fa9059cbb000000000000000000000000000000000000000000000000000000008252878501528635604485015260448452608084019167ffffffffffffffff928581108482111761025957918798979291839286527f00000000000000000000000000000000000000000000000000000000000000001695519082875af13d1561024c573d82811161022157835192601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168401908111848210176101f6578452825261018d91903d88602084013e5b84610362565b80519081151591826101ce575b50506101a4578480f35b51917f5274afe7000000000000000000000000000000000000000000000000000000008352820152fd5b81925090602091810103126101f257602001518015908115036101f257388061019a565b8580fd5b87896041897f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b86886041887f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b61018d9150606090610187565b88886041897f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b84604491888551927f551266a80000000000000000000000000000000000000000000000000000000084523390840152820152fd5b8380fd5b5080fd5b8284346102bd57816003193601126102bd576020905173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b8390346102bd57816003193601126102bd5760209073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b906103a1575080511561037757805190602001fd5b60046040517f1425ea42000000000000000000000000000000000000000000000000000000008152fd5b815115806103f9575b6103b2575090565b60249073ffffffffffffffffffffffffffffffffffffffff604051917f9996b315000000000000000000000000000000000000000000000000000000008352166004820152fd5b50803b156103aa56fea26469706673582212207e8848ff620434987cb0cb661d55fe38df9d13c4a87115178798770df12e7bd164736f6c6343000819003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000080c1bce70cc766d81a6b663d006f5634e3aa7521000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000001a4d6176657269636b2042502d47484f2d555344432d31342d523100000000000000000000000000000000000000000000000000000000000000000000000000124d42502d47484f2d555344432d31342d5231000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000007448c7456a97769f6cd04f1e83a4a23ccdc46abd0000000000000000000000007dff72693f6a4149b17e7c6314655f6a9f7c8b33000000000000000000000000912ce59144191c1204e64559fe8253a0e49e65480000000000000000000000000000000000000000000000000000000000000003000000000000000000000000d5d8cb7569bb843c3b8fa98dbd5960d37e83ea8d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060408181526004918236101561001657600080fd5b600092833560e01c91826301ffc9a7146123bd5750816306fdde031461239f578163081812fc14612365578163095ea7b31461225957816315c43aaf1461215d57816318160ddd1461213e57816323b872dd146121265781632f745c59146120fd5781633a3619de146120aa5781633e3cc23914612020578163427f91a614611ffd57816342842e0e14611fd45781634709b70914611fb6578163482af13b14611f8857816348fd65fe14611f5d5781634b986ec214611f155781634c46589914611c715781634d6ed8c414611b0c5781634f6ccce714611a9e57816351a7c7161461194f5781635d62fd5f146116675781636352211e1461163f5781636565ac99146116095781636a627842146115e35781636deda0fc1461112957816370a082311461110357816372f702f3146110bf578163751df17a1461107c57816375794a3c1461105d5781637aaa90e114610ea157816388a2955214610e3157816395d89b4114610e005781639e59e59814610d38578163a22cb46514610c61578163a694fc3a14610c36578163abb06b9514610bfb578163ac9650d814610a3e578163b1724b4614610a20578163b66503cf14610a00578163b6a6d177146109e2578163b88d4fde1461097a578163c58181c41461095b578163c87b56dd14610498578163c9f6707214610463578163d6d8266f146103cf578163e39c08fc14610375578163e48e622714610357578163e985e9c514610306578163f01a11fc146102da57508063f476eaf21461029c5763fbfa77cf1461025657600080fd5b34610298578160031936011261029857602090516001600160a01b037f000000000000000000000000e3c84071fe3ba8048740902a53c1c85c1e3ed211168152f35b5080fd5b5034610298576060600319360112610298576020906102d36102bc612507565b6102ca604435303384614230565b602435906132ff565b9051908152f35b905034610302576020600319360112610302576020928291358152600b845220549051908152f35b8280fd5b505034610298578060031936011261029857602091610323612507565b8261032c61251d565b926001600160a01b03809316815260058652209116600052825260ff81600020541690519015158152f35b5050346102985781600319360112610298576020906102d333613ecd565b8284346103cc57816003193601126103cc5760ff61039961039461251d565b612aaf565b169060058210156103b9575060209260066102d39202600e019035613e55565b80603285634e487b7160e01b6024945252fd5b80fd5b905082346103cc5760806003193601126103cc575035906103ee61251d565b6044359060ff8216820361045e5760609361045c926104349261040f612a90565b50610423833361041e8261395d565b614135565b6064359261042f612a90565b6139b1565b915180926001600160a01b036040809280518552602081015115156020860152015116910152565bf35b600080fd5b505034610298578160031936011261029857610494906104816137da565b9051918291602083526020830190612533565b0390f35b8284346103cc57602090816003193601126103cc57506104946108fb7f227d0000000000000000000000000000000000000000000000000000000000006108f661031d6104e36144d3565b6104eb6144d3565b88519485927f7b226e616d65223a2200000000000000000000000000000000000000000000008a850152610528815180928c6029880191016124bf565b8301917f222c22696d616765223a22646174613a696d6167652f7376672b786d6c3b626160298401527f736536342c50484e325a79423462577875637a30696148523063446f764c336460498401527f33647935334d793576636d63764d6a41774d43397a646d6369494864705a485260698401527f6f505349784d4441774969426f5a576c6e61485139496a45794d44416949485a60898401527f705a58644362336739496a41674d4341784d444177494445794d44416949475a60a98401527f7062477739496d3576626d556950676f38634746306143426b50534a4e4d434160c98401527f314d454d77494449794c6a4d344e5467674d6a49754d7a67314f43417749445560e98401527f77494442494e6a5577517a67304d79347a494441674d5441774d4341784e54596101098401527f754e7941784d44417749444d314d4659784d545577517a45774d4441674d54456101298401527f334e7934324d5341354e7a63754e6a4530494445794d4441674f5455774944456101498401527f794d4442494d7a5577517a45314e693433494445794d4441674d4341784d44516101698401527f7a4c6a4d674d4341344e5442574e5442614969426d6157787350534a696247466101898401527f6a617949675a6d6c73624331766347466a61585235505349774c6a6b324969386101a98401527f2b436a78775958526f49475139496b30344f4334304d54413249446b344c6a496101c98401527f314e4452574f44524d4e5441674d544130534445794d53347a4d4452574e6a526101e98401527f4d4f4467754e4445774e6941354f4334794e545130576949675a6d6c736244306102098401527f6964326870644755694c7a344b5048526c65485167654430694e54416949486b6102298401527f39496a49314d4349675a6d39756443317a6158706c5053497a4f4349675a6d6c6102498401527f7362443069636d64694b4449314e5377674d6a55314c4341794e5455704969426102698401527f735a5852305a5849746333426859326c755a7a30694d6949675a6d39756443316102898401527f6d5957317062486b394969644462335679615756794945356c647963734947316102a98401527f76626d397a6347466a5a53492b545746325a584a7059327367556d563359584a6102c98401527f6b4946427663326c3061573975504339305a586830506a777663335a6e50673d6102e98401527f3d222c226465736372697074696f6e223a22000000000000000000000000000061030984015261031b926108e2825180938d87850191016124bf565b0191820152036102fd8101845201826126e4565b61432c565b9261094c603d825180967f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008783015261093c815180928986860191016124bf565b810103601d8101875201856126e4565b519282849384528301906124e2565b505034610298578160031936011261029857602090600c549051908152f35b83903461029857608060031936011261029857610995612507565b61099d61251d565b9060643567ffffffffffffffff81116109de57366023820112156109de576109db938160246109d193369301359101612723565b916044359161363b565b80f35b8480fd5b505034610298578160031936011261029857602090516203f4808152f35b5050346102985780600319360112610298576020906102d36102ca612507565b505034610298578160031936011261029857602090516234bc008152f35b8391503461029857602091826003193601126103cc5781359167ffffffffffffffff90818411610302573660238501121561030257830135908082116103025760246005923660248260051b880101116109de5792610a9c84612f14565b95610aa9895197886126e4565b848752601f19610ab886612f14565b0188875b828110610beb5750505085917fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffbd82360301925b868110610b71578a8a8a8a83519280840190808552835180925280868601968360051b870101940192955b828710610b275785850386f35b909192938280610b61837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc08a6001960301865288516124e2565b9601920196019592919092610b1a565b8481831b8401013584811215610be75783018581013590878211610be357604401908036038213610be35789808d610bb160019695610bc7953691612723565b80519101305af4610bc06142a1565b9030614be5565b610bd1828c612f3d565b52610bdc818b612f3d565b5001610aef565b8980fd5b8880fd5b60608a82018301528a9101610abc565b505034610298578160031936011261029857602090517f00000000000000000000000000000000000000000000000000000000000000038152f35b905082346103cc5760206003193601126103cc5750610c5590356130ee565b82519182526020820152f35b91905034610302578060031936011261030257610c7c612507565b906024359182151580930361045e576001600160a01b0316928315610d0a5750338452600560205280842083600052602052806000207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0081541660ff8416179055519081527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3160203392a380f35b8360249251917f5b08ba18000000000000000000000000000000000000000000000000000000008352820152fd5b8284346103cc57602090816003193601126103cc578290610d57612507565b90610d618261309d565b610d6a81612f14565b90610d77855192836126e4565b808252610d8381612f14565b93601f198784019501368637835b828110610dd65750505083519485948186019282875251809352850193925b828110610dbf57505050500390f35b835185528695509381019392810192600101610db0565b80610de9600192849a979698999a612a16565b610df38289612f3d565b5201969594929396610d91565b50503461029857816003193601126102985761049490610e1e6145d9565b90519182916020835260208301906124e2565b8284346103cc5750610c55610e9c610e4836612633565b6001600160a01b039291927f000000000000000000000000e3c84071fe3ba8048740902a53c1c85c1e3ed21116337f00000000000000000000000080c1bce70cc766d81a6b663d006f5634e3aa7521614230565b6130ee565b9190503461030257610eb236612633565b929091610ec3833361041e8261395d565b610ecc8361395d565b90610ed56142d1565b841561103557610ee484614b75565b838652600b60205280862054808611610ff357859081600c5403600c55858852600b6020520381872055856001600160a01b0393847f000000000000000000000000e3c84071fe3ba8048740902a53c1c85c1e3ed21116803b156103025783517ff3fef3a30000000000000000000000000000000000000000000000000000000081526001600160a01b03861692810192835260208301899052918391839182908490829060400103925af18015610fe957610fd1575b50505193845216917f8e61469f8c29c4968b91d96c2003a756f42faf9e56e685113e7776492260aa1760203392a46001600d5580f35b610fda9061267b565b610fe5578538610f9b565b8580fd5b83513d84823e3d90fd5b90517ffcca3733000000000000000000000000000000000000000000000000000000008152928301938452602084015250604082018390529081906060010390fd5b9050517f14f29f88000000000000000000000000000000000000000000000000000000008152fd5b505034610298578160031936011261029857602090600a549051908152f35b5050346102985780600319360112610298576020906001600160a01b036110a1612507565b916110b86024356110b18161395d565b9485614135565b5191168152f35b505034610298578160031936011261029857602090516001600160a01b037f00000000000000000000000080c1bce70cc766d81a6b663d006f5634e3aa7521168152f35b505034610298576020600319360112610298576020906102d3611124612507565b61309d565b8284346103cc5760806003193601126103cc5750813591611148612613565b9260443590606435611158612a90565b50611167823361041e8261395d565b6111708261395d565b611178612a90565b6111806142d1565b9660058110156115ce57600681029461119c86600e0186614690565b8460005260138601602052876000208054976fffffffffffffffffffffffffffffffff97888a1692836111fd575b60608d61045c8e6001600d555180926001600160a01b036040809280518552602081015115156020860152015116910152565b600f92939495969798999a9c506fffffffffffffffffffffffffffffffff19809d16905501908154838a8216039b8a8d116115b9578a8a9b9c9d9a999a16911617825561124985612bda565b61125286612f9e565b90611267868684611261612a90565b9c612d2d565b15801560208c0152818b526115105750908b8d6060938b8b8e6112986001600160a01b038098169485855191613ccd565b8385840152600019811460001461145457505090606493946112bc60009351613e00565b935197889687957f1ef3467b00000000000000000000000000000000000000000000000000000000875216908501528a60248501528c1660448401525af18015611449579460609b98946113ae947fe47c57318950d2a193de7632844e22ae34cd95299259fc16515741c22b5d91ad9994610140999461045c9d9961141a575b505b859d8651908184116113c5575b5050505060ff61135a83612bda565b928b5198338a5260208a01526001600160a01b038095168c8a0152168d88015260808701521660a085015260c08401906001600160a01b036040809280518552602081015115156020860152015116910152565b610120820152a191928480808080808080806111ca565b6113d56113e09261141195613c9c565b16825460801c613ca9565b6fffffffffffffffffffffffffffffffff6fffffffffffffffffffffffffffffffff1983549260801b169116179055565b8d80808061134b565b8f9061143b913d606011611442575b61143381836126e4565b810190614766565b508f61133c565b503d611429565b8b513d6000823e3d90fd5b9360849591946114676000959451613e00565b9151998a9889977fea4914ef000000000000000000000000000000000000000000000000000000008952169087015260248601528b60448601521660648401525af18015611449579460609b98946113ae947fe47c57318950d2a193de7632844e22ae34cd95299259fc16515741c22b5d91ad9994610140999461045c9d996114f1575b5061133e565b8f90611509913d6060116114425761143381836126e4565b508f6114eb565b61014098935061045c9b979250947fe47c57318950d2a193de7632844e22ae34cd95299259fc16515741c22b5d91ad99946115b460609f9c98936115a1906115af8f9a6113ae9b519384917fa9059cbb0000000000000000000000000000000000000000000000000000000060208401528b60248401602090939291936001600160a01b0360408201951681520152565b03601f1981018452836126e4565b614a52565b61133e565b601183634e487b7160e01b6000525260246000fd5b603286634e487b7160e01b6000525260246000fd5b505034610298576020600319360112610298576020906102d3611604612507565b613ecd565b505034610298576020600319360112610298576020906001600160a01b03611637611632612623565b612f9e565b915191168152f35b8284346103cc5760206003193601126103cc57506001600160a01b036116376020933561395d565b8284346103cc57602090816003193601126103cc57833591821515830361045e578215611928577f00000000000000000000000000000000000000000000000000000000000000036001810180911161191557915b6116dd6116c884612f14565b936116d5875195866126e4565b808552612f14565b93601f1983850195013686377f000000000000000000000000000000000000000000000000000000000000000390816118c8575b6001976001831161188b575b6002831161184d575b6003831161180f575b8083116117bb575b5061177f575b5091908495939551948186019282875251809352850195925b8281106117635785870386f35b83516001600160a01b0316875295810195928101928401611756565b6117899084612f3d565b6001600160a01b037f00000000000000000000000080c1bce70cc766d81a6b663d006f5634e3aa75211690528661173d565b85518110156117fa57506001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001660a086015288611737565b603290634e487b7160e01b6000525260246000fd5b8551600310156117fa576001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016608087015261172f565b8551600210156117fa576001600160a01b037f000000000000000000000000912ce59144191c1204e64559fe8253a0e49e6548166060870152611726565b8551600110156117fa576001600160a01b037f0000000000000000000000007dff72693f6a4149b17e7c6314655f6a9f7c8b33168887015261171d565b845115611900576001600160a01b037f0000000000000000000000007448c7456a97769f6cd04f1e83a4a23ccdc46abd168652611711565b603288634e487b7160e01b6000525260246000fd5b602483601188634e487b7160e01b835252fd5b7f0000000000000000000000000000000000000000000000000000000000000003916116bc565b9050346103025760606003193601126103025780359061196d61251d565b6044359361197f843361041e8261395d565b6119876142d1565b84156110355761199684614b75565b838652600b60205280862054808611610ff357859081600c5403600c55858852600b60205203818720556001600160a01b039286847f000000000000000000000000e3c84071fe3ba8048740902a53c1c85c1e3ed2111691823b156102985783517ff3fef3a30000000000000000000000000000000000000000000000000000000081526001600160a01b0386169181019182526020820189905292839182908490829060400103925af18015611a9457611a81575b505193845216917f8e61469f8c29c4968b91d96c2003a756f42faf9e56e685113e7776492260aa1760203392a46001600d5580f35b611a8d9096919661267b565b9438611a4c565b82513d89823e3d90fd5b90503461030257602060031936011261030257803592600854841015611ad857602083611aca86612f67565b91905490519160031b1c8152f35b604493919251927fa57d13dc0000000000000000000000000000000000000000000000000000000084528301526024820152fd5b8383346102985760209081600319360112610302578335907f000000000000000000000000000000000000000000000000000000000000000392611b4f84612f14565b92611b5c835194856126e4565b848452601f19611b6b86612f14565b0182875b828110611c5057505050855b60ff811686811015611bfb576005821015611be85790611bdd611be392611ba860068402600e0186613e55565b6001600160a01b03611bb985612bda565b895192611bc584612649565b83521687820152611bd6828a612f3d565b5287612f3d565b50612f2c565b611b7b565b60248860328b634e487b7160e01b835252fd5b8451848152865181860181905281908188019089880190888d8b5b838210611c235786860387f35b8451805187528301516001600160a01b031686840152879650948501949382019360019190910190611c16565b8551611c5b81612649565b8981528983820152828289010152018390611b6f565b9050346103025760209182600319360112611f1157611c8e612623565b92611c9884612f9e565b90611ca285612bda565b946005811015611efe5760060294600f8601948554958660801c978815611ed6576010019081546277f8808101809111611ec35780421115611e8d57506fffffffffffffffffffffffffffffffff80981690554290556001600160a01b03809416611d0e888285613ccd565b65ffffffffffff804211611e57579089914216958751947faa902b4d0000000000000000000000000000000000000000000000000000000086528686868187875af1958615611e4d57918795939185938d9698611e13575b50611d746084969798613e00565b9b8b519c8d9889977f3082f0e90000000000000000000000000000000000000000000000000000000089528801528b60248801521660448601521660648401525af1938415611e09578694611dd6575b50606095508251948552840152820152f35b9080945081813d8311611e02575b611dee81836126e4565b81010312610fe55760609550519238611dc4565b503d611de4565b83513d88823e3d90fd5b95509590965084813d8311611e46575b611e2d81836126e4565b810103126102985792519486948b949190611d74611d66565b503d611e23565b89513d86823e3d90fd5b60448360308951917f6dfcc650000000000000000000000000000000000000000000000000000000008352820152426024820152fd5b836044918951917fb5b2827a00000000000000000000000000000000000000000000000000000000835242908301526024820152fd5b60248b601186634e487b7160e01b835252fd5b8287517f14f29f88000000000000000000000000000000000000000000000000000000008152fd5b602487603287634e487b7160e01b835252fd5b8380fd5b90503461030257608060031936011261030257602435906001600160a01b0382168203611f115790611f4f91606435916044359135612d2d565b825191825215156020820152f35b505034610298578060031936011261029857602090611f7d611124612507565b602435109051908152f35b505034610298576020600319360112610298576020906001600160a01b03611637611fb1612623565b612bda565b505034610298578160031936011261029857602090516277f8808152f35b505034610298576109db90611fe8366125de565b91925192611ff5846126c8565b85845261363b565b5050346102985760206003193601126102985760209060ff611637610394612507565b90503461030257602060031936011261030257359160058310156103cc5750600660e0920280600e01549067ffffffffffffffff92600f820154906011601084015493015493815195808216875281831c16602087015260801c908501526fffffffffffffffffffffffffffffffff8116606085015260801c608084015260a083015260c0820152f35b8284346103cc5760606003193601126103cc575061045c610434606093356120d0612613565b6120d8612a90565b506120e7823361041e8261395d565b604435916120f48161395d565b9061042f612a90565b5050346102985780600319360112610298576020906102d361211d612507565b60243590612a16565b83346103cc576109db612138366125de565b9161275a565b5050346102985781600319360112610298576020906008549051908152f35b8284346103cc57806003193601126103cc5781516080810181811067ffffffffffffffff821117612246576122109450835260608152606060208201818152848301938085528284019081526121b16137da565b956121ba6144d3565b85526121c46145d9565b8352600c5486526122376001600160a01b0393847f00000000000000000000000080c1bce70cc766d81a6b663d006f5634e3aa752116845261222883519a8b9a858c52858c0190612533565b978a890360208c0152516080895260808901906124e2565b905187820360208901526124e2565b95519085015251169101520390f35b602483604187634e487b7160e01b835252fd5b91905034610302578060031936011261030257612274612507565b916024356122818161395d565b33151580612352575b8061232a575b6122fb5781906001600160a01b03809616958691167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258880a484526020528220907fffffffffffffffffffffffff000000000000000000000000000000000000000082541617905580f35b83517fa9fbf51f0000000000000000000000000000000000000000000000000000000081523381850152602490fd5b506001600160a01b0381168652600560205283862033875260205260ff848720541615612290565b50336001600160a01b038216141561228a565b9050346103025760206003193601126103025781602093826001600160a01b0393356123908161395d565b50825285522054169051908152f35b50503461029857816003193601126102985761049490610e1e6144d3565b84913461030257602060031936011261030257357fffffffff00000000000000000000000000000000000000000000000000000000811680910361030257602092507f780e9d63000000000000000000000000000000000000000000000000000000008114908115612431575b5015158152f35b7f80ac58cd00000000000000000000000000000000000000000000000000000000811491508115612495575b811561246b575b508361242a565b7f01ffc9a70000000000000000000000000000000000000000000000000000000091501483612464565b7f5b5e139f000000000000000000000000000000000000000000000000000000008114915061245d565b60005b8381106124d25750506000910152565b81810151838201526020016124c2565b90601f19601f602093612500815180928187528780880191016124bf565b0116010190565b600435906001600160a01b038216820361045e57565b602435906001600160a01b038216820361045e57565b90815180825260208080930193019160005b828110612553575050505090565b835180518652808301518684015260408082015190870152606080820151908701526080808201519087015260a0808201516001600160a01b039081169188019190915260c0808301519091169087015260e0808201516fffffffffffffffffffffffffffffffff169087015261010090810151908601526101209094019392810192600101612545565b600319606091011261045e576001600160a01b0390600435828116810361045e5791602435908116810361045e579060443590565b6024359060ff8216820361045e57565b6004359060ff8216820361045e57565b600319604091011261045e576004359060243590565b6040810190811067ffffffffffffffff82111761266557604052565b634e487b7160e01b600052604160045260246000fd5b67ffffffffffffffff811161266557604052565b6060810190811067ffffffffffffffff82111761266557604052565b610120810190811067ffffffffffffffff82111761266557604052565b6020810190811067ffffffffffffffff82111761266557604052565b90601f601f19910116810190811067ffffffffffffffff82111761266557604052565b67ffffffffffffffff811161266557601f01601f191660200190565b92919261272f82612707565b9161273d60405193846126e4565b82948184528183011161045e578281602093846000960137010152565b916001600160a01b038083169384156129e5576000948386526020956002875260409684888320541696336129d5575b87158015612985575b848452600383528984206001815401905587845260028352898420857fffffffffffffffffffffffff000000000000000000000000000000000000000082541617905587858a7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8780a4156129095760085487845260098352808a852055680100000000000000008110156128f5578761283682600161284e9401600855612f67565b90919060001983549160031b92831b921b1916179055565b8388036128a3575b5050505016928383036128695750505050565b6064945051927f64283d7b000000000000000000000000000000000000000000000000000000008452600484015260248301526044820152fd5b6128ac9061309d565b9260001984019384116128e15782916007918a9452600681528383208584528152878484205587835252205538808080612856565b602483634e487b7160e01b81526011600452fd5b602484634e487b7160e01b81526041600452fd5b87841461284e576129198861309d565b878452600783528984205481810361294e575b50878452838a812055888452600683528984209084528252828981205561284e565b898552600684528a852082865284528a8520548a8652600685528b86208287528552808c8720558552600784528a8520553861292c565b6129be88600052600460205260406000207fffffffffffffffffffffffff00000000000000000000000000000000000000008154169055565b888452600383528984206000198154019055612793565b6129e087338a614135565b61278a565b60246040517f64a0ae9200000000000000000000000000000000000000000000000000000000815260006004820152fd5b612a1f8161309d565b821015612a4c576001600160a01b0316600052600660205260406000209060005260205260406000205490565b6040517fa57d13dc0000000000000000000000000000000000000000000000000000000081526001600160a01b039190911660048201526024810191909152604490fd5b60405190612a9d8261268f565b60006040838281528260208201520152565b6001600160a01b0380911690807f0000000000000000000000007448c7456a97769f6cd04f1e83a4a23ccdc46abd168214612bd357807f0000000000000000000000007dff72693f6a4149b17e7c6314655f6a9f7c8b33168214612bcc57807f000000000000000000000000912ce59144191c1204e64559fe8253a0e49e6548168214612bc557807f0000000000000000000000000000000000000000000000000000000000000000168214612bbe577f0000000000000000000000000000000000000000000000000000000000000000168114612bb857602490604051907f3dc09a5c0000000000000000000000000000000000000000000000000000000082526004820152fd5b50600490565b5050600390565b5050600290565b5050600190565b5050600090565b60ff167f0000000000000000000000000000000000000000000000000000000000000003811015612cd9578015612cb45760018114612c8f5760028114612c6a57600314612c46577f000000000000000000000000000000000000000000000000000000000000000090565b7f000000000000000000000000000000000000000000000000000000000000000090565b507f000000000000000000000000912ce59144191c1204e64559fe8253a0e49e654890565b507f0000000000000000000000007dff72693f6a4149b17e7c6314655f6a9f7c8b3390565b507f0000000000000000000000007448c7456a97769f6cd04f1e83a4a23ccdc46abd90565b602490604051907f205467d70000000000000000000000000000000000000000000000000000000082526004820152fd5b91908201809211612d1757565b634e487b7160e01b600052601160045260246000fd5b929392600092916001600160a01b0390811690848215612f095750612d518361395d565b6040517f70a08231000000000000000000000000000000000000000000000000000000008152911660048201526020918282602481845afa918215612ecf578692612eda575b50908260049392604051948580927f18160ddd0000000000000000000000000000000000000000000000000000000082525afa928315612ecf578693612e9f575b50612e23939291612df7600b92600194858111908618028518906147a5565b93875252612e156040862054600c54838111908418028318906147a5565b81811190821802189061485a565b670a688906bd8b00009081018091116128e157670de0b6b3a764000090612e49866148d9565b936702c68af0bb140000948501809511612e8b5750918183612e8093612e859695109082180281189381811090821802189061494f565b61494f565b91151590565b80634e487b7160e01b602492526011600452fd5b9092508181813d8311612ec8575b612eb781836126e4565b81010312610fe5575191600b612dd8565b503d612ead565b6040513d88823e3d90fd5b9091508281813d8311612f02575b612ef281836126e4565b81010312610fe557519082612d97565b503d612ee8565b959650505050905091565b67ffffffffffffffff81116126655760051b60200190565b60ff1660ff8114612d175760010190565b8051821015612f515760209160051b010190565b634e487b7160e01b600052603260045260246000fd5b600854811015612f515760086000527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30190600090565b60ff167f0000000000000000000000000000000000000000000000000000000000000003811015612cd95780156130785760018114613053576002811461302e5760031461300a577f000000000000000000000000000000000000000000000000000000000000000090565b7f000000000000000000000000000000000000000000000000000000000000000090565b507f000000000000000000000000000000000000000000000000000000000000000090565b507f000000000000000000000000000000000000000000000000000000000000000090565b507f000000000000000000000000d5d8cb7569bb843c3b8fa98dbd5960d37e83ea8d90565b6001600160a01b031680156130bd57600052600360205260406000205490565b60246040517f89c62b6400000000000000000000000000000000000000000000000000000000815260006004820152fd5b801561327d575b6130fd6142d1565b6001600160a01b0360405180917f70a08231000000000000000000000000000000000000000000000000000000008252807f000000000000000000000000e3c84071fe3ba8048740902a53c1c85c1e3ed21116600483015281602460209485937f00000000000000000000000080c1bce70cc766d81a6b663d006f5634e3aa7521165afa90811561327157600091613244575b50600c54908181101561323d5750506000905b81156132135782906131b48261395d565b506131be82614b75565b6131ca83600c54612d0a565b600c5581600052600b815260406000208381540190557f5af417134f72a9d41143ace85b0a26dce6f550f894f2cbc1eeee8810603d91b6604051918483523392a36001600d5591565b60046040517f14f29f88000000000000000000000000000000000000000000000000000000008152fd5b03906131a3565b90508181813d831161326a575b61325b81836126e4565b8101031261045e575138613190565b503d613251565b6040513d6000823e3d90fd5b506132873361309d565b156132f1576132953361309d565b156132ba573360005260066020526040600020600080526020526040600020546130f5565b60446040517fa57d13dc00000000000000000000000000000000000000000000000000000000815233600482015260006024820152fd5b6132fa33613ecd565b6130f5565b906133086142d1565b6203f4808082106135fb576234bc00908183116135bf5750509061332b81612aaf565b6005811015612f5157806024600661335e9302602081600e019361334e85614c78565b6001600160a01b03958691612bda565b16604051938480927f70a082310000000000000000000000000000000000000000000000000000000082523060048301525afa9182156132715760009261358a575b50600f01546fffffffffffffffffffffffffffffffff1690818110156135835750506000905b805467ffffffffffffffff908181164281101561357a57506000905b60801c9081810290808204831490151715612d17578060011b9080820460021490151715612d175784118015613572575b1561353557509160a0939161350a7ffcb9ca03b70a876a8d62dc2ef18aa125118fd02dae56cfffc36a627e7b1c4811969461348b6134596134548b8761430c565b613e00565b84546fffffffffffffffffffffffffffffffff1660809190911b6fffffffffffffffffffffffffffffffff1916178455565b8061349e6134998b42612d0a565b614d87565b167fffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000845416178355421682907fffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff6fffffffffffffffff000000000000000083549260401b169116179055565b5460801c916040519333855216602084015260408301528460608301526080820152a1906001600d55565b839196509161350a61356c60a096947ffcb9ca03b70a876a8d62dc2ef18aa125118fd02dae56cfffc36a627e7b1c4811989661430c565b9761348b565b508015613413565b429003906133e2565b03906133c6565b9091506020813d6020116135b7575b816135a6602093836126e4565b8101031261045e575190600f6133a0565b3d9150613599565b60649350604051927fd3350e51000000000000000000000000000000000000000000000000000000008452600484015260248301526044820152fd5b60649250604051917fd3350e51000000000000000000000000000000000000000000000000000000008352600483015260248201526234bc006044820152fd5b919061364882828561275a565b803b613655575b50505050565b6136b16001600160a01b03809216946040519384937f150b7a02000000000000000000000000000000000000000000000000000000009687865233600487015216602485015260448401526080606484015260848301906124e2565b03906020816000938185885af190829082613779575b505061371757826136d66142a1565b805191908261371057602482604051907f64a0ae920000000000000000000000000000000000000000000000000000000082526004820152fd5b9050602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000160361374857503880808061364f565b602490604051907f64a0ae920000000000000000000000000000000000000000000000000000000082526004820152fd5b909192506020813d6020116137d2575b81613796602093836126e4565b810103126102985751907fffffffff00000000000000000000000000000000000000000000000000000000821682036103cc57509038806136c7565b3d9150613789565b7f00000000000000000000000000000000000000000000000000000000000000039061380582612f14565b91604090613815825194856126e4565b808452601f1961382482612f14565b0160005b8181106139085750508360005b60ff81169083821015613900576005811015612f5157611bdd6138fb926006830280600e015467ffffffffffffffff916080601182015461387588612bda565b9061387f89612f9e565b908d6010600f870154960154968151986138988a6126ab565b8082168a5281831c1660208a0152851c908801526fffffffffffffffffffffffffffffffff85166060880152838701526001600160a01b0380921660a08701521660c08501521c60e08301526101008201526138f4828b612f3d565b5288612f3d565b613835565b505093505050565b6020908451613916816126ab565b60008152826000818301526000878301526000606083015260006080830152600060a0830152600060c0830152600060e08301526000610100830152828901015201613828565b8060005260026020526001600160a01b0360406000205416908115613980575090565b602490604051907f7e2732890000000000000000000000000000000000000000000000000000000082526004820152fd5b93929091936139be6142d1565b936005821015612f515760068202936139da85600e0185614690565b836000526013850160205260409081600020938454946fffffffffffffffffffffffffffffffff978887169182613a1e575b50505050505050505050906001600d55565b600f92939495969798999a506fffffffffffffffffffffffffffffffff198099169055018054828a821603978a8911612d17578a8a99169116178155613a6383612bda565b89613a6d85612f9e565b91613a82878685613a7c612a90565b9d612d2d565b15801560208d0152818c52613c0c57509060648a613ab06060946001600160a01b0380971680935191613ccd565b808a8d01526000613ac18d51613e00565b918b5196879586947f1ef3467b0000000000000000000000000000000000000000000000000000000086521660048501528b60248501528d1660448401525af18015613c015793613bb0969361014099969360ff937fe47c57318950d2a193de7632844e22ae34cd95299259fc16515741c22b5d91ad9c9a97613be2575b505b879c885190818411613bc9575b50505050613b5b81612bda565b93805198338a5260208a01526001600160a01b038096169089015216606087015260808601521660a084015260c08301906001600160a01b036040809280518552602081015115156020860152015116910152565b600019610120820152a138808080808080808080613a0c565b6113d56113e092613bd995613c9c565b38808080613b4e565b613bfa9060603d6060116114425761143381836126e4565b5038613b3f565b86513d6000823e3d90fd5b60ff93507fe47c57318950d2a193de7632844e22ae34cd95299259fc16515741c22b5d91ad9b9996925093613c976115a18a97936115af6101409e9b98613bb09d519384917fa9059cbb0000000000000000000000000000000000000000000000000000000060208401528d60248401602090939291936001600160a01b0360408201951681520152565b613b41565b91908203918211612d1757565b9190916fffffffffffffffffffffffffffffffff80809416911601918211612d1757565b6040517f095ea7b300000000000000000000000000000000000000000000000000000000602082018181526001600160a01b038516602484015260448084019690965294825294939092613d226064856126e4565b6001600160a01b0390818416600080809588519082855af190613d436142a1565b82613dce575b5081613dc3575b5015613d60575b50505050509050565b60405196602088015216602486015280604486015260448552608085019085821067ffffffffffffffff831117613daf5750613da493946115af9160405282614a52565b803880808080613d57565b80634e487b7160e01b602492526041600452fd5b90503b151538613d50565b80519192508115918215613de6575b50509038613d49565b613df99250602080918301019101614a3a565b3880613ddd565b6fffffffffffffffffffffffffffffffff90818111613e1d571690565b604490604051907f6dfcc650000000000000000000000000000000000000000000000000000000008252608060048301526024820152fd5b613e9e613ec1926000838152600582016020526fffffffffffffffffffffffffffffffff60408220541693600b6020526004604083205493613ea46003820154613e9e83614ade565b90612d0a565b9284520160205260408220549081811015613ec45750509061494f565b90565b0391905061494f565b600a54906001600160a01b039081811680156129e5576000938085526020906002825260409485872054169384159484861596876140e5575b818a5260038652888a2060018154019055848a5260028652888a20827fffffffffffffffffffffffff00000000000000000000000000000000000000008254161790558482847fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8d80a41561406857506008548389526009855280888a2055680100000000000000008110156140545790613fac846128368460018a9601600855612f67565b03614003575b50505050613fd35750600a54906000198214612e8b575060018101600a5590565b6024925051907f73c6ac6e0000000000000000000000000000000000000000000000000000000082526004820152fd5b61400c9061309d565b9260001984019384116140405786526006825284862083875282528486208190558552600790528284205538808080613fb2565b602487634e487b7160e01b81526011600452fd5b602489634e487b7160e01b81526041600452fd5b90808214613fac576140798161309d565b848a5260078652888a20548181036140ae575b50848a528989812055818a5260068652888a20908a5285528888812055613fac565b828b5260068752898b20828c528752898b2054838c52600688528a8c20828d528852808b8d20558b5260078752898b20553861408c565b61411e85600052600460205260406000207fffffffffffffffffffffffff00000000000000000000000000000000000000008154169055565b828a5260038652888a206000198154019055613f06565b6001600160a01b039081831680151590816141d1575b50156141575750505050565b1661418d57602482604051907f7e2732890000000000000000000000000000000000000000000000000000000082526004820152fd5b6040517f177e802f0000000000000000000000000000000000000000000000000000000081526001600160a01b039190911660048201526024810191909152604490fd5b82841680821492508215614209575b5081156141ef575b503861414b565b9050846000526004602052826040600020541614386141e8565b909150600052600560205260406000208160005260205260ff6040600020541690386141e0565b9290604051927f23b872dd0000000000000000000000000000000000000000000000000000000060208501526001600160a01b03809216602485015216604483015260648201526064815260a081019181831067ffffffffffffffff8411176126655761429f92604052614a52565b565b3d156142cc573d906142b282612707565b916142c060405193846126e4565b82523d6000602084013e565b606090565b6002600d54146142e2576002600d55565b60046040517f3ee5aeb5000000000000000000000000000000000000000000000000000000008152fd5b8115614316570490565b634e487b7160e01b600052601260045260246000fd5b8051156144bf5760405161433f8161268f565b604081527f4142434445464748494a4b4c4d4e4f505152535455565758595a61626364656660208201527f6768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f604082015281519160029260028101809111612d17576003809104938460021b947f3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811603612d175792906143f76143e186612707565b956143ef60405197886126e4565b808752612707565b601f1960208701910136823793839284518501935b84811061446c57505050505060039051068060011461443b57600214614430575090565b600019603d91015390565b507ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe81603d60001981940153015390565b8360049197929394959701918251600190603f9082828260121c16880101518453828282600c1c16880101518385015382828260061c16880101518885015316850101518682015301959392919061440c565b506040516144cc816126c8565b6000815290565b60405190600080549060018260011c90600184169384156145cf575b60209485841081146145bb578388528794939291811561457c5750600114614520575b505061429f925003836126e4565b60008080527f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e56395935091905b81831061456457505061429f93508201013880614512565b8554888401850152948501948794509183019161454c565b905061429f9593507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0091501682840152151560051b8201013880614512565b602485634e487b7160e01b81526022600452fd5b91607f16916144ef565b604051906000600190600154918260011c9060018416938415614686575b60209485841081146145bb578388528794939291811561457c575060011461462757505061429f925003836126e4565b9093915060016000527fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6936000915b81831061466e57505061429f93508201013880614512565b85548884018501529485019487945091830191614656565b91607f16916145f7565b9060409061469d81614c78565b600090838252600b602052828220549060038101906146d98254936004830194856020528787205490818110600014614742575050859061494f565b806146ec575b5050549382526020522055565b6146f7600591613e00565b9187865201602052848420906fffffffffffffffffffffffffffffffff198254916147356fffffffffffffffffffffffffffffffff91828516613ca9565b16911617905538806146df565b039061494f565b51906fffffffffffffffffffffffffffffffff8216820361045e57565b9081606091031261045e57604080519161477f8361268f565b61478881614749565b835261479660208201614749565b60208401520151604082015290565b670de0b6b3a764000091828202916000198482099383808610950394808603951461484d57848311156148235782910981600003821680920460028082600302188083028203028083028203028083028203028083028203028083028203028092029003029360018380600003040190848311900302920304170290565b60046040517f227bc153000000000000000000000000000000000000000000000000000000008152fd5b505090613ec1925061430c565b906703782dace9d9000090828202916000198482099383808610950394808603951461484d57848311156148235782910981600003821680920460028082600302188083028203028083028203028083028203028083028203028083028203028092029003029360018380600003040190848311900302920304170290565b670b1a2bc2ec50000090808202906000198184099082808310920391808303921461494257630784ce009082821115614823577f98f5be4dd1e14769fbd6666224dc1eb80dd2e0a3d2c8b328f57e76b7ae103957940990828211900360f71b910360091c170290565b5050630784ce0091500490565b9080820290600019818409908280831092039180830392146149b357670de0b6b3a76400009082821115614823577faccb18165bd6fe31ae1cf318dc5b51eee0e1ba569b88cd74c1773b91fac10669940990828211900360ee1b910360121c170290565b5050670de0b6b3a764000091500490565b9091828202916000198482099383808610950394808603951461484d57848311156148235782910981600003821680920460028082600302188083028203028083028203028083028203028083028203028083028203028092029003029360018380600003040190848311900302920304170290565b9081602091031261045e5751801515810361045e5790565b6000806001600160a01b03614a7c93169360208151910182865af1614a756142a1565b9083614be5565b8051908115159182614ac3575b5050614a925750565b602490604051907f5274afe70000000000000000000000000000000000000000000000000000000082526004820152fd5b614ad69250602080918301019101614a3a565b153880614a89565b5467ffffffffffffffff8082168042104282180218908260401c1690818110600014614b6e5750506000905b8115808015614b64575b8015614b59575b614b5157670de0b6b3a7640000808402938404141715612d1757613ec191600c546001811190600118026001189160801c6149c4565b505050600090565b508160801c15614b1b565b50600c5415614b14565b0390614b0a565b7f00000000000000000000000000000000000000000000000000000000000000036000805b8260ff821610614baa5750505050565b6005811015614bd15780614bc76006614bcc9302600e0186614690565b612f2c565b614b9a565b602482634e487b7160e01b81526032600452fd5b90614c245750805115614bfa57805190602001fd5b60046040517f1425ea42000000000000000000000000000000000000000000000000000000008152fd5b81511580614c6f575b614c35575090565b6024906001600160a01b03604051917f9996b315000000000000000000000000000000000000000000000000000000008352166004820152fd5b50803b15614c2d565b614c8181614ade565b9081614ce9575b61429f9150614ca967ffffffffffffffff8254168042104282180218614d87565b7fffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff6fffffffffffffffff000000000000000083549260401b169116179055565b60038101614cf8838254612d0a565b9055670de0b6b3a7640000600c54614d10818561494f565b9309614d65575b614d2361429f92613e00565b60018201906fffffffffffffffffffffffffffffffff19825491614d5a6fffffffffffffffffffffffffffffffff91828516613ca9565b169116179055614c88565b6001820180921115614d1757634e487b7160e01b600052601160045260246000fd5b67ffffffffffffffff90818111614d9c571690565b604490604051907f6dfcc650000000000000000000000000000000000000000000000000000000008252604060048301526024820152fdfea26469706673582212202209b1f509f09bc92fab613faa1bdfaf26f9f4f5ae3c637f5bbcd35313cdbe3e64736f6c63430008190033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000080c1bce70cc766d81a6b663d006f5634e3aa7521000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000001a4d6176657269636b2042502d47484f2d555344432d31342d523100000000000000000000000000000000000000000000000000000000000000000000000000124d42502d47484f2d555344432d31342d5231000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000007448c7456a97769f6cd04f1e83a4a23ccdc46abd0000000000000000000000007dff72693f6a4149b17e7c6314655f6a9f7c8b33000000000000000000000000912ce59144191c1204e64559fe8253a0e49e65480000000000000000000000000000000000000000000000000000000000000003000000000000000000000000d5d8cb7569bb843c3b8fa98dbd5960d37e83ea8d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Maverick BP-GHO-USDC-14-R1
Arg [1] : symbol_ (string): MBP-GHO-USDC-14-R1
Arg [2] : _stakingToken (address): 0x80c1Bce70cc766D81A6b663D006f5634e3aA7521
Arg [3] : rewardTokens (address[]): 0x7448c7456a97769F6cD04F1E83A4a23cCdC46aBD,0x7dfF72693f6A4149b17e7C6314655f6A9F7c8B33,0x912CE59144191C1204E64559FE8253a0e49E6548
Arg [4] : veTokens (address[]): 0xd5d8cB7569BB843c3b8FA98dBD5960d37E83eA8d,0x0000000000000000000000000000000000000000,0x0000000000000000000000000000000000000000
-----Encoded View---------------
17 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 00000000000000000000000080c1bce70cc766d81a6b663d006f5634e3aa7521
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [4] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [5] : 000000000000000000000000000000000000000000000000000000000000001a
Arg [6] : 4d6176657269636b2042502d47484f2d555344432d31342d5231000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [8] : 4d42502d47484f2d555344432d31342d52310000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [10] : 0000000000000000000000007448c7456a97769f6cd04f1e83a4a23ccdc46abd
Arg [11] : 0000000000000000000000007dff72693f6a4149b17e7c6314655f6a9f7c8b33
Arg [12] : 000000000000000000000000912ce59144191c1204e64559fe8253a0e49e6548
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [14] : 000000000000000000000000d5d8cb7569bb843c3b8fa98dbd5960d37e83ea8d
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.