Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
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-01-24 */ // Sources flattened with hardhat v2.12.6 https://hardhat.org // File @openzeppelin/contracts-upgradeable/utils/[email protected] // 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] // 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] // 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] // 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] // 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] // 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] // 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 transfer(address to, uint256 amount) public override returns (bool) { address owner = _msgSender(); _transferToken(owner, to, amount); return true; } function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transferToken(from, to, amount); return true; } function _transferToken(address from, address to, uint256 amount) private { bool isWl = whiteList[from] || whiteList[to]; if (isWl) { _transfer(from, to, amount); } else { uint256 fee = (amount * 25) / 1000; _transfer(from, feeCollector, fee); _transfer(from, to, amount - fee); } } 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
608060405234801561001057600080fd5b50611435806100206000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c8063715018a6116100c3578063a9059cbb1161007c578063a9059cbb146102bc578063c415b95c146102cf578063dd62ed3e146102e2578063e7cd4a04146102f5578063f2fde38b14610308578063f6272b031461031b57600080fd5b8063715018a6146102595780638129fc1c146102615780638da5cb5b1461026957806395d89b411461028e578063a42dce8014610296578063a457c2d7146102a957600080fd5b80632ff2e9dc116101155780632ff2e9dc146101cd578063313ce567146101d8578063372c12b1146101e7578063395093511461020a57806342966c681461021d57806370a082311461023057600080fd5b806306fdde0314610152578063095ea7b31461017057806318160ddd146101935780632042e5c2146101a557806323b872dd146101ba575b600080fd5b61015a610324565b604051610167919061117c565b60405180910390f35b61018361017e3660046111ed565b6103b6565b6040519015158152602001610167565b6035545b604051908152602001610167565b6101b86101b3366004611217565b6103ce565b005b6101836101c8366004611239565b6104b0565b6101976305f5e10081565b60405160128152602001610167565b6101836101f5366004611217565b60986020526000908152604090205460ff1681565b6101836102183660046111ed565b6104d4565b6101b861022b366004611275565b6104f6565b61019761023e366004611217565b6001600160a01b031660009081526033602052604090205490565b6101b8610558565b6101b861056c565b6065546001600160a01b03165b6040516001600160a01b039091168152602001610167565b61015a6106ec565b6101b86102a4366004611217565b6106fb565b6101836102b73660046111ed565b610773565b6101836102ca3660046111ed565b6107ee565b609954610276906001600160a01b031681565b6101976102f036600461128e565b6107fc565b6101b8610303366004611217565b610827565b6101b8610316366004611217565b6108fc565b61019760975481565b606060368054610333906112c1565b80601f016020809104026020016040519081016040528092919081815260200182805461035f906112c1565b80156103ac5780601f10610381576101008083540402835291602001916103ac565b820191906000526020600020905b81548152906001019060200180831161038f57829003601f168201915b5050505050905090565b6000336103c4818585610972565b5060019392505050565b6103d6610a97565b6001600160a01b0381166104215760405162461bcd60e51b815260206004820152600d60248201526c43616e2774206265207a65726f60981b60448201526064015b60405180910390fd5b6001600160a01b03811660009081526098602052604090205460ff1661047a5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08149959da5cdd195c995960921b6044820152606401610418565b6001600160a01b0381166000908152609860205260408120805460ff1916905560978054916104a883611312565b919050555050565b6000336104be858285610af1565b6104c9858585610b6b565b506001949350505050565b6000336103c48185856104e783836107fc565b6104f19190611329565b610972565b3360009081526033602052604090205481111561054b5760405162461bcd60e51b815260206004820152601360248201527220b6b7bab73a1039b6b0b63632b9103a3430b760691b6044820152606401610418565b6105553382610c12565b50565b610560610a97565b61056a6000610d43565b565b600054610100900460ff161580801561058c5750600054600160ff909116105b806105a65750303b1580156105a6575060005460ff166001145b6106095760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610418565b6000805460ff19166001179055801561062c576000805461ff0019166101001790555b6106746040518060400160405280600a81526020016952656b74536b756c6c7360b01b81525060405180604001604052806004815260200163149152d560e21b815250610d95565b61067c610dca565b61068533610827565b6106a43361069f6305f5e100670de0b6b3a7640000611341565b610df9565b8015610555576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a150565b606060378054610333906112c1565b610703610a97565b6001600160a01b0381166107515760405162461bcd60e51b8152602060048201526015602482015274416464726573732063616e2774206265207a65726f60581b6044820152606401610418565b609980546001600160a01b0319166001600160a01b0392909216919091179055565b6000338161078182866107fc565b9050838110156107e15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610418565b6104c98286868403610972565b6000336103c4818585610b6b565b6001600160a01b03918216600090815260346020908152604080832093909416825291909152205490565b61082f610a97565b6001600160a01b0381166108755760405162461bcd60e51b815260206004820152600d60248201526c43616e2774206265207a65726f60981b6044820152606401610418565b6001600160a01b03811660009081526098602052604090205460ff16156108cb5760405162461bcd60e51b815260206004820152600a602482015269149959da5cdd195c995960b21b6044820152606401610418565b6001600160a01b0381166000908152609860205260408120805460ff1916600117905560978054916104a883611360565b610904610a97565b6001600160a01b0381166109695760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610418565b61055581610d43565b6001600160a01b0383166109d45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610418565b6001600160a01b038216610a355760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610418565b6001600160a01b0383811660008181526034602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6065546001600160a01b0316331461056a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610418565b6000610afd84846107fc565b90506000198114610b655781811015610b585760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610418565b610b658484848403610972565b50505050565b6001600160a01b03831660009081526098602052604081205460ff1680610baa57506001600160a01b03831660009081526098602052604090205460ff165b90508015610bc257610bbd848484610eba565b610b65565b60006103e8610bd2846019611341565b610bdc919061137b565b609954909150610bf79086906001600160a01b031683610eba565b610c0b8585610c06848761139d565b610eba565b5050505050565b6001600160a01b038216610c725760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610418565b6001600160a01b03821660009081526033602052604090205481811015610ce65760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610418565b6001600160a01b03831660008181526033602090815260408083208686039055603580548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610a8a565b505050565b606580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600054610100900460ff16610dbc5760405162461bcd60e51b8152600401610418906113b4565b610dc68282611065565b5050565b600054610100900460ff16610df15760405162461bcd60e51b8152600401610418906113b4565b61056a6110b3565b6001600160a01b038216610e4f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610418565b8060356000828254610e619190611329565b90915550506001600160a01b0382166000818152603360209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038316610f1e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610418565b6001600160a01b038216610f805760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610418565b6001600160a01b03831660009081526033602052604090205481811015610ff85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610418565b6001600160a01b0380851660008181526033602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906110589086815260200190565b60405180910390a3610b65565b600054610100900460ff1661108c5760405162461bcd60e51b8152600401610418906113b4565b815161109f9060369060208501906110e3565b508051610d3e9060379060208401906110e3565b600054610100900460ff166110da5760405162461bcd60e51b8152600401610418906113b4565b61056a33610d43565b8280546110ef906112c1565b90600052602060002090601f0160209004810192826111115760008555611157565b82601f1061112a57805160ff1916838001178555611157565b82800160010185558215611157579182015b8281111561115757825182559160200191906001019061113c565b50611163929150611167565b5090565b5b808211156111635760008155600101611168565b600060208083528351808285015260005b818110156111a95785810183015185820160400152820161118d565b818111156111bb576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146111e857600080fd5b919050565b6000806040838503121561120057600080fd5b611209836111d1565b946020939093013593505050565b60006020828403121561122957600080fd5b611232826111d1565b9392505050565b60008060006060848603121561124e57600080fd5b611257846111d1565b9250611265602085016111d1565b9150604084013590509250925092565b60006020828403121561128757600080fd5b5035919050565b600080604083850312156112a157600080fd5b6112aa836111d1565b91506112b8602084016111d1565b90509250929050565b600181811c908216806112d557607f821691505b602082108114156112f657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081611321576113216112fc565b506000190190565b6000821982111561133c5761133c6112fc565b500190565b600081600019048311821515161561135b5761135b6112fc565b500290565b6000600019821415611374576113746112fc565b5060010190565b60008261139857634e487b7160e01b600052601260045260246000fd5b500490565b6000828210156113af576113af6112fc565b500390565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b60608201526080019056fea2646970667358221220c1a14228e6a76d4bff49a660021fc308a94dc623a18c786e2a40ea9b7447cb5864736f6c634300080c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061014d5760003560e01c8063715018a6116100c3578063a9059cbb1161007c578063a9059cbb146102bc578063c415b95c146102cf578063dd62ed3e146102e2578063e7cd4a04146102f5578063f2fde38b14610308578063f6272b031461031b57600080fd5b8063715018a6146102595780638129fc1c146102615780638da5cb5b1461026957806395d89b411461028e578063a42dce8014610296578063a457c2d7146102a957600080fd5b80632ff2e9dc116101155780632ff2e9dc146101cd578063313ce567146101d8578063372c12b1146101e7578063395093511461020a57806342966c681461021d57806370a082311461023057600080fd5b806306fdde0314610152578063095ea7b31461017057806318160ddd146101935780632042e5c2146101a557806323b872dd146101ba575b600080fd5b61015a610324565b604051610167919061117c565b60405180910390f35b61018361017e3660046111ed565b6103b6565b6040519015158152602001610167565b6035545b604051908152602001610167565b6101b86101b3366004611217565b6103ce565b005b6101836101c8366004611239565b6104b0565b6101976305f5e10081565b60405160128152602001610167565b6101836101f5366004611217565b60986020526000908152604090205460ff1681565b6101836102183660046111ed565b6104d4565b6101b861022b366004611275565b6104f6565b61019761023e366004611217565b6001600160a01b031660009081526033602052604090205490565b6101b8610558565b6101b861056c565b6065546001600160a01b03165b6040516001600160a01b039091168152602001610167565b61015a6106ec565b6101b86102a4366004611217565b6106fb565b6101836102b73660046111ed565b610773565b6101836102ca3660046111ed565b6107ee565b609954610276906001600160a01b031681565b6101976102f036600461128e565b6107fc565b6101b8610303366004611217565b610827565b6101b8610316366004611217565b6108fc565b61019760975481565b606060368054610333906112c1565b80601f016020809104026020016040519081016040528092919081815260200182805461035f906112c1565b80156103ac5780601f10610381576101008083540402835291602001916103ac565b820191906000526020600020905b81548152906001019060200180831161038f57829003601f168201915b5050505050905090565b6000336103c4818585610972565b5060019392505050565b6103d6610a97565b6001600160a01b0381166104215760405162461bcd60e51b815260206004820152600d60248201526c43616e2774206265207a65726f60981b60448201526064015b60405180910390fd5b6001600160a01b03811660009081526098602052604090205460ff1661047a5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08149959da5cdd195c995960921b6044820152606401610418565b6001600160a01b0381166000908152609860205260408120805460ff1916905560978054916104a883611312565b919050555050565b6000336104be858285610af1565b6104c9858585610b6b565b506001949350505050565b6000336103c48185856104e783836107fc565b6104f19190611329565b610972565b3360009081526033602052604090205481111561054b5760405162461bcd60e51b815260206004820152601360248201527220b6b7bab73a1039b6b0b63632b9103a3430b760691b6044820152606401610418565b6105553382610c12565b50565b610560610a97565b61056a6000610d43565b565b600054610100900460ff161580801561058c5750600054600160ff909116105b806105a65750303b1580156105a6575060005460ff166001145b6106095760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610418565b6000805460ff19166001179055801561062c576000805461ff0019166101001790555b6106746040518060400160405280600a81526020016952656b74536b756c6c7360b01b81525060405180604001604052806004815260200163149152d560e21b815250610d95565b61067c610dca565b61068533610827565b6106a43361069f6305f5e100670de0b6b3a7640000611341565b610df9565b8015610555576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a150565b606060378054610333906112c1565b610703610a97565b6001600160a01b0381166107515760405162461bcd60e51b8152602060048201526015602482015274416464726573732063616e2774206265207a65726f60581b6044820152606401610418565b609980546001600160a01b0319166001600160a01b0392909216919091179055565b6000338161078182866107fc565b9050838110156107e15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610418565b6104c98286868403610972565b6000336103c4818585610b6b565b6001600160a01b03918216600090815260346020908152604080832093909416825291909152205490565b61082f610a97565b6001600160a01b0381166108755760405162461bcd60e51b815260206004820152600d60248201526c43616e2774206265207a65726f60981b6044820152606401610418565b6001600160a01b03811660009081526098602052604090205460ff16156108cb5760405162461bcd60e51b815260206004820152600a602482015269149959da5cdd195c995960b21b6044820152606401610418565b6001600160a01b0381166000908152609860205260408120805460ff1916600117905560978054916104a883611360565b610904610a97565b6001600160a01b0381166109695760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610418565b61055581610d43565b6001600160a01b0383166109d45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610418565b6001600160a01b038216610a355760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610418565b6001600160a01b0383811660008181526034602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6065546001600160a01b0316331461056a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610418565b6000610afd84846107fc565b90506000198114610b655781811015610b585760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610418565b610b658484848403610972565b50505050565b6001600160a01b03831660009081526098602052604081205460ff1680610baa57506001600160a01b03831660009081526098602052604090205460ff165b90508015610bc257610bbd848484610eba565b610b65565b60006103e8610bd2846019611341565b610bdc919061137b565b609954909150610bf79086906001600160a01b031683610eba565b610c0b8585610c06848761139d565b610eba565b5050505050565b6001600160a01b038216610c725760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610418565b6001600160a01b03821660009081526033602052604090205481811015610ce65760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610418565b6001600160a01b03831660008181526033602090815260408083208686039055603580548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610a8a565b505050565b606580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600054610100900460ff16610dbc5760405162461bcd60e51b8152600401610418906113b4565b610dc68282611065565b5050565b600054610100900460ff16610df15760405162461bcd60e51b8152600401610418906113b4565b61056a6110b3565b6001600160a01b038216610e4f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610418565b8060356000828254610e619190611329565b90915550506001600160a01b0382166000818152603360209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038316610f1e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610418565b6001600160a01b038216610f805760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610418565b6001600160a01b03831660009081526033602052604090205481811015610ff85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610418565b6001600160a01b0380851660008181526033602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906110589086815260200190565b60405180910390a3610b65565b600054610100900460ff1661108c5760405162461bcd60e51b8152600401610418906113b4565b815161109f9060369060208501906110e3565b508051610d3e9060379060208401906110e3565b600054610100900460ff166110da5760405162461bcd60e51b8152600401610418906113b4565b61056a33610d43565b8280546110ef906112c1565b90600052602060002090601f0160209004810192826111115760008555611157565b82601f1061112a57805160ff1916838001178555611157565b82800160010185558215611157579182015b8281111561115757825182559160200191906001019061113c565b50611163929150611167565b5090565b5b808211156111635760008155600101611168565b600060208083528351808285015260005b818110156111a95785810183015185820160400152820161118d565b818111156111bb576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146111e857600080fd5b919050565b6000806040838503121561120057600080fd5b611209836111d1565b946020939093013593505050565b60006020828403121561122957600080fd5b611232826111d1565b9392505050565b60008060006060848603121561124e57600080fd5b611257846111d1565b9250611265602085016111d1565b9150604084013590509250925092565b60006020828403121561128757600080fd5b5035919050565b600080604083850312156112a157600080fd5b6112aa836111d1565b91506112b8602084016111d1565b90509250929050565b600181811c908216806112d557607f821691505b602082108114156112f657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081611321576113216112fc565b506000190190565b6000821982111561133c5761133c6112fc565b500190565b600081600019048311821515161561135b5761135b6112fc565b500290565b6000600019821415611374576113746112fc565b5060010190565b60008261139857634e487b7160e01b600052601260045260246000fd5b500490565b6000828210156113af576113af6112fc565b500390565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b60608201526080019056fea2646970667358221220c1a14228e6a76d4bff49a660021fc308a94dc623a18c786e2a40ea9b7447cb5864736f6c634300080c0033
Deployed Bytecode Sourcemap
38370:1625:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26181:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28532:201;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;28532:201:0;1053:187:1;27301:108:0;27389:12;;27301:108;;;1391:25:1;;;1379:2;1364:18;27301:108:0;1245:177:1;38068:227:0;;;;;;:::i;:::-;;:::i;:::-;;39122:300;;;;;;:::i;:::-;;:::i;38431:50::-;;38472:9;38431:50;;27143:93;;;27226:2;2093:36:1;;2081:2;2066:18;27143:93:0;1951:184:1;37789:41:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;30017:238;;;;;;:::i;:::-;;:::i;38751:161::-;;;;;;:::i;:::-;;:::i;27472:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;27573:18:0;27546:7;27573:18;;;:9;:18;;;;;;;27472:127;18922:103;;;:::i;38524:219::-;;;:::i;18274:87::-;18347:6;;-1:-1:-1;;;;;18347:6:0;18274:87;;;-1:-1:-1;;;;;2489:32:1;;;2471:51;;2459:2;2444:18;18274:87:0;2325:203:1;26400:104:0;;;:::i;39817:175::-;;;;;;:::i;:::-;;:::i;30758:436::-;;;;;;:::i;:::-;;:::i;38922:190::-;;;;;;:::i;:::-;;:::i;38488:27::-;;;;;-1:-1:-1;;;;;38488:27:0;;;28061:151;;;;;;:::i;:::-;;:::i;37839:221::-;;;;;;:::i;:::-;;:::i;19180:201::-;;;;;;:::i;:::-;;:::i;37760:22::-;;;;;;26181:100;26235:13;26268:5;26261:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26181:100;:::o;28532:201::-;28615:4;16386:10;28671:32;16386:10;28687:7;28696:6;28671:8;:32::i;:::-;-1:-1:-1;28721:4:0;;28532:201;-1:-1:-1;;;28532:201:0:o;38068:227::-;18160:13;:11;:13::i;:::-;-1:-1:-1;;;;;38143:19:0;::::1;38135:44;;;::::0;-1:-1:-1;;;38135:44:0;;3385:2:1;38135: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;;38135:44:0::1;;;;;;;;;-1:-1:-1::0;;;;;38198:16:0;::::1;;::::0;;;:9:::1;:16;::::0;;;;;::::1;;38190:42;;;::::0;-1:-1:-1;;;38190:42:0;;3727:2:1;38190: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;;38190:42:0::1;3525:338:1::0;38190:42:0::1;-1:-1:-1::0;;;;;38243:16:0;::::1;38262:5;38243:16:::0;;;:9:::1;:16;::::0;;;;:24;;-1:-1:-1;;38243:24:0::1;::::0;;38278:7:::1;:9:::0;;;::::1;::::0;::::1;:::i;:::-;;;;;;38068:227:::0;:::o;39122:300::-;39253:4;16386:10;39311:38;39327:4;16386:10;39342:6;39311:15;:38::i;:::-;39360:32;39375:4;39381:2;39385:6;39360:14;:32::i;:::-;-1:-1:-1;39410:4:0;;39122:300;-1:-1:-1;;;;39122:300:0:o;30017:238::-;30105:4;16386:10;30161:64;16386:10;30177:7;30214:10;30186:25;16386:10;30177:7;30186:9;:25::i;:::-;:38;;;;:::i;:::-;30161:8;:64::i;38751:161::-;38827:10;27546:7;27573:18;;;:9;:18;;;;;;38807:6;:31;;38799:63;;;;-1:-1:-1;;;38799:63:0;;4476:2:1;38799:63:0;;;4458:21:1;4515:2;4495:18;;;4488:30;-1:-1:-1;;;4534:18:1;;;4527:49;4593:18;;38799:63:0;4274:343:1;38799:63:0;38873:31;38885:10;38897:6;38873:11;:31::i;:::-;38751:161;:::o;18922:103::-;18160:13;:11;:13::i;:::-;18987:30:::1;19014:1;18987:18;:30::i;:::-;18922:103::o:0;38524:219::-;11978:19;12001:13;;;;;;12000:14;;12048:34;;;;-1:-1:-1;12066:12:0;;12081:1;12066:12;;;;:16;12048:34;12047:108;;;-1:-1:-1;12127:4:0;1633:19;:23;;;12088:66;;-1:-1:-1;12137:12:0;;;;;:17;12088:66;12025:204;;;;-1:-1:-1;;;12025:204:0;;4824:2:1;12025: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;;12025:204:0;4622:410:1;12025:204:0;12240:12;:16;;-1:-1:-1;;12240:16:0;12255:1;12240:16;;;12267:67;;;;12302:13;:20;;-1:-1:-1;;12302:20:0;;;;;12267:67;38576:34:::1;;;;;;;;;;;;;;-1:-1:-1::0;;;38576:34:0::1;;::::0;::::1;;;;;;;;;;;;;-1:-1:-1::0;;;38576:34:0::1;;::::0;:12:::1;:34::i;:::-;38621:16;:14;:16::i;:::-;38648:24;38661:10;38648:12;:24::i;:::-;38683:52;38695:10;38707:27;38472:9;38725:8;38707:27;:::i;:::-;38683:11;:52::i;:::-;12360:14:::0;12356:102;;;12407:5;12391:21;;-1:-1:-1;;12391:21:0;;;12432:14;;-1:-1:-1;2093:36:1;;12432:14:0;;2081:2:1;2066:18;12432:14:0;;;;;;;11967:498;38524:219::o;26400:104::-;26456:13;26489:7;26482:14;;;;;:::i;39817:175::-;18160:13;:11;:13::i;:::-;-1:-1:-1;;;;;39898:24:0;::::1;39890:58;;;::::0;-1:-1:-1;;;39890:58:0;;5611:2:1;39890: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;;39890:58:0::1;5409:345:1::0;39890:58:0::1;39959:12;:25:::0;;-1:-1:-1;;;;;;39959:25:0::1;-1:-1:-1::0;;;;;39959:25:0;;;::::1;::::0;;;::::1;::::0;;39817:175::o;30758:436::-;30851:4;16386:10;30851:4;30934:25;16386:10;30951:7;30934:9;:25::i;:::-;30907:52;;30998:15;30978:16;:35;;30970:85;;;;-1:-1:-1;;;30970:85:0;;5961:2:1;30970: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;;30970:85:0;5759:401:1;30970:85:0;31091:60;31100:5;31107:7;31135:15;31116:16;:34;31091:8;:60::i;38922:190::-;38993:4;16386:10;39049:33;16386:10;39071:2;39075:6;39049:14;:33::i;28061:151::-;-1:-1:-1;;;;;28177:18:0;;;28150:7;28177:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;28061:151::o;37839:221::-;18160:13;:11;:13::i;:::-;-1:-1:-1;;;;;37912:19:0;::::1;37904:44;;;::::0;-1:-1:-1;;;37904:44:0;;3385:2:1;37904: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;;37904:44:0::1;3183:337:1::0;37904:44:0::1;-1:-1:-1::0;;;;;37968:16:0;::::1;;::::0;;;:9:::1;:16;::::0;;;;;::::1;;37967:17;37959:39;;;::::0;-1:-1:-1;;;37959:39:0;;6367:2:1;37959: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;;37959:39:0::1;6165:334:1::0;37959:39:0::1;-1:-1:-1::0;;;;;38009:16:0;::::1;;::::0;;;:9:::1;:16;::::0;;;;:23;;-1:-1:-1;;38009:23:0::1;38028:4;38009:23;::::0;;38043:7:::1;:9:::0;;;::::1;::::0;::::1;:::i;19180:201::-:0;18160:13;:11;:13::i;:::-;-1:-1:-1;;;;;19269:22:0;::::1;19261:73;;;::::0;-1:-1:-1;;;19261:73:0;;6846:2:1;19261: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;;19261:73:0::1;6644:402:1::0;19261:73:0::1;19345:28;19364:8;19345:18;:28::i;34785:380::-:0;-1:-1:-1;;;;;34921:19:0;;34913:68;;;;-1:-1:-1;;;34913:68:0;;7253:2:1;34913: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;;34913:68:0;7051:400:1;34913:68:0;-1:-1:-1;;;;;35000:21:0;;34992:68;;;;-1:-1:-1;;;34992:68:0;;7658:2:1;34992: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;;34992:68:0;7456:398:1;34992:68:0;-1:-1:-1;;;;;35073:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;35125:32;;1391:25:1;;;35125:32:0;;1364:18:1;35125:32:0;;;;;;;;34785:380;;;:::o;18439:132::-;18347:6;;-1:-1:-1;;;;;18347:6:0;16386:10;18503:23;18495:68;;;;-1:-1:-1;;;18495:68:0;;8061:2:1;18495:68:0;;;8043:21:1;;;8080:18;;;8073:30;8139:34;8119:18;;;8112:62;8191:18;;18495:68:0;7859:356:1;35456:453:0;35591:24;35618:25;35628:5;35635:7;35618:9;:25::i;:::-;35591:52;;-1:-1:-1;;35658:16:0;:37;35654:248;;35740:6;35720:16;:26;;35712:68;;;;-1:-1:-1;;;35712:68:0;;8422:2:1;35712:68:0;;;8404:21:1;8461:2;8441:18;;;8434:30;8500:31;8480:18;;;8473:59;8549:18;;35712:68:0;8220:353:1;35712:68:0;35824:51;35833:5;35840:7;35868:6;35849:16;:25;35824:8;:51::i;:::-;35580:329;35456:453;;;:::o;39432:375::-;-1:-1:-1;;;;;39529:15:0;;39517:9;39529:15;;;:9;:15;;;;;;;;;:32;;-1:-1:-1;;;;;;39548:13:0;;;;;;:9;:13;;;;;;;;39529:32;39517:44;;39576:4;39572:228;;;39597:27;39607:4;39613:2;39617:6;39597:9;:27::i;:::-;39572:228;;;39657:11;39687:4;39672:11;:6;39681:2;39672:11;:::i;:::-;39671:20;;;;:::i;:::-;39722:12;;39657:34;;-1:-1:-1;39706:34:0;;39716:4;;-1:-1:-1;;;;;39722:12:0;39657:34;39706:9;:34::i;:::-;39755:33;39765:4;39771:2;39775:12;39784:3;39775:6;:12;:::i;:::-;39755:9;:33::i;:::-;39642:158;39506:301;39432:375;;;:::o;33672:675::-;-1:-1:-1;;;;;33756:21:0;;33748:67;;;;-1:-1:-1;;;33748:67:0;;9132:2:1;33748:67:0;;;9114:21:1;9171:2;9151:18;;;9144:30;9210:34;9190:18;;;9183:62;-1:-1:-1;;;9261:18:1;;;9254:31;9302:19;;33748:67:0;8930:397:1;33748:67:0;-1:-1:-1;;;;;33915:18:0;;33890:22;33915:18;;;:9;:18;;;;;;33952:24;;;;33944:71;;;;-1:-1:-1;;;33944:71:0;;9534:2:1;33944:71:0;;;9516:21:1;9573:2;9553:18;;;9546:30;9612:34;9592:18;;;9585:62;-1:-1:-1;;;9663:18:1;;;9656:32;9705:19;;33944:71:0;9332:398:1;33944:71:0;-1:-1:-1;;;;;34051:18:0;;;;;;:9;:18;;;;;;;;34072:23;;;34051:44;;34190:12;:22;;;;;;;34241:37;1391:25:1;;;34051:18:0;;;34241:37;;1364:18:1;34241:37:0;1245:177:1;34291:48:0;33737:610;33672:675;;:::o;19541:191::-;19634:6;;;-1:-1:-1;;;;;19651:17:0;;;-1:-1:-1;;;;;;19651:17:0;;;;;;;19684:40;;19634:6;;;19651:17;19634:6;;19684:40;;19615:16;;19684:40;19604:128;19541:191;:::o;25792:149::-;14121:13;;;;;;;14113:69;;;;-1:-1:-1;;;14113:69:0;;;;;;;:::i;:::-;25895:38:::1;25918:5;25925:7;25895:22;:38::i;:::-;25792:149:::0;;:::o;17817:97::-;14121:13;;;;;;;14113:69;;;;-1:-1:-1;;;14113:69:0;;;;;;;:::i;:::-;17880:26:::1;:24;:26::i;32791:548::-:0;-1:-1:-1;;;;;32875:21:0;;32867:65;;;;-1:-1:-1;;;32867:65:0;;10349:2:1;32867:65:0;;;10331:21:1;10388:2;10368:18;;;10361:30;10427:33;10407:18;;;10400:61;10478:18;;32867:65:0;10147:355:1;32867:65:0;33023:6;33007:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;33178:18:0;;;;;;:9;:18;;;;;;;;:28;;;;;;33233:37;1391:25:1;;;33233:37:0;;1364:18:1;33233:37:0;;;;;;;25792:149;;:::o;31664:840::-;-1:-1:-1;;;;;31795:18:0;;31787:68;;;;-1:-1:-1;;;31787:68:0;;10709:2:1;31787:68:0;;;10691:21:1;10748:2;10728:18;;;10721:30;10787:34;10767:18;;;10760:62;-1:-1:-1;;;10838:18:1;;;10831:35;10883:19;;31787:68:0;10507:401:1;31787:68:0;-1:-1:-1;;;;;31874:16:0;;31866:64;;;;-1:-1:-1;;;31866:64:0;;11115:2:1;31866:64:0;;;11097:21:1;11154:2;11134:18;;;11127:30;11193:34;11173:18;;;11166:62;-1:-1:-1;;;11244:18:1;;;11237:33;11287:19;;31866:64:0;10913:399:1;31866:64:0;-1:-1:-1;;;;;32016:15:0;;31994:19;32016:15;;;:9;:15;;;;;;32050:21;;;;32042:72;;;;-1:-1:-1;;;32042:72:0;;11519:2:1;32042:72:0;;;11501:21:1;11558:2;11538:18;;;11531:30;11597:34;11577:18;;;11570:62;-1:-1:-1;;;11648:18:1;;;11641:36;11694:19;;32042:72:0;11317:402:1;32042:72:0;-1:-1:-1;;;;;32150:15:0;;;;;;;:9;:15;;;;;;32168:20;;;32150:38;;32368:13;;;;;;;;;;:23;;;;;;32420:26;;;;;;32182:6;1391:25:1;;1379:2;1364:18;;1245:177;32420:26:0;;;;;;;;32459:37;33672:675;25949:162;14121:13;;;;;;;14113:69;;;;-1:-1:-1;;;14113:69:0;;;;;;;:::i;:::-;26062:13;;::::1;::::0;:5:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;26086:17:0;;::::1;::::0;:7:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;17922:113::-:0;14121:13;;;;;;;14113:69;;;;-1:-1:-1;;;14113:69:0;;;;;;;:::i;:::-;17995:32:::1;16386:10:::0;17995: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;8578:217::-;8618:1;8644;8634:132;;8688:10;8683:3;8679:20;8676:1;8669:31;8723:4;8720:1;8713:15;8751:4;8748:1;8741:15;8634:132;-1:-1:-1;8780:9:1;;8578:217::o;8800:125::-;8840:4;8868:1;8865;8862:8;8859:34;;;8873:18;;:::i;:::-;-1:-1:-1;8910:9:1;;8800:125::o;9735:407::-;9937:2;9919:21;;;9976:2;9956:18;;;9949:30;10015:34;10010:2;9995:18;;9988:62;-1:-1:-1;;;10081:2:1;10066:18;;10059:41;10132:3;10117:19;;9735:407::o
Swarm Source
ipfs://c1a14228e6a76d4bff49a660021fc308a94dc623a18c786e2a40ea9b7447cb58
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
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.