Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
27,293.358923611111111108 BOOTY
Holders
13
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
13,073.910497685185185183 BOOTYValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BOOTY
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-01 */ // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (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); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (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; } // File: contracts/IPiRats.sol pragma solidity ^0.8.0; interface IPiRats is IERC721 { struct CrewCaptain { bool isCrew; uint8 body; uint8 clothes; uint8 face; uint8 mouth; uint8 eyes; uint8 head; uint8 legendRank; } function paidTokens() external view returns (uint256); function maxTokens() external view returns (uint256); function mintPiRat(address recipient, uint16 amount, uint256 seed) external; function plankPiRat(address recipient, uint16 amount, uint256 seed, uint256 _burnToken) external; function getTokenTraits(uint256 tokenId) external view returns (CrewCaptain memory); function isCrew(uint256 tokenId) external view returns(bool); function getBalanceCrew(address owner) external view returns (uint16); function getBalanceCaptain(address owner) external view returns (uint16); function getTotalRank(address owner) external view returns (uint256); function walletOfOwner(address owner) external view returns (uint256[] memory); function getTotalPiratsMinted() external view returns(uint256 totalPiratsMinted); function getTotalPiratsBurned() external view returns(uint256 totalPiratsBurned); function getTotalPirats() external view returns(uint256 totalPirats); } // File: contracts/IBOOTY.sol pragma solidity ^0.8.0; interface IBOOTY { function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); function balanceOf(address account) external view returns (uint256); function claimBooty(address owner) external; function burnExternal(address from, uint256 amount) external; function initTimeStamp(address owner, uint256 timeStamp) external; function showPendingClaimable(address owner) external view returns (uint256); function showEarningRate(address owner) external view returns (uint256); function claimGift(address to) external; } // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ 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) { unchecked { 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) { unchecked { 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) { 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. * * _Available since v3.4._ */ 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. * * _Available since v3.4._ */ 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 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) { return a + b; } /** * @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) { 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) { return a * b; } /** * @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. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { 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) { 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) { unchecked { 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. * * 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) { unchecked { 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) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) 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 meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/security/Pausable.sol // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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() { _transferOwnership(_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 { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ 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); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @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 Contracts guidelines: functions revert * instead 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, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 this function is * overridden; * * 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 override returns (uint8) { return 18; } /** * @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); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } 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] + 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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This 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); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(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: * * - `account` 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 += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(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); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(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 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 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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File: contracts/BOOTY.sol pragma solidity ^0.8.0; ////////////////////// //┌┼┐╔╗ ╔═╗╔═╗╔╦╗╦ ╦// //└┼┐╠╩╗║ ║║ ║ ║ ╚╦╝// //└┼┘╚═╝╚═╝╚═╝ ╩ ╩ // ////////////////////// contract BOOTY is IBOOTY, ERC20, Ownable, Pausable { using SafeMath for uint256; event BootyPaid(address indexed user, uint256 bootyReward); uint256 public constant CAPTAIN_DAILY_BOOTY = 300 ether; uint256 public constant CREW_DAILY_BOOTY = 100 ether; mapping(address => uint256) internal lastClaimTimestamp; mapping(address => bool) internal admins; mapping(address => uint256) public bootyRewards; /// LEGENDLIST SETUP /// struct Legendlist { bool isLegendlisted; uint16 qtyMinted; } mapping(address => Legendlist) private _legendlistAddresses; IBOOTY public booty; IPiRats public potm; constructor() ERC20("BOOTY", "BOOTY") { _pause(); } /// MINT/BURN /// function claimGift(address to) external override whenNotPaused { require(admins[_msgSender()], "Only admins - claimBooty"); uint256 amount = 1000 ether; _mint(to, amount); } function mint(address to, uint256 amount) public whenNotPaused { require(admins[_msgSender()], "Only admins - mint"); _mint(to, amount); } function burn(address from, uint256 amount) internal whenNotPaused { require(admins[_msgSender()], "Only admins - burn"); _burn(from, amount); } /// CLAIMING $BOOTY /// function claimBooty(address owner) external override whenNotPaused { require(admins[_msgSender()], "Only admins - claimBooty"); uint256 totalPending = pendingClaimable(owner); bootyRewards[owner] += totalPending; uint256 bootyReward = bootyRewards[owner]; require(bootyReward > 0, "Dont have any BOOTY"); mint(owner, bootyReward); emit BootyPaid(owner, bootyReward); lastClaimTimestamp[owner] = block.timestamp; bootyRewards[owner] = 0; } function pendingClaimable(address owner) internal view returns (uint256 pending){ uint256 _lastClaim = lastClaimTimestamp[owner]; pending = (earningRate(owner) * (block.timestamp - _lastClaim)) / 86400; } function earningRate(address owner) internal view returns(uint256 dailyRate) { uint32 totalPiRats = potm.getBalanceCrew(owner) + potm.getBalanceCaptain(owner); uint256 _dailyRate = ((potm.getBalanceCrew(owner) * CREW_DAILY_BOOTY) + (potm.getBalanceCaptain(owner) * CAPTAIN_DAILY_BOOTY) + (potm.getTotalRank(owner)*(10**18))); if (totalPiRats > 20) { dailyRate = _dailyRate / 2; } else if (totalPiRats > 50) { dailyRate = _dailyRate / 4; } else { dailyRate = _dailyRate; } } /// OVERRIDE /// function showPendingClaimable(address owner) external view override returns (uint256 pending){ pending = pendingClaimable(owner); } function showEarningRate(address owner) external view override returns (uint256 dailyRate){ dailyRate = earningRate(owner); } function burnExternal(address from, uint256 amount) external whenNotPaused override { require(admins[_msgSender()], "Only admins can burnExternal"); burn(from, amount); } function initTimeStamp(address owner, uint256 timeStamp) external whenNotPaused override { require(admins[_msgSender()], "Only admins can call initTimeStamp"); uint256 _lastClaim = lastClaimTimestamp[owner]; if (_lastClaim > 0) { lastClaimTimestamp[owner] = _lastClaim; } else { lastClaimTimestamp[owner] = timeStamp; } } function transferFrom(address sender, address recipient, uint256 amount) public virtual override(ERC20, IBOOTY) returns (bool) { require(admins[_msgSender()], "Only admins can call transferFrom"); if(admins[_msgSender()]) { _transfer(sender, recipient, amount); return true; } return super.transferFrom(sender, recipient, amount); } function balanceOf(address account) public view override(ERC20, IBOOTY) returns (uint256) { return super.balanceOf(account); } /// ADMIN /// function setPaused(bool _paused) external onlyOwner { if (_paused) _pause(); else _unpause(); } function setContracts(address _potm) external onlyOwner { potm = IPiRats(_potm); } function addAdmin(address addr) external onlyOwner { admins[addr] = true; } function removeAdmin(address addr) external onlyOwner { admins[addr] = false; } } // 0xHooch //
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":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"bootyReward","type":"uint256"}],"name":"BootyPaid","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"CAPTAIN_DAILY_BOOTY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CREW_DAILY_BOOTY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"addAdmin","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":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"booty","outputs":[{"internalType":"contract IBOOTY","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bootyRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnExternal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"claimBooty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"claimGift","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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"timeStamp","type":"uint256"}],"name":"initTimeStamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"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":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"potm","outputs":[{"internalType":"contract IPiRats","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"removeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_potm","type":"address"}],"name":"setContracts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"showEarningRate","outputs":[{"internalType":"uint256","name":"dailyRate","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"showPendingClaimable","outputs":[{"internalType":"uint256","name":"pending","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","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":"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"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604080518082018252600580825264424f4f545960d81b6020808401828152855180870190965292855284015281519192916200005291600391620001aa565b50805162000068906004906020840190620001aa565b505050620000856200007f620000a260201b60201c565b620000a6565b6005805460ff60a01b191690556200009c620000f8565b6200028d565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200010c600554600160a01b900460ff1690565b15620001515760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640160405180910390fd5b6005805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586200018d3390565b6040516001600160a01b03909116815260200160405180910390a1565b828054620001b89062000250565b90600052602060002090601f016020900481019282620001dc576000855562000227565b82601f10620001f757805160ff191683800117855562000227565b8280016001018555821562000227579182015b82811115620002275782518255916020019190600101906200020a565b506200023592915062000239565b5090565b5b808211156200023557600081556001016200023a565b600181811c908216806200026557607f821691505b602082108114156200028757634e487b7160e01b600052602260045260246000fd5b50919050565b611b46806200029d6000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c80635a2e2f471161010f578063970ce67a116100a2578063de4a2fa411610071578063de4a2fa414610422578063df242ed514610442578063e34fa0e414610455578063f2fde38b1461046857600080fd5b8063970ce67a146103b3578063a457c2d7146103c3578063a9059cbb146103d6578063dd62ed3e146103e957600080fd5b8063715018a6116100de578063715018a61461037f57806375b39451146103875780638da5cb5b1461039a57806395d89b41146103ab57600080fd5b80635a2e2f47146103345780635c975abb14610347578063704802751461035957806370a082311461036c57600080fd5b806318160ddd1161018757806337b64b4c1161015657806337b64b4c146102d057806339509351146102e357806340c10f19146102f65780634bcda6841461030957600080fd5b806318160ddd1461028c57806323b872dd1461029e5780632d755beb146102b1578063313ce567146102c157600080fd5b8063095ea7b3116101c3578063095ea7b3146102305780630d25df871461025357806316c38b3c146102665780631785f53c1461027957600080fd5b806304f3c40e146101ea57806306fdde03146101ff578063072788681461021d575b600080fd5b6101fd6101f8366004611862565b61047b565b005b610207610520565b6040516102149190611975565b60405180910390f35b6101fd61022b3660046118ec565b6105b2565b61024361023e3660046118ec565b610645565b6040519015158152602001610214565b6101fd610261366004611862565b61065b565b6101fd610274366004611916565b6107ee565b6101fd610287366004611862565b610831565b6002545b604051908152602001610214565b6102436102ac3660046118b0565b61087c565b610290681043561a882930000081565b60405160128152602001610214565b6102906102de366004611862565b610925565b6102436102f13660046118ec565b610936565b6101fd6103043660046118ec565b610972565b600a5461031c906001600160a01b031681565b6040516001600160a01b039091168152602001610214565b6101fd610342366004611862565b6109fa565b600554600160a01b900460ff16610243565b6101fd610367366004611862565b610a46565b61029061037a366004611862565b610a94565b6101fd610ab2565b610290610395366004611862565b610ae8565b6005546001600160a01b031661031c565b610207610af3565b61029068056bc75e2d6310000081565b6102436103d13660046118ec565b610b02565b6102436103e43660046118ec565b610b9b565b6102906103f736600461187d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610290610430366004611862565b60086020526000908152604090205481565b600b5461031c906001600160a01b031681565b6101fd6104633660046118ec565b610ba8565b6101fd610476366004611862565b610c99565b600554600160a01b900460ff16156104ae5760405162461bcd60e51b81526004016104a5906119ca565b60405180910390fd5b3360009081526007602052604090205460ff166105085760405162461bcd60e51b81526020600482015260186024820152774f6e6c792061646d696e73202d20636c61696d426f6f747960401b60448201526064016104a5565b683635c9adc5dea0000061051c8282610d31565b5050565b60606003805461052f90611abf565b80601f016020809104026020016040519081016040528092919081815260200182805461055b90611abf565b80156105a85780601f1061057d576101008083540402835291602001916105a8565b820191906000526020600020905b81548152906001019060200180831161058b57829003601f168201915b5050505050905090565b600554600160a01b900460ff16156105dc5760405162461bcd60e51b81526004016104a5906119ca565b3360009081526007602052604090205460ff1661063b5760405162461bcd60e51b815260206004820152601c60248201527f4f6e6c792061646d696e732063616e206275726e45787465726e616c0000000060448201526064016104a5565b61051c8282610e10565b6000610652338484610e98565b50600192915050565b600554600160a01b900460ff16156106855760405162461bcd60e51b81526004016104a5906119ca565b3360009081526007602052604090205460ff166106df5760405162461bcd60e51b81526020600482015260186024820152774f6e6c792061646d696e73202d20636c61696d426f6f747960401b60448201526064016104a5565b60006106ea82610fbc565b6001600160a01b038316600090815260086020526040812080549293508392909190610717908490611a4f565b90915550506001600160a01b038216600090815260086020526040902054806107785760405162461bcd60e51b8152602060048201526013602482015272446f6e74206861766520616e7920424f4f545960681b60448201526064016104a5565b6107828382610972565b826001600160a01b03167fc3d93ac25c1b5ee666dc31bde590f9ec07d4f57d1d22ed021eb19aa8392556d0826040516107bd91815260200190565b60405180910390a250506001600160a01b031660009081526006602090815260408083204290556008909152812055565b6005546001600160a01b031633146108185760405162461bcd60e51b81526004016104a5906119f4565b801561082957610826611000565b50565b610826611082565b6005546001600160a01b0316331461085b5760405162461bcd60e51b81526004016104a5906119f4565b6001600160a01b03166000908152600760205260409020805460ff19169055565b3360009081526007602052604081205460ff166108e55760405162461bcd60e51b815260206004820152602160248201527f4f6e6c792061646d696e732063616e2063616c6c207472616e7366657246726f6044820152606d60f81b60648201526084016104a5565b3360009081526007602052604090205460ff161561091057610908848484611106565b50600161091e565b61091b8484846112d5565b90505b9392505050565b600061093082610fbc565b92915050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161065291859061096d908690611a4f565b610e98565b600554600160a01b900460ff161561099c5760405162461bcd60e51b81526004016104a5906119ca565b3360009081526007602052604090205460ff166109f05760405162461bcd60e51b815260206004820152601260248201527113db9b1e4818591b5a5b9cc80b481b5a5b9d60721b60448201526064016104a5565b61051c8282610d31565b6005546001600160a01b03163314610a245760405162461bcd60e51b81526004016104a5906119f4565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610a705760405162461bcd60e51b81526004016104a5906119f4565b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b6001600160a01b038116600090815260208190526040812054610930565b6005546001600160a01b03163314610adc5760405162461bcd60e51b81526004016104a5906119f4565b610ae6600061137f565b565b6000610930826113d1565b60606004805461052f90611abf565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610b845760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104a5565b610b913385858403610e98565b5060019392505050565b6000610652338484611106565b600554600160a01b900460ff1615610bd25760405162461bcd60e51b81526004016104a5906119ca565b3360009081526007602052604090205460ff16610c3c5760405162461bcd60e51b815260206004820152602260248201527f4f6e6c792061646d696e732063616e2063616c6c20696e697454696d6553746160448201526106d760f41b60648201526084016104a5565b6001600160a01b0382166000908152600660205260409020548015610c7b576001600160a01b0383166000908152600660205260409020819055505050565b506001600160a01b0391909116600090815260066020526040902055565b6005546001600160a01b03163314610cc35760405162461bcd60e51b81526004016104a5906119f4565b6001600160a01b038116610d285760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104a5565b6108268161137f565b6001600160a01b038216610d875760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104a5565b8060026000828254610d999190611a4f565b90915550506001600160a01b03821660009081526020819052604081208054839290610dc6908490611a4f565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600554600160a01b900460ff1615610e3a5760405162461bcd60e51b81526004016104a5906119ca565b3360009081526007602052604090205460ff16610e8e5760405162461bcd60e51b815260206004820152601260248201527127b7363c9030b236b4b739901690313ab93760711b60448201526064016104a5565b61051c82826116f8565b6001600160a01b038316610efa5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104a5565b6001600160a01b038216610f5b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104a5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03811660009081526006602052604081205462015180610fe38242611aa8565b610fec856113d1565b610ff69190611a89565b61091e9190611a67565b600554600160a01b900460ff161561102a5760405162461bcd60e51b81526004016104a5906119ca565b6005805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586110653390565b6040516001600160a01b03909116815260200160405180910390a1565b600554600160a01b900460ff166110d25760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016104a5565b6005805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33611065565b6001600160a01b03831661116a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104a5565b6001600160a01b0382166111cc5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104a5565b6001600160a01b038316600090815260208190526040902054818110156112445760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104a5565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061127b908490611a4f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112c791815260200190565b60405180910390a350505050565b60006112e2848484611106565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156113675760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016104a5565b6113748533858403610e98565b506001949350505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b5460405163139b74b760e21b81526001600160a01b0383811660048301526000928392911690634e6dd2dc9060240160206040518083038186803b15801561141a57600080fd5b505afa15801561142e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114529190611938565b600b54604051632fa0c80d60e01b81526001600160a01b03868116600483015290911690632fa0c80d9060240160206040518083038186803b15801561149757600080fd5b505afa1580156114ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114cf9190611938565b6114d99190611a29565b600b5460405163d1114ddd60e01b81526001600160a01b03868116600483015261ffff9390931693506000929091169063d1114ddd9060240160206040518083038186803b15801561152a57600080fd5b505afa15801561153e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611562919061195c565b61157490670de0b6b3a7640000611a89565b600b5460405163139b74b760e21b81526001600160a01b038781166004830152681043561a8829300000921690634e6dd2dc9060240160206040518083038186803b1580156115c257600080fd5b505afa1580156115d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115fa9190611938565b61ffff166116089190611a89565b600b54604051632fa0c80d60e01b81526001600160a01b03888116600483015268056bc75e2d63100000921690632fa0c80d9060240160206040518083038186803b15801561165657600080fd5b505afa15801561166a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061168e9190611938565b61ffff1661169c9190611a89565b6116a69190611a4f565b6116b09190611a4f565b905060148263ffffffff1611156116d3576116cc600282611a67565b92506116f1565b60328263ffffffff1611156116ed576116cc600482611a67565b8092505b5050919050565b6001600160a01b0382166117585760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104a5565b6001600160a01b038216600090815260208190526040902054818110156117cc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104a5565b6001600160a01b03831660009081526020819052604081208383039055600280548492906117fb908490611aa8565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b80356001600160a01b038116811461185d57600080fd5b919050565b60006020828403121561187457600080fd5b61091e82611846565b6000806040838503121561189057600080fd5b61189983611846565b91506118a760208401611846565b90509250929050565b6000806000606084860312156118c557600080fd5b6118ce84611846565b92506118dc60208501611846565b9150604084013590509250925092565b600080604083850312156118ff57600080fd5b61190883611846565b946020939093013593505050565b60006020828403121561192857600080fd5b8135801515811461091e57600080fd5b60006020828403121561194a57600080fd5b815161ffff8116811461091e57600080fd5b60006020828403121561196e57600080fd5b5051919050565b600060208083528351808285015260005b818110156119a257858101830151858201604001528201611986565b818111156119b4576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600061ffff808316818516808303821115611a4657611a46611afa565b01949350505050565b60008219821115611a6257611a62611afa565b500190565b600082611a8457634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615611aa357611aa3611afa565b500290565b600082821015611aba57611aba611afa565b500390565b600181811c90821680611ad357607f821691505b60208210811415611af457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220df1fd56b1bbedb11376548fa20c9c67a32573d368133bd25597c98e62d986ab664736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101e55760003560e01c80635a2e2f471161010f578063970ce67a116100a2578063de4a2fa411610071578063de4a2fa414610422578063df242ed514610442578063e34fa0e414610455578063f2fde38b1461046857600080fd5b8063970ce67a146103b3578063a457c2d7146103c3578063a9059cbb146103d6578063dd62ed3e146103e957600080fd5b8063715018a6116100de578063715018a61461037f57806375b39451146103875780638da5cb5b1461039a57806395d89b41146103ab57600080fd5b80635a2e2f47146103345780635c975abb14610347578063704802751461035957806370a082311461036c57600080fd5b806318160ddd1161018757806337b64b4c1161015657806337b64b4c146102d057806339509351146102e357806340c10f19146102f65780634bcda6841461030957600080fd5b806318160ddd1461028c57806323b872dd1461029e5780632d755beb146102b1578063313ce567146102c157600080fd5b8063095ea7b3116101c3578063095ea7b3146102305780630d25df871461025357806316c38b3c146102665780631785f53c1461027957600080fd5b806304f3c40e146101ea57806306fdde03146101ff578063072788681461021d575b600080fd5b6101fd6101f8366004611862565b61047b565b005b610207610520565b6040516102149190611975565b60405180910390f35b6101fd61022b3660046118ec565b6105b2565b61024361023e3660046118ec565b610645565b6040519015158152602001610214565b6101fd610261366004611862565b61065b565b6101fd610274366004611916565b6107ee565b6101fd610287366004611862565b610831565b6002545b604051908152602001610214565b6102436102ac3660046118b0565b61087c565b610290681043561a882930000081565b60405160128152602001610214565b6102906102de366004611862565b610925565b6102436102f13660046118ec565b610936565b6101fd6103043660046118ec565b610972565b600a5461031c906001600160a01b031681565b6040516001600160a01b039091168152602001610214565b6101fd610342366004611862565b6109fa565b600554600160a01b900460ff16610243565b6101fd610367366004611862565b610a46565b61029061037a366004611862565b610a94565b6101fd610ab2565b610290610395366004611862565b610ae8565b6005546001600160a01b031661031c565b610207610af3565b61029068056bc75e2d6310000081565b6102436103d13660046118ec565b610b02565b6102436103e43660046118ec565b610b9b565b6102906103f736600461187d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610290610430366004611862565b60086020526000908152604090205481565b600b5461031c906001600160a01b031681565b6101fd6104633660046118ec565b610ba8565b6101fd610476366004611862565b610c99565b600554600160a01b900460ff16156104ae5760405162461bcd60e51b81526004016104a5906119ca565b60405180910390fd5b3360009081526007602052604090205460ff166105085760405162461bcd60e51b81526020600482015260186024820152774f6e6c792061646d696e73202d20636c61696d426f6f747960401b60448201526064016104a5565b683635c9adc5dea0000061051c8282610d31565b5050565b60606003805461052f90611abf565b80601f016020809104026020016040519081016040528092919081815260200182805461055b90611abf565b80156105a85780601f1061057d576101008083540402835291602001916105a8565b820191906000526020600020905b81548152906001019060200180831161058b57829003601f168201915b5050505050905090565b600554600160a01b900460ff16156105dc5760405162461bcd60e51b81526004016104a5906119ca565b3360009081526007602052604090205460ff1661063b5760405162461bcd60e51b815260206004820152601c60248201527f4f6e6c792061646d696e732063616e206275726e45787465726e616c0000000060448201526064016104a5565b61051c8282610e10565b6000610652338484610e98565b50600192915050565b600554600160a01b900460ff16156106855760405162461bcd60e51b81526004016104a5906119ca565b3360009081526007602052604090205460ff166106df5760405162461bcd60e51b81526020600482015260186024820152774f6e6c792061646d696e73202d20636c61696d426f6f747960401b60448201526064016104a5565b60006106ea82610fbc565b6001600160a01b038316600090815260086020526040812080549293508392909190610717908490611a4f565b90915550506001600160a01b038216600090815260086020526040902054806107785760405162461bcd60e51b8152602060048201526013602482015272446f6e74206861766520616e7920424f4f545960681b60448201526064016104a5565b6107828382610972565b826001600160a01b03167fc3d93ac25c1b5ee666dc31bde590f9ec07d4f57d1d22ed021eb19aa8392556d0826040516107bd91815260200190565b60405180910390a250506001600160a01b031660009081526006602090815260408083204290556008909152812055565b6005546001600160a01b031633146108185760405162461bcd60e51b81526004016104a5906119f4565b801561082957610826611000565b50565b610826611082565b6005546001600160a01b0316331461085b5760405162461bcd60e51b81526004016104a5906119f4565b6001600160a01b03166000908152600760205260409020805460ff19169055565b3360009081526007602052604081205460ff166108e55760405162461bcd60e51b815260206004820152602160248201527f4f6e6c792061646d696e732063616e2063616c6c207472616e7366657246726f6044820152606d60f81b60648201526084016104a5565b3360009081526007602052604090205460ff161561091057610908848484611106565b50600161091e565b61091b8484846112d5565b90505b9392505050565b600061093082610fbc565b92915050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161065291859061096d908690611a4f565b610e98565b600554600160a01b900460ff161561099c5760405162461bcd60e51b81526004016104a5906119ca565b3360009081526007602052604090205460ff166109f05760405162461bcd60e51b815260206004820152601260248201527113db9b1e4818591b5a5b9cc80b481b5a5b9d60721b60448201526064016104a5565b61051c8282610d31565b6005546001600160a01b03163314610a245760405162461bcd60e51b81526004016104a5906119f4565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610a705760405162461bcd60e51b81526004016104a5906119f4565b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b6001600160a01b038116600090815260208190526040812054610930565b6005546001600160a01b03163314610adc5760405162461bcd60e51b81526004016104a5906119f4565b610ae6600061137f565b565b6000610930826113d1565b60606004805461052f90611abf565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610b845760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104a5565b610b913385858403610e98565b5060019392505050565b6000610652338484611106565b600554600160a01b900460ff1615610bd25760405162461bcd60e51b81526004016104a5906119ca565b3360009081526007602052604090205460ff16610c3c5760405162461bcd60e51b815260206004820152602260248201527f4f6e6c792061646d696e732063616e2063616c6c20696e697454696d6553746160448201526106d760f41b60648201526084016104a5565b6001600160a01b0382166000908152600660205260409020548015610c7b576001600160a01b0383166000908152600660205260409020819055505050565b506001600160a01b0391909116600090815260066020526040902055565b6005546001600160a01b03163314610cc35760405162461bcd60e51b81526004016104a5906119f4565b6001600160a01b038116610d285760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104a5565b6108268161137f565b6001600160a01b038216610d875760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104a5565b8060026000828254610d999190611a4f565b90915550506001600160a01b03821660009081526020819052604081208054839290610dc6908490611a4f565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600554600160a01b900460ff1615610e3a5760405162461bcd60e51b81526004016104a5906119ca565b3360009081526007602052604090205460ff16610e8e5760405162461bcd60e51b815260206004820152601260248201527127b7363c9030b236b4b739901690313ab93760711b60448201526064016104a5565b61051c82826116f8565b6001600160a01b038316610efa5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104a5565b6001600160a01b038216610f5b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104a5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03811660009081526006602052604081205462015180610fe38242611aa8565b610fec856113d1565b610ff69190611a89565b61091e9190611a67565b600554600160a01b900460ff161561102a5760405162461bcd60e51b81526004016104a5906119ca565b6005805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586110653390565b6040516001600160a01b03909116815260200160405180910390a1565b600554600160a01b900460ff166110d25760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016104a5565b6005805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33611065565b6001600160a01b03831661116a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104a5565b6001600160a01b0382166111cc5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104a5565b6001600160a01b038316600090815260208190526040902054818110156112445760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104a5565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061127b908490611a4f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112c791815260200190565b60405180910390a350505050565b60006112e2848484611106565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156113675760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016104a5565b6113748533858403610e98565b506001949350505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b5460405163139b74b760e21b81526001600160a01b0383811660048301526000928392911690634e6dd2dc9060240160206040518083038186803b15801561141a57600080fd5b505afa15801561142e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114529190611938565b600b54604051632fa0c80d60e01b81526001600160a01b03868116600483015290911690632fa0c80d9060240160206040518083038186803b15801561149757600080fd5b505afa1580156114ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114cf9190611938565b6114d99190611a29565b600b5460405163d1114ddd60e01b81526001600160a01b03868116600483015261ffff9390931693506000929091169063d1114ddd9060240160206040518083038186803b15801561152a57600080fd5b505afa15801561153e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611562919061195c565b61157490670de0b6b3a7640000611a89565b600b5460405163139b74b760e21b81526001600160a01b038781166004830152681043561a8829300000921690634e6dd2dc9060240160206040518083038186803b1580156115c257600080fd5b505afa1580156115d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115fa9190611938565b61ffff166116089190611a89565b600b54604051632fa0c80d60e01b81526001600160a01b03888116600483015268056bc75e2d63100000921690632fa0c80d9060240160206040518083038186803b15801561165657600080fd5b505afa15801561166a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061168e9190611938565b61ffff1661169c9190611a89565b6116a69190611a4f565b6116b09190611a4f565b905060148263ffffffff1611156116d3576116cc600282611a67565b92506116f1565b60328263ffffffff1611156116ed576116cc600482611a67565b8092505b5050919050565b6001600160a01b0382166117585760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104a5565b6001600160a01b038216600090815260208190526040902054818110156117cc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104a5565b6001600160a01b03831660009081526020819052604081208383039055600280548492906117fb908490611aa8565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b80356001600160a01b038116811461185d57600080fd5b919050565b60006020828403121561187457600080fd5b61091e82611846565b6000806040838503121561189057600080fd5b61189983611846565b91506118a760208401611846565b90509250929050565b6000806000606084860312156118c557600080fd5b6118ce84611846565b92506118dc60208501611846565b9150604084013590509250925092565b600080604083850312156118ff57600080fd5b61190883611846565b946020939093013593505050565b60006020828403121561192857600080fd5b8135801515811461091e57600080fd5b60006020828403121561194a57600080fd5b815161ffff8116811461091e57600080fd5b60006020828403121561196e57600080fd5b5051919050565b600060208083528351808285015260005b818110156119a257858101830151858201604001528201611986565b818111156119b4576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600061ffff808316818516808303821115611a4657611a46611afa565b01949350505050565b60008219821115611a6257611a62611afa565b500190565b600082611a8457634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615611aa357611aa3611afa565b500290565b600082821015611aba57611aba611afa565b500390565b600181811c90821680611ad357607f821691505b60208210811415611af457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220df1fd56b1bbedb11376548fa20c9c67a32573d368133bd25597c98e62d986ab664736f6c63430008070033
Deployed Bytecode Sourcemap
36566:4344:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37315:191;;;;;;:::i;:::-;;:::i;:::-;;26320:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39422:183;;;;;;:::i;:::-;;:::i;28487:169::-;;;;;;:::i;:::-;;:::i;:::-;;;2361:14:1;;2354:22;2336:41;;2324:2;2309:18;28487:169:0;2196:187:1;37860:485:0;;;;;;:::i;:::-;;:::i;40514:108::-;;;;;;:::i;:::-;;:::i;40818:87::-;;;;;;:::i;:::-;;:::i;27440:108::-;27528:12;;27440:108;;;11605:25:1;;;11593:2;11578:18;27440:108:0;11459:177:1;39980:369:0;;;;;;:::i;:::-;;:::i;36722:55::-;;36768:9;36722:55;;27282:93;;;27365:2;11783:36:1;;11771:2;11756:18;27282:93:0;11641:184:1;39136:139:0;;;;;;:::i;:::-;;:::i;30039:215::-;;;;;;:::i;:::-;;:::i;37512:151::-;;;;;;:::i;:::-;;:::i;37175:19::-;;;;;-1:-1:-1;;;;;37175:19:0;;;;;;-1:-1:-1;;;;;2152:32:1;;;2134:51;;2122:2;2107:18;37175:19:0;1988:203:1;40628:95:0;;;;;;:::i;:::-;;:::i;16842:86::-;16913:7;;-1:-1:-1;;;16913:7:0;;;;16842:86;;40729:83;;;;;;:::i;:::-;;:::i;40355:134::-;;;;;;:::i;:::-;;:::i;19741:103::-;;;:::i;39282:133::-;;;;;;:::i;:::-;;:::i;19090:87::-;19163:6;;-1:-1:-1;;;;;19163:6:0;19090:87;;26539:104;;;:::i;36782:52::-;;36825:9;36782:52;;30757:413;;;;;;:::i;:::-;;:::i;27951:175::-;;;;;;:::i;:::-;;:::i;28189:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;28305:18:0;;;28278:7;28305:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;28189:151;36946:47;;;;;;:::i;:::-;;;;;;;;;;;;;;37199:19;;;;;-1:-1:-1;;;;;37199:19:0;;;39611:363;;;;;;:::i;:::-;;:::i;19999:201::-;;;;;;:::i;:::-;;:::i;37315:191::-;16913:7;;-1:-1:-1;;;16913:7:0;;;;17167:9;17159:38;;;;-1:-1:-1;;;17159:38:0;;;;;;;:::i;:::-;;;;;;;;;15576:10;37393:20:::1;::::0;;;:6:::1;:20;::::0;;;;;::::1;;37385:57;;;::::0;-1:-1:-1;;;37385:57:0;;4390:2:1;37385:57:0::1;::::0;::::1;4372:21:1::0;4429:2;4409:18;;;4402:30;-1:-1:-1;;;4448:18:1;;;4441:54;4512:18;;37385:57:0::1;4188:348:1::0;37385:57:0::1;37466:10;37483:17;37489:2:::0;37466:10;37483:5:::1;:17::i;:::-;37378:128;37315:191:::0;:::o;26320:100::-;26374:13;26407:5;26400:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26320:100;:::o;39422:183::-;16913:7;;-1:-1:-1;;;16913:7:0;;;;17167:9;17159:38;;;;-1:-1:-1;;;17159:38:0;;;;;;;:::i;:::-;15576:10;39521:20:::1;::::0;;;:6:::1;:20;::::0;;;;;::::1;;39513:61;;;::::0;-1:-1:-1;;;39513:61:0;;6710:2:1;39513:61:0::1;::::0;::::1;6692:21:1::0;6749:2;6729:18;;;6722:30;6788;6768:18;;;6761:58;6836:18;;39513:61:0::1;6508:352:1::0;39513:61:0::1;39581:18;39586:4;39592:6;39581:4;:18::i;28487:169::-:0;28570:4;28587:39;15576:10;28610:7;28619:6;28587:8;:39::i;:::-;-1:-1:-1;28644:4:0;28487:169;;;;:::o;37860:485::-;16913:7;;-1:-1:-1;;;16913:7:0;;;;17167:9;17159:38;;;;-1:-1:-1;;;17159:38:0;;;;;;;:::i;:::-;15576:10;37942:20:::1;::::0;;;:6:::1;:20;::::0;;;;;::::1;;37934:57;;;::::0;-1:-1:-1;;;37934:57:0;;4390:2:1;37934:57:0::1;::::0;::::1;4372:21:1::0;4429:2;4409:18;;;4402:30;-1:-1:-1;;;4448:18:1;;;4441:54;4512:18;;37934:57:0::1;4188:348:1::0;37934:57:0::1;37998:20;38021:23;38038:5;38021:16;:23::i;:::-;-1:-1:-1::0;;;;;38055:19:0;::::1;;::::0;;;:12:::1;:19;::::0;;;;:35;;37998:46;;-1:-1:-1;37998:46:0;;38055:19;;;:35:::1;::::0;37998:46;;38055:35:::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;38118:19:0;::::1;38096;38118::::0;;;:12:::1;:19;::::0;;;;;38152:15;38144:47:::1;;;::::0;-1:-1:-1;;;38144:47:0;;9740:2:1;38144:47:0::1;::::0;::::1;9722:21:1::0;9779:2;9759:18;;;9752:30;-1:-1:-1;;;9798:18:1;;;9791:49;9857:18;;38144:47:0::1;9538:343:1::0;38144:47:0::1;38196:24;38201:5;38208:11;38196:4;:24::i;:::-;38240:5;-1:-1:-1::0;;;;;38230:29:0::1;;38247:11;38230:29;;;;11605:25:1::0;;11593:2;11578:18;;11459:177;38230:29:0::1;;;;;;;;-1:-1:-1::0;;;;;;;38266:25:0::1;;::::0;;;:18:::1;:25;::::0;;;;;;;38294:15:::1;38266:43:::0;;38316:12:::1;:19:::0;;;;;:23;37860:485::o;40514:108::-;19163:6;;-1:-1:-1;;;;;19163:6:0;15576:10;19310:23;19302:68;;;;-1:-1:-1;;;19302:68:0;;;;;;;:::i;:::-;40577:7:::1;40573:43;;;40586:8;:6;:8::i;:::-;40514:108:::0;:::o;40573:43::-:1;40606:10;:8;:10::i;40818:87::-:0;19163:6;;-1:-1:-1;;;;;19163:6:0;15576:10;19310:23;19302:68;;;;-1:-1:-1;;;19302:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40879:12:0::1;40894:5;40879:12:::0;;;:6:::1;:12;::::0;;;;:20;;-1:-1:-1;;40879:20:0::1;::::0;;40818:87::o;39980:369::-;15576:10;40101:4;40122:20;;;:6;:20;;;;;;;;40114:66;;;;-1:-1:-1;;;40114:66:0;;10493:2:1;40114:66:0;;;10475:21:1;10532:2;10512:18;;;10505:30;10571:34;10551:18;;;10544:62;-1:-1:-1;;;10622:18:1;;;10615:31;10663:19;;40114:66:0;10291:397:1;40114:66:0;15576:10;40190:20;;;;:6;:20;;;;;;;;40187:98;;;40221:36;40231:6;40239:9;40250:6;40221:9;:36::i;:::-;-1:-1:-1;40273:4:0;40266:11;;40187:98;40298:45;40317:6;40325:9;40336:6;40298:18;:45::i;:::-;40291:52;;39980:369;;;;;;:::o;39136:139::-;39213:15;39246:23;39263:5;39246:16;:23::i;:::-;39236:33;39136:139;-1:-1:-1;;39136:139:0:o;30039:215::-;15576:10;30127:4;30176:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;30176:34:0;;;;;;;;;;30127:4;;30144:80;;30167:7;;30176:47;;30213:10;;30176:47;:::i;:::-;30144:8;:80::i;37512:151::-;16913:7;;-1:-1:-1;;;16913:7:0;;;;17167:9;17159:38;;;;-1:-1:-1;;;17159:38:0;;;;;;;:::i;:::-;15576:10;37590:20:::1;::::0;;;:6:::1;:20;::::0;;;;;::::1;;37582:51;;;::::0;-1:-1:-1;;;37582:51:0;;5956:2:1;37582:51:0::1;::::0;::::1;5938:21:1::0;5995:2;5975:18;;;5968:30;-1:-1:-1;;;6014:18:1;;;6007:48;6072:18;;37582:51:0::1;5754:342:1::0;37582:51:0::1;37640:17;37646:2;37650:6;37640:5;:17::i;40628:95::-:0;19163:6;;-1:-1:-1;;;;;19163:6:0;15576:10;19310:23;19302:68;;;;-1:-1:-1;;;19302:68:0;;;;;;;:::i;:::-;40694:4:::1;:21:::0;;-1:-1:-1;;;;;;40694:21:0::1;-1:-1:-1::0;;;;;40694:21:0;;;::::1;::::0;;;::::1;::::0;;40628:95::o;40729:83::-;19163:6;;-1:-1:-1;;;;;19163:6:0;15576:10;19310:23;19302:68;;;;-1:-1:-1;;;19302:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40787:12:0::1;;::::0;;;:6:::1;:12;::::0;;;;:19;;-1:-1:-1;;40787:19:0::1;40802:4;40787:19;::::0;;40729:83::o;40355:134::-;-1:-1:-1;;;;;27712:18:0;;40436:7;27712:18;;;;;;;;;;;40459:24;27611:127;19741:103;19163:6;;-1:-1:-1;;;;;19163:6:0;15576:10;19310:23;19302:68;;;;-1:-1:-1;;;19302:68:0;;;;;;;:::i;:::-;19806:30:::1;19833:1;19806:18;:30::i;:::-;19741:103::o:0;39282:133::-;39354:17;39391:18;39403:5;39391:11;:18::i;26539:104::-;26595:13;26628:7;26621:14;;;;;:::i;30757:413::-;15576:10;30850:4;30894:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;30894:34:0;;;;;;;;;;30947:35;;;;30939:85;;;;-1:-1:-1;;;30939:85:0;;10895:2:1;30939:85:0;;;10877:21:1;10934:2;10914:18;;;10907:30;10973:34;10953:18;;;10946:62;-1:-1:-1;;;11024:18:1;;;11017:35;11069:19;;30939:85:0;10693:401:1;30939:85:0;31060:67;15576:10;31083:7;31111:15;31092:16;:34;31060:8;:67::i;:::-;-1:-1:-1;31158:4:0;;30757:413;-1:-1:-1;;;30757:413:0:o;27951:175::-;28037:4;28054:42;15576:10;28078:9;28089:6;28054:9;:42::i;39611:363::-;16913:7;;-1:-1:-1;;;16913:7:0;;;;17167:9;17159:38;;;;-1:-1:-1;;;17159:38:0;;;;;;;:::i;:::-;15576:10;39715:20:::1;::::0;;;:6:::1;:20;::::0;;;;;::::1;;39707:67;;;::::0;-1:-1:-1;;;39707:67:0;;8182:2:1;39707:67:0::1;::::0;::::1;8164:21:1::0;8221:2;8201:18;;;8194:30;8260:34;8240:18;;;8233:62;-1:-1:-1;;;8311:18:1;;;8304:32;8353:19;;39707:67:0::1;7980:398:1::0;39707:67:0::1;-1:-1:-1::0;;;;;39802:25:0;::::1;39781:18;39802:25:::0;;;:18:::1;:25;::::0;;;;;39838:14;;39834:135:::1;;-1:-1:-1::0;;;;;39863:25:0;::::1;;::::0;;;:18:::1;:25;::::0;;;;:38;;;39700:274:::1;39611:363:::0;;:::o;39834:135::-:1;-1:-1:-1::0;;;;;;39924:25:0;;;::::1;;::::0;;;:18:::1;:25;::::0;;;;:37;39611:363::o;19999:201::-;19163:6;;-1:-1:-1;;;;;19163:6:0;15576:10;19310:23;19302:68;;;;-1:-1:-1;;;19302:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20088:22:0;::::1;20080:73;;;::::0;-1:-1:-1;;;20080:73:0;;5146:2:1;20080:73:0::1;::::0;::::1;5128:21:1::0;5185:2;5165:18;;;5158:30;5224:34;5204:18;;;5197:62;-1:-1:-1;;;5275:18:1;;;5268:36;5321:19;;20080:73:0::1;4944:402:1::0;20080:73:0::1;20164:28;20183:8;20164:18;:28::i;32680:399::-:0;-1:-1:-1;;;;;32764:21:0;;32756:65;;;;-1:-1:-1;;;32756:65:0;;11301:2:1;32756:65:0;;;11283:21:1;11340:2;11320:18;;;11313:30;11379:33;11359:18;;;11352:61;11430:18;;32756:65:0;11099:355:1;32756:65:0;32912:6;32896:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;32929:18:0;;:9;:18;;;;;;;;;;:28;;32951:6;;32929:9;:28;;32951:6;;32929:28;:::i;:::-;;;;-1:-1:-1;;32973:37:0;;11605:25:1;;;-1:-1:-1;;;;;32973:37:0;;;32990:1;;32973:37;;11593:2:1;11578:18;32973:37:0;;;;;;;37378:128:::1;37315:191:::0;:::o;37669:157::-;16913:7;;-1:-1:-1;;;16913:7:0;;;;17167:9;17159:38;;;;-1:-1:-1;;;17159:38:0;;;;;;;:::i;:::-;15576:10;37751:20:::1;::::0;;;:6:::1;:20;::::0;;;;;::::1;;37743:51;;;::::0;-1:-1:-1;;;37743:51:0;;8987:2:1;37743:51:0::1;::::0;::::1;8969:21:1::0;9026:2;9006:18;;;8999:30;-1:-1:-1;;;9045:18:1;;;9038:48;9103:18;;37743:51:0::1;8785:342:1::0;37743:51:0::1;37801:19;37807:4;37813:6;37801:5;:19::i;34441:380::-:0;-1:-1:-1;;;;;34577:19:0;;34569:68;;;;-1:-1:-1;;;34569:68:0;;10088:2:1;34569:68:0;;;10070:21:1;10127:2;10107:18;;;10100:30;10166:34;10146:18;;;10139:62;-1:-1:-1;;;10217:18:1;;;10210:34;10261:19;;34569:68:0;9886:400:1;34569:68:0;-1:-1:-1;;;;;34656:21:0;;34648:68;;;;-1:-1:-1;;;34648:68:0;;5553:2:1;34648:68:0;;;5535:21:1;5592:2;5572:18;;;5565:30;5631:34;5611:18;;;5604:62;-1:-1:-1;;;5682:18:1;;;5675:32;5724:19;;34648:68:0;5351:398:1;34648:68:0;-1:-1:-1;;;;;34729:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;34781:32;;11605:25:1;;;34781:32:0;;11578:18:1;34781:32:0;;;;;;;34441:380;;;:::o;38352:217::-;-1:-1:-1;;;;;38460:25:0;;38416:15;38460:25;;;:18;:25;;;;;;38558:5;38525:28;38460:25;38525:15;:28;:::i;:::-;38503:18;38515:5;38503:11;:18::i;:::-;:51;;;;:::i;:::-;38502:61;;;;:::i;17642:118::-;16913:7;;-1:-1:-1;;;16913:7:0;;;;17167:9;17159:38;;;;-1:-1:-1;;;17159:38:0;;;;;;;:::i;:::-;17702:7:::1;:14:::0;;-1:-1:-1;;;;17702:14:0::1;-1:-1:-1::0;;;17702:14:0::1;::::0;;17732:20:::1;17739:12;15576:10:::0;;15496:98;17739:12:::1;17732:20;::::0;-1:-1:-1;;;;;2152:32:1;;;2134:51;;2122:2;2107:18;17732:20:0::1;;;;;;;17642:118::o:0;17901:120::-;16913:7;;-1:-1:-1;;;16913:7:0;;;;17437:41;;;;-1:-1:-1;;;17437:41:0;;4041:2:1;17437:41:0;;;4023:21:1;4080:2;4060:18;;;4053:30;-1:-1:-1;;;4099:18:1;;;4092:50;4159:18;;17437:41:0;3839:344:1;17437:41:0;17960:7:::1;:15:::0;;-1:-1:-1;;;;17960:15:0::1;::::0;;17991:22:::1;15576:10:::0;18000:12:::1;15496:98:::0;31660:733;-1:-1:-1;;;;;31800:20:0;;31792:70;;;;-1:-1:-1;;;31792:70:0;;9334:2:1;31792:70:0;;;9316:21:1;9373:2;9353:18;;;9346:30;9412:34;9392:18;;;9385:62;-1:-1:-1;;;9463:18:1;;;9456:35;9508:19;;31792:70:0;9132:401:1;31792:70:0;-1:-1:-1;;;;;31881:23:0;;31873:71;;;;-1:-1:-1;;;31873:71:0;;3637:2:1;31873:71:0;;;3619:21:1;3676:2;3656:18;;;3649:30;3715:34;3695:18;;;3688:62;-1:-1:-1;;;3766:18:1;;;3759:33;3809:19;;31873:71:0;3435:399:1;31873:71:0;-1:-1:-1;;;;;32041:17:0;;32017:21;32041:17;;;;;;;;;;;32077:23;;;;32069:74;;;;-1:-1:-1;;;32069:74:0;;6303:2:1;32069:74:0;;;6285:21:1;6342:2;6322:18;;;6315:30;6381:34;6361:18;;;6354:62;-1:-1:-1;;;6432:18:1;;;6425:36;6478:19;;32069:74:0;6101:402:1;32069:74:0;-1:-1:-1;;;;;32179:17:0;;;:9;:17;;;;;;;;;;;32199:22;;;32179:42;;32243:20;;;;;;;;:30;;32215:6;;32179:9;32243:30;;32215:6;;32243:30;:::i;:::-;;;;;;;;32308:9;-1:-1:-1;;;;;32291:35:0;32300:6;-1:-1:-1;;;;;32291:35:0;;32319:6;32291:35;;;;11605:25:1;;11593:2;11578:18;;11459:177;32291:35:0;;;;;;;;31781:612;31660:733;;;:::o;29138:492::-;29278:4;29295:36;29305:6;29313:9;29324:6;29295:9;:36::i;:::-;-1:-1:-1;;;;;29371:19:0;;29344:24;29371:19;;;:11;:19;;;;;;;;15576:10;29371:33;;;;;;;;29423:26;;;;29415:79;;;;-1:-1:-1;;;29415:79:0;;7412:2:1;29415:79:0;;;7394:21:1;7451:2;7431:18;;;7424:30;7490:34;7470:18;;;7463:62;-1:-1:-1;;;7541:18:1;;;7534:38;7589:19;;29415:79:0;7210:404:1;29415:79:0;29530:57;29539:6;15576:10;29580:6;29561:16;:25;29530:8;:57::i;:::-;-1:-1:-1;29618:4:0;;29138:492;-1:-1:-1;;;;29138:492:0:o;20360:191::-;20453:6;;;-1:-1:-1;;;;;20470:17:0;;;-1:-1:-1;;;;;;20470:17:0;;;;;;;20503:40;;20453:6;;;20470:17;20453:6;;20503:40;;20434:16;;20503:40;20423:128;20360:191;:::o;38575:533::-;38709:4;;:29;;-1:-1:-1;;;38709:29:0;;-1:-1:-1;;;;;2152:32:1;;;38709:29:0;;;2134:51:1;38633:17:0;;;;38709:4;;;:22;;2107:18:1;;38709:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38680:4;;:26;;-1:-1:-1;;;38680:26:0;;-1:-1:-1;;;;;2152:32:1;;;38680:26:0;;;2134:51:1;38680:4:0;;;;:19;;2107:18:1;;38680:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:58;;;;:::i;:::-;38874:4;;:24;;-1:-1:-1;;;38874:24:0;;-1:-1:-1;;;;;2152:32:1;;;38874:24:0;;;2134:51:1;38659:79:0;;;;;;-1:-1:-1;38745:18:0;;38874:4;;;;:17;;2107:18:1;;38874:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:33;;38900:6;38874:33;:::i;:::-;38818:4;;:29;;-1:-1:-1;;;38818:29:0;;-1:-1:-1;;;;;2152:32:1;;;38818:29:0;;;2134:51:1;36768:9:0;;38818:4;;:22;;2107:18:1;;38818:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:51;;;;;;:::i;:::-;38768:4;;:26;;-1:-1:-1;;;38768:26:0;;-1:-1:-1;;;;;2152:32:1;;;38768:26:0;;;2134:51:1;36825:9:0;;38768:4;;:19;;2107:18:1;;38768:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:45;;;;;;:::i;:::-;38767:103;;;;:::i;:::-;:141;;;;:::i;:::-;38745:164;;38934:2;38920:11;:16;;;38916:187;;;38961:14;38974:1;38961:10;:14;:::i;:::-;38949:26;;38916:187;;;39007:2;38993:11;:16;;;38989:114;;;39034:14;39047:1;39034:10;:14;:::i;38989:114::-;39085:10;39073:22;;38989:114;38652:456;;38575:533;;;:::o;33412:591::-;-1:-1:-1;;;;;33496:21:0;;33488:67;;;;-1:-1:-1;;;33488:67:0;;8585:2:1;33488:67:0;;;8567:21:1;8624:2;8604:18;;;8597:30;8663:34;8643:18;;;8636:62;-1:-1:-1;;;8714:18:1;;;8707:31;8755:19;;33488:67:0;8383:397:1;33488:67:0;-1:-1:-1;;;;;33655:18:0;;33630:22;33655:18;;;;;;;;;;;33692:24;;;;33684:71;;;;-1:-1:-1;;;33684:71:0;;4743:2:1;33684:71:0;;;4725:21:1;4782:2;4762:18;;;4755:30;4821:34;4801:18;;;4794:62;-1:-1:-1;;;4872:18:1;;;4865:32;4914:19;;33684:71:0;4541:398:1;33684:71:0;-1:-1:-1;;;;;33791:18:0;;:9;:18;;;;;;;;;;33812:23;;;33791:44;;33857:12;:22;;33829:6;;33791:9;33857:22;;33829:6;;33857:22;:::i;:::-;;;;-1:-1:-1;;33897:37:0;;11605:25:1;;;33923:1:0;;-1:-1:-1;;;;;33897:37:0;;;;;11593:2:1;11578:18;33897:37:0;;;;;;;39700:274:::1;39611:363:::0;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:52;;;1126:1;1123;1116:12;1078:52;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;981:254:1:o;1240:273::-;1296:6;1349:2;1337:9;1328:7;1324:23;1320:32;1317:52;;;1365:1;1362;1355:12;1317:52;1404:9;1391:23;1457:5;1450:13;1443:21;1436:5;1433:32;1423:60;;1479:1;1476;1469:12;1518:276;1587:6;1640:2;1628:9;1619:7;1615:23;1611:32;1608:52;;;1656:1;1653;1646:12;1608:52;1688:9;1682:16;1738:6;1731:5;1727:18;1720:5;1717:29;1707:57;;1760:1;1757;1750:12;1799:184;1869:6;1922:2;1910:9;1901:7;1897:23;1893:32;1890:52;;;1938:1;1935;1928:12;1890:52;-1:-1:-1;1961:16:1;;1799:184;-1:-1:-1;1799:184:1:o;2833:597::-;2945:4;2974:2;3003;2992:9;2985:21;3035:6;3029:13;3078:6;3073:2;3062:9;3058:18;3051:34;3103:1;3113:140;3127:6;3124:1;3121:13;3113:140;;;3222:14;;;3218:23;;3212:30;3188:17;;;3207:2;3184:26;3177:66;3142:10;;3113:140;;;3271:6;3268:1;3265:13;3262:91;;;3341:1;3336:2;3327:6;3316:9;3312:22;3308:31;3301:42;3262:91;-1:-1:-1;3414:2:1;3393:15;-1:-1:-1;;3389:29:1;3374:45;;;;3421:2;3370:54;;2833:597;-1:-1:-1;;;2833:597:1:o;6865:340::-;7067:2;7049:21;;;7106:2;7086:18;;;7079:30;-1:-1:-1;;;7140:2:1;7125:18;;7118:46;7196:2;7181:18;;6865:340::o;7619:356::-;7821:2;7803:21;;;7840:18;;;7833:30;7899:34;7894:2;7879:18;;7872:62;7966:2;7951:18;;7619:356::o;11830:224::-;11869:3;11897:6;11930:2;11927:1;11923:10;11960:2;11957:1;11953:10;11991:3;11987:2;11983:12;11978:3;11975:21;11972:47;;;11999:18;;:::i;:::-;12035:13;;11830:224;-1:-1:-1;;;;11830:224:1:o;12059:128::-;12099:3;12130:1;12126:6;12123:1;12120:13;12117:39;;;12136:18;;:::i;:::-;-1:-1:-1;12172:9:1;;12059:128::o;12192:217::-;12232:1;12258;12248:132;;12302:10;12297:3;12293:20;12290:1;12283:31;12337:4;12334:1;12327:15;12365:4;12362:1;12355:15;12248:132;-1:-1:-1;12394:9:1;;12192:217::o;12414:168::-;12454:7;12520:1;12516;12512:6;12508:14;12505:1;12502:21;12497:1;12490:9;12483:17;12479:45;12476:71;;;12527:18;;:::i;:::-;-1:-1:-1;12567:9:1;;12414:168::o;12587:125::-;12627:4;12655:1;12652;12649:8;12646:34;;;12660:18;;:::i;:::-;-1:-1:-1;12697:9:1;;12587:125::o;12717:380::-;12796:1;12792:12;;;;12839;;;12860:61;;12914:4;12906:6;12902:17;12892:27;;12860:61;12967:2;12959:6;12956:14;12936:18;12933:38;12930:161;;;13013:10;13008:3;13004:20;13001:1;12994:31;13048:4;13045:1;13038:15;13076:4;13073:1;13066:15;12930:161;;12717:380;;;:::o;13102:127::-;13163:10;13158:3;13154:20;13151:1;13144:31;13194:4;13191:1;13184:15;13218:4;13215:1;13208:15
Swarm Source
ipfs://df1fd56b1bbedb11376548fa20c9c67a32573d368133bd25597c98e62d986ab6
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.