Source Code
Overview
ETH Balance
0 ETH
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 1 from a total of 1 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 28655913 | 309 days ago | IN | 0 ETH | 0.00000008 |
Cross-Chain Transactions
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
SUsds
Compiler Version
v0.8.21+commit.d9974bed
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: AGPL-3.0-or-later
/// SUsds.sol -- SUsds token
// Copyright (C) 2017, 2018, 2019 dbrock, rain, mrchico
// Copyright (C) 2024 Dai Foundation
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
pragma solidity ^0.8.21;
import "@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol";
interface IERC1271 {
function isValidSignature(
bytes32,
bytes memory
) external view returns (bytes4);
}
contract SUsds is UUPSUpgradeable {
mapping (address => uint256) public wards;
// --- ERC20 Data ---
string public constant name = "Savings USDS";
string public constant symbol = "sUSDS";
string public constant version = "1";
uint8 public constant decimals = 18;
uint256 public totalSupply;
mapping (address => uint256) public balanceOf;
mapping (address => mapping (address => uint256)) public allowance;
mapping (address => uint256) public nonces;
// --- Events ---
event Rely(address indexed usr);
event Deny(address indexed usr);
event Approval(address indexed owner, address indexed spender, uint256 value);
event Transfer(address indexed from, address indexed to, uint256 value);
// --- EIP712 niceties ---
bytes32 public constant PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
modifier auth {
require(wards[msg.sender] == 1, "SUsds/not-authorized");
_;
}
constructor() {
_disableInitializers(); // Avoid initializing in the context of the implementation
}
// --- Upgradability ---
function initialize() initializer external {
__UUPSUpgradeable_init();
wards[msg.sender] = 1;
emit Rely(msg.sender);
}
function _authorizeUpgrade(address newImplementation) internal override auth {}
function getImplementation() external view returns (address) {
return ERC1967Utils.getImplementation();
}
function _calculateDomainSeparator(uint256 chainId) private view returns (bytes32) {
return keccak256(
abi.encode(
keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"),
keccak256(bytes(name)),
keccak256(bytes(version)),
chainId,
address(this)
)
);
}
function DOMAIN_SEPARATOR() external view returns (bytes32) {
return _calculateDomainSeparator(block.chainid);
}
// --- Administration ---
function rely(address usr) external auth {
wards[usr] = 1;
emit Rely(usr);
}
function deny(address usr) external auth {
wards[usr] = 0;
emit Deny(usr);
}
// --- ERC20 Mutations ---
function transfer(address to, uint256 value) external returns (bool) {
require(to != address(0) && to != address(this), "SUsds/invalid-address");
uint256 balance = balanceOf[msg.sender];
require(balance >= value, "SUsds/insufficient-balance");
unchecked {
balanceOf[msg.sender] = balance - value;
balanceOf[to] += value; // note: we don't need an overflow check here b/c sum of all balances == totalSupply
}
emit Transfer(msg.sender, to, value);
return true;
}
function transferFrom(address from, address to, uint256 value) external returns (bool) {
require(to != address(0) && to != address(this), "SUsds/invalid-address");
uint256 balance = balanceOf[from];
require(balance >= value, "SUsds/insufficient-balance");
if (from != msg.sender) {
uint256 allowed = allowance[from][msg.sender];
if (allowed != type(uint256).max) {
require(allowed >= value, "SUsds/insufficient-allowance");
unchecked {
allowance[from][msg.sender] = allowed - value;
}
}
}
unchecked {
balanceOf[from] = balance - value;
balanceOf[to] += value; // note: we don't need an overflow check here b/c sum of all balances == totalSupply
}
emit Transfer(from, to, value);
return true;
}
function approve(address spender, uint256 value) external returns (bool) {
allowance[msg.sender][spender] = value;
emit Approval(msg.sender, spender, value);
return true;
}
// --- Mint/Burn ---
function mint(address to, uint256 value) external auth {
require(to != address(0) && to != address(this), "SUsds/invalid-address");
unchecked {
balanceOf[to] = balanceOf[to] + value; // note: we don't need an overflow check here b/c balanceOf[to] <= totalSupply and there is an overflow check below
}
totalSupply = totalSupply + value;
emit Transfer(address(0), to, value);
}
function burn(address from, uint256 value) external {
uint256 balance = balanceOf[from];
require(balance >= value, "SUsds/insufficient-balance");
if (from != msg.sender) {
uint256 allowed = allowance[from][msg.sender];
if (allowed != type(uint256).max) {
require(allowed >= value, "SUsds/insufficient-allowance");
unchecked {
allowance[from][msg.sender] = allowed - value;
}
}
}
unchecked {
balanceOf[from] = balance - value; // note: we don't need overflow checks b/c require(balance >= value) and balance <= totalSupply
totalSupply = totalSupply - value;
}
emit Transfer(from, address(0), value);
}
// --- Approve by signature ---
function _isValidSignature(
address signer,
bytes32 digest,
bytes memory signature
) internal view returns (bool valid) {
if (signature.length == 65) {
bytes32 r;
bytes32 s;
uint8 v;
assembly {
r := mload(add(signature, 0x20))
s := mload(add(signature, 0x40))
v := byte(0, mload(add(signature, 0x60)))
}
if (signer == ecrecover(digest, v, r, s)) {
return true;
}
}
if (signer.code.length > 0) {
(bool success, bytes memory result) = signer.staticcall(
abi.encodeCall(IERC1271.isValidSignature, (digest, signature))
);
valid = (success &&
result.length == 32 &&
abi.decode(result, (bytes4)) == IERC1271.isValidSignature.selector);
}
}
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
bytes memory signature
) public {
require(block.timestamp <= deadline, "SUsds/permit-expired");
require(owner != address(0), "SUsds/invalid-owner");
uint256 nonce;
unchecked { nonce = nonces[owner]++; }
bytes32 digest =
keccak256(abi.encodePacked(
"\x19\x01",
_calculateDomainSeparator(block.chainid),
keccak256(abi.encode(
PERMIT_TYPEHASH,
owner,
spender,
value,
nonce,
deadline
))
));
require(_isValidSignature(owner, digest, signature), "SUsds/invalid-permit");
allowance[owner][spender] = value;
emit Approval(owner, spender, value);
}
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external {
permit(owner, spender, value, deadline, abi.encodePacked(r, s, v));
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/utils/UUPSUpgradeable.sol)
pragma solidity ^0.8.20;
import {IERC1822Proxiable} from "@openzeppelin/contracts/interfaces/draft-IERC1822.sol";
import {ERC1967Utils} from "@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol";
import {Initializable} from "./Initializable.sol";
/**
* @dev An upgradeability mechanism designed for UUPS proxies. The functions included here can perform an upgrade of an
* {ERC1967Proxy}, when this contract is set as the implementation behind such a proxy.
*
* A security mechanism ensures that an upgrade does not turn off upgradeability accidentally, although this risk is
* reinstated if the upgrade retains upgradeability but removes the security mechanism, e.g. by replacing
* `UUPSUpgradeable` with a custom implementation of upgrades.
*
* The {_authorizeUpgrade} function must be overridden to include access restriction to the upgrade mechanism.
*/
abstract contract UUPSUpgradeable is Initializable, IERC1822Proxiable {
/// @custom:oz-upgrades-unsafe-allow state-variable-immutable
address private immutable __self = address(this);
/**
* @dev The version of the upgrade interface of the contract. If this getter is missing, both `upgradeTo(address)`
* and `upgradeToAndCall(address,bytes)` are present, and `upgradeTo` must be used if no function should be called,
* while `upgradeToAndCall` will invoke the `receive` function if the second argument is the empty byte string.
* If the getter returns `"5.0.0"`, only `upgradeToAndCall(address,bytes)` is present, and the second argument must
* be the empty byte string if no function should be called, making it impossible to invoke the `receive` function
* during an upgrade.
*/
string public constant UPGRADE_INTERFACE_VERSION = "5.0.0";
/**
* @dev The call is from an unauthorized context.
*/
error UUPSUnauthorizedCallContext();
/**
* @dev The storage `slot` is unsupported as a UUID.
*/
error UUPSUnsupportedProxiableUUID(bytes32 slot);
/**
* @dev Check that the execution is being performed through a delegatecall call and that the execution context is
* a proxy contract with an implementation (as defined in ERC1967) pointing to self. This should only be the case
* for UUPS and transparent proxies that are using the current contract as their implementation. Execution of a
* function through ERC1167 minimal proxies (clones) would not normally pass this test, but is not guaranteed to
* fail.
*/
modifier onlyProxy() {
_checkProxy();
_;
}
/**
* @dev Check that the execution is not being performed through a delegate call. This allows a function to be
* callable on the implementing contract but not through proxies.
*/
modifier notDelegated() {
_checkNotDelegated();
_;
}
function __UUPSUpgradeable_init() internal onlyInitializing {
}
function __UUPSUpgradeable_init_unchained() internal onlyInitializing {
}
/**
* @dev Implementation of the ERC1822 {proxiableUUID} function. This returns the storage slot used by the
* implementation. It is used to validate the implementation's compatibility when performing an upgrade.
*
* IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks
* bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this
* function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.
*/
function proxiableUUID() external view virtual notDelegated returns (bytes32) {
return ERC1967Utils.IMPLEMENTATION_SLOT;
}
/**
* @dev Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call
* encoded in `data`.
*
* Calls {_authorizeUpgrade}.
*
* Emits an {Upgraded} event.
*
* @custom:oz-upgrades-unsafe-allow-reachable delegatecall
*/
function upgradeToAndCall(address newImplementation, bytes memory data) public payable virtual onlyProxy {
_authorizeUpgrade(newImplementation);
_upgradeToAndCallUUPS(newImplementation, data);
}
/**
* @dev Reverts if the execution is not performed via delegatecall or the execution
* context is not of a proxy with an ERC1967-compliant implementation pointing to self.
* See {_onlyProxy}.
*/
function _checkProxy() internal view virtual {
if (
address(this) == __self || // Must be called through delegatecall
ERC1967Utils.getImplementation() != __self // Must be called through an active proxy
) {
revert UUPSUnauthorizedCallContext();
}
}
/**
* @dev Reverts if the execution is performed via delegatecall.
* See {notDelegated}.
*/
function _checkNotDelegated() internal view virtual {
if (address(this) != __self) {
// Must not be called through delegatecall
revert UUPSUnauthorizedCallContext();
}
}
/**
* @dev Function that should revert when `msg.sender` is not authorized to upgrade the contract. Called by
* {upgradeToAndCall}.
*
* Normally, this function will use an xref:access.adoc[access control] modifier such as {Ownable-onlyOwner}.
*
* ```solidity
* function _authorizeUpgrade(address) internal onlyOwner {}
* ```
*/
function _authorizeUpgrade(address newImplementation) internal virtual;
/**
* @dev Performs an implementation upgrade with a security check for UUPS proxies, and additional setup call.
*
* As a security check, {proxiableUUID} is invoked in the new implementation, and the return value
* is expected to be the implementation slot in ERC1967.
*
* Emits an {IERC1967-Upgraded} event.
*/
function _upgradeToAndCallUUPS(address newImplementation, bytes memory data) private {
try IERC1822Proxiable(newImplementation).proxiableUUID() returns (bytes32 slot) {
if (slot != ERC1967Utils.IMPLEMENTATION_SLOT) {
revert UUPSUnsupportedProxiableUUID(slot);
}
ERC1967Utils.upgradeToAndCall(newImplementation, data);
} catch {
// The implementation is not UUPS
revert ERC1967Utils.ERC1967InvalidImplementation(newImplementation);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC1822.sol)
pragma solidity ^0.8.20;
/**
* @dev ERC1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified
* proxy whose upgrades are fully controlled by the current implementation.
*/
interface IERC1822Proxiable {
/**
* @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation
* address.
*
* IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks
* bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this
* function revert if invoked through a proxy.
*/
function proxiableUUID() external view returns (bytes32);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/ERC1967/ERC1967Utils.sol)
pragma solidity ^0.8.20;
import {IBeacon} from "../beacon/IBeacon.sol";
import {Address} from "../../utils/Address.sol";
import {StorageSlot} from "../../utils/StorageSlot.sol";
/**
* @dev This abstract contract provides getters and event emitting update functions for
* https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots.
*/
library ERC1967Utils {
// We re-declare ERC-1967 events here because they can't be used directly from IERC1967.
// This will be fixed in Solidity 0.8.21. At that point we should remove these events.
/**
* @dev Emitted when the implementation is upgraded.
*/
event Upgraded(address indexed implementation);
/**
* @dev Emitted when the admin account has changed.
*/
event AdminChanged(address previousAdmin, address newAdmin);
/**
* @dev Emitted when the beacon is changed.
*/
event BeaconUpgraded(address indexed beacon);
/**
* @dev Storage slot with the address of the current implementation.
* This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1.
*/
// solhint-disable-next-line private-vars-leading-underscore
bytes32 internal constant IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
/**
* @dev The `implementation` of the proxy is invalid.
*/
error ERC1967InvalidImplementation(address implementation);
/**
* @dev The `admin` of the proxy is invalid.
*/
error ERC1967InvalidAdmin(address admin);
/**
* @dev The `beacon` of the proxy is invalid.
*/
error ERC1967InvalidBeacon(address beacon);
/**
* @dev An upgrade function sees `msg.value > 0` that may be lost.
*/
error ERC1967NonPayable();
/**
* @dev Returns the current implementation address.
*/
function getImplementation() internal view returns (address) {
return StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value;
}
/**
* @dev Stores a new address in the EIP1967 implementation slot.
*/
function _setImplementation(address newImplementation) private {
if (newImplementation.code.length == 0) {
revert ERC1967InvalidImplementation(newImplementation);
}
StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value = newImplementation;
}
/**
* @dev Performs implementation upgrade with additional setup call if data is nonempty.
* This function is payable only if the setup call is performed, otherwise `msg.value` is rejected
* to avoid stuck value in the contract.
*
* Emits an {IERC1967-Upgraded} event.
*/
function upgradeToAndCall(address newImplementation, bytes memory data) internal {
_setImplementation(newImplementation);
emit Upgraded(newImplementation);
if (data.length > 0) {
Address.functionDelegateCall(newImplementation, data);
} else {
_checkNonPayable();
}
}
/**
* @dev Storage slot with the admin of the contract.
* This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1.
*/
// solhint-disable-next-line private-vars-leading-underscore
bytes32 internal constant ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;
/**
* @dev Returns the current admin.
*
* TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using
* the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.
* `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103`
*/
function getAdmin() internal view returns (address) {
return StorageSlot.getAddressSlot(ADMIN_SLOT).value;
}
/**
* @dev Stores a new address in the EIP1967 admin slot.
*/
function _setAdmin(address newAdmin) private {
if (newAdmin == address(0)) {
revert ERC1967InvalidAdmin(address(0));
}
StorageSlot.getAddressSlot(ADMIN_SLOT).value = newAdmin;
}
/**
* @dev Changes the admin of the proxy.
*
* Emits an {IERC1967-AdminChanged} event.
*/
function changeAdmin(address newAdmin) internal {
emit AdminChanged(getAdmin(), newAdmin);
_setAdmin(newAdmin);
}
/**
* @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy.
* This is the keccak-256 hash of "eip1967.proxy.beacon" subtracted by 1.
*/
// solhint-disable-next-line private-vars-leading-underscore
bytes32 internal constant BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50;
/**
* @dev Returns the current beacon.
*/
function getBeacon() internal view returns (address) {
return StorageSlot.getAddressSlot(BEACON_SLOT).value;
}
/**
* @dev Stores a new beacon in the EIP1967 beacon slot.
*/
function _setBeacon(address newBeacon) private {
if (newBeacon.code.length == 0) {
revert ERC1967InvalidBeacon(newBeacon);
}
StorageSlot.getAddressSlot(BEACON_SLOT).value = newBeacon;
address beaconImplementation = IBeacon(newBeacon).implementation();
if (beaconImplementation.code.length == 0) {
revert ERC1967InvalidImplementation(beaconImplementation);
}
}
/**
* @dev Change the beacon and trigger a setup call if data is nonempty.
* This function is payable only if the setup call is performed, otherwise `msg.value` is rejected
* to avoid stuck value in the contract.
*
* Emits an {IERC1967-BeaconUpgraded} event.
*
* CAUTION: Invoking this function has no effect on an instance of {BeaconProxy} since v5, since
* it uses an immutable beacon without looking at the value of the ERC-1967 beacon slot for
* efficiency.
*/
function upgradeBeaconToAndCall(address newBeacon, bytes memory data) internal {
_setBeacon(newBeacon);
emit BeaconUpgraded(newBeacon);
if (data.length > 0) {
Address.functionDelegateCall(IBeacon(newBeacon).implementation(), data);
} else {
_checkNonPayable();
}
}
/**
* @dev Reverts if `msg.value` is not zero. It can be used to avoid `msg.value` stuck in the contract
* if an upgrade doesn't perform an initialization call.
*/
function _checkNonPayable() private {
if (msg.value > 0) {
revert ERC1967NonPayable();
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/utils/Initializable.sol)
pragma solidity ^0.8.20;
/**
* @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]
* ```solidity
* 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 Storage of the initializable contract.
*
* It's implemented on a custom ERC-7201 namespace to reduce the risk of storage collisions
* when using with upgradeable contracts.
*
* @custom:storage-location erc7201:openzeppelin.storage.Initializable
*/
struct InitializableStorage {
/**
* @dev Indicates that the contract has been initialized.
*/
uint64 _initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool _initializing;
}
// keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.Initializable")) - 1)) & ~bytes32(uint256(0xff))
bytes32 private constant INITIALIZABLE_STORAGE = 0xf0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00;
/**
* @dev The contract is already initialized.
*/
error InvalidInitialization();
/**
* @dev The contract is not initializing.
*/
error NotInitializing();
/**
* @dev Triggered when the contract has been initialized or reinitialized.
*/
event Initialized(uint64 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 in the context of a constructor an `initializer` may be invoked any
* number of times. This behavior in the constructor can be useful during testing and is not expected to be used in
* production.
*
* Emits an {Initialized} event.
*/
modifier initializer() {
// solhint-disable-next-line var-name-mixedcase
InitializableStorage storage $ = _getInitializableStorage();
// Cache values to avoid duplicated sloads
bool isTopLevelCall = !$._initializing;
uint64 initialized = $._initialized;
// Allowed calls:
// - initialSetup: the contract is not in the initializing state and no previous version was
// initialized
// - construction: the contract is initialized at version 1 (no reininitialization) and the
// current contract is just being deployed
bool initialSetup = initialized == 0 && isTopLevelCall;
bool construction = initialized == 1 && address(this).code.length == 0;
if (!initialSetup && !construction) {
revert InvalidInitialization();
}
$._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 2**64 - 1 will prevent any future reinitialization.
*
* Emits an {Initialized} event.
*/
modifier reinitializer(uint64 version) {
// solhint-disable-next-line var-name-mixedcase
InitializableStorage storage $ = _getInitializableStorage();
if ($._initializing || $._initialized >= version) {
revert InvalidInitialization();
}
$._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() {
_checkInitializing();
_;
}
/**
* @dev Reverts if the contract is not in an initializing state. See {onlyInitializing}.
*/
function _checkInitializing() internal view virtual {
if (!_isInitializing()) {
revert NotInitializing();
}
}
/**
* @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 {
// solhint-disable-next-line var-name-mixedcase
InitializableStorage storage $ = _getInitializableStorage();
if ($._initializing) {
revert InvalidInitialization();
}
if ($._initialized != type(uint64).max) {
$._initialized = type(uint64).max;
emit Initialized(type(uint64).max);
}
}
/**
* @dev Returns the highest version that has been initialized. See {reinitializer}.
*/
function _getInitializedVersion() internal view returns (uint64) {
return _getInitializableStorage()._initialized;
}
/**
* @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.
*/
function _isInitializing() internal view returns (bool) {
return _getInitializableStorage()._initializing;
}
/**
* @dev Returns a pointer to the storage namespace.
*/
// solhint-disable-next-line var-name-mixedcase
function _getInitializableStorage() private pure returns (InitializableStorage storage $) {
assembly {
$.slot := INITIALIZABLE_STORAGE
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/beacon/IBeacon.sol)
pragma solidity ^0.8.20;
/**
* @dev This is the interface that {BeaconProxy} expects of its beacon.
*/
interface IBeacon {
/**
* @dev Must return an address that can be used as a delegate call target.
*
* {UpgradeableBeacon} will check that this address is a contract.
*/
function implementation() external view returns (address);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)
pragma solidity ^0.8.20;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev The ETH balance of the account is not enough to perform the operation.
*/
error AddressInsufficientBalance(address account);
/**
* @dev There's no code at `target` (it is not a contract).
*/
error AddressEmptyCode(address target);
/**
* @dev A call to an address target failed. The target may have reverted.
*/
error FailedInnerCall();
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
if (address(this).balance < amount) {
revert AddressInsufficientBalance(address(this));
}
(bool success, ) = recipient.call{value: amount}("");
if (!success) {
revert FailedInnerCall();
}
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason or custom error, it is bubbled
* up by this function (like regular Solidity function calls). However, if
* the call reverted with no returned reason, this function reverts with a
* {FailedInnerCall} error.
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
if (address(this).balance < value) {
revert AddressInsufficientBalance(address(this));
}
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
* was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
* unsuccessful call.
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata
) internal view returns (bytes memory) {
if (!success) {
_revert(returndata);
} else {
// only check if target is a contract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
if (returndata.length == 0 && target.code.length == 0) {
revert AddressEmptyCode(target);
}
return returndata;
}
}
/**
* @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
* revert reason or with a default {FailedInnerCall} error.
*/
function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
if (!success) {
_revert(returndata);
} else {
return returndata;
}
}
/**
* @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}.
*/
function _revert(bytes memory returndata) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert FailedInnerCall();
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/StorageSlot.sol)
// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.
pragma solidity ^0.8.20;
/**
* @dev Library for reading and writing primitive types to specific storage slots.
*
* Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
* This library helps with reading and writing to such slots without the need for inline assembly.
*
* The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
*
* Example usage to set ERC1967 implementation slot:
* ```solidity
* contract ERC1967 {
* bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
*
* function _getImplementation() internal view returns (address) {
* return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
* }
*
* function _setImplementation(address newImplementation) internal {
* require(newImplementation.code.length > 0);
* StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
* }
* }
* ```
*/
library StorageSlot {
struct AddressSlot {
address value;
}
struct BooleanSlot {
bool value;
}
struct Bytes32Slot {
bytes32 value;
}
struct Uint256Slot {
uint256 value;
}
struct StringSlot {
string value;
}
struct BytesSlot {
bytes value;
}
/**
* @dev Returns an `AddressSlot` with member `value` located at `slot`.
*/
function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `BooleanSlot` with member `value` located at `slot`.
*/
function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
*/
function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `Uint256Slot` with member `value` located at `slot`.
*/
function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `StringSlot` with member `value` located at `slot`.
*/
function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `StringSlot` representation of the string storage pointer `store`.
*/
function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := store.slot
}
}
/**
* @dev Returns an `BytesSlot` with member `value` located at `slot`.
*/
function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.
*/
function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := store.slot
}
}
}{
"remappings": [
"@openzeppelin/contracts/=lib/openzeppelin-contracts-upgradeable/lib/openzeppelin-contracts/contracts/",
"@openzeppelin/contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/",
"openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/",
"openzeppelin-contracts/=lib/openzeppelin-contracts-upgradeable/lib/openzeppelin-contracts/"
],
"optimizer": {
"enabled": true,
"runs": 200
},
"metadata": {
"useLiteralContent": false,
"bytecodeHash": "ipfs",
"appendCBOR": true
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"abi"
]
}
},
"evmVersion": "paris",
"viaIR": false,
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[],"name":"UUPSUnauthorizedCallContext","type":"error"},{"inputs":[{"internalType":"bytes32","name":"slot","type":"bytes32"}],"name":"UUPSUnsupportedProxiableUUID","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"usr","type":"address"}],"name":"Deny","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"usr","type":"address"}],"name":"Rely","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UPGRADE_INTERFACE_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"value","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":"usr","type":"address"}],"name":"deny","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getImplementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"usr","type":"address"}],"name":"rely","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"wards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]Contract Creation Code
60a06040523060805234801561001457600080fd5b5061001d610022565b6100d4565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff16156100725760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b03908116146100d15780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b608051611a4b6100fd600039600081816110080152818161103101526111a30152611a4b6000f3fe6080604052600436106101665760003560e01c806370a08231116100d15780639fd5a6cf1161008a578063ad3cb1cc11610064578063ad3cb1cc14610481578063bf353dbb146104b2578063d505accf146104df578063dd62ed3e146104ff57600080fd5b80639fd5a6cf14610414578063a9059cbb14610434578063aaf10f421461045457600080fd5b806370a08231146103345780637ecebe00146103615780638129fc1c1461038e57806395d89b41146103a35780639c52a7f1146103d45780639dc29fac146103f457600080fd5b80633644e515116101235780633644e5151461028857806340c10f191461029d5780634f1ef286146102bf57806352d1902d146102d257806354fd4d50146102e757806365fae35e1461031457600080fd5b806306fdde031461016b578063095ea7b3146101b957806318160ddd146101e957806323b872dd1461020d57806330adf81f1461022d578063313ce56714610261575b600080fd5b34801561017757600080fd5b506101a36040518060400160405280600c81526020016b536176696e6773205553445360a01b81525081565b6040516101b091906115e7565b60405180910390f35b3480156101c557600080fd5b506101d96101d4366004611616565b610537565b60405190151581526020016101b0565b3480156101f557600080fd5b506101ff60015481565b6040519081526020016101b0565b34801561021957600080fd5b506101d9610228366004611640565b6105a4565b34801561023957600080fd5b506101ff7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b34801561026d57600080fd5b50610276601281565b60405160ff90911681526020016101b0565b34801561029457600080fd5b506101ff610740565b3480156102a957600080fd5b506102bd6102b8366004611616565b610750565b005b6102bd6102cd36600461171f565b61081e565b3480156102de57600080fd5b506101ff61083d565b3480156102f357600080fd5b506101a3604051806040016040528060018152602001603160f81b81525081565b34801561032057600080fd5b506102bd61032f36600461176d565b61085a565b34801561034057600080fd5b506101ff61034f36600461176d565b60026020526000908152604090205481565b34801561036d57600080fd5b506101ff61037c36600461176d565b60046020526000908152604090205481565b34801561039a57600080fd5b506102bd6108ce565b3480156103af57600080fd5b506101a360405180604001604052806005815260200164735553445360d81b81525081565b3480156103e057600080fd5b506102bd6103ef36600461176d565b610a15565b34801561040057600080fd5b506102bd61040f366004611616565b610a88565b34801561042057600080fd5b506102bd61042f366004611788565b610bc7565b34801561044057600080fd5b506101d961044f366004611616565b610de9565b34801561046057600080fd5b50610469610eb0565b6040516001600160a01b0390911681526020016101b0565b34801561048d57600080fd5b506101a3604051806040016040528060058152602001640352e302e360dc1b81525081565b3480156104be57600080fd5b506101ff6104cd36600461176d565b60006020819052908152604090205481565b3480156104eb57600080fd5b506102bd6104fa3660046117fa565b610ed1565b34801561050b57600080fd5b506101ff61051a36600461186d565b600360209081526000928352604080842090915290825290205481565b3360008181526003602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105929086815260200190565b60405180910390a35060015b92915050565b60006001600160a01b038316158015906105c757506001600160a01b0383163014155b6105ec5760405162461bcd60e51b81526004016105e3906118a0565b60405180910390fd5b6001600160a01b038416600090815260026020526040902054828110156106255760405162461bcd60e51b81526004016105e3906118cf565b6001600160a01b03851633146106dd576001600160a01b038516600090815260036020908152604080832033845290915290205460001981146106db57838110156106b25760405162461bcd60e51b815260206004820152601c60248201527f53557364732f696e73756666696369656e742d616c6c6f77616e63650000000060448201526064016105e3565b6001600160a01b0386166000908152600360209081526040808320338452909152902084820390555b505b6001600160a01b0380861660008181526002602052604080822087860390559287168082529083902080548701905591516000805160206119f68339815191529061072b9087815260200190565b60405180910390a360019150505b9392505050565b600061074b46610f28565b905090565b3360009081526020819052604090205460011461077f5760405162461bcd60e51b81526004016105e390611906565b6001600160a01b038216158015906107a057506001600160a01b0382163014155b6107bc5760405162461bcd60e51b81526004016105e3906118a0565b6001600160a01b03821660009081526002602052604090208054820190556001546107e8908290611934565b6001556040518181526001600160a01b038316906000906000805160206119f68339815191529060200160405180910390a35050565b610826610ffd565b61082f826110a4565b61083982826110d6565b5050565b6000610847611198565b506000805160206119d683398151915290565b336000908152602081905260409020546001146108895760405162461bcd60e51b81526004016105e390611906565b6001600160a01b03811660008181526020819052604080822060019055517fdd0e34038ac38b2a1ce960229778ac48a8719bc900b6c4f8d0475c6e8b385a609190a250565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff16159067ffffffffffffffff166000811580156109145750825b905060008267ffffffffffffffff1660011480156109315750303b155b90508115801561093f575080155b1561095d5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561098757845460ff60401b1916600160401b1785555b61098f6111e1565b3360008181526020819052604080822060019055517fdd0e34038ac38b2a1ce960229778ac48a8719bc900b6c4f8d0475c6e8b385a609190a28315610a0e57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050565b33600090815260208190526040902054600114610a445760405162461bcd60e51b81526004016105e390611906565b6001600160a01b038116600081815260208190526040808220829055517f184450df2e323acec0ed3b5c7531b81f9b4cdef7914dfd4c0a4317416bb5251b9190a250565b6001600160a01b03821660009081526002602052604090205481811015610ac15760405162461bcd60e51b81526004016105e3906118cf565b6001600160a01b0383163314610b79576001600160a01b03831660009081526003602090815260408083203384529091529020546000198114610b775782811015610b4e5760405162461bcd60e51b815260206004820152601c60248201527f53557364732f696e73756666696369656e742d616c6c6f77616e63650000000060448201526064016105e3565b6001600160a01b0384166000908152600360209081526040808320338452909152902083820390555b505b6001600160a01b03831660008181526002602090815260408083208686039055600180548790039055518581529192916000805160206119f6833981519152910160405180910390a3505050565b81421115610c0e5760405162461bcd60e51b815260206004820152601460248201527314d55cd91ccbdc195c9b5a5d0b595e1c1a5c995960621b60448201526064016105e3565b6001600160a01b038516610c5a5760405162461bcd60e51b815260206004820152601360248201527229aab9b23997b4b73b30b634b216b7bbb732b960691b60448201526064016105e3565b6001600160a01b038516600090815260046020526040812080546001810190915590610c8546610f28565b604080517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960208201526001600160a01b03808b169282019290925290881660608201526080810187905260a0810184905260c0810186905260e00160405160208183030381529060405280519060200120604051602001610d1e92919061190160f01b81526002810192909252602282015260420190565b604051602081830303815290604052805190602001209050610d418782856111e9565b610d845760405162461bcd60e51b815260206004820152601460248201527314d55cd91ccbda5b9d985b1a590b5c195c9b5a5d60621b60448201526064016105e3565b6001600160a01b038781166000818152600360209081526040808320948b168084529482529182902089905590518881527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350505050505050565b60006001600160a01b03831615801590610e0c57506001600160a01b0383163014155b610e285760405162461bcd60e51b81526004016105e3906118a0565b3360009081526002602052604090205482811015610e585760405162461bcd60e51b81526004016105e3906118cf565b33600081815260026020908152604080832087860390556001600160a01b03881680845292819020805488019055518681529192916000805160206119f6833981519152910160405180910390a35060019392505050565b600061074b6000805160206119d6833981519152546001600160a01b031690565b610f1f87878787868689604051602001610f0b93929190928352602083019190915260f81b6001600160f81b031916604082015260410190565b604051602081830303815290604052610bc7565b50505050505050565b604080518082018252600c81526b536176696e6773205553445360a01b6020918201528151808301835260018152603160f81b9082015281517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818301527f7b833ce3d9e5473168246d98a161bea2c6ea238198d3a0a9e9edb9c1eb00b9f9818401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6606082015260808101939093523060a0808501919091528251808503909101815260c0909301909152815191012090565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148061108457507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166110786000805160206119d6833981519152546001600160a01b031690565b6001600160a01b031614155b156110a25760405163703e46dd60e11b815260040160405180910390fd5b565b336000908152602081905260409020546001146110d35760405162461bcd60e51b81526004016105e390611906565b50565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015611130575060408051601f3d908101601f1916820190925261112d91810190611955565b60015b61115857604051634c9c8ce360e01b81526001600160a01b03831660048201526024016105e3565b6000805160206119d6833981519152811461118957604051632a87526960e21b8152600481018290526024016105e3565b6111938383611379565b505050565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146110a25760405163703e46dd60e11b815260040160405180910390fd5b6110a26113cf565b6000815160410361128657602082810151604080850151606080870151835160008082529681018086528a9052951a928501839052840183905260808401819052919260019060a0016020604051602081039080840390855afa158015611254573d6000803e3d6000fd5b505050602060405103516001600160a01b0316876001600160a01b0316036112825760019350505050610739565b5050505b6001600160a01b0384163b1561073957600080856001600160a01b031685856040516024016112b692919061196e565b60408051601f198184030181529181526020820180516001600160e01b0316630b135d3f60e11b179052516112eb919061198f565b600060405180830381855afa9150503d8060008114611326576040519150601f19603f3d011682016040523d82523d6000602084013e61132b565b606091505b509150915081801561133e575080516020145b801561136f57508051630b135d3f60e11b9061136390830160209081019084016119ab565b6001600160e01b031916145b9695505050505050565b61138282611418565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a28051156113c757611193828261147d565b6108396114f3565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff166110a257604051631afcd79f60e31b815260040160405180910390fd5b806001600160a01b03163b60000361144e57604051634c9c8ce360e01b81526001600160a01b03821660048201526024016105e3565b6000805160206119d683398151915280546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080846001600160a01b03168460405161149a919061198f565b600060405180830381855af49150503d80600081146114d5576040519150601f19603f3d011682016040523d82523d6000602084013e6114da565b606091505b50915091506114ea858383611512565b95945050505050565b34156110a25760405163b398979f60e01b815260040160405180910390fd5b606082611527576115228261156e565b610739565b815115801561153e57506001600160a01b0384163b155b1561156757604051639996b31560e01b81526001600160a01b03851660048201526024016105e3565b5080610739565b80511561157e5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b60005b838110156115b257818101518382015260200161159a565b50506000910152565b600081518084526115d3816020860160208601611597565b601f01601f19169290920160200192915050565b60208152600061073960208301846115bb565b80356001600160a01b038116811461161157600080fd5b919050565b6000806040838503121561162957600080fd5b611632836115fa565b946020939093013593505050565b60008060006060848603121561165557600080fd5b61165e846115fa565b925061166c602085016115fa565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126116a357600080fd5b813567ffffffffffffffff808211156116be576116be61167c565b604051601f8301601f19908116603f011681019082821181831017156116e6576116e661167c565b816040528381528660208588010111156116ff57600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000806040838503121561173257600080fd5b61173b836115fa565b9150602083013567ffffffffffffffff81111561175757600080fd5b61176385828601611692565b9150509250929050565b60006020828403121561177f57600080fd5b610739826115fa565b600080600080600060a086880312156117a057600080fd5b6117a9866115fa565b94506117b7602087016115fa565b93506040860135925060608601359150608086013567ffffffffffffffff8111156117e157600080fd5b6117ed88828901611692565b9150509295509295909350565b600080600080600080600060e0888a03121561181557600080fd5b61181e886115fa565b965061182c602089016115fa565b95506040880135945060608801359350608088013560ff8116811461185057600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561188057600080fd5b611889836115fa565b9150611897602084016115fa565b90509250929050565b60208082526015908201527453557364732f696e76616c69642d6164647265737360581b604082015260600190565b6020808252601a908201527f53557364732f696e73756666696369656e742d62616c616e6365000000000000604082015260600190565b60208082526014908201527314d55cd91ccbdb9bdd0b585d5d1a1bdc9a5e995960621b604082015260600190565b8082018082111561059e57634e487b7160e01b600052601160045260246000fd5b60006020828403121561196757600080fd5b5051919050565b82815260406020820152600061198760408301846115bb565b949350505050565b600082516119a1818460208701611597565b9190910192915050565b6000602082840312156119bd57600080fd5b81516001600160e01b03198116811461073957600080fdfe360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbcddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220f31c8c2ea042d3dace84b85c930e38cf4553e8e5ec237e3ed532d45de9dfa14864736f6c63430008150033
Deployed Bytecode
0x6080604052600436106101665760003560e01c806370a08231116100d15780639fd5a6cf1161008a578063ad3cb1cc11610064578063ad3cb1cc14610481578063bf353dbb146104b2578063d505accf146104df578063dd62ed3e146104ff57600080fd5b80639fd5a6cf14610414578063a9059cbb14610434578063aaf10f421461045457600080fd5b806370a08231146103345780637ecebe00146103615780638129fc1c1461038e57806395d89b41146103a35780639c52a7f1146103d45780639dc29fac146103f457600080fd5b80633644e515116101235780633644e5151461028857806340c10f191461029d5780634f1ef286146102bf57806352d1902d146102d257806354fd4d50146102e757806365fae35e1461031457600080fd5b806306fdde031461016b578063095ea7b3146101b957806318160ddd146101e957806323b872dd1461020d57806330adf81f1461022d578063313ce56714610261575b600080fd5b34801561017757600080fd5b506101a36040518060400160405280600c81526020016b536176696e6773205553445360a01b81525081565b6040516101b091906115e7565b60405180910390f35b3480156101c557600080fd5b506101d96101d4366004611616565b610537565b60405190151581526020016101b0565b3480156101f557600080fd5b506101ff60015481565b6040519081526020016101b0565b34801561021957600080fd5b506101d9610228366004611640565b6105a4565b34801561023957600080fd5b506101ff7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b34801561026d57600080fd5b50610276601281565b60405160ff90911681526020016101b0565b34801561029457600080fd5b506101ff610740565b3480156102a957600080fd5b506102bd6102b8366004611616565b610750565b005b6102bd6102cd36600461171f565b61081e565b3480156102de57600080fd5b506101ff61083d565b3480156102f357600080fd5b506101a3604051806040016040528060018152602001603160f81b81525081565b34801561032057600080fd5b506102bd61032f36600461176d565b61085a565b34801561034057600080fd5b506101ff61034f36600461176d565b60026020526000908152604090205481565b34801561036d57600080fd5b506101ff61037c36600461176d565b60046020526000908152604090205481565b34801561039a57600080fd5b506102bd6108ce565b3480156103af57600080fd5b506101a360405180604001604052806005815260200164735553445360d81b81525081565b3480156103e057600080fd5b506102bd6103ef36600461176d565b610a15565b34801561040057600080fd5b506102bd61040f366004611616565b610a88565b34801561042057600080fd5b506102bd61042f366004611788565b610bc7565b34801561044057600080fd5b506101d961044f366004611616565b610de9565b34801561046057600080fd5b50610469610eb0565b6040516001600160a01b0390911681526020016101b0565b34801561048d57600080fd5b506101a3604051806040016040528060058152602001640352e302e360dc1b81525081565b3480156104be57600080fd5b506101ff6104cd36600461176d565b60006020819052908152604090205481565b3480156104eb57600080fd5b506102bd6104fa3660046117fa565b610ed1565b34801561050b57600080fd5b506101ff61051a36600461186d565b600360209081526000928352604080842090915290825290205481565b3360008181526003602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105929086815260200190565b60405180910390a35060015b92915050565b60006001600160a01b038316158015906105c757506001600160a01b0383163014155b6105ec5760405162461bcd60e51b81526004016105e3906118a0565b60405180910390fd5b6001600160a01b038416600090815260026020526040902054828110156106255760405162461bcd60e51b81526004016105e3906118cf565b6001600160a01b03851633146106dd576001600160a01b038516600090815260036020908152604080832033845290915290205460001981146106db57838110156106b25760405162461bcd60e51b815260206004820152601c60248201527f53557364732f696e73756666696369656e742d616c6c6f77616e63650000000060448201526064016105e3565b6001600160a01b0386166000908152600360209081526040808320338452909152902084820390555b505b6001600160a01b0380861660008181526002602052604080822087860390559287168082529083902080548701905591516000805160206119f68339815191529061072b9087815260200190565b60405180910390a360019150505b9392505050565b600061074b46610f28565b905090565b3360009081526020819052604090205460011461077f5760405162461bcd60e51b81526004016105e390611906565b6001600160a01b038216158015906107a057506001600160a01b0382163014155b6107bc5760405162461bcd60e51b81526004016105e3906118a0565b6001600160a01b03821660009081526002602052604090208054820190556001546107e8908290611934565b6001556040518181526001600160a01b038316906000906000805160206119f68339815191529060200160405180910390a35050565b610826610ffd565b61082f826110a4565b61083982826110d6565b5050565b6000610847611198565b506000805160206119d683398151915290565b336000908152602081905260409020546001146108895760405162461bcd60e51b81526004016105e390611906565b6001600160a01b03811660008181526020819052604080822060019055517fdd0e34038ac38b2a1ce960229778ac48a8719bc900b6c4f8d0475c6e8b385a609190a250565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff16159067ffffffffffffffff166000811580156109145750825b905060008267ffffffffffffffff1660011480156109315750303b155b90508115801561093f575080155b1561095d5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561098757845460ff60401b1916600160401b1785555b61098f6111e1565b3360008181526020819052604080822060019055517fdd0e34038ac38b2a1ce960229778ac48a8719bc900b6c4f8d0475c6e8b385a609190a28315610a0e57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050565b33600090815260208190526040902054600114610a445760405162461bcd60e51b81526004016105e390611906565b6001600160a01b038116600081815260208190526040808220829055517f184450df2e323acec0ed3b5c7531b81f9b4cdef7914dfd4c0a4317416bb5251b9190a250565b6001600160a01b03821660009081526002602052604090205481811015610ac15760405162461bcd60e51b81526004016105e3906118cf565b6001600160a01b0383163314610b79576001600160a01b03831660009081526003602090815260408083203384529091529020546000198114610b775782811015610b4e5760405162461bcd60e51b815260206004820152601c60248201527f53557364732f696e73756666696369656e742d616c6c6f77616e63650000000060448201526064016105e3565b6001600160a01b0384166000908152600360209081526040808320338452909152902083820390555b505b6001600160a01b03831660008181526002602090815260408083208686039055600180548790039055518581529192916000805160206119f6833981519152910160405180910390a3505050565b81421115610c0e5760405162461bcd60e51b815260206004820152601460248201527314d55cd91ccbdc195c9b5a5d0b595e1c1a5c995960621b60448201526064016105e3565b6001600160a01b038516610c5a5760405162461bcd60e51b815260206004820152601360248201527229aab9b23997b4b73b30b634b216b7bbb732b960691b60448201526064016105e3565b6001600160a01b038516600090815260046020526040812080546001810190915590610c8546610f28565b604080517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960208201526001600160a01b03808b169282019290925290881660608201526080810187905260a0810184905260c0810186905260e00160405160208183030381529060405280519060200120604051602001610d1e92919061190160f01b81526002810192909252602282015260420190565b604051602081830303815290604052805190602001209050610d418782856111e9565b610d845760405162461bcd60e51b815260206004820152601460248201527314d55cd91ccbda5b9d985b1a590b5c195c9b5a5d60621b60448201526064016105e3565b6001600160a01b038781166000818152600360209081526040808320948b168084529482529182902089905590518881527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350505050505050565b60006001600160a01b03831615801590610e0c57506001600160a01b0383163014155b610e285760405162461bcd60e51b81526004016105e3906118a0565b3360009081526002602052604090205482811015610e585760405162461bcd60e51b81526004016105e3906118cf565b33600081815260026020908152604080832087860390556001600160a01b03881680845292819020805488019055518681529192916000805160206119f6833981519152910160405180910390a35060019392505050565b600061074b6000805160206119d6833981519152546001600160a01b031690565b610f1f87878787868689604051602001610f0b93929190928352602083019190915260f81b6001600160f81b031916604082015260410190565b604051602081830303815290604052610bc7565b50505050505050565b604080518082018252600c81526b536176696e6773205553445360a01b6020918201528151808301835260018152603160f81b9082015281517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818301527f7b833ce3d9e5473168246d98a161bea2c6ea238198d3a0a9e9edb9c1eb00b9f9818401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6606082015260808101939093523060a0808501919091528251808503909101815260c0909301909152815191012090565b306001600160a01b037f000000000000000000000000982f2df63fe38ab8d55f4b1464e8cfdc8ea5dec816148061108457507f000000000000000000000000982f2df63fe38ab8d55f4b1464e8cfdc8ea5dec86001600160a01b03166110786000805160206119d6833981519152546001600160a01b031690565b6001600160a01b031614155b156110a25760405163703e46dd60e11b815260040160405180910390fd5b565b336000908152602081905260409020546001146110d35760405162461bcd60e51b81526004016105e390611906565b50565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015611130575060408051601f3d908101601f1916820190925261112d91810190611955565b60015b61115857604051634c9c8ce360e01b81526001600160a01b03831660048201526024016105e3565b6000805160206119d6833981519152811461118957604051632a87526960e21b8152600481018290526024016105e3565b6111938383611379565b505050565b306001600160a01b037f000000000000000000000000982f2df63fe38ab8d55f4b1464e8cfdc8ea5dec816146110a25760405163703e46dd60e11b815260040160405180910390fd5b6110a26113cf565b6000815160410361128657602082810151604080850151606080870151835160008082529681018086528a9052951a928501839052840183905260808401819052919260019060a0016020604051602081039080840390855afa158015611254573d6000803e3d6000fd5b505050602060405103516001600160a01b0316876001600160a01b0316036112825760019350505050610739565b5050505b6001600160a01b0384163b1561073957600080856001600160a01b031685856040516024016112b692919061196e565b60408051601f198184030181529181526020820180516001600160e01b0316630b135d3f60e11b179052516112eb919061198f565b600060405180830381855afa9150503d8060008114611326576040519150601f19603f3d011682016040523d82523d6000602084013e61132b565b606091505b509150915081801561133e575080516020145b801561136f57508051630b135d3f60e11b9061136390830160209081019084016119ab565b6001600160e01b031916145b9695505050505050565b61138282611418565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a28051156113c757611193828261147d565b6108396114f3565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff166110a257604051631afcd79f60e31b815260040160405180910390fd5b806001600160a01b03163b60000361144e57604051634c9c8ce360e01b81526001600160a01b03821660048201526024016105e3565b6000805160206119d683398151915280546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080846001600160a01b03168460405161149a919061198f565b600060405180830381855af49150503d80600081146114d5576040519150601f19603f3d011682016040523d82523d6000602084013e6114da565b606091505b50915091506114ea858383611512565b95945050505050565b34156110a25760405163b398979f60e01b815260040160405180910390fd5b606082611527576115228261156e565b610739565b815115801561153e57506001600160a01b0384163b155b1561156757604051639996b31560e01b81526001600160a01b03851660048201526024016105e3565b5080610739565b80511561157e5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b60005b838110156115b257818101518382015260200161159a565b50506000910152565b600081518084526115d3816020860160208601611597565b601f01601f19169290920160200192915050565b60208152600061073960208301846115bb565b80356001600160a01b038116811461161157600080fd5b919050565b6000806040838503121561162957600080fd5b611632836115fa565b946020939093013593505050565b60008060006060848603121561165557600080fd5b61165e846115fa565b925061166c602085016115fa565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126116a357600080fd5b813567ffffffffffffffff808211156116be576116be61167c565b604051601f8301601f19908116603f011681019082821181831017156116e6576116e661167c565b816040528381528660208588010111156116ff57600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000806040838503121561173257600080fd5b61173b836115fa565b9150602083013567ffffffffffffffff81111561175757600080fd5b61176385828601611692565b9150509250929050565b60006020828403121561177f57600080fd5b610739826115fa565b600080600080600060a086880312156117a057600080fd5b6117a9866115fa565b94506117b7602087016115fa565b93506040860135925060608601359150608086013567ffffffffffffffff8111156117e157600080fd5b6117ed88828901611692565b9150509295509295909350565b600080600080600080600060e0888a03121561181557600080fd5b61181e886115fa565b965061182c602089016115fa565b95506040880135945060608801359350608088013560ff8116811461185057600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561188057600080fd5b611889836115fa565b9150611897602084016115fa565b90509250929050565b60208082526015908201527453557364732f696e76616c69642d6164647265737360581b604082015260600190565b6020808252601a908201527f53557364732f696e73756666696369656e742d62616c616e6365000000000000604082015260600190565b60208082526014908201527314d55cd91ccbdb9bdd0b585d5d1a1bdc9a5e995960621b604082015260600190565b8082018082111561059e57634e487b7160e01b600052601160045260246000fd5b60006020828403121561196757600080fd5b5051919050565b82815260406020820152600061198760408301846115bb565b949350505050565b600082516119a1818460208701611597565b9190910192915050565b6000602082840312156119bd57600080fd5b81516001600160e01b03198116811461073957600080fdfe360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbcddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220f31c8c2ea042d3dace84b85c930e38cf4553e8e5ec237e3ed532d45de9dfa14864736f6c63430008150033
Deployed Bytecode Sourcemap
1078:7537:7:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1192:49;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1192:49:7;;;;;;;;;;;;:::i;:::-;;;;;;;;4951:202;;;;;;;;;;-1:-1:-1;4951:202:7;;;;;:::i;:::-;;:::i;:::-;;;1372:14:8;;1365:22;1347:41;;1335:2;1320:18;4951:202:7;1207:187:8;1382:26:7;;;;;;;;;;;;;;;;;;;1545:25:8;;;1533:2;1518:18;1382:26:7;1399:177:8;4043:902:7;;;;;;;;;;-1:-1:-1;4043:902:7;;;;;:::i;:::-;;:::i;1917:137::-;;;;;;;;;;;;1959:95;1917:137;;1339:37;;;;;;;;;;;;1374:2;1339:37;;;;;2268:4:8;2256:17;;;2238:36;;2226:2;2211:18;1339:37:7;2096:184:8;3095:124:7;;;;;;;;;;;;;:::i;5184:432::-;;;;;;;;;;-1:-1:-1;5184:432:7;;;;;:::i;:::-;;:::i;:::-;;4158:214:1;;;;;;:::i;:::-;;:::i;3705:134::-;;;;;;;;;;;;;:::i;1295:38:7:-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1295:38:7;;;;;3255:96;;;;;;;;;;-1:-1:-1;3255:96:7;;;;;:::i;:::-;;:::i;1415:66::-;;;;;;;;;;-1:-1:-1;1415:66:7;;;;;:::i;:::-;;;;;;;;;;;;;;1559:63;;;;;;;;;;-1:-1:-1;1559:63:7;;;;;:::i;:::-;;;;;;;;;;;;;;2312:147;;;;;;;;;;;;;:::i;1247:42::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1247:42:7;;;;;3357:96;;;;;;;;;;-1:-1:-1;3357:96:7;;;;;:::i;:::-;;:::i;5622:796::-;;;;;;;;;;-1:-1:-1;5622:796:7;;;;;:::i;:::-;;:::i;7396:945::-;;;;;;;;;;-1:-1:-1;7396:945:7;;;;;:::i;:::-;;:::i;3490:547::-;;;;;;;;;;-1:-1:-1;3490:547:7;;;;;:::i;:::-;;:::i;2550:117::-;;;;;;;;;;;;;:::i;:::-;;;-1:-1:-1;;;;;4505:32:8;;;4487:51;;4475:2;4460:18;2550:117:7;4341:203:8;1819:58:1;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1819:58:1;;;;;1118:41:7;;;;;;;;;;-1:-1:-1;1118:41:7;;;;;:::i;:::-;;;;;;;;;;;;;;;8347:266;;;;;;;;;;-1:-1:-1;8347:266:7;;;;;:::i;:::-;;:::i;1487:66::-;;;;;;;;;;-1:-1:-1;1487:66:7;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;4951:202;5044:10;5018:4;5034:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;5034:30:7;;;;;;;;;;:38;;;5088:36;5018:4;;5034:30;;5088:36;;;;5067:5;1545:25:8;;1533:2;1518:18;;1399:177;5088:36:7;;;;;;;;-1:-1:-1;5142:4:7;4951:202;;;;;:::o;4043:902::-;4124:4;-1:-1:-1;;;;;4148:16:7;;;;;;:39;;-1:-1:-1;;;;;;4168:19:7;;4182:4;4168:19;;4148:39;4140:73;;;;-1:-1:-1;;;4140:73:7;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;4241:15:7;;4223;4241;;;:9;:15;;;;;;4274:16;;;;4266:55;;;;-1:-1:-1;;;4266:55:7;;;;;;;:::i;:::-;-1:-1:-1;;;;;4336:18:7;;4344:10;4336:18;4332:345;;-1:-1:-1;;;;;4388:15:7;;4370;4388;;;:9;:15;;;;;;;;4404:10;4388:27;;;;;;;;-1:-1:-1;;4433:28:7;;4429:238;;4500:5;4489:7;:16;;4481:57;;;;-1:-1:-1;;;4481:57:7;;6419:2:8;4481:57:7;;;6401:21:8;6458:2;6438:18;;;6431:30;6497;6477:18;;;6470:58;6545:18;;4481:57:7;6217:352:8;4481:57:7;-1:-1:-1;;;;;4589:15:7;;;;;;:9;:15;;;;;;;;4605:10;4589:27;;;;;;;4619:15;;;4589:45;;4429:238;4356:321;4332:345;-1:-1:-1;;;;;4711:15:7;;;;;;;:9;:15;;;;;;4729;;;4711:33;;4758:13;;;;;;;;;;:22;;;;;;4891:25;;-1:-1:-1;;;;;;;;;;;4891:25:7;;;4739:5;1545:25:8;;1533:2;1518:18;;1399:177;4891:25:7;;;;;;;;4934:4;4927:11;;;4043:902;;;;;;:::o;3095:124::-;3146:7;3172:40;3198:13;3172:25;:40::i;:::-;3165:47;;3095:124;:::o;5184:432::-;2099:10;2093:5;:17;;;;;;;;;;;2114:1;2093:22;2085:55;;;;-1:-1:-1;;;2085:55:7;;;;;;;:::i;:::-;-1:-1:-1;;;;;5257:16:7;::::1;::::0;;::::1;::::0;:39:::1;;-1:-1:-1::0;;;;;;5277:19:7;::::1;5291:4;5277:19;;5257:39;5249:73;;;;-1:-1:-1::0;;;5249:73:7::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;5372:13:7;::::1;;::::0;;;:9:::1;:13;::::0;;;;;;:21;::::1;5356:37:::0;;-1:-1:-1;5543:11:7;:19:::1;::::0;5388:5;;5543:19:::1;:::i;:::-;5529:11;:33:::0;5578:31:::1;::::0;1545:25:8;;;-1:-1:-1;;;;;5578:31:7;::::1;::::0;5595:1:::1;::::0;-1:-1:-1;;;;;;;;;;;5578:31:7;1533:2:8;1518:18;5578:31:7::1;;;;;;;5184:432:::0;;:::o;4158:214:1:-;2653:13;:11;:13::i;:::-;4273:36:::1;4291:17;4273;:36::i;:::-;4319:46;4341:17;4360:4;4319:21;:46::i;:::-;4158:214:::0;;:::o;3705:134::-;3774:7;2924:20;:18;:20::i;:::-;-1:-1:-1;;;;;;;;;;;;3705:134:1;:::o;3255:96:7:-;2099:10;2093:5;:17;;;;;;;;;;;2114:1;2093:22;2085:55;;;;-1:-1:-1;;;2085:55:7;;;;;;;:::i;:::-;-1:-1:-1;;;;;3306:10:7;::::1;:5;:10:::0;;;::::1;::::0;;;;;;;3319:1:::1;3306:14:::0;;3335:9;::::1;::::0;3306:5;3335:9:::1;3255:96:::0;:::o;2312:147::-;8870:21:0;4302:15;;-1:-1:-1;;;4302:15:0;;;;4301:16;;4348:14;;4158:30;4726:16;;:34;;;;;4746:14;4726:34;4706:54;;4770:17;4790:11;:16;;4805:1;4790:16;:50;;;;-1:-1:-1;4818:4:0;4810:25;:30;4790:50;4770:70;;4856:12;4855:13;:30;;;;;4873:12;4872:13;4855:30;4851:91;;;4908:23;;-1:-1:-1;;;4908:23:0;;;;;;;;;;;4851:91;4951:18;;-1:-1:-1;;4951:18:0;4968:1;4951:18;;;4979:67;;;;5013:22;;-1:-1:-1;;;;5013:22:0;-1:-1:-1;;;5013:22:0;;;4979:67;2365:24:7::1;:22;:24::i;:::-;2406:10;2400:5;:17:::0;;;::::1;::::0;;;;;;;2420:1:::1;2400:21:::0;;2436:16;::::1;::::0;2400:5;2436:16:::1;5070:14:0::0;5066:101;;;5100:23;;-1:-1:-1;;;;5100:23:0;;;5142:14;;-1:-1:-1;7303:50:8;;5142:14:0;;7291:2:8;7276:18;5142:14:0;;;;;;;5066:101;4092:1081;;;;;2312:147:7:o;3357:96::-;2099:10;2093:5;:17;;;;;;;;;;;2114:1;2093:22;2085:55;;;;-1:-1:-1;;;2085:55:7;;;;;;;:::i;:::-;-1:-1:-1;;;;;3408:10:7;::::1;3421:1;3408:10:::0;;;::::1;::::0;;;;;;;:14;;;3437:9;::::1;::::0;3421:1;3437:9:::1;3357:96:::0;:::o;5622:796::-;-1:-1:-1;;;;;5702:15:7;;5684;5702;;;:9;:15;;;;;;5735:16;;;;5727:55;;;;-1:-1:-1;;;5727:55:7;;;;;;;:::i;:::-;-1:-1:-1;;;;;5797:18:7;;5805:10;5797:18;5793:345;;-1:-1:-1;;;;;5849:15:7;;5831;5849;;;:9;:15;;;;;;;;5865:10;5849:27;;;;;;;;-1:-1:-1;;5894:28:7;;5890:238;;5961:5;5950:7;:16;;5942:57;;;;-1:-1:-1;;;5942:57:7;;6419:2:8;5942:57:7;;;6401:21:8;6458:2;6438:18;;;6431:30;6497;6477:18;;;6470:58;6545:18;;5942:57:7;6217:352:8;5942:57:7;-1:-1:-1;;;;;6050:15:7;;;;;;:9;:15;;;;;;;;6066:10;6050:27;;;;;;;6080:15;;;6050:45;;5890:238;5817:321;5793:345;-1:-1:-1;;;;;6172:15:7;;;;;;:9;:15;;;;;;;;6190;;;6172:33;;6333:11;;;:19;;;6315:37;;6378:33;1545:25:8;;;6172:15:7;;;-1:-1:-1;;;;;;;;;;;6378:33:7;1518:18:8;6378:33:7;;;;;;;5674:744;5622:796;;:::o;7396:945::-;7591:8;7572:15;:27;;7564:60;;;;-1:-1:-1;;;7564:60:7;;7566:2:8;7564:60:7;;;7548:21:8;7605:2;7585:18;;;7578:30;-1:-1:-1;;;7624:18:8;;;7617:50;7684:18;;7564:60:7;7364:344:8;7564:60:7;-1:-1:-1;;;;;7642:19:7;;7634:51;;;;-1:-1:-1;;;7634:51:7;;7915:2:8;7634:51:7;;;7897:21:8;7954:2;7934:18;;;7927:30;-1:-1:-1;;;7973:18:8;;;7966:49;8032:18;;7634:51:7;7713:343:8;7634:51:7;-1:-1:-1;;;;;7739:13:7;;7696;7739;;;:6;:13;;;;;:15;;;;;;;;;7868:40;7894:13;7868:25;:40::i;:::-;7936:205;;;1959:95;7936:205;;;8348:25:8;-1:-1:-1;;;;;8447:15:8;;;8427:18;;;8420:43;;;;8499:15;;;8479:18;;;8472:43;8531:18;;;8524:34;;;8574:19;;;8567:35;;;8618:19;;;8611:35;;;8320:19;;7936:205:7;;;;;;;;;;;;7926:216;;;;;;7806:350;;;;;;;;-1:-1:-1;;;8915:27:8;;8967:1;8958:11;;8951:27;;;;9003:2;8994:12;;8987:28;9040:2;9031:12;;8657:392;7806:350:7;;;;;;;;;;;;;7796:361;;;;;;7767:390;;8176:43;8194:5;8201:6;8209:9;8176:17;:43::i;:::-;8168:76;;;;-1:-1:-1;;;8168:76:7;;9256:2:8;8168:76:7;;;9238:21:8;9295:2;9275:18;;;9268:30;-1:-1:-1;;;9314:18:8;;;9307:50;9374:18;;8168:76:7;9054:344:8;8168:76:7;-1:-1:-1;;;;;8255:16:7;;;;;;;:9;:16;;;;;;;;:25;;;;;;;;;;;;;:33;;;8303:31;;1545:25:8;;;8303:31:7;;1518:18:8;8303:31:7;;;;;;;7554:787;;7396:945;;;;;:::o;3490:547::-;3553:4;-1:-1:-1;;;;;3577:16:7;;;;;;:39;;-1:-1:-1;;;;;;3597:19:7;;3611:4;3597:19;;3577:39;3569:73;;;;-1:-1:-1;;;3569:73:7;;;;;;;:::i;:::-;3680:10;3652:15;3670:21;;;:9;:21;;;;;;3709:16;;;;3701:55;;;;-1:-1:-1;;;3701:55:7;;;;;;;:::i;:::-;3801:10;3791:21;;;;:9;:21;;;;;;;;3815:15;;;3791:39;;-1:-1:-1;;;;;3844:13:7;;;;;;;;;:22;;;;;;3977:31;1545:25:8;;;3844:13:7;;3801:10;-1:-1:-1;;;;;;;;;;;3977:31:7;1518:18:8;3977:31:7;;;;;;;-1:-1:-1;4026:4:7;;3490:547;-1:-1:-1;;;3490:547:7:o;2550:117::-;2602:7;2628:32;-1:-1:-1;;;;;;;;;;;2035:53:3;-1:-1:-1;;;;;2035:53:3;;1957:138;8347:266:7;8540:66;8547:5;8554:7;8563:5;8570:8;8597:1;8600;8603;8580:25;;;;;;;;;9584:19:8;;;9628:2;9619:12;;9612:28;;;;9696:3;9674:16;-1:-1:-1;;;;;;9670:36:8;9665:2;9656:12;;9649:58;9732:2;9723:12;;9403:338;8580:25:7;;;;;;;;;;;;;8540:6;:66::i;:::-;8347:266;;;;;;;:::o;2673:416::-;2953:4;;;;;;;;;;;-1:-1:-1;;;2953:4:7;;;;;2993:7;;;;;;;;;;-1:-1:-1;;;2993:7:7;;;;2796:276;;2824:95;2796:276;;;10005:25:8;2937:22:7;10046:18:8;;;10039:34;2977:25:7;10089:18:8;;;10082:34;10132:18;;;10125:34;;;;3053:4:7;10175:19:8;;;;10168:61;;;;2796:276:7;;;;;;;;;;9977:19:8;;;;2796:276:7;;;2773:309;;;;;;2673:416::o;4599:312:1:-;4679:4;-1:-1:-1;;;;;4688:6:1;4671:23;;;:120;;;4785:6;-1:-1:-1;;;;;4749:42:1;:32;-1:-1:-1;;;;;;;;;;;2035:53:3;-1:-1:-1;;;;;2035:53:3;;1957:138;4749:32:1;-1:-1:-1;;;;;4749:42:1;;;4671:120;4654:251;;;4865:29;;-1:-1:-1;;;4865:29:1;;;;;;;;;;;4654:251;4599:312::o;2465:79:7:-;2099:10;2093:5;:17;;;;;;;;;;;2114:1;2093:22;2085:55;;;;-1:-1:-1;;;2085:55:7;;;;;;;:::i;:::-;2465:79;:::o;6052:538:1:-;6169:17;-1:-1:-1;;;;;6151:50:1;;:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6151:52:1;;;;;;;;-1:-1:-1;;6151:52:1;;;;;;;;;;;;:::i;:::-;;;6147:437;;6513:60;;-1:-1:-1;;;6513:60:1;;-1:-1:-1;;;;;4505:32:8;;6513:60:1;;;4487:51:8;4460:18;;6513:60:1;4341:203:8;6147:437:1;-1:-1:-1;;;;;;;;;;;6245:40:1;;6241:120;;6312:34;;-1:-1:-1;;;6312:34:1;;;;;1545:25:8;;;1518:18;;6312:34:1;1399:177:8;6241:120:1;6374:54;6404:17;6423:4;6374:29;:54::i;:::-;6204:235;6052:538;;:::o;5028:213::-;5102:4;-1:-1:-1;;;;;5111:6:1;5094:23;;5090:145;;5195:29;;-1:-1:-1;;;5195:29:1;;;;;;;;;;;2968:67;6931:20:0;:18;:20::i;6460:930:7:-;6596:10;6622:9;:16;6642:2;6622:22;6618:398;;6780:4;6765:20;;;6759:27;6829:4;6814:20;;;6808:27;6886:4;6871:20;;;6865:27;6934:26;;6660:9;6934:26;;;;;;;;;10656:25:8;;;6857:36:7;;10697:18:8;;;10690:45;;;10751:18;;10744:34;;;10794:18;;;10787:34;;;6759:27:7;;6934:26;;10628:19:8;;6934:26:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;6924:36:7;:6;-1:-1:-1;;;;;6924:36:7;;6920:86;;6987:4;6980:11;;;;;;;6920:86;6646:370;;;6618:398;-1:-1:-1;;;;;7030:18:7;;;:22;7026:358;;7069:12;7083:19;7106:6;-1:-1:-1;;;;;7106:17:7;7184:6;7192:9;7141:62;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;7141:62:7;;;;;;;;;;;;;;-1:-1:-1;;;;;7141:62:7;-1:-1:-1;;;7141:62:7;;;7106:111;;;7141:62;7106:111;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7068:149;;;;7240:7;:46;;;;;7267:6;:13;7284:2;7267:19;7240:46;:132;;;;-1:-1:-1;7306:28:7;;-1:-1:-1;;;7338:34:7;7306:28;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;7306:66:7;;7240:132;7231:142;6460:930;-1:-1:-1;;;;;;6460:930:7:o;2779:335:3:-;2870:37;2889:17;2870:18;:37::i;:::-;2922:27;;-1:-1:-1;;;;;2922:27:3;;;;;;;;2964:11;;:15;2960:148;;2995:53;3024:17;3043:4;2995:28;:53::i;2960:148::-;3079:18;:16;:18::i;7084:141:0:-;8870:21;8560:40;-1:-1:-1;;;8560:40:0;;;;7146:73;;7191:17;;-1:-1:-1;;;7191:17:0;;;;;;;;;;;2186:281:3;2263:17;-1:-1:-1;;;;;2263:29:3;;2296:1;2263:34;2259:119;;2320:47;;-1:-1:-1;;;2320:47:3;;-1:-1:-1;;;;;4505:32:8;;2320:47:3;;;4487:51:8;4460:18;;2320:47:3;4341:203:8;2259:119:3;-1:-1:-1;;;;;;;;;;;2387:73:3;;-1:-1:-1;;;;;;2387:73:3;-1:-1:-1;;;;;2387:73:3;;;;;;;;;;2186:281::o;4106:253:5:-;4189:12;4214;4228:23;4255:6;-1:-1:-1;;;;;4255:19:5;4275:4;4255:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4213:67;;;;4297:55;4324:6;4332:7;4341:10;4297:26;:55::i;:::-;4290:62;4106:253;-1:-1:-1;;;;;4106:253:5:o;6598:122:3:-;6648:9;:13;6644:70;;6684:19;;-1:-1:-1;;;6684:19:3;;;;;;;;;;;4625:582:5;4769:12;4798:7;4793:408;;4821:19;4829:10;4821:7;:19::i;:::-;4793:408;;;5045:17;;:22;:49;;;;-1:-1:-1;;;;;;5071:18:5;;;:23;5045:49;5041:119;;;5121:24;;-1:-1:-1;;;5121:24:5;;-1:-1:-1;;;;;4505:32:8;;5121:24:5;;;4487:51:8;4460:18;;5121:24:5;4341:203:8;5041:119:5;-1:-1:-1;5180:10:5;5173:17;;5743:516;5874:17;;:21;5870:383;;6102:10;6096:17;6158:15;6145:10;6141:2;6137:19;6130:44;5870:383;6225:17;;-1:-1:-1;;;6225:17:5;;;;;;;;;;;14:250:8;99:1;109:113;123:6;120:1;117:13;109:113;;;199:11;;;193:18;180:11;;;173:39;145:2;138:10;109:113;;;-1:-1:-1;;256:1:8;238:16;;231:27;14:250::o;269:271::-;311:3;349:5;343:12;376:6;371:3;364:19;392:76;461:6;454:4;449:3;445:14;438:4;431:5;427:16;392:76;:::i;:::-;522:2;501:15;-1:-1:-1;;497:29:8;488:39;;;;529:4;484:50;;269:271;-1:-1:-1;;269:271:8:o;545:220::-;694:2;683:9;676:21;657:4;714:45;755:2;744:9;740:18;732:6;714:45;:::i;770:173::-;838:20;;-1:-1:-1;;;;;887:31:8;;877:42;;867:70;;933:1;930;923:12;867:70;770:173;;;:::o;948:254::-;1016:6;1024;1077:2;1065:9;1056:7;1052:23;1048:32;1045:52;;;1093:1;1090;1083:12;1045:52;1116:29;1135:9;1116:29;:::i;:::-;1106:39;1192:2;1177:18;;;;1164:32;;-1:-1:-1;;;948:254:8:o;1581:328::-;1658:6;1666;1674;1727:2;1715:9;1706:7;1702:23;1698:32;1695:52;;;1743:1;1740;1733:12;1695:52;1766:29;1785:9;1766:29;:::i;:::-;1756:39;;1814:38;1848:2;1837:9;1833:18;1814:38;:::i;:::-;1804:48;;1899:2;1888:9;1884:18;1871:32;1861:42;;1581:328;;;;;:::o;2285:127::-;2346:10;2341:3;2337:20;2334:1;2327:31;2377:4;2374:1;2367:15;2401:4;2398:1;2391:15;2417:718;2459:5;2512:3;2505:4;2497:6;2493:17;2489:27;2479:55;;2530:1;2527;2520:12;2479:55;2566:6;2553:20;2592:18;2629:2;2625;2622:10;2619:36;;;2635:18;;:::i;:::-;2710:2;2704:9;2678:2;2764:13;;-1:-1:-1;;2760:22:8;;;2784:2;2756:31;2752:40;2740:53;;;2808:18;;;2828:22;;;2805:46;2802:72;;;2854:18;;:::i;:::-;2894:10;2890:2;2883:22;2929:2;2921:6;2914:18;2975:3;2968:4;2963:2;2955:6;2951:15;2947:26;2944:35;2941:55;;;2992:1;2989;2982:12;2941:55;3056:2;3049:4;3041:6;3037:17;3030:4;3022:6;3018:17;3005:54;3103:1;3096:4;3091:2;3083:6;3079:15;3075:26;3068:37;3123:6;3114:15;;;;;;2417:718;;;;:::o;3140:394::-;3217:6;3225;3278:2;3266:9;3257:7;3253:23;3249:32;3246:52;;;3294:1;3291;3284:12;3246:52;3317:29;3336:9;3317:29;:::i;:::-;3307:39;;3397:2;3386:9;3382:18;3369:32;3424:18;3416:6;3413:30;3410:50;;;3456:1;3453;3446:12;3410:50;3479:49;3520:7;3511:6;3500:9;3496:22;3479:49;:::i;:::-;3469:59;;;3140:394;;;;;:::o;3539:186::-;3598:6;3651:2;3639:9;3630:7;3626:23;3622:32;3619:52;;;3667:1;3664;3657:12;3619:52;3690:29;3709:9;3690:29;:::i;3730:606::-;3834:6;3842;3850;3858;3866;3919:3;3907:9;3898:7;3894:23;3890:33;3887:53;;;3936:1;3933;3926:12;3887:53;3959:29;3978:9;3959:29;:::i;:::-;3949:39;;4007:38;4041:2;4030:9;4026:18;4007:38;:::i;:::-;3997:48;;4092:2;4081:9;4077:18;4064:32;4054:42;;4143:2;4132:9;4128:18;4115:32;4105:42;;4198:3;4187:9;4183:19;4170:33;4226:18;4218:6;4215:30;4212:50;;;4258:1;4255;4248:12;4212:50;4281:49;4322:7;4313:6;4302:9;4298:22;4281:49;:::i;:::-;4271:59;;;3730:606;;;;;;;;:::o;4549:693::-;4660:6;4668;4676;4684;4692;4700;4708;4761:3;4749:9;4740:7;4736:23;4732:33;4729:53;;;4778:1;4775;4768:12;4729:53;4801:29;4820:9;4801:29;:::i;:::-;4791:39;;4849:38;4883:2;4872:9;4868:18;4849:38;:::i;:::-;4839:48;;4934:2;4923:9;4919:18;4906:32;4896:42;;4985:2;4974:9;4970:18;4957:32;4947:42;;5039:3;5028:9;5024:19;5011:33;5084:4;5077:5;5073:16;5066:5;5063:27;5053:55;;5104:1;5101;5094:12;5053:55;4549:693;;;;-1:-1:-1;4549:693:8;;;;5127:5;5179:3;5164:19;;5151:33;;-1:-1:-1;5231:3:8;5216:19;;;5203:33;;4549:693;-1:-1:-1;;4549:693:8:o;5247:260::-;5315:6;5323;5376:2;5364:9;5355:7;5351:23;5347:32;5344:52;;;5392:1;5389;5382:12;5344:52;5415:29;5434:9;5415:29;:::i;:::-;5405:39;;5463:38;5497:2;5486:9;5482:18;5463:38;:::i;:::-;5453:48;;5247:260;;;;;:::o;5512:345::-;5714:2;5696:21;;;5753:2;5733:18;;;5726:30;-1:-1:-1;;;5787:2:8;5772:18;;5765:51;5848:2;5833:18;;5512:345::o;5862:350::-;6064:2;6046:21;;;6103:2;6083:18;;;6076:30;6142:28;6137:2;6122:18;;6115:56;6203:2;6188:18;;5862:350::o;6574:344::-;6776:2;6758:21;;;6815:2;6795:18;;;6788:30;-1:-1:-1;;;6849:2:8;6834:18;;6827:50;6909:2;6894:18;;6574:344::o;6923:222::-;6988:9;;;7009:10;;;7006:133;;;7061:10;7056:3;7052:20;7049:1;7042:31;7096:4;7093:1;7086:15;7124:4;7121:1;7114:15;10240:184;10310:6;10363:2;10351:9;10342:7;10338:23;10334:32;10331:52;;;10379:1;10376;10369:12;10331:52;-1:-1:-1;10402:16:8;;10240:184;-1:-1:-1;10240:184:8:o;10832:289::-;11007:6;10996:9;10989:25;11050:2;11045;11034:9;11030:18;11023:30;10970:4;11070:45;11111:2;11100:9;11096:18;11088:6;11070:45;:::i;:::-;11062:53;10832:289;-1:-1:-1;;;;10832:289:8:o;11126:287::-;11255:3;11293:6;11287:13;11309:66;11368:6;11363:3;11356:4;11348:6;11344:17;11309:66;:::i;:::-;11391:16;;;;;11126:287;-1:-1:-1;;11126:287:8:o;11418:290::-;11487:6;11540:2;11528:9;11519:7;11515:23;11511:32;11508:52;;;11556:1;11553;11546:12;11508:52;11582:16;;-1:-1:-1;;;;;;11627:32:8;;11617:43;;11607:71;;11674:1;11671;11664:12
Swarm Source
ipfs://f31c8c2ea042d3dace84b85c930e38cf4553e8e5ec237e3ed532d45de9dfa148
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
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.