[ Download CSV Export ]
OVERVIEW
200 Keys is a set of keychain NFTs on Polygon. The keychains contain keys of variable rarity.Contract Name:
UnlockToken
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2021-12-15 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* * @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 GSN 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 memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when 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 SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // 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. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { 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. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) 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 `amount` 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 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @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 Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal virtual { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } //import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.4.0-solc-0.7/contracts/token/ERC20/ERC20Burnable.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { using SafeMath for uint256; /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), decreasedAllowance); _burn(account, amount); } } // OpenZeppelin Contracts v4.3.2 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @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); } // OpenZeppelin Contracts v4.3.2 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @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`, 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 be 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: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * 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 Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @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); /** * @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; } contract UnlockToken is ERC20Burnable, Ownable { // Staking info for a given NFT for a given wallet struct StakingInfo { uint256 nftsHeld; uint256 pendingReward; uint256 updateTimestamp; } // Used to determine the pending staking reward for the user for a given nft that is being auto-staked // stakingInfo[userWallet][nftContract] => StakingInfo mapping( address => mapping( address => StakingInfo ) ) public stakingInfo; // All of the NFTs currently being auto-staked address[] public autostakedNFTs; // How many UNLOCK tokens are generated per day for each auto-staked NFT mapping( address => uint256 ) public tokensPerNFTPerDay; modifier onlyAutostakedNFTs() { require( tokensPerNFTPerDay[ msg.sender ] != 0, "Caller is not an auto-staked NFT"); _; } constructor () ERC20( "Unlock Token", "UNLOCK") { _mint(msg.sender, 300000 * (10 ** uint256(decimals()))); } // Don't call this more than once for a given nftContract! function addAutostakingNFT( address nftContract ) public onlyOwner { autostakedNFTs.push( nftContract ); } // This can be set to zero to disable NFT auto-staking function setTokensPerDay( address nftContract, uint256 tokensPerDay ) public onlyOwner { tokensPerNFTPerDay[ nftContract ] = tokensPerDay; } function setStakingInfo( address wallet, address nftContract, uint256 nftsHeld, uint256 pendingReward ) public onlyOwner { StakingInfo storage info = stakingInfo[wallet][nftContract]; info.nftsHeld = nftsHeld; info.pendingReward = pendingReward; info.updateTimestamp = block.timestamp; } function updateNFTsHeld( address wallet ) public onlyAutostakedNFTs { if ( wallet == address(0) ) return; // This method should only be called from one of the auto-staked NFTs address nftAddress = msg.sender; IERC721 nftContract = IERC721(nftAddress); // Update the pending reward from this auto-staked NFT StakingInfo storage info = stakingInfo[wallet][nftAddress]; if( block.timestamp > info.updateTimestamp ) info.pendingReward = info.pendingReward + (tokensPerNFTPerDay[nftAddress] * info.nftsHeld * (block.timestamp - info.updateTimestamp) / (24 * 60 * 60)); info.nftsHeld = nftContract.balanceOf( wallet ); info.updateTimestamp = block.timestamp; } function getPendingReward( address wallet, address nftContract ) public view returns (uint256) { StakingInfo memory info = stakingInfo[wallet][nftContract]; // Previously calculated pending reward + newly calculated pending rewards (since updateTimestamp) return info.pendingReward + (tokensPerNFTPerDay[nftContract] * info.nftsHeld * (block.timestamp - info.updateTimestamp) / (24 * 60 * 60)); } function getPendingReward( address wallet ) public view returns (uint256) { uint256 pendingReward = 0; uint i; for ( i = 0; i < autostakedNFTs.length; i++ ) pendingReward = pendingReward + getPendingReward( wallet, autostakedNFTs[i] ); return pendingReward; } function withdrawReward() public { uint256 pendingReward = 0; // Tally and reset the pending rewards for all auto-staked NFTs for this wallet(msg.sender) uint i; for ( i = 0; i < autostakedNFTs.length; i++ ) { address nftContract = autostakedNFTs[i]; StakingInfo storage info = stakingInfo[msg.sender][nftContract]; pendingReward = pendingReward + info.pendingReward + (tokensPerNFTPerDay[nftContract] * info.nftsHeld * (block.timestamp - info.updateTimestamp) / (24 * 60 * 60)); info.pendingReward = 0; info.updateTimestamp = block.timestamp; } _mint( msg.sender, pendingReward ); } function ownerMint( address wallet, uint256 amount ) public onlyOwner { _mint( wallet, amount ); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"nftContract","type":"address"}],"name":"addAutostakingNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"autostakedNFTs","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"getPendingReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"address","name":"nftContract","type":"address"}],"name":"getPendingReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"address","name":"nftContract","type":"address"},{"internalType":"uint256","name":"nftsHeld","type":"uint256"},{"internalType":"uint256","name":"pendingReward","type":"uint256"}],"name":"setStakingInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"nftContract","type":"address"},{"internalType":"uint256","name":"tokensPerDay","type":"uint256"}],"name":"setTokensPerDay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"stakingInfo","outputs":[{"internalType":"uint256","name":"nftsHeld","type":"uint256"},{"internalType":"uint256","name":"pendingReward","type":"uint256"},{"internalType":"uint256","name":"updateTimestamp","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"tokensPerNFTPerDay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"updateNFTsHeld","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawReward","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600c81526020017f556e6c6f636b20546f6b656e00000000000000000000000000000000000000008152506040518060400160405280600681526020017f554e4c4f434b000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000432565b508060049080519060200190620000af92919062000432565b506012600560006101000a81548160ff021916908360ff1602179055505050620000ee620000e26200013660201b60201c565b6200013e60201b60201c565b6200013033620001036200020460201b60201c565b60ff16600a620001149190620006a1565b620493e0620001249190620007de565b6200021b60201b60201c565b620008ea565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900460ff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200028e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002859062000599565b60405180910390fd5b620002a260008383620003ca60201b60201c565b620002be81600254620003cf60201b6200164d1790919060201c565b6002819055506200031c816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620003cf60201b6200164d1790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003be9190620005bb565b60405180910390a35050565b505050565b6000808284620003e09190620005e9565b90508381101562000428576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200041f9062000577565b60405180910390fd5b8091505092915050565b828054620004409062000849565b90600052602060002090601f016020900481019282620004645760008555620004b0565b82601f106200047f57805160ff1916838001178555620004b0565b82800160010185558215620004b0579182015b82811115620004af57825182559160200191906001019062000492565b5b509050620004bf9190620004c3565b5090565b5b80821115620004de576000816000905550600101620004c4565b5090565b6000620004f1601b83620005d8565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b600062000533601f83620005d8565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b62000571816200083f565b82525050565b600060208201905081810360008301526200059281620004e2565b9050919050565b60006020820190508181036000830152620005b48162000524565b9050919050565b6000602082019050620005d2600083018462000566565b92915050565b600082825260208201905092915050565b6000620005f6826200083f565b915062000603836200083f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200063b576200063a6200087f565b5b828201905092915050565b6000808291508390505b6001851115620006985780860481111562000670576200066f6200087f565b5b6001851615620006805780820291505b80810290506200069085620008dd565b945062000650565b94509492505050565b6000620006ae826200083f565b9150620006bb836200083f565b9250620006ea7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620006f2565b905092915050565b600082620007045760019050620007d7565b81620007145760009050620007d7565b81600181146200072d576002811462000738576200076e565b6001915050620007d7565b60ff8411156200074d576200074c6200087f565b5b8360020a9150848211156200076757620007666200087f565b5b50620007d7565b5060208310610133831016604e8410600b8410161715620007a85782820a905083811115620007a257620007a16200087f565b5b620007d7565b620007b7848484600162000646565b92509050818404811115620007d157620007d06200087f565b5b81810290505b9392505050565b6000620007eb826200083f565b9150620007f8836200083f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200083457620008336200087f565b5b828202905092915050565b6000819050919050565b600060028204905060018216806200086257607f821691505b60208210811415620008795762000878620008ae565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b612be880620008fa6000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c8063715018a6116100f9578063a9059cbb11610097578063dd62ed3e11610071578063dd62ed3e146104e2578063e1a4317914610512578063f2fde38b1461052e578063fe0f3a131461054a576101a9565b8063a9059cbb1461048c578063c885bc58146104bc578063d3c2aa9d146104c6576101a9565b80638da5cb5b116100d35780638da5cb5b14610404578063936ed9961461042257806395d89b411461043e578063a457c2d71461045c576101a9565b8063715018a6146103ae57806379cc6790146103b857806388081884146103d4576101a9565b806342966c68116101665780634df9d6ba116101405780634df9d6ba146103005780635750ec53146103305780635da5273c1461036257806370a082311461037e576101a9565b806342966c6814610298578063484b973c146102b457806348fd4d52146102d0576101a9565b806306fdde03146101ae578063095ea7b3146101cc57806318160ddd146101fc57806323b872dd1461021a578063313ce5671461024a5780633950935114610268575b600080fd5b6101b661057a565b6040516101c3919061260a565b60405180910390f35b6101e660048036038101906101e1919061212d565b61060c565b6040516101f391906125ef565b60405180910390f35b61020461062a565b604051610211919061278c565b60405180910390f35b610234600480360381019061022f919061207b565b610634565b60405161024191906125ef565b60405180910390f35b61025261070d565b60405161025f91906127de565b60405180910390f35b610282600480360381019061027d919061212d565b610724565b60405161028f91906125ef565b60405180910390f35b6102b260048036038101906102ad9190612169565b6107d7565b005b6102ce60048036038101906102c9919061212d565b6107eb565b005b6102ea60048036038101906102e59190612169565b610875565b6040516102f791906125d4565b60405180910390f35b61031a60048036038101906103159190612016565b6108b4565b604051610327919061278c565b60405180910390f35b61034a6004803603810190610345919061203f565b610963565b604051610359939291906127a7565b60405180910390f35b61037c60048036038101906103779190612016565b61099a565b005b61039860048036038101906103939190612016565b610a7c565b6040516103a5919061278c565b60405180910390f35b6103b6610ac4565b005b6103d260048036038101906103cd919061212d565b610b4c565b005b6103ee60048036038101906103e99190612016565b610bae565b6040516103fb919061278c565b60405180910390f35b61040c610bc6565b60405161041991906125d4565b60405180910390f35b61043c6004803603810190610437919061212d565b610bf0565b005b610446610cb4565b604051610453919061260a565b60405180910390f35b6104766004803603810190610471919061212d565b610d46565b60405161048391906125ef565b60405180910390f35b6104a660048036038101906104a1919061212d565b610e13565b6040516104b391906125ef565b60405180910390f35b6104c4610e31565b005b6104e060048036038101906104db9190612016565b610ff4565b005b6104fc60048036038101906104f7919061203f565b611277565b604051610509919061278c565b60405180910390f35b61052c600480360381019061052791906120ca565b6112fe565b005b61054860048036038101906105439190612016565b61141c565b005b610564600480360381019061055f919061203f565b611514565b604051610571919061278c565b60405180910390f35b606060038054610589906129b2565b80601f01602080910402602001604051908101604052809291908181526020018280546105b5906129b2565b80156106025780601f106105d757610100808354040283529160200191610602565b820191906000526020600020905b8154815290600101906020018083116105e557829003601f168201915b5050505050905090565b60006106206106196116ab565b84846116b3565b6001905092915050565b6000600254905090565b600061064184848461187e565b6107028461064d6116ab565b6106fd85604051806060016040528060288152602001612b4260289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106b36116ab565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b139092919063ffffffff16565b6116b3565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60006107cd6107316116ab565b846107c885600160006107426116ab565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461164d90919063ffffffff16565b6116b3565b6001905092915050565b6107e86107e26116ab565b82611b71565b50565b6107f36116ab565b73ffffffffffffffffffffffffffffffffffffffff16610811610bc6565b73ffffffffffffffffffffffffffffffffffffffff1614610867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085e906126ec565b60405180910390fd5b6108718282611d1f565b5050565b6007818154811061088557600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806000905060005b600780549050811015610959576109398460078381548110610909577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611514565b826109449190612815565b91508080610951906129e4565b9150506108be565b8192505050919050565b6006602052816000526040600020602052806000526040600020600091509150508060000154908060010154908060020154905083565b6109a26116ab565b73ffffffffffffffffffffffffffffffffffffffff166109c0610bc6565b73ffffffffffffffffffffffffffffffffffffffff1614610a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0d906126ec565b60405180910390fd5b6007819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610acc6116ab565b73ffffffffffffffffffffffffffffffffffffffff16610aea610bc6565b73ffffffffffffffffffffffffffffffffffffffff1614610b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b37906126ec565b60405180910390fd5b610b4a6000611eb3565b565b6000610b8b82604051806060016040528060248152602001612b6a60249139610b7c86610b776116ab565b611277565b611b139092919063ffffffff16565b9050610b9f83610b996116ab565b836116b3565b610ba98383611b71565b505050565b60086020528060005260406000206000915090505481565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610bf86116ab565b73ffffffffffffffffffffffffffffffffffffffff16610c16610bc6565b73ffffffffffffffffffffffffffffffffffffffff1614610c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c63906126ec565b60405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b606060048054610cc3906129b2565b80601f0160208091040260200160405190810160405280929190818152602001828054610cef906129b2565b8015610d3c5780601f10610d1157610100808354040283529160200191610d3c565b820191906000526020600020905b815481529060010190602001808311610d1f57829003601f168201915b5050505050905090565b6000610e09610d536116ab565b84610e0485604051806060016040528060258152602001612b8e6025913960016000610d7d6116ab565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b139092919063ffffffff16565b6116b3565b6001905092915050565b6000610e27610e206116ab565b848461187e565b6001905092915050565b6000805b600780549050811015610fe657600060078281548110610e7e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905062015180816002015442610f3f91906128f6565b8260000154600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f8e919061289c565b610f98919061289c565b610fa2919061286b565b816001015485610fb29190612815565b610fbc9190612815565b93506000816001018190555042816002018190555050508080610fde906129e4565b915050610e35565b610ff03383611d1f565b5050565b6000600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e9061264c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110b157611274565b600033905060008190506000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905080600201544211156111d6576201518081600201544261115b91906128f6565b8260000154600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111aa919061289c565b6111b4919061289c565b6111be919061286b565b81600101546111cd9190612815565b81600101819055505b8173ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b815260040161120f91906125d4565b60206040518083038186803b15801561122757600080fd5b505afa15801561123b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125f9190612192565b81600001819055504281600201819055505050505b50565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6113066116ab565b73ffffffffffffffffffffffffffffffffffffffff16611324610bc6565b73ffffffffffffffffffffffffffffffffffffffff161461137a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611371906126ec565b60405180910390fd5b6000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090508281600001819055508181600101819055504281600201819055505050505050565b6114246116ab565b73ffffffffffffffffffffffffffffffffffffffff16611442610bc6565b73ffffffffffffffffffffffffffffffffffffffff1614611498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148f906126ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ff9061266c565b60405180910390fd5b61151181611eb3565b50565b600080600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060405180606001604052908160008201548152602001600182015481526020016002820154815250509050620151808160400151426115d291906128f6565b8260000151600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611621919061289c565b61162b919061289c565b611635919061286b565b81602001516116449190612815565b91505092915050565b600080828461165c9190612815565b9050838110156116a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611698906126ac565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171a9061274c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178a9061268c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611871919061278c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156118ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e59061272c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561195e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119559061262c565b60405180910390fd5b611969838383611f79565b6119d481604051806060016040528060268152602001612b1c602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b139092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a67816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461164d90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611b06919061278c565b60405180910390a3505050565b6000838311158290611b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b52919061260a565b60405180910390fd5b508284611b6891906128f6565b90509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd89061270c565b60405180910390fd5b611bed82600083611f79565b611c5881604051806060016040528060228152602001612afa602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b139092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611caf81600254611f7e90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611d13919061278c565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d869061276c565b60405180910390fd5b611d9b60008383611f79565b611db08160025461164d90919063ffffffff16565b600281905550611e07816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461164d90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611ea7919061278c565b60405180910390a35050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b600082821115611fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fba906126cc565b60405180910390fd5b8183611fcf91906128f6565b905092915050565b600081359050611fe681612acb565b92915050565b600081359050611ffb81612ae2565b92915050565b60008151905061201081612ae2565b92915050565b60006020828403121561202857600080fd5b600061203684828501611fd7565b91505092915050565b6000806040838503121561205257600080fd5b600061206085828601611fd7565b925050602061207185828601611fd7565b9150509250929050565b60008060006060848603121561209057600080fd5b600061209e86828701611fd7565b93505060206120af86828701611fd7565b92505060406120c086828701611fec565b9150509250925092565b600080600080608085870312156120e057600080fd5b60006120ee87828801611fd7565b94505060206120ff87828801611fd7565b935050604061211087828801611fec565b925050606061212187828801611fec565b91505092959194509250565b6000806040838503121561214057600080fd5b600061214e85828601611fd7565b925050602061215f85828601611fec565b9150509250929050565b60006020828403121561217b57600080fd5b600061218984828501611fec565b91505092915050565b6000602082840312156121a457600080fd5b60006121b284828501612001565b91505092915050565b6121c48161292a565b82525050565b6121d38161293c565b82525050565b60006121e4826127f9565b6121ee8185612804565b93506121fe81856020860161297f565b61220781612aba565b840191505092915050565b600061221f602383612804565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612285602083612804565b91507f43616c6c6572206973206e6f7420616e206175746f2d7374616b6564204e46546000830152602082019050919050565b60006122c5602683612804565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061232b602283612804565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612391601b83612804565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b60006123d1601e83612804565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b6000612411602083612804565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000612451602183612804565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006124b7602583612804565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061251d602483612804565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612583601f83612804565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6125bf81612968565b82525050565b6125ce81612972565b82525050565b60006020820190506125e960008301846121bb565b92915050565b600060208201905061260460008301846121ca565b92915050565b6000602082019050818103600083015261262481846121d9565b905092915050565b6000602082019050818103600083015261264581612212565b9050919050565b6000602082019050818103600083015261266581612278565b9050919050565b60006020820190508181036000830152612685816122b8565b9050919050565b600060208201905081810360008301526126a58161231e565b9050919050565b600060208201905081810360008301526126c581612384565b9050919050565b600060208201905081810360008301526126e5816123c4565b9050919050565b6000602082019050818103600083015261270581612404565b9050919050565b6000602082019050818103600083015261272581612444565b9050919050565b60006020820190508181036000830152612745816124aa565b9050919050565b6000602082019050818103600083015261276581612510565b9050919050565b6000602082019050818103600083015261278581612576565b9050919050565b60006020820190506127a160008301846125b6565b92915050565b60006060820190506127bc60008301866125b6565b6127c960208301856125b6565b6127d660408301846125b6565b949350505050565b60006020820190506127f360008301846125c5565b92915050565b600081519050919050565b600082825260208201905092915050565b600061282082612968565b915061282b83612968565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156128605761285f612a2d565b5b828201905092915050565b600061287682612968565b915061288183612968565b92508261289157612890612a5c565b5b828204905092915050565b60006128a782612968565b91506128b283612968565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156128eb576128ea612a2d565b5b828202905092915050565b600061290182612968565b915061290c83612968565b92508282101561291f5761291e612a2d565b5b828203905092915050565b600061293582612948565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561299d578082015181840152602081019050612982565b838111156129ac576000848401525b50505050565b600060028204905060018216806129ca57607f821691505b602082108114156129de576129dd612a8b565b5b50919050565b60006129ef82612968565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612a2257612a21612a2d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b612ad48161292a565b8114612adf57600080fd5b50565b612aeb81612968565b8114612af657600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212201e217128f9c33d7cd9a30f149806a62dcc5c2ab6f0f754107312450d9828fbd364736f6c63430008000033
Deployed ByteCode Sourcemap
31062:4308:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15292:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17438:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16391:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18089:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16235:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18819:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24710:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35234:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31605:31;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34129:339;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31470:74;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;32135:137;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16562:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2514:94;;;:::i;:::-;;25120:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31723:55;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1863:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32340:167;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15502:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19540:269;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16902:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34478:746;;;:::i;:::-;;32870:795;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17140:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32517:343;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2764:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33675:444;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15292:91;15337:13;15370:5;15363:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15292:91;:::o;17438:169::-;17521:4;17538:39;17547:12;:10;:12::i;:::-;17561:7;17570:6;17538:8;:39::i;:::-;17595:4;17588:11;;17438:169;;;;:::o;16391:108::-;16452:7;16479:12;;16472:19;;16391:108;:::o;18089:321::-;18195:4;18212:36;18222:6;18230:9;18241:6;18212:9;:36::i;:::-;18259:121;18268:6;18276:12;:10;:12::i;:::-;18290:89;18328:6;18290:89;;;;;;;;;;;;;;;;;:11;:19;18302:6;18290:19;;;;;;;;;;;;;;;:33;18310:12;:10;:12::i;:::-;18290:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;18259:8;:121::i;:::-;18398:4;18391:11;;18089:321;;;;;:::o;16235:91::-;16284:5;16309:9;;;;;;;;;;;16302:16;;16235:91;:::o;18819:218::-;18907:4;18924:83;18933:12;:10;:12::i;:::-;18947:7;18956:50;18995:10;18956:11;:25;18968:12;:10;:12::i;:::-;18956:25;;;;;;;;;;;;;;;:34;18982:7;18956:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;18924:8;:83::i;:::-;19025:4;19018:11;;18819:218;;;;:::o;24710:91::-;24766:27;24772:12;:10;:12::i;:::-;24786:6;24766:5;:27::i;:::-;24710:91;:::o;35234:125::-;2094:12;:10;:12::i;:::-;2083:23;;:7;:5;:7::i;:::-;:23;;;2075:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35324:23:::1;35331:6;35339;35324:5;:23::i;:::-;35234:125:::0;;:::o;31605:31::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34129:339::-;34194:7;34224:21;34248:1;34224:25;;34270:6;34287:136;34304:14;:21;;;;34300:1;:25;34287:136;;;34378:45;34396:6;34404:14;34419:1;34404:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34378:16;:45::i;:::-;34362:13;:61;;;;:::i;:::-;34346:77;;34327:3;;;;;:::i;:::-;;;;34287:136;;;34443:13;34436:20;;;;34129:339;;;:::o;31470:74::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32135:137::-;2094:12;:10;:12::i;:::-;2083:23;;:7;:5;:7::i;:::-;:23;;;2075:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32222:14:::1;32243:11;32222:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32135:137:::0;:::o;16562:127::-;16636:7;16663:9;:18;16673:7;16663:18;;;;;;;;;;;;;;;;16656:25;;16562:127;;;:::o;2514:94::-;2094:12;:10;:12::i;:::-;2083:23;;:7;:5;:7::i;:::-;:23;;;2075:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2579:21:::1;2597:1;2579:9;:21::i;:::-;2514:94::o:0;25120:295::-;25197:26;25226:84;25263:6;25226:84;;;;;;;;;;;;;;;;;:32;25236:7;25245:12;:10;:12::i;:::-;25226:9;:32::i;:::-;:36;;:84;;;;;:::i;:::-;25197:113;;25323:51;25332:7;25341:12;:10;:12::i;:::-;25355:18;25323:8;:51::i;:::-;25385:22;25391:7;25400:6;25385:5;:22::i;:::-;25120:295;;;:::o;31723:55::-;;;;;;;;;;;;;;;;;:::o;1863:87::-;1909:7;1936:6;;;;;;;;;;;1929:13;;1863:87;:::o;32340:167::-;2094:12;:10;:12::i;:::-;2083:23;;:7;:5;:7::i;:::-;:23;;;2075:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32483:12:::1;32447:18;:33;32467:11;32447:33;;;;;;;;;;;;;;;:48;;;;32340:167:::0;;:::o;15502:95::-;15549:13;15582:7;15575:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15502:95;:::o;19540:269::-;19633:4;19650:129;19659:12;:10;:12::i;:::-;19673:7;19682:96;19721:15;19682:96;;;;;;;;;;;;;;;;;:11;:25;19694:12;:10;:12::i;:::-;19682:25;;;;;;;;;;;;;;;:34;19708:7;19682:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;19650:8;:129::i;:::-;19797:4;19790:11;;19540:269;;;;:::o;16902:175::-;16988:4;17005:42;17015:12;:10;:12::i;:::-;17029:9;17040:6;17005:9;:42::i;:::-;17065:4;17058:11;;16902:175;;;;:::o;34478:746::-;34532:21;34671:6;34688:478;34705:14;:21;;;;34701:1;:25;34688:478;;;34762:19;34784:14;34799:1;34784:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34762:39;;34816:24;34843:11;:23;34855:10;34843:23;;;;;;;;;;;;;;;:36;34867:11;34843:36;;;;;;;;;;;;;;;34816:63;;35044:12;35019:4;:20;;;35001:15;:38;;;;:::i;:::-;34984:4;:13;;;34950:18;:31;34969:11;34950:31;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;:90;;;;:::i;:::-;:107;;;;:::i;:::-;34928:4;:18;;;34912:13;:34;;;;:::i;:::-;:146;;;;:::i;:::-;34896:162;;35096:1;35075:4;:18;;:22;;;;35135:15;35112:4;:20;;:38;;;;34688:478;;34728:3;;;;;:::i;:::-;;;;34688:478;;;35178:34;35185:10;35197:13;35178:5;:34::i;:::-;34478:746;;:::o;32870:795::-;31875:1;31839:18;:32;31859:10;31839:32;;;;;;;;;;;;;;;;:37;;31830:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;32981:1:::1;32963:20;;:6;:20;;;32958:48;;;32999:7;;32958:48;33097:18;33118:10;33097:31;;33139:19;33169:10;33139:41;;33257:24;33284:11;:19;33296:6;33284:19;;;;;;;;;;;;;;;:31;33304:10;33284:31;;;;;;;;;;;;;;;33257:58;;33350:4;:20;;;33332:15;:38;33328:208;;;33522:12;33497:4;:20;;;33479:15;:38;;;;:::i;:::-;33462:4;:13;;;33429:18;:30;33448:10;33429:30;;;;;;;;;;;;;;;;:46;;;;:::i;:::-;:89;;;;:::i;:::-;:106;;;;:::i;:::-;33407:4;:18;;;:129;;;;:::i;:::-;33386:4;:18;;:150;;;;33328:208;33573:11;:21;;;33596:6;33573:31;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33557:4;:13;;:47;;;;33638:15;33615:4;:20;;:38;;;;31924:1;;;;32870:795:::0;:::o;17140:151::-;17229:7;17256:11;:18;17268:5;17256:18;;;;;;;;;;;;;;;:27;17275:7;17256:27;;;;;;;;;;;;;;;;17249:34;;17140:151;;;;:::o;32517:343::-;2094:12;:10;:12::i;:::-;2083:23;;:7;:5;:7::i;:::-;:23;;;2075:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32658:24:::1;32685:11;:19;32697:6;32685:19;;;;;;;;;;;;;;;:32;32705:11;32685:32;;;;;;;;;;;;;;;32658:59;;32746:8;32730:4;:13;;:24;;;;32786:13;32765:4;:18;;:34;;;;32833:15;32810:4;:20;;:38;;;;2154:1;32517:343:::0;;;;:::o;2764:192::-;2094:12;:10;:12::i;:::-;2083:23;;:7;:5;:7::i;:::-;:23;;;2075:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2873:1:::1;2853:22;;:8;:22;;;;2845:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2929:19;2939:8;2929:9;:19::i;:::-;2764:192:::0;:::o;33675:444::-;33761:7;33791:23;33817:11;:19;33829:6;33817:19;;;;;;;;;;;;;;;:32;33837:11;33817:32;;;;;;;;;;;;;;;33791:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34093:12;34068:4;:20;;;34050:15;:38;;;;:::i;:::-;34033:4;:13;;;33999:18;:31;34018:11;33999:31;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;:90;;;;:::i;:::-;:107;;;;:::i;:::-;33977:4;:18;;;:130;;;;:::i;:::-;33970:137;;;33675:444;;;;:::o;5850:179::-;5908:7;5928:9;5944:1;5940;:5;;;;:::i;:::-;5928:17;;5969:1;5964;:6;;5956:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;6020:1;6013:8;;;5850:179;;;;:::o;605:98::-;658:7;685:10;678:17;;605:98;:::o;22687:346::-;22806:1;22789:19;;:5;:19;;;;22781:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22887:1;22868:21;;:7;:21;;;;22860:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22971:6;22941:11;:18;22953:5;22941:18;;;;;;;;;;;;;;;:27;22960:7;22941:27;;;;;;;;;;;;;;;:36;;;;23009:7;22993:32;;23002:5;22993:32;;;23018:6;22993:32;;;;;;:::i;:::-;;;;;;;;22687:346;;;:::o;20299:539::-;20423:1;20405:20;;:6;:20;;;;20397:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;20507:1;20486:23;;:9;:23;;;;20478:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;20562:47;20583:6;20591:9;20602:6;20562:20;:47::i;:::-;20642:71;20664:6;20642:71;;;;;;;;;;;;;;;;;:9;:17;20652:6;20642:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;20622:9;:17;20632:6;20622:17;;;;;;;;;;;;;;;:91;;;;20747:32;20772:6;20747:9;:20;20757:9;20747:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;20724:9;:20;20734:9;20724:20;;;;;;;;;;;;;;;:55;;;;20812:9;20795:35;;20804:6;20795:35;;;20823:6;20795:35;;;;;;:::i;:::-;;;;;;;;20299:539;;;:::o;8677:166::-;8763:7;8796:1;8791;:6;;8799:12;8783:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;8834:1;8830;:5;;;;:::i;:::-;8823:12;;8677:166;;;;;:::o;21831:418::-;21934:1;21915:21;;:7;:21;;;;21907:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;21987:49;22008:7;22025:1;22029:6;21987:20;:49::i;:::-;22070:68;22093:6;22070:68;;;;;;;;;;;;;;;;;:9;:18;22080:7;22070:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;22049:9;:18;22059:7;22049:18;;;;;;;;;;;;;;;:89;;;;22164:24;22181:6;22164:12;;:16;;:24;;;;:::i;:::-;22149:12;:39;;;;22230:1;22204:37;;22213:7;22204:37;;;22234:6;22204:37;;;;;;:::i;:::-;;;;;;;;21831:418;;:::o;21120:378::-;21223:1;21204:21;;:7;:21;;;;21196:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;21274:49;21303:1;21307:7;21316:6;21274:20;:49::i;:::-;21351:24;21368:6;21351:12;;:16;;:24;;;;:::i;:::-;21336:12;:39;;;;21407:30;21430:6;21407:9;:18;21417:7;21407:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;21386:9;:18;21396:7;21386:18;;;;;;;;;;;;;;;:51;;;;21474:7;21453:37;;21470:1;21453:37;;;21483:6;21453:37;;;;;;:::i;:::-;;;;;;;;21120:378;;:::o;2964:173::-;3020:16;3039:6;;;;;;;;;;;3020:25;;3065:8;3056:6;;:17;;;;;;;;;;;;;;;;;;3120:8;3089:40;;3110:8;3089:40;;;;;;;;;;;;2964:173;;:::o;24066:92::-;;;;:::o;6312:158::-;6370:7;6403:1;6398;:6;;6390:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;6461:1;6457;:5;;;;:::i;:::-;6450:12;;6312:158;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:143::-;;385:6;379:13;370:22;;401:33;428:5;401:33;:::i;:::-;360:80;;;;:::o;446:262::-;;554:2;542:9;533:7;529:23;525:32;522:2;;;570:1;567;560:12;522:2;613:1;638:53;683:7;674:6;663:9;659:22;638:53;:::i;:::-;628:63;;584:117;512:196;;;;:::o;714:407::-;;;839:2;827:9;818:7;814:23;810:32;807:2;;;855:1;852;845:12;807:2;898:1;923:53;968:7;959:6;948:9;944:22;923:53;:::i;:::-;913:63;;869:117;1025:2;1051:53;1096:7;1087:6;1076:9;1072:22;1051:53;:::i;:::-;1041:63;;996:118;797:324;;;;;:::o;1127:552::-;;;;1269:2;1257:9;1248:7;1244:23;1240:32;1237:2;;;1285:1;1282;1275:12;1237:2;1328:1;1353:53;1398:7;1389:6;1378:9;1374:22;1353:53;:::i;:::-;1343:63;;1299:117;1455:2;1481:53;1526:7;1517:6;1506:9;1502:22;1481:53;:::i;:::-;1471:63;;1426:118;1583:2;1609:53;1654:7;1645:6;1634:9;1630:22;1609:53;:::i;:::-;1599:63;;1554:118;1227:452;;;;;:::o;1685:698::-;;;;;1844:3;1832:9;1823:7;1819:23;1815:33;1812:2;;;1861:1;1858;1851:12;1812:2;1904:1;1929:53;1974:7;1965:6;1954:9;1950:22;1929:53;:::i;:::-;1919:63;;1875:117;2031:2;2057:53;2102:7;2093:6;2082:9;2078:22;2057:53;:::i;:::-;2047:63;;2002:118;2159:2;2185:53;2230:7;2221:6;2210:9;2206:22;2185:53;:::i;:::-;2175:63;;2130:118;2287:2;2313:53;2358:7;2349:6;2338:9;2334:22;2313:53;:::i;:::-;2303:63;;2258:118;1802:581;;;;;;;:::o;2389:407::-;;;2514:2;2502:9;2493:7;2489:23;2485:32;2482:2;;;2530:1;2527;2520:12;2482:2;2573:1;2598:53;2643:7;2634:6;2623:9;2619:22;2598:53;:::i;:::-;2588:63;;2544:117;2700:2;2726:53;2771:7;2762:6;2751:9;2747:22;2726:53;:::i;:::-;2716:63;;2671:118;2472:324;;;;;:::o;2802:262::-;;2910:2;2898:9;2889:7;2885:23;2881:32;2878:2;;;2926:1;2923;2916:12;2878:2;2969:1;2994:53;3039:7;3030:6;3019:9;3015:22;2994:53;:::i;:::-;2984:63;;2940:117;2868:196;;;;:::o;3070:284::-;;3189:2;3177:9;3168:7;3164:23;3160:32;3157:2;;;3205:1;3202;3195:12;3157:2;3248:1;3273:64;3329:7;3320:6;3309:9;3305:22;3273:64;:::i;:::-;3263:74;;3219:128;3147:207;;;;:::o;3360:118::-;3447:24;3465:5;3447:24;:::i;:::-;3442:3;3435:37;3425:53;;:::o;3484:109::-;3565:21;3580:5;3565:21;:::i;:::-;3560:3;3553:34;3543:50;;:::o;3599:364::-;;3715:39;3748:5;3715:39;:::i;:::-;3770:71;3834:6;3829:3;3770:71;:::i;:::-;3763:78;;3850:52;3895:6;3890:3;3883:4;3876:5;3872:16;3850:52;:::i;:::-;3927:29;3949:6;3927:29;:::i;:::-;3922:3;3918:39;3911:46;;3691:272;;;;;:::o;3969:367::-;;4132:67;4196:2;4191:3;4132:67;:::i;:::-;4125:74;;4229:34;4225:1;4220:3;4216:11;4209:55;4295:5;4290:2;4285:3;4281:12;4274:27;4327:2;4322:3;4318:12;4311:19;;4115:221;;;:::o;4342:330::-;;4505:67;4569:2;4564:3;4505:67;:::i;:::-;4498:74;;4602:34;4598:1;4593:3;4589:11;4582:55;4663:2;4658:3;4654:12;4647:19;;4488:184;;;:::o;4678:370::-;;4841:67;4905:2;4900:3;4841:67;:::i;:::-;4834:74;;4938:34;4934:1;4929:3;4925:11;4918:55;5004:8;4999:2;4994:3;4990:12;4983:30;5039:2;5034:3;5030:12;5023:19;;4824:224;;;:::o;5054:366::-;;5217:67;5281:2;5276:3;5217:67;:::i;:::-;5210:74;;5314:34;5310:1;5305:3;5301:11;5294:55;5380:4;5375:2;5370:3;5366:12;5359:26;5411:2;5406:3;5402:12;5395:19;;5200:220;;;:::o;5426:325::-;;5589:67;5653:2;5648:3;5589:67;:::i;:::-;5582:74;;5686:29;5682:1;5677:3;5673:11;5666:50;5742:2;5737:3;5733:12;5726:19;;5572:179;;;:::o;5757:328::-;;5920:67;5984:2;5979:3;5920:67;:::i;:::-;5913:74;;6017:32;6013:1;6008:3;6004:11;5997:53;6076:2;6071:3;6067:12;6060:19;;5903:182;;;:::o;6091:330::-;;6254:67;6318:2;6313:3;6254:67;:::i;:::-;6247:74;;6351:34;6347:1;6342:3;6338:11;6331:55;6412:2;6407:3;6403:12;6396:19;;6237:184;;;:::o;6427:365::-;;6590:67;6654:2;6649:3;6590:67;:::i;:::-;6583:74;;6687:34;6683:1;6678:3;6674:11;6667:55;6753:3;6748:2;6743:3;6739:12;6732:25;6783:2;6778:3;6774:12;6767:19;;6573:219;;;:::o;6798:369::-;;6961:67;7025:2;7020:3;6961:67;:::i;:::-;6954:74;;7058:34;7054:1;7049:3;7045:11;7038:55;7124:7;7119:2;7114:3;7110:12;7103:29;7158:2;7153:3;7149:12;7142:19;;6944:223;;;:::o;7173:368::-;;7336:67;7400:2;7395:3;7336:67;:::i;:::-;7329:74;;7433:34;7429:1;7424:3;7420:11;7413:55;7499:6;7494:2;7489:3;7485:12;7478:28;7532:2;7527:3;7523:12;7516:19;;7319:222;;;:::o;7547:329::-;;7710:67;7774:2;7769:3;7710:67;:::i;:::-;7703:74;;7807:33;7803:1;7798:3;7794:11;7787:54;7867:2;7862:3;7858:12;7851:19;;7693:183;;;:::o;7882:118::-;7969:24;7987:5;7969:24;:::i;:::-;7964:3;7957:37;7947:53;;:::o;8006:112::-;8089:22;8105:5;8089:22;:::i;:::-;8084:3;8077:35;8067:51;;:::o;8124:222::-;;8255:2;8244:9;8240:18;8232:26;;8268:71;8336:1;8325:9;8321:17;8312:6;8268:71;:::i;:::-;8222:124;;;;:::o;8352:210::-;;8477:2;8466:9;8462:18;8454:26;;8490:65;8552:1;8541:9;8537:17;8528:6;8490:65;:::i;:::-;8444:118;;;;:::o;8568:313::-;;8719:2;8708:9;8704:18;8696:26;;8768:9;8762:4;8758:20;8754:1;8743:9;8739:17;8732:47;8796:78;8869:4;8860:6;8796:78;:::i;:::-;8788:86;;8686:195;;;;:::o;8887:419::-;;9091:2;9080:9;9076:18;9068:26;;9140:9;9134:4;9130:20;9126:1;9115:9;9111:17;9104:47;9168:131;9294:4;9168:131;:::i;:::-;9160:139;;9058:248;;;:::o;9312:419::-;;9516:2;9505:9;9501:18;9493:26;;9565:9;9559:4;9555:20;9551:1;9540:9;9536:17;9529:47;9593:131;9719:4;9593:131;:::i;:::-;9585:139;;9483:248;;;:::o;9737:419::-;;9941:2;9930:9;9926:18;9918:26;;9990:9;9984:4;9980:20;9976:1;9965:9;9961:17;9954:47;10018:131;10144:4;10018:131;:::i;:::-;10010:139;;9908:248;;;:::o;10162:419::-;;10366:2;10355:9;10351:18;10343:26;;10415:9;10409:4;10405:20;10401:1;10390:9;10386:17;10379:47;10443:131;10569:4;10443:131;:::i;:::-;10435:139;;10333:248;;;:::o;10587:419::-;;10791:2;10780:9;10776:18;10768:26;;10840:9;10834:4;10830:20;10826:1;10815:9;10811:17;10804:47;10868:131;10994:4;10868:131;:::i;:::-;10860:139;;10758:248;;;:::o;11012:419::-;;11216:2;11205:9;11201:18;11193:26;;11265:9;11259:4;11255:20;11251:1;11240:9;11236:17;11229:47;11293:131;11419:4;11293:131;:::i;:::-;11285:139;;11183:248;;;:::o;11437:419::-;;11641:2;11630:9;11626:18;11618:26;;11690:9;11684:4;11680:20;11676:1;11665:9;11661:17;11654:47;11718:131;11844:4;11718:131;:::i;:::-;11710:139;;11608:248;;;:::o;11862:419::-;;12066:2;12055:9;12051:18;12043:26;;12115:9;12109:4;12105:20;12101:1;12090:9;12086:17;12079:47;12143:131;12269:4;12143:131;:::i;:::-;12135:139;;12033:248;;;:::o;12287:419::-;;12491:2;12480:9;12476:18;12468:26;;12540:9;12534:4;12530:20;12526:1;12515:9;12511:17;12504:47;12568:131;12694:4;12568:131;:::i;:::-;12560:139;;12458:248;;;:::o;12712:419::-;;12916:2;12905:9;12901:18;12893:26;;12965:9;12959:4;12955:20;12951:1;12940:9;12936:17;12929:47;12993:131;13119:4;12993:131;:::i;:::-;12985:139;;12883:248;;;:::o;13137:419::-;;13341:2;13330:9;13326:18;13318:26;;13390:9;13384:4;13380:20;13376:1;13365:9;13361:17;13354:47;13418:131;13544:4;13418:131;:::i;:::-;13410:139;;13308:248;;;:::o;13562:222::-;;13693:2;13682:9;13678:18;13670:26;;13706:71;13774:1;13763:9;13759:17;13750:6;13706:71;:::i;:::-;13660:124;;;;:::o;13790:442::-;;13977:2;13966:9;13962:18;13954:26;;13990:71;14058:1;14047:9;14043:17;14034:6;13990:71;:::i;:::-;14071:72;14139:2;14128:9;14124:18;14115:6;14071:72;:::i;:::-;14153;14221:2;14210:9;14206:18;14197:6;14153:72;:::i;:::-;13944:288;;;;;;:::o;14238:214::-;;14365:2;14354:9;14350:18;14342:26;;14378:67;14442:1;14431:9;14427:17;14418:6;14378:67;:::i;:::-;14332:120;;;;:::o;14458:99::-;;14544:5;14538:12;14528:22;;14517:40;;;:::o;14563:169::-;;14681:6;14676:3;14669:19;14721:4;14716:3;14712:14;14697:29;;14659:73;;;;:::o;14738:305::-;;14797:20;14815:1;14797:20;:::i;:::-;14792:25;;14831:20;14849:1;14831:20;:::i;:::-;14826:25;;14985:1;14917:66;14913:74;14910:1;14907:81;14904:2;;;14991:18;;:::i;:::-;14904:2;15035:1;15032;15028:9;15021:16;;14782:261;;;;:::o;15049:185::-;;15106:20;15124:1;15106:20;:::i;:::-;15101:25;;15140:20;15158:1;15140:20;:::i;:::-;15135:25;;15179:1;15169:2;;15184:18;;:::i;:::-;15169:2;15226:1;15223;15219:9;15214:14;;15091:143;;;;:::o;15240:348::-;;15303:20;15321:1;15303:20;:::i;:::-;15298:25;;15337:20;15355:1;15337:20;:::i;:::-;15332:25;;15525:1;15457:66;15453:74;15450:1;15447:81;15442:1;15435:9;15428:17;15424:105;15421:2;;;15532:18;;:::i;:::-;15421:2;15580:1;15577;15573:9;15562:20;;15288:300;;;;:::o;15594:191::-;;15654:20;15672:1;15654:20;:::i;:::-;15649:25;;15688:20;15706:1;15688:20;:::i;:::-;15683:25;;15727:1;15724;15721:8;15718:2;;;15732:18;;:::i;:::-;15718:2;15777:1;15774;15770:9;15762:17;;15639:146;;;;:::o;15791:96::-;;15857:24;15875:5;15857:24;:::i;:::-;15846:35;;15836:51;;;:::o;15893:90::-;;15970:5;15963:13;15956:21;15945:32;;15935:48;;;:::o;15989:126::-;;16066:42;16059:5;16055:54;16044:65;;16034:81;;;:::o;16121:77::-;;16187:5;16176:16;;16166:32;;;:::o;16204:86::-;;16279:4;16272:5;16268:16;16257:27;;16247:43;;;:::o;16296:307::-;16364:1;16374:113;16388:6;16385:1;16382:13;16374:113;;;16473:1;16468:3;16464:11;16458:18;16454:1;16449:3;16445:11;16438:39;16410:2;16407:1;16403:10;16398:15;;16374:113;;;16505:6;16502:1;16499:13;16496:2;;;16585:1;16576:6;16571:3;16567:16;16560:27;16496:2;16345:258;;;;:::o;16609:320::-;;16690:1;16684:4;16680:12;16670:22;;16737:1;16731:4;16727:12;16758:18;16748:2;;16814:4;16806:6;16802:17;16792:27;;16748:2;16876;16868:6;16865:14;16845:18;16842:38;16839:2;;;16895:18;;:::i;:::-;16839:2;16660:269;;;;:::o;16935:233::-;;16997:24;17015:5;16997:24;:::i;:::-;16988:33;;17043:66;17036:5;17033:77;17030:2;;;17113:18;;:::i;:::-;17030:2;17160:1;17153:5;17149:13;17142:20;;16978:190;;;:::o;17174:180::-;17222:77;17219:1;17212:88;17319:4;17316:1;17309:15;17343:4;17340:1;17333:15;17360:180;17408:77;17405:1;17398:88;17505:4;17502:1;17495:15;17529:4;17526:1;17519:15;17546:180;17594:77;17591:1;17584:88;17691:4;17688:1;17681:15;17715:4;17712:1;17705:15;17732:102;;17824:2;17820:7;17815:2;17808:5;17804:14;17800:28;17790:38;;17780:54;;;:::o;17840:122::-;17913:24;17931:5;17913:24;:::i;:::-;17906:5;17903:35;17893:2;;17952:1;17949;17942:12;17893:2;17883:79;:::o;17968:122::-;18041:24;18059:5;18041:24;:::i;:::-;18034:5;18031:35;18021:2;;18080:1;18077;18070:12;18021:2;18011:79;:::o
Swarm Source
ipfs://1e217128f9c33d7cd9a30f149806a62dcc5c2ab6f0f754107312450d9828fbd3
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.