Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
0x60806040 | 18642168 | 368 days ago | IN | 0 ETH | 0.03627772 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
RektToken
Compiler Version
v0.8.12+commit.f00d7308
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-11-24 */ // Sources flattened with hardhat v2.12.6 https://hardhat.org // File @openzeppelin/contracts-upgradeable/utils/[email protected] // MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File @openzeppelin/contracts-upgradeable/proxy/utils/[email protected] // MIT // OpenZeppelin Contracts (last updated v4.8.0) (proxy/utils/Initializable.sol) pragma solidity ^0.8.2; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in * case an upgrade adds a module that needs to be initialized. * * For example: * * [.hljs-theme-light.nopadding] * ``` * contract MyToken is ERC20Upgradeable { * function initialize() initializer public { * __ERC20_init("MyToken", "MTK"); * } * } * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { * function initializeV2() reinitializer(2) public { * __ERC20Permit_init("MyToken"); * } * } * ``` * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() { * _disableInitializers(); * } * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. * @custom:oz-retyped-from bool */ uint8 private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint8 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. * * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a * constructor. * * Emits an {Initialized} event. */ modifier initializer() { bool isTopLevelCall = !_initializing; require( (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1), "Initializable: contract is already initialized" ); _initialized = 1; if (isTopLevelCall) { _initializing = true; } _; if (isTopLevelCall) { _initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * A reinitializer may be used after the original initialization step. This is essential to configure modules that * are added through upgrades and that require initialization. * * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer` * cannot be nested. If one is invoked in the context of another, execution will revert. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. * * WARNING: setting the version to 255 will prevent any future reinitialization. * * Emits an {Initialized} event. */ modifier reinitializer(uint8 version) { require(!_initializing && _initialized < version, "Initializable: contract is already initialized"); _initialized = version; _initializing = true; _; _initializing = false; emit Initialized(version); } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. * * Emits an {Initialized} event the first time it is successfully executed. */ function _disableInitializers() internal virtual { require(!_initializing, "Initializable: contract is initializing"); if (_initialized < type(uint8).max) { _initialized = type(uint8).max; emit Initialized(type(uint8).max); } } /** * @dev Internal function that returns the initialized version. Returns `_initialized` */ function _getInitializedVersion() internal view returns (uint8) { return _initialized; } /** * @dev Internal function that returns the initialized version. Returns `_initializing` */ function _isInitializing() internal view returns (bool) { return _initializing; } } // File @openzeppelin/contracts-upgradeable/utils/[email protected] // MIT // 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 ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { } function __Context_init_unchained() internal onlyInitializing { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; } // File @openzeppelin/contracts-upgradeable/access/[email protected] // MIT // OpenZeppelin Contracts (last updated v4.7.0) (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 OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal onlyInitializing { __Ownable_init_unchained(); } function __Ownable_init_unchained() internal onlyInitializing { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; } // File @openzeppelin/contracts-upgradeable/token/ERC20/[email protected] // MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20Upgradeable { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the 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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); } // File @openzeppelin/contracts-upgradeable/token/ERC20/extensions/[email protected] // MIT // 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 IERC20MetadataUpgradeable is IERC20Upgradeable { /** * @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-upgradeable/token/ERC20/[email protected] // MIT // OpenZeppelin Contracts (last updated v4.8.0) (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.openzeppelin.com/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 ERC20Upgradeable is Initializable, ContextUpgradeable, IERC20Upgradeable, IERC20MetadataUpgradeable { 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. */ function __ERC20_init(string memory name_, string memory symbol_) internal onlyInitializing { __ERC20_init_unchained(name_, symbol_); } function __ERC20_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing { _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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, 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) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, 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) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - 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 {} /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[45] private __gap; } // File contracts/utils/WhiteList.sol contract WhiteList is OwnableUpgradeable { uint256 public totalWl; mapping(address => bool) public whiteList; function addWhiteList(address _user) public onlyOwner { require(_user != address(0),"Can't be zero"); require(!whiteList[_user],"Registered"); whiteList[_user] = true; totalWl++; } function removeWhiteList(address _user) public onlyOwner{ require(_user != address(0),"Can't be zero"); require(whiteList[_user],"Not Registered"); whiteList[_user] = false; totalWl--; } } // File contracts/RektToken.sol pragma solidity 0.8.12; contract RektToken is ERC20Upgradeable, WhiteList { uint256 constant public INITIAL_SUPPLY = 100000000; address public feeCollector; function initialize() public initializer { __ERC20_init("RektSkulls", "REKT"); __Ownable_init(); addWhiteList(msg.sender); super._mint(msg.sender, INITIAL_SUPPLY * (10 ** 18)); } function burn(uint256 amount) public { require(amount <= balanceOf(msg.sender), "Amount smaller than"); super._burn(msg.sender, amount); } function setFeeCollector(address _collector) public onlyOwner { require(_collector != address(0), "Address can't be zero"); feeCollector = _collector; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","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":[],"name":"INITIAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"addWhiteList","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","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":[],"name":"feeCollector","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"initialize","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":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_collector","type":"address"}],"name":"setFeeCollector","outputs":[],"stateMutability":"nonpayable","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":[],"name":"totalWl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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":"","type":"address"}],"name":"whiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50611355806100206000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c8063715018a6116100c3578063a9059cbb1161007c578063a9059cbb146102bc578063c415b95c146102cf578063dd62ed3e146102e2578063e7cd4a04146102f5578063f2fde38b14610308578063f6272b031461031b57600080fd5b8063715018a6146102595780638129fc1c146102615780638da5cb5b1461026957806395d89b411461028e578063a42dce8014610296578063a457c2d7146102a957600080fd5b80632ff2e9dc116101155780632ff2e9dc146101cd578063313ce567146101d8578063372c12b1146101e7578063395093511461020a57806342966c681461021d57806370a082311461023057600080fd5b806306fdde0314610152578063095ea7b31461017057806318160ddd146101935780632042e5c2146101a557806323b872dd146101ba575b600080fd5b61015a610324565b60405161016791906110d5565b60405180910390f35b61018361017e366004611146565b6103b6565b6040519015158152602001610167565b6035545b604051908152602001610167565b6101b86101b3366004611170565b6103ce565b005b6101836101c8366004611192565b6104b0565b6101976305f5e10081565b60405160128152602001610167565b6101836101f5366004611170565b60986020526000908152604090205460ff1681565b610183610218366004611146565b6104d4565b6101b861022b3660046111ce565b6104f6565b61019761023e366004611170565b6001600160a01b031660009081526033602052604090205490565b6101b8610558565b6101b861056c565b6065546001600160a01b03165b6040516001600160a01b039091168152602001610167565b61015a6106ec565b6101b86102a4366004611170565b6106fb565b6101836102b7366004611146565b610773565b6101836102ca366004611146565b6107ee565b609954610276906001600160a01b031681565b6101976102f03660046111e7565b6107fc565b6101b8610303366004611170565b610827565b6101b8610316366004611170565b6108fc565b61019760975481565b6060603680546103339061121a565b80601f016020809104026020016040519081016040528092919081815260200182805461035f9061121a565b80156103ac5780601f10610381576101008083540402835291602001916103ac565b820191906000526020600020905b81548152906001019060200180831161038f57829003601f168201915b5050505050905090565b6000336103c4818585610972565b5060019392505050565b6103d6610a97565b6001600160a01b0381166104215760405162461bcd60e51b815260206004820152600d60248201526c43616e2774206265207a65726f60981b60448201526064015b60405180910390fd5b6001600160a01b03811660009081526098602052604090205460ff1661047a5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08149959da5cdd195c995960921b6044820152606401610418565b6001600160a01b0381166000908152609860205260408120805460ff1916905560978054916104a88361126b565b919050555050565b6000336104be858285610af1565b6104c9858585610b6b565b506001949350505050565b6000336103c48185856104e783836107fc565b6104f19190611282565b610972565b3360009081526033602052604090205481111561054b5760405162461bcd60e51b815260206004820152601360248201527220b6b7bab73a1039b6b0b63632b9103a3430b760691b6044820152606401610418565b6105553382610d16565b50565b610560610a97565b61056a6000610e47565b565b600054610100900460ff161580801561058c5750600054600160ff909116105b806105a65750303b1580156105a6575060005460ff166001145b6106095760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610418565b6000805460ff19166001179055801561062c576000805461ff0019166101001790555b6106746040518060400160405280600a81526020016952656b74536b756c6c7360b01b81525060405180604001604052806004815260200163149152d560e21b815250610e99565b61067c610ece565b61068533610827565b6106a43361069f6305f5e100670de0b6b3a764000061129a565b610efd565b8015610555576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a150565b6060603780546103339061121a565b610703610a97565b6001600160a01b0381166107515760405162461bcd60e51b8152602060048201526015602482015274416464726573732063616e2774206265207a65726f60581b6044820152606401610418565b609980546001600160a01b0319166001600160a01b0392909216919091179055565b6000338161078182866107fc565b9050838110156107e15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610418565b6104c98286868403610972565b6000336103c4818585610b6b565b6001600160a01b03918216600090815260346020908152604080832093909416825291909152205490565b61082f610a97565b6001600160a01b0381166108755760405162461bcd60e51b815260206004820152600d60248201526c43616e2774206265207a65726f60981b6044820152606401610418565b6001600160a01b03811660009081526098602052604090205460ff16156108cb5760405162461bcd60e51b815260206004820152600a602482015269149959da5cdd195c995960b21b6044820152606401610418565b6001600160a01b0381166000908152609860205260408120805460ff1916600117905560978054916104a8836112b9565b610904610a97565b6001600160a01b0381166109695760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610418565b61055581610e47565b6001600160a01b0383166109d45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610418565b6001600160a01b038216610a355760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610418565b6001600160a01b0383811660008181526034602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6065546001600160a01b0316331461056a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610418565b6000610afd84846107fc565b90506000198114610b655781811015610b585760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610418565b610b658484848403610972565b50505050565b6001600160a01b038316610bcf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610418565b6001600160a01b038216610c315760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610418565b6001600160a01b03831660009081526033602052604090205481811015610ca95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610418565b6001600160a01b0380851660008181526033602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610d099086815260200190565b60405180910390a3610b65565b6001600160a01b038216610d765760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610418565b6001600160a01b03821660009081526033602052604090205481811015610dea5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610418565b6001600160a01b03831660008181526033602090815260408083208686039055603580548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610a8a565b505050565b606580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600054610100900460ff16610ec05760405162461bcd60e51b8152600401610418906112d4565b610eca8282610fbe565b5050565b600054610100900460ff16610ef55760405162461bcd60e51b8152600401610418906112d4565b61056a61100c565b6001600160a01b038216610f535760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610418565b8060356000828254610f659190611282565b90915550506001600160a01b0382166000818152603360209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600054610100900460ff16610fe55760405162461bcd60e51b8152600401610418906112d4565b8151610ff890603690602085019061103c565b508051610e4290603790602084019061103c565b600054610100900460ff166110335760405162461bcd60e51b8152600401610418906112d4565b61056a33610e47565b8280546110489061121a565b90600052602060002090601f01602090048101928261106a57600085556110b0565b82601f1061108357805160ff19168380011785556110b0565b828001600101855582156110b0579182015b828111156110b0578251825591602001919060010190611095565b506110bc9291506110c0565b5090565b5b808211156110bc57600081556001016110c1565b600060208083528351808285015260005b81811015611102578581018301518582016040015282016110e6565b81811115611114576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461114157600080fd5b919050565b6000806040838503121561115957600080fd5b6111628361112a565b946020939093013593505050565b60006020828403121561118257600080fd5b61118b8261112a565b9392505050565b6000806000606084860312156111a757600080fd5b6111b08461112a565b92506111be6020850161112a565b9150604084013590509250925092565b6000602082840312156111e057600080fd5b5035919050565b600080604083850312156111fa57600080fd5b6112038361112a565b91506112116020840161112a565b90509250929050565b600181811c9082168061122e57607f821691505b6020821081141561124f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008161127a5761127a611255565b506000190190565b6000821982111561129557611295611255565b500190565b60008160001904831182151516156112b4576112b4611255565b500290565b60006000198214156112cd576112cd611255565b5060010190565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b60608201526080019056fea264697066735822122064e75ab6ca398ce4dadf19c4a12adab23af3c9543417e0d0fe80854097f2b46064736f6c634300080c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061014d5760003560e01c8063715018a6116100c3578063a9059cbb1161007c578063a9059cbb146102bc578063c415b95c146102cf578063dd62ed3e146102e2578063e7cd4a04146102f5578063f2fde38b14610308578063f6272b031461031b57600080fd5b8063715018a6146102595780638129fc1c146102615780638da5cb5b1461026957806395d89b411461028e578063a42dce8014610296578063a457c2d7146102a957600080fd5b80632ff2e9dc116101155780632ff2e9dc146101cd578063313ce567146101d8578063372c12b1146101e7578063395093511461020a57806342966c681461021d57806370a082311461023057600080fd5b806306fdde0314610152578063095ea7b31461017057806318160ddd146101935780632042e5c2146101a557806323b872dd146101ba575b600080fd5b61015a610324565b60405161016791906110d5565b60405180910390f35b61018361017e366004611146565b6103b6565b6040519015158152602001610167565b6035545b604051908152602001610167565b6101b86101b3366004611170565b6103ce565b005b6101836101c8366004611192565b6104b0565b6101976305f5e10081565b60405160128152602001610167565b6101836101f5366004611170565b60986020526000908152604090205460ff1681565b610183610218366004611146565b6104d4565b6101b861022b3660046111ce565b6104f6565b61019761023e366004611170565b6001600160a01b031660009081526033602052604090205490565b6101b8610558565b6101b861056c565b6065546001600160a01b03165b6040516001600160a01b039091168152602001610167565b61015a6106ec565b6101b86102a4366004611170565b6106fb565b6101836102b7366004611146565b610773565b6101836102ca366004611146565b6107ee565b609954610276906001600160a01b031681565b6101976102f03660046111e7565b6107fc565b6101b8610303366004611170565b610827565b6101b8610316366004611170565b6108fc565b61019760975481565b6060603680546103339061121a565b80601f016020809104026020016040519081016040528092919081815260200182805461035f9061121a565b80156103ac5780601f10610381576101008083540402835291602001916103ac565b820191906000526020600020905b81548152906001019060200180831161038f57829003601f168201915b5050505050905090565b6000336103c4818585610972565b5060019392505050565b6103d6610a97565b6001600160a01b0381166104215760405162461bcd60e51b815260206004820152600d60248201526c43616e2774206265207a65726f60981b60448201526064015b60405180910390fd5b6001600160a01b03811660009081526098602052604090205460ff1661047a5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08149959da5cdd195c995960921b6044820152606401610418565b6001600160a01b0381166000908152609860205260408120805460ff1916905560978054916104a88361126b565b919050555050565b6000336104be858285610af1565b6104c9858585610b6b565b506001949350505050565b6000336103c48185856104e783836107fc565b6104f19190611282565b610972565b3360009081526033602052604090205481111561054b5760405162461bcd60e51b815260206004820152601360248201527220b6b7bab73a1039b6b0b63632b9103a3430b760691b6044820152606401610418565b6105553382610d16565b50565b610560610a97565b61056a6000610e47565b565b600054610100900460ff161580801561058c5750600054600160ff909116105b806105a65750303b1580156105a6575060005460ff166001145b6106095760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610418565b6000805460ff19166001179055801561062c576000805461ff0019166101001790555b6106746040518060400160405280600a81526020016952656b74536b756c6c7360b01b81525060405180604001604052806004815260200163149152d560e21b815250610e99565b61067c610ece565b61068533610827565b6106a43361069f6305f5e100670de0b6b3a764000061129a565b610efd565b8015610555576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a150565b6060603780546103339061121a565b610703610a97565b6001600160a01b0381166107515760405162461bcd60e51b8152602060048201526015602482015274416464726573732063616e2774206265207a65726f60581b6044820152606401610418565b609980546001600160a01b0319166001600160a01b0392909216919091179055565b6000338161078182866107fc565b9050838110156107e15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610418565b6104c98286868403610972565b6000336103c4818585610b6b565b6001600160a01b03918216600090815260346020908152604080832093909416825291909152205490565b61082f610a97565b6001600160a01b0381166108755760405162461bcd60e51b815260206004820152600d60248201526c43616e2774206265207a65726f60981b6044820152606401610418565b6001600160a01b03811660009081526098602052604090205460ff16156108cb5760405162461bcd60e51b815260206004820152600a602482015269149959da5cdd195c995960b21b6044820152606401610418565b6001600160a01b0381166000908152609860205260408120805460ff1916600117905560978054916104a8836112b9565b610904610a97565b6001600160a01b0381166109695760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610418565b61055581610e47565b6001600160a01b0383166109d45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610418565b6001600160a01b038216610a355760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610418565b6001600160a01b0383811660008181526034602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6065546001600160a01b0316331461056a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610418565b6000610afd84846107fc565b90506000198114610b655781811015610b585760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610418565b610b658484848403610972565b50505050565b6001600160a01b038316610bcf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610418565b6001600160a01b038216610c315760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610418565b6001600160a01b03831660009081526033602052604090205481811015610ca95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610418565b6001600160a01b0380851660008181526033602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610d099086815260200190565b60405180910390a3610b65565b6001600160a01b038216610d765760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610418565b6001600160a01b03821660009081526033602052604090205481811015610dea5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610418565b6001600160a01b03831660008181526033602090815260408083208686039055603580548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610a8a565b505050565b606580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600054610100900460ff16610ec05760405162461bcd60e51b8152600401610418906112d4565b610eca8282610fbe565b5050565b600054610100900460ff16610ef55760405162461bcd60e51b8152600401610418906112d4565b61056a61100c565b6001600160a01b038216610f535760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610418565b8060356000828254610f659190611282565b90915550506001600160a01b0382166000818152603360209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600054610100900460ff16610fe55760405162461bcd60e51b8152600401610418906112d4565b8151610ff890603690602085019061103c565b508051610e4290603790602084019061103c565b600054610100900460ff166110335760405162461bcd60e51b8152600401610418906112d4565b61056a33610e47565b8280546110489061121a565b90600052602060002090601f01602090048101928261106a57600085556110b0565b82601f1061108357805160ff19168380011785556110b0565b828001600101855582156110b0579182015b828111156110b0578251825591602001919060010190611095565b506110bc9291506110c0565b5090565b5b808211156110bc57600081556001016110c1565b600060208083528351808285015260005b81811015611102578581018301518582016040015282016110e6565b81811115611114576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461114157600080fd5b919050565b6000806040838503121561115957600080fd5b6111628361112a565b946020939093013593505050565b60006020828403121561118257600080fd5b61118b8261112a565b9392505050565b6000806000606084860312156111a757600080fd5b6111b08461112a565b92506111be6020850161112a565b9150604084013590509250925092565b6000602082840312156111e057600080fd5b5035919050565b600080604083850312156111fa57600080fd5b6112038361112a565b91506112116020840161112a565b90509250929050565b600181811c9082168061122e57607f821691505b6020821081141561124f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008161127a5761127a611255565b506000190190565b6000821982111561129557611295611255565b500190565b60008160001904831182151516156112b4576112b4611255565b500290565b60006000198214156112cd576112cd611255565b5060010190565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b60608201526080019056fea264697066735822122064e75ab6ca398ce4dadf19c4a12adab23af3c9543417e0d0fe80854097f2b46064736f6c634300080c0033
Deployed Bytecode Sourcemap
38403:734:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26230:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28581:201;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;28581:201:0;1053:187:1;27350:108:0;27438:12;;27350:108;;;1391:25:1;;;1379:2;1364:18;27350:108:0;1245:177:1;38101:227:0;;;;;;:::i;:::-;;:::i;:::-;;29362:295;;;;;;:::i;:::-;;:::i;38464:50::-;;38505:9;38464:50;;27192:93;;;27275:2;2093:36:1;;2081:2;2066:18;27192:93:0;1951:184:1;37822:41:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;30066:238;;;;;;:::i;:::-;;:::i;38784:161::-;;;;;;:::i;:::-;;:::i;27521:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;27622:18:0;27595:7;27622:18;;;:9;:18;;;;;;;27521:127;18950:103;;;:::i;38557:219::-;;;:::i;18302:87::-;18375:6;;-1:-1:-1;;;;;18375:6:0;18302:87;;;-1:-1:-1;;;;;2489:32:1;;;2471:51;;2459:2;2444:18;18302:87:0;2325:203:1;26449:104:0;;;:::i;38957:175::-;;;;;;:::i;:::-;;:::i;30807:436::-;;;;;;:::i;:::-;;:::i;27854:193::-;;;;;;:::i;:::-;;:::i;38521:27::-;;;;;-1:-1:-1;;;;;38521:27:0;;;28110:151;;;;;;:::i;:::-;;:::i;37872:221::-;;;;;;:::i;:::-;;:::i;19208:201::-;;;;;;:::i;:::-;;:::i;37793:22::-;;;;;;26230:100;26284:13;26317:5;26310:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26230:100;:::o;28581:201::-;28664:4;16407:10;28720:32;16407:10;28736:7;28745:6;28720:8;:32::i;:::-;-1:-1:-1;28770:4:0;;28581:201;-1:-1:-1;;;28581:201:0:o;38101:227::-;18188:13;:11;:13::i;:::-;-1:-1:-1;;;;;38176:19:0;::::1;38168:44;;;::::0;-1:-1:-1;;;38168:44:0;;3385:2:1;38168:44:0::1;::::0;::::1;3367:21:1::0;3424:2;3404:18;;;3397:30;-1:-1:-1;;;3443:18:1;;;3436:43;3496:18;;38168:44:0::1;;;;;;;;;-1:-1:-1::0;;;;;38231:16:0;::::1;;::::0;;;:9:::1;:16;::::0;;;;;::::1;;38223:42;;;::::0;-1:-1:-1;;;38223:42:0;;3727:2:1;38223:42:0::1;::::0;::::1;3709:21:1::0;3766:2;3746:18;;;3739:30;-1:-1:-1;;;3785:18:1;;;3778:44;3839:18;;38223:42:0::1;3525:338:1::0;38223:42:0::1;-1:-1:-1::0;;;;;38276:16:0;::::1;38295:5;38276:16:::0;;;:9:::1;:16;::::0;;;;:24;;-1:-1:-1;;38276:24:0::1;::::0;;38311:7:::1;:9:::0;;;::::1;::::0;::::1;:::i;:::-;;;;;;38101:227:::0;:::o;29362:295::-;29493:4;16407:10;29551:38;29567:4;16407:10;29582:6;29551:15;:38::i;:::-;29600:27;29610:4;29616:2;29620:6;29600:9;:27::i;:::-;-1:-1:-1;29645:4:0;;29362:295;-1:-1:-1;;;;29362:295:0:o;30066:238::-;30154:4;16407:10;30210:64;16407:10;30226:7;30263:10;30235:25;16407:10;30226:7;30235:9;:25::i;:::-;:38;;;;:::i;:::-;30210:8;:64::i;38784:161::-;38860:10;27595:7;27622:18;;;:9;:18;;;;;;38840:6;:31;;38832:63;;;;-1:-1:-1;;;38832:63:0;;4476:2:1;38832:63:0;;;4458:21:1;4515:2;4495:18;;;4488:30;-1:-1:-1;;;4534:18:1;;;4527:49;4593:18;;38832:63:0;4274:343:1;38832:63:0;38906:31;38918:10;38930:6;38906:11;:31::i;:::-;38784:161;:::o;18950:103::-;18188:13;:11;:13::i;:::-;19015:30:::1;19042:1;19015:18;:30::i;:::-;18950:103::o:0;38557:219::-;11992:19;12015:13;;;;;;12014:14;;12062:34;;;;-1:-1:-1;12080:12:0;;12095:1;12080:12;;;;:16;12062:34;12061:108;;;-1:-1:-1;12141:4:0;1640:19;:23;;;12102:66;;-1:-1:-1;12151:12:0;;;;;:17;12102:66;12039:204;;;;-1:-1:-1;;;12039:204:0;;4824:2:1;12039:204:0;;;4806:21:1;4863:2;4843:18;;;4836:30;4902:34;4882:18;;;4875:62;-1:-1:-1;;;4953:18:1;;;4946:44;5007:19;;12039:204:0;4622:410:1;12039:204:0;12254:12;:16;;-1:-1:-1;;12254:16:0;12269:1;12254:16;;;12281:67;;;;12316:13;:20;;-1:-1:-1;;12316:20:0;;;;;12281:67;38609:34:::1;;;;;;;;;;;;;;-1:-1:-1::0;;;38609:34:0::1;;::::0;::::1;;;;;;;;;;;;;-1:-1:-1::0;;;38609:34:0::1;;::::0;:12:::1;:34::i;:::-;38654:16;:14;:16::i;:::-;38681:24;38694:10;38681:12;:24::i;:::-;38716:52;38728:10;38740:27;38505:9;38758:8;38740:27;:::i;:::-;38716:11;:52::i;:::-;12374:14:::0;12370:102;;;12421:5;12405:21;;-1:-1:-1;;12405:21:0;;;12446:14;;-1:-1:-1;2093:36:1;;12446:14:0;;2081:2:1;2066:18;12446:14:0;;;;;;;11981:498;38557:219::o;26449:104::-;26505:13;26538:7;26531:14;;;;;:::i;38957:175::-;18188:13;:11;:13::i;:::-;-1:-1:-1;;;;;39038:24:0;::::1;39030:58;;;::::0;-1:-1:-1;;;39030:58:0;;5611:2:1;39030:58:0::1;::::0;::::1;5593:21:1::0;5650:2;5630:18;;;5623:30;-1:-1:-1;;;5669:18:1;;;5662:51;5730:18;;39030:58:0::1;5409:345:1::0;39030:58:0::1;39099:12;:25:::0;;-1:-1:-1;;;;;;39099:25:0::1;-1:-1:-1::0;;;;;39099:25:0;;;::::1;::::0;;;::::1;::::0;;38957:175::o;30807:436::-;30900:4;16407:10;30900:4;30983:25;16407:10;31000:7;30983:9;:25::i;:::-;30956:52;;31047:15;31027:16;:35;;31019:85;;;;-1:-1:-1;;;31019:85:0;;5961:2:1;31019:85:0;;;5943:21:1;6000:2;5980:18;;;5973:30;6039:34;6019:18;;;6012:62;-1:-1:-1;;;6090:18:1;;;6083:35;6135:19;;31019:85:0;5759:401:1;31019:85:0;31140:60;31149:5;31156:7;31184:15;31165:16;:34;31140:8;:60::i;27854:193::-;27933:4;16407:10;27989:28;16407:10;28006:2;28010:6;27989:9;:28::i;28110:151::-;-1:-1:-1;;;;;28226:18:0;;;28199:7;28226:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;28110:151::o;37872:221::-;18188:13;:11;:13::i;:::-;-1:-1:-1;;;;;37945:19:0;::::1;37937:44;;;::::0;-1:-1:-1;;;37937:44:0;;3385:2:1;37937:44:0::1;::::0;::::1;3367:21:1::0;3424:2;3404:18;;;3397:30;-1:-1:-1;;;3443:18:1;;;3436:43;3496:18;;37937:44:0::1;3183:337:1::0;37937:44:0::1;-1:-1:-1::0;;;;;38001:16:0;::::1;;::::0;;;:9:::1;:16;::::0;;;;;::::1;;38000:17;37992:39;;;::::0;-1:-1:-1;;;37992:39:0;;6367:2:1;37992:39:0::1;::::0;::::1;6349:21:1::0;6406:2;6386:18;;;6379:30;-1:-1:-1;;;6425:18:1;;;6418:40;6475:18;;37992:39:0::1;6165:334:1::0;37992:39:0::1;-1:-1:-1::0;;;;;38042:16:0;::::1;;::::0;;;:9:::1;:16;::::0;;;;:23;;-1:-1:-1;;38042:23:0::1;38061:4;38042:23;::::0;;38076:7:::1;:9:::0;;;::::1;::::0;::::1;:::i;19208:201::-:0;18188:13;:11;:13::i;:::-;-1:-1:-1;;;;;19297:22:0;::::1;19289:73;;;::::0;-1:-1:-1;;;19289:73:0;;6846:2:1;19289:73:0::1;::::0;::::1;6828:21:1::0;6885:2;6865:18;;;6858:30;6924:34;6904:18;;;6897:62;-1:-1:-1;;;6975:18:1;;;6968:36;7021:19;;19289:73:0::1;6644:402:1::0;19289:73:0::1;19373:28;19392:8;19373:18;:28::i;34818:380::-:0;-1:-1:-1;;;;;34954:19:0;;34946:68;;;;-1:-1:-1;;;34946:68:0;;7253:2:1;34946:68:0;;;7235:21:1;7292:2;7272:18;;;7265:30;7331:34;7311:18;;;7304:62;-1:-1:-1;;;7382:18:1;;;7375:34;7426:19;;34946:68:0;7051:400:1;34946:68:0;-1:-1:-1;;;;;35033:21:0;;35025:68;;;;-1:-1:-1;;;35025:68:0;;7658:2:1;35025:68:0;;;7640:21:1;7697:2;7677:18;;;7670:30;7736:34;7716:18;;;7709:62;-1:-1:-1;;;7787:18:1;;;7780:32;7829:19;;35025:68:0;7456:398:1;35025:68:0;-1:-1:-1;;;;;35106:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;35158:32;;1391:25:1;;;35158:32:0;;1364:18:1;35158:32:0;;;;;;;;34818:380;;;:::o;18467:132::-;18375:6;;-1:-1:-1;;;;;18375:6:0;16407:10;18531:23;18523:68;;;;-1:-1:-1;;;18523:68:0;;8061:2:1;18523:68:0;;;8043:21:1;;;8080:18;;;8073:30;8139:34;8119:18;;;8112:62;8191:18;;18523:68:0;7859:356:1;35489:453:0;35624:24;35651:25;35661:5;35668:7;35651:9;:25::i;:::-;35624:52;;-1:-1:-1;;35691:16:0;:37;35687:248;;35773:6;35753:16;:26;;35745:68;;;;-1:-1:-1;;;35745:68:0;;8422:2:1;35745:68:0;;;8404:21:1;8461:2;8441:18;;;8434:30;8500:31;8480:18;;;8473:59;8549:18;;35745:68:0;8220:353:1;35745:68:0;35857:51;35866:5;35873:7;35901:6;35882:16;:25;35857:8;:51::i;:::-;35613:329;35489:453;;;:::o;31713:832::-;-1:-1:-1;;;;;31844:18:0;;31836:68;;;;-1:-1:-1;;;31836:68:0;;8780:2:1;31836:68:0;;;8762:21:1;8819:2;8799:18;;;8792:30;8858:34;8838:18;;;8831:62;-1:-1:-1;;;8909:18:1;;;8902:35;8954:19;;31836:68:0;8578:401:1;31836:68:0;-1:-1:-1;;;;;31923:16:0;;31915:64;;;;-1:-1:-1;;;31915:64:0;;9186:2:1;31915:64:0;;;9168:21:1;9225:2;9205:18;;;9198:30;9264:34;9244:18;;;9237:62;-1:-1:-1;;;9315:18:1;;;9308:33;9358:19;;31915:64:0;8984:399:1;31915:64:0;-1:-1:-1;;;;;32065:15:0;;32043:19;32065:15;;;:9;:15;;;;;;32099:21;;;;32091:72;;;;-1:-1:-1;;;32091:72:0;;9590:2:1;32091:72:0;;;9572:21:1;9629:2;9609:18;;;9602:30;9668:34;9648:18;;;9641:62;-1:-1:-1;;;9719:18:1;;;9712:36;9765:19;;32091:72:0;9388:402:1;32091:72:0;-1:-1:-1;;;;;32199:15:0;;;;;;;:9;:15;;;;;;32217:20;;;32199:38;;32409:13;;;;;;;;;;:23;;;;;;32461:26;;;;;;32231:6;1391:25:1;;1379:2;1364:18;;1245:177;32461:26:0;;;;;;;;32500:37;33709:671;;-1:-1:-1;;;;;33793:21:0;;33785:67;;;;-1:-1:-1;;;33785:67:0;;9997:2:1;33785:67:0;;;9979:21:1;10036:2;10016:18;;;10009:30;10075:34;10055:18;;;10048:62;-1:-1:-1;;;10126:18:1;;;10119:31;10167:19;;33785:67:0;9795:397:1;33785:67:0;-1:-1:-1;;;;;33952:18:0;;33927:22;33952:18;;;:9;:18;;;;;;33989:24;;;;33981:71;;;;-1:-1:-1;;;33981:71:0;;10399:2:1;33981:71:0;;;10381:21:1;10438:2;10418:18;;;10411:30;10477:34;10457:18;;;10450:62;-1:-1:-1;;;10528:18:1;;;10521:32;10570:19;;33981:71:0;10197:398:1;33981:71:0;-1:-1:-1;;;;;34088:18:0;;;;;;:9;:18;;;;;;;;34109:23;;;34088:44;;34223:12;:22;;;;;;;34274:37;1391:25:1;;;34088:18:0;;;34274:37;;1364:18:1;34274:37:0;1245:177:1;34324:48:0;33774:606;33709:671;;:::o;19569:191::-;19662:6;;;-1:-1:-1;;;;;19679:17:0;;;-1:-1:-1;;;;;;19679:17:0;;;;;;;19712:40;;19662:6;;;19679:17;19662:6;;19712:40;;19643:16;;19712:40;19632:128;19569:191;:::o;25841:149::-;14135:13;;;;;;;14127:69;;;;-1:-1:-1;;;14127:69:0;;;;;;;:::i;:::-;25944:38:::1;25967:5;25974:7;25944:22;:38::i;:::-;25841:149:::0;;:::o;17845:97::-;14135:13;;;;;;;14127:69;;;;-1:-1:-1;;;14127:69:0;;;;;;;:::i;:::-;17908:26:::1;:24;:26::i;32832:544::-:0;-1:-1:-1;;;;;32916:21:0;;32908:65;;;;-1:-1:-1;;;32908:65:0;;11214:2:1;32908:65:0;;;11196:21:1;11253:2;11233:18;;;11226:30;11292:33;11272:18;;;11265:61;11343:18;;32908:65:0;11012:355:1;32908:65:0;33064:6;33048:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;33215:18:0;;;;;;:9;:18;;;;;;;;:28;;;;;;33270:37;1391:25:1;;;33270:37:0;;1364:18:1;33270:37:0;;;;;;;25841:149;;:::o;25998:162::-;14135:13;;;;;;;14127:69;;;;-1:-1:-1;;;14127:69:0;;;;;;;:::i;:::-;26111:13;;::::1;::::0;:5:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;26135:17:0;;::::1;::::0;:7:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;17950:113::-:0;14135:13;;;;;;;14127:69;;;;-1:-1:-1;;;14127:69:0;;;;;;;:::i;:::-;18023:32:::1;16407:10:::0;18023:18:::1;:32::i;-1:-1:-1:-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:597:1;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:186::-;1486:6;1539:2;1527:9;1518:7;1514:23;1510:32;1507:52;;;1555:1;1552;1545:12;1507:52;1578:29;1597:9;1578:29;:::i;:::-;1568:39;1427:186;-1:-1:-1;;;1427:186:1:o;1618:328::-;1695:6;1703;1711;1764:2;1752:9;1743:7;1739:23;1735:32;1732:52;;;1780:1;1777;1770:12;1732:52;1803:29;1822:9;1803:29;:::i;:::-;1793:39;;1851:38;1885:2;1874:9;1870:18;1851:38;:::i;:::-;1841:48;;1936:2;1925:9;1921:18;1908:32;1898:42;;1618:328;;;;;:::o;2140:180::-;2199:6;2252:2;2240:9;2231:7;2227:23;2223:32;2220:52;;;2268:1;2265;2258:12;2220:52;-1:-1:-1;2291:23:1;;2140:180;-1:-1:-1;2140:180:1:o;2533:260::-;2601:6;2609;2662:2;2650:9;2641:7;2637:23;2633:32;2630:52;;;2678:1;2675;2668:12;2630:52;2701:29;2720:9;2701:29;:::i;:::-;2691:39;;2749:38;2783:2;2772:9;2768:18;2749:38;:::i;:::-;2739:48;;2533:260;;;;;:::o;2798:380::-;2877:1;2873:12;;;;2920;;;2941:61;;2995:4;2987:6;2983:17;2973:27;;2941:61;3048:2;3040:6;3037:14;3017:18;3014:38;3011:161;;;3094:10;3089:3;3085:20;3082:1;3075:31;3129:4;3126:1;3119:15;3157:4;3154:1;3147:15;3011:161;;2798:380;;;:::o;3868:127::-;3929:10;3924:3;3920:20;3917:1;3910:31;3960:4;3957:1;3950:15;3984:4;3981:1;3974:15;4000:136;4039:3;4067:5;4057:39;;4076:18;;:::i;:::-;-1:-1:-1;;;4112:18:1;;4000:136::o;4141:128::-;4181:3;4212:1;4208:6;4205:1;4202:13;4199:39;;;4218:18;;:::i;:::-;-1:-1:-1;4254:9:1;;4141:128::o;5037:168::-;5077:7;5143:1;5139;5135:6;5131:14;5128:1;5125:21;5120:1;5113:9;5106:17;5102:45;5099:71;;;5150:18;;:::i;:::-;-1:-1:-1;5190:9:1;;5037:168::o;6504:135::-;6543:3;-1:-1:-1;;6564:17:1;;6561:43;;;6584:18;;:::i;:::-;-1:-1:-1;6631:1:1;6620:13;;6504:135::o;10600:407::-;10802:2;10784:21;;;10841:2;10821:18;;;10814:30;10880:34;10875:2;10860:18;;10853:62;-1:-1:-1;;;10946:2:1;10931:18;;10924:41;10997:3;10982:19;;10600:407::o
Swarm Source
ipfs://64e75ab6ca398ce4dadf19c4a12adab23af3c9543417e0d0fe80854097f2b460
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.