ERC-20
Source Code
Overview
Max Total Supply
4,619,959.676888711223000625 VOLT
Holders
256
Market
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
8.999426020969899784 VOLTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
Volt
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "../refs/CoreRef.sol";
/// @title FEI stablecoin
/// @author Fei Protocol
contract Volt is IVolt, ERC20Burnable, CoreRef {
// solhint-disable-next-line var-name-mixedcase
bytes32 public DOMAIN_SEPARATOR;
// keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
bytes32 public constant PERMIT_TYPEHASH =
0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9;
mapping(address => uint256) public nonces;
/// @notice Fei token constructor
/// @param core Fei Core address to reference
constructor(address core) ERC20("VOLT", "VOLT") CoreRef(core) {
uint256 chainId;
// solhint-disable-next-line no-inline-assembly
assembly {
chainId := chainid()
}
DOMAIN_SEPARATOR = keccak256(
abi.encode(
keccak256(
"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
),
keccak256(bytes(name())),
keccak256(bytes("1")),
chainId,
address(this)
)
);
}
/// @notice mint FEI tokens
/// @param account the account to mint to
/// @param amount the amount to mint
function mint(address account, uint256 amount)
external
override
onlyMinter
whenNotPaused
{
_mint(account, amount);
emit Minting(account, msg.sender, amount);
}
/// @notice burn FEI tokens from caller
/// @param amount the amount to burn
function burn(uint256 amount) public override(IVolt, ERC20Burnable) {
super.burn(amount);
emit Burning(msg.sender, msg.sender, amount);
}
/// @notice permit spending of FEI
/// @param owner the FEI holder
/// @param spender the approved operator
/// @param value the amount approved
/// @param deadline the deadline after which the approval is no longer valid
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external override {
require(deadline >= block.timestamp, "Fei: EXPIRED");
bytes32 digest = keccak256(
abi.encodePacked(
"\x19\x01",
DOMAIN_SEPARATOR,
keccak256(
abi.encode(
PERMIT_TYPEHASH,
owner,
spender,
value,
nonces[owner]++,
deadline
)
)
)
);
address recoveredAddress = ecrecover(digest, v, r, s);
require(
recoveredAddress != address(0) && recoveredAddress == owner,
"Fei: INVALID_SIGNATURE"
);
_approve(owner, spender, value);
}
}// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.4;
import "./ICoreRef.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
/// @title A Reference to Core
/// @author Fei Protocol
/// @notice defines some modifiers and utilities around interacting with Core
abstract contract CoreRef is ICoreRef, Pausable {
ICore private immutable _core;
IVolt private immutable _volt;
IERC20 private immutable _vcon;
/// @notice a role used with a subset of governor permissions for this contract only
bytes32 public override CONTRACT_ADMIN_ROLE;
constructor(address coreAddress) {
_core = ICore(coreAddress);
_volt = ICore(coreAddress).volt();
_vcon = ICore(coreAddress).vcon();
_setContractAdminRole(ICore(coreAddress).GOVERN_ROLE());
}
function _initialize() internal {} // no-op for backward compatibility
modifier ifMinterSelf() {
if (_core.isMinter(address(this))) {
_;
}
}
modifier onlyMinter() {
require(_core.isMinter(msg.sender), "CoreRef: Caller is not a minter");
_;
}
modifier onlyBurner() {
require(_core.isBurner(msg.sender), "CoreRef: Caller is not a burner");
_;
}
modifier onlyPCVController() {
require(
_core.isPCVController(msg.sender),
"CoreRef: Caller is not a PCV controller"
);
_;
}
modifier onlyGovernorOrAdmin() {
require(
_core.isGovernor(msg.sender) || isContractAdmin(msg.sender),
"CoreRef: Caller is not a governor or contract admin"
);
_;
}
modifier onlyGovernor() {
require(
_core.isGovernor(msg.sender),
"CoreRef: Caller is not a governor"
);
_;
}
modifier onlyGuardianOrGovernor() {
require(
_core.isGovernor(msg.sender) || _core.isGuardian(msg.sender),
"CoreRef: Caller is not a guardian or governor"
);
_;
}
modifier onlyGovernorOrGuardianOrAdmin() {
require(
_core.isGovernor(msg.sender) ||
_core.isGuardian(msg.sender) ||
isContractAdmin(msg.sender),
"CoreRef: Caller is not governor or guardian or admin"
);
_;
}
// Named onlyTribeRole to prevent collision with OZ onlyRole modifier
modifier onlyTribeRole(bytes32 role) {
require(_core.hasRole(role, msg.sender), "UNAUTHORIZED");
_;
}
// Modifiers to allow any combination of roles
modifier hasAnyOfTwoRoles(bytes32 role1, bytes32 role2) {
require(
_core.hasRole(role1, msg.sender) ||
_core.hasRole(role2, msg.sender),
"UNAUTHORIZED"
);
_;
}
modifier hasAnyOfThreeRoles(
bytes32 role1,
bytes32 role2,
bytes32 role3
) {
require(
_core.hasRole(role1, msg.sender) ||
_core.hasRole(role2, msg.sender) ||
_core.hasRole(role3, msg.sender),
"UNAUTHORIZED"
);
_;
}
modifier hasAnyOfFourRoles(
bytes32 role1,
bytes32 role2,
bytes32 role3,
bytes32 role4
) {
require(
_core.hasRole(role1, msg.sender) ||
_core.hasRole(role2, msg.sender) ||
_core.hasRole(role3, msg.sender) ||
_core.hasRole(role4, msg.sender),
"UNAUTHORIZED"
);
_;
}
modifier hasAnyOfFiveRoles(
bytes32 role1,
bytes32 role2,
bytes32 role3,
bytes32 role4,
bytes32 role5
) {
require(
_core.hasRole(role1, msg.sender) ||
_core.hasRole(role2, msg.sender) ||
_core.hasRole(role3, msg.sender) ||
_core.hasRole(role4, msg.sender) ||
_core.hasRole(role5, msg.sender),
"UNAUTHORIZED"
);
_;
}
modifier onlyVolt() {
require(msg.sender == address(_volt), "CoreRef: Caller is not VOLT");
_;
}
/// @notice sets a new admin role for this contract
function setContractAdminRole(bytes32 newContractAdminRole)
external
override
onlyGovernor
{
_setContractAdminRole(newContractAdminRole);
}
/// @notice returns whether a given address has the admin role for this contract
function isContractAdmin(address _admin)
public
view
override
returns (bool)
{
return _core.hasRole(CONTRACT_ADMIN_ROLE, _admin);
}
/// @notice set pausable methods to paused
function pause() public override onlyGuardianOrGovernor {
_pause();
}
/// @notice set pausable methods to unpaused
function unpause() public override onlyGuardianOrGovernor {
_unpause();
}
/// @notice address of the Core contract referenced
/// @return ICore implementation address
function core() public view override returns (ICore) {
return _core;
}
/// @notice address of the Fei contract referenced by Core
/// @return IFei implementation address
function volt() public view override returns (IVolt) {
return _volt;
}
/// @notice address of the Tribe contract referenced by Core
/// @return IERC20 implementation address
function vcon() public view override returns (IERC20) {
return _vcon;
}
/// @notice volt balance of contract
/// @return volt amount held
function voltBalance() public view override returns (uint256) {
return _volt.balanceOf(address(this));
}
/// @notice vcon balance of contract
/// @return vcon amount held
function vconBalance() public view override returns (uint256) {
return _vcon.balanceOf(address(this));
}
function _burnVoltHeld() internal {
_volt.burn(voltBalance());
}
function _mintVolt(address to, uint256 amount) internal virtual {
if (amount != 0) {
_volt.mint(to, amount);
}
}
function _setContractAdminRole(bytes32 newContractAdminRole) internal {
bytes32 oldContractAdminRole = CONTRACT_ADMIN_ROLE;
CONTRACT_ADMIN_ROLE = newContractAdminRole;
emit ContractAdminRoleUpdate(
oldContractAdminRole,
newContractAdminRole
);
}
}// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.4;
import "../core/ICore.sol";
/// @title CoreRef interface
/// @author Fei Protocol
interface ICoreRef {
// ----------- Events -----------
event CoreUpdate(address indexed oldCore, address indexed newCore);
event ContractAdminRoleUpdate(
bytes32 indexed oldContractAdminRole,
bytes32 indexed newContractAdminRole
);
// ----------- Governor only state changing api -----------
function setContractAdminRole(bytes32 newContractAdminRole) external;
// ----------- Governor or Guardian only state changing api -----------
function pause() external;
function unpause() external;
// ----------- Getters -----------
function core() external view returns (ICore);
function volt() external view returns (IVolt);
function vcon() external view returns (IERC20);
function voltBalance() external view returns (uint256);
function vconBalance() external view returns (uint256);
function CONTRACT_ADMIN_ROLE() external view returns (bytes32);
function isContractAdmin(address admin) external view returns (bool);
}// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.4;
import {IPermissions} from "./IPermissions.sol";
import {IVolt, IERC20} from "../volt/IVolt.sol";
/// @title Core Interface
/// @author Fei Protocol
interface ICore is IPermissions {
// ----------- Events -----------
event VoltUpdate(IERC20 indexed _volt);
event VconUpdate(IERC20 indexed _vcon);
// ----------- Getters -----------
function volt() external view returns (IVolt);
function vcon() external view returns (IERC20);
}// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/access/AccessControl.sol";
import "./IPermissionsRead.sol";
/// @title Permissions interface
/// @author Fei Protocol
interface IPermissions is IAccessControl, IPermissionsRead {
// ----------- Governor only state changing api -----------
function createRole(bytes32 role, bytes32 adminRole) external;
function grantMinter(address minter) external;
function grantBurner(address burner) external;
function grantPCVController(address pcvController) external;
function grantGovernor(address governor) external;
function grantGuardian(address guardian) external;
function revokeMinter(address minter) external;
function revokeBurner(address burner) external;
function revokePCVController(address pcvController) external;
function revokeGovernor(address governor) external;
function revokeGuardian(address guardian) external;
// ----------- Revoker only state changing api -----------
function revokeOverride(bytes32 role, address account) external;
// ----------- Getters -----------
function GUARDIAN_ROLE() external view returns (bytes32);
function GOVERN_ROLE() external view returns (bytes32);
function BURNER_ROLE() external view returns (bytes32);
function MINTER_ROLE() external view returns (bytes32);
function PCV_CONTROLLER_ROLE() external view returns (bytes32);
}// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.4;
/// @title Permissions Read interface
/// @author Fei Protocol
interface IPermissionsRead {
// ----------- Getters -----------
function isBurner(address _address) external view returns (bool);
function isMinter(address _address) external view returns (bool);
function isGovernor(address _address) external view returns (bool);
function isGuardian(address _address) external view returns (bool);
function isPCVController(address _address) external view returns (bool);
}// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
/// @title FEI stablecoin interface
/// @author Fei Protocol
interface IVolt is IERC20 {
// ----------- Events -----------
event Minting(
address indexed _to,
address indexed _minter,
uint256 _amount
);
event Burning(
address indexed _to,
address indexed _burner,
uint256 _amount
);
event IncentiveContractUpdate(
address indexed _incentivized,
address indexed _incentiveContract
);
// ----------- State changing api -----------
function burn(uint256 amount) external;
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
// ----------- Minter only state changing api -----------
function mint(address account, uint256 amount) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Burnable.sol)
pragma solidity ^0.8.0;
import "../ERC20.sol";
import "../../../utils/Context.sol";
/**
* @dev Extension of {ERC20} that allows token holders to destroy both their own
* tokens and those that they have an allowance for, in a way that can be
* recognized off-chain (via event analysis).
*/
abstract contract ERC20Burnable is Context, ERC20 {
/**
* @dev Destroys `amount` tokens from the caller.
*
* See {ERC20-_burn}.
*/
function burn(uint256 amount) public virtual {
_burn(_msgSender(), amount);
}
/**
* @dev Destroys `amount` tokens from `account`, deducting from the caller's
* allowance.
*
* See {ERC20-_burn} and {ERC20-allowance}.
*
* Requirements:
*
* - the caller must have allowance for ``accounts``'s tokens of at least
* `amount`.
*/
function burnFrom(address account, uint256 amount) public virtual {
uint256 currentAllowance = allowance(account, _msgSender());
require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
unchecked {
_approve(account, _msgSender(), currentAllowance - amount);
}
_burn(account, amount);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* Requirements:
*
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
uint256 currentAllowance = _allowances[sender][_msgSender()];
require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
unchecked {
_approve(sender, _msgSender(), currentAllowance - amount);
}
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
uint256 currentAllowance = _allowances[_msgSender()][spender];
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(_msgSender(), spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `sender` to `recipient`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(
address sender,
address recipient,
uint256 amount
) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
uint256 senderBalance = _balances[sender];
require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[sender] = senderBalance - amount;
}
_balances[recipient] += amount;
emit Transfer(sender, recipient, amount);
_afterTokenTransfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
_balances[account] += amount;
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
}
_totalSupply -= amount;
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract Pausable is Context {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
constructor() {
_paused = false;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
require(!paused(), "Pausable: paused");
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
require(paused(), "Pausable: not paused");
_;
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/AccessControl.sol)
pragma solidity ^0.8.0;
import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";
/**
* @dev Contract module that allows children to implement role-based access
* control mechanisms. This is a lightweight version that doesn't allow enumerating role
* members except through off-chain means by accessing the contract event logs. Some
* applications may benefit from on-chain enumerability, for those cases see
* {AccessControlEnumerable}.
*
* Roles are referred to by their `bytes32` identifier. These should be exposed
* in the external API and be unique. The best way to achieve this is by
* using `public constant` hash digests:
*
* ```
* bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
* ```
*
* Roles can be used to represent a set of permissions. To restrict access to a
* function call, use {hasRole}:
*
* ```
* function foo() public {
* require(hasRole(MY_ROLE, msg.sender));
* ...
* }
* ```
*
* Roles can be granted and revoked dynamically via the {grantRole} and
* {revokeRole} functions. Each role has an associated admin role, and only
* accounts that have a role's admin role can call {grantRole} and {revokeRole}.
*
* By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
* that only accounts with this role will be able to grant or revoke other
* roles. More complex role relationships can be created by using
* {_setRoleAdmin}.
*
* WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
* grant and revoke this role. Extra precautions should be taken to secure
* accounts that have been granted it.
*/
abstract contract AccessControl is Context, IAccessControl, ERC165 {
struct RoleData {
mapping(address => bool) members;
bytes32 adminRole;
}
mapping(bytes32 => RoleData) private _roles;
bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;
/**
* @dev Modifier that checks that an account has a specific role. Reverts
* with a standardized message including the required role.
*
* The format of the revert reason is given by the following regular expression:
*
* /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
*
* _Available since v4.1._
*/
modifier onlyRole(bytes32 role) {
_checkRole(role, _msgSender());
_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) public view override returns (bool) {
return _roles[role].members[account];
}
/**
* @dev Revert with a standard message if `account` is missing `role`.
*
* The format of the revert reason is given by the following regular expression:
*
* /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
*/
function _checkRole(bytes32 role, address account) internal view {
if (!hasRole(role, account)) {
revert(
string(
abi.encodePacked(
"AccessControl: account ",
Strings.toHexString(uint160(account), 20),
" is missing role ",
Strings.toHexString(uint256(role), 32)
)
)
);
}
}
/**
* @dev Returns the admin role that controls `role`. See {grantRole} and
* {revokeRole}.
*
* To change a role's admin, use {_setRoleAdmin}.
*/
function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
return _roles[role].adminRole;
}
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
_grantRole(role, account);
}
/**
* @dev Revokes `role` from `account`.
*
* If `account` had been granted `role`, emits a {RoleRevoked} event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
_revokeRole(role, account);
}
/**
* @dev Revokes `role` from the calling account.
*
* Roles are often managed via {grantRole} and {revokeRole}: this function's
* purpose is to provide a mechanism for accounts to lose their privileges
* if they are compromised (such as when a trusted device is misplaced).
*
* If the calling account had been revoked `role`, emits a {RoleRevoked}
* event.
*
* Requirements:
*
* - the caller must be `account`.
*/
function renounceRole(bytes32 role, address account) public virtual override {
require(account == _msgSender(), "AccessControl: can only renounce roles for self");
_revokeRole(role, account);
}
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event. Note that unlike {grantRole}, this function doesn't perform any
* checks on the calling account.
*
* [WARNING]
* ====
* This function should only be called from the constructor when setting
* up the initial roles for the system.
*
* Using this function in any other way is effectively circumventing the admin
* system imposed by {AccessControl}.
* ====
*
* NOTE: This function is deprecated in favor of {_grantRole}.
*/
function _setupRole(bytes32 role, address account) internal virtual {
_grantRole(role, account);
}
/**
* @dev Sets `adminRole` as ``role``'s admin role.
*
* Emits a {RoleAdminChanged} event.
*/
function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
bytes32 previousAdminRole = getRoleAdmin(role);
_roles[role].adminRole = adminRole;
emit RoleAdminChanged(role, previousAdminRole, adminRole);
}
/**
* @dev Grants `role` to `account`.
*
* Internal function without access restriction.
*/
function _grantRole(bytes32 role, address account) internal virtual {
if (!hasRole(role, account)) {
_roles[role].members[account] = true;
emit RoleGranted(role, account, _msgSender());
}
}
/**
* @dev Revokes `role` from `account`.
*
* Internal function without access restriction.
*/
function _revokeRole(bytes32 role, address account) internal virtual {
if (hasRole(role, account)) {
_roles[role].members[account] = false;
emit RoleRevoked(role, account, _msgSender());
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)
pragma solidity ^0.8.0;
/**
* @dev External interface of AccessControl declared to support ERC165 detection.
*/
interface IAccessControl {
/**
* @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
*
* `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
* {RoleAdminChanged} not being emitted signaling this.
*
* _Available since v3.1._
*/
event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);
/**
* @dev Emitted when `account` is granted `role`.
*
* `sender` is the account that originated the contract call, an admin role
* bearer except when using {AccessControl-_setupRole}.
*/
event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Emitted when `account` is revoked `role`.
*
* `sender` is the account that originated the contract call:
* - if using `revokeRole`, it is the admin role bearer
* - if using `renounceRole`, it is the role bearer (i.e. `account`)
*/
event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) external view returns (bool);
/**
* @dev Returns the admin role that controls `role`. See {grantRole} and
* {revokeRole}.
*
* To change a role's admin, use {AccessControl-_setRoleAdmin}.
*/
function getRoleAdmin(bytes32 role) external view returns (bytes32);
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function grantRole(bytes32 role, address account) external;
/**
* @dev Revokes `role` from `account`.
*
* If `account` had been granted `role`, emits a {RoleRevoked} event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function revokeRole(bytes32 role, address account) external;
/**
* @dev Revokes `role` from the calling account.
*
* Roles are often managed via {grantRole} and {revokeRole}: this function's
* purpose is to provide a mechanism for accounts to lose their privileges
* if they are compromised (such as when a trusted device is misplaced).
*
* If the calling account had been granted `role`, emits a {RoleRevoked}
* event.
*
* Requirements:
*
* - the caller must be `account`.
*/
function renounceRole(bytes32 role, address account) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}{
"metadata": {
"useLiteralContent": true
},
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"core","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":true,"internalType":"address","name":"_burner","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Burning","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"oldContractAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newContractAdminRole","type":"bytes32"}],"name":"ContractAdminRoleUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldCore","type":"address"},{"indexed":true,"internalType":"address","name":"newCore","type":"address"}],"name":"CoreUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_incentivized","type":"address"},{"indexed":true,"internalType":"address","name":"_incentiveContract","type":"address"}],"name":"IncentiveContractUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":true,"internalType":"address","name":"_minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Minting","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"CONTRACT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"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":[{"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"core","outputs":[{"internalType":"contract ICore","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_admin","type":"address"}],"name":"isContractAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"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":[{"internalType":"bytes32","name":"newContractAdminRole","type":"bytes32"}],"name":"setContractAdminRole","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vcon","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vconBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"volt","outputs":[{"internalType":"contract IVolt","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"voltBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]Contract Creation Code
60e06040523480156200001157600080fd5b5060405162001e8f38038062001e8f833981016040819052620000349162000455565b6040805180820182526004808252631593d31560e21b60208084018281528551808701909652928552840152815184939162000074916003919062000396565b5080516200008a90600490602084019062000396565b50506005805460ff19169055506001600160a01b0381166080819052604080516317607ad960e01b815290516317607ad9916004808201926020929091908290030181865afa158015620000e2573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000108919062000455565b6001600160a01b031660a0816001600160a01b031681525050806001600160a01b031663315d2f5b6040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000160573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000186919062000455565b6001600160a01b031660c0816001600160a01b0316815250506200020e816001600160a01b03166338b7f4466040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200020891906200047c565b620002c3565b50467f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6200023b620002fc565b805160209182012060408051808201825260018152603160f81b90840152805192830193909352918101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc66060820152608081018290523060a082015260c001604051602081830303815290604052805190602001206007819055505050620004d3565b6006805490829055604051829082907f29ddd278ef9169e35aa84e424b39048b89af9c0b50f85497e40f97dff6946cf590600090a35050565b6060600380546200030d9062000496565b80601f01602080910402602001604051908101604052809291908181526020018280546200033b9062000496565b80156200038c5780601f1062000360576101008083540402835291602001916200038c565b820191906000526020600020905b8154815290600101906020018083116200036e57829003601f168201915b5050505050905090565b828054620003a49062000496565b90600052602060002090601f016020900481019282620003c8576000855562000413565b82601f10620003e357805160ff191683800117855562000413565b8280016001018555821562000413579182015b8281111562000413578251825591602001919060010190620003f6565b506200042192915062000425565b5090565b5b8082111562000421576000815560010162000426565b6001600160a01b03811681146200045257600080fd5b50565b6000602082840312156200046857600080fd5b815162000475816200043c565b9392505050565b6000602082840312156200048f57600080fd5b5051919050565b600181811c90821680620004ab57607f821691505b60208210811415620004cd57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05161194d62000542600039600081816102b501526105d90152600081816102170152610ef401526000818161042b015281816106a301528181610731015281816107df01528181610a1101528181610a9f01528181610c000152610f48015261194d6000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c806342966c6811610104578063a457c2d7116100a2578063dd62ed3e11610071578063dd62ed3e146103f0578063f2f4eb2614610429578063fa9ee68b1461044f578063fc81a12a1461045757600080fd5b8063a457c2d7146103a4578063a9059cbb146103b7578063d3488442146103ca578063d505accf146103dd57600080fd5b806379cc6790116100de57806379cc6790146103615780637ecebe00146103745780638456cb591461039457806395d89b411461039c57600080fd5b806342966c681461031a5780635c975abb1461032d57806370a082311461033857600080fd5b8063313ce567116101715780633872cdb11161014b5780633872cdb1146102e257806339509351146102ea5780633f4ba83a146102fd57806340c10f191461030757600080fd5b8063313ce567146102a4578063315d2f5b146102b35780633644e515146102d957600080fd5b806318160ddd116101ad57806318160ddd1461024f5780631da033121461026157806323b872dd1461026a57806330adf81f1461027d57600080fd5b806306fdde03146101d4578063095ea7b3146101f257806317607ad914610215575b600080fd5b6101dc61046a565b6040516101e9919061163c565b60405180910390f35b6102056102003660046116ad565b6104fc565b60405190151581526020016101e9565b7f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b0390911681526020016101e9565b6002545b6040519081526020016101e9565b61025360065481565b6102056102783660046116d7565b610512565b6102537f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b604051601281526020016101e9565b7f0000000000000000000000000000000000000000000000000000000000000000610237565b61025360075481565b6102536105c1565b6102056102f83660046116ad565b610652565b61030561068e565b005b6103056103153660046116ad565b6107ca565b610305610328366004611713565b610933565b60055460ff16610205565b61025361034636600461172c565b6001600160a01b031660009081526020819052604090205490565b61030561036f3660046116ad565b610976565b61025361038236600461172c565b60086020526000908152604090205481565b6103056109fc565b6101dc610b36565b6102056103b23660046116ad565b610b45565b6102056103c53660046116ad565b610bde565b6103056103d8366004611713565b610beb565b6103056103eb36600461174e565b610cd5565b6102536103fe3660046117c1565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b7f0000000000000000000000000000000000000000000000000000000000000000610237565b610253610edc565b61020561046536600461172c565b610f2b565b606060038054610479906117f4565b80601f01602080910402602001604051908101604052809291908181526020018280546104a5906117f4565b80156104f25780601f106104c7576101008083540402835291602001916104f2565b820191906000526020600020905b8154815290600101906020018083116104d557829003601f168201915b5050505050905090565b6000610509338484610fd6565b50600192915050565b600061051f8484846110fa565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156105a95760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6105b68533858403610fd6565b506001949350505050565b6040516370a0823160e01b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a08231906024015b602060405180830381865afa158015610629573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061064d919061182f565b905090565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161050991859061068990869061185e565b610fd6565b604051631c86b03760e31b81523360048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063e43581b890602401602060405180830381865afa1580156106f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107169190611876565b806107a45750604051630c68ba2160e01b81523360048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690630c68ba2190602401602060405180830381865afa158015610780573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107a49190611876565b6107c05760405162461bcd60e51b81526004016105a090611898565b6107c86112c9565b565b6040516355138f0d60e11b81523360048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063aa271e1a90602401602060405180830381865afa15801561082e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108529190611876565b61089e5760405162461bcd60e51b815260206004820152601f60248201527f436f72655265663a2043616c6c6572206973206e6f742061206d696e7465720060448201526064016105a0565b60055460ff16156108e45760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105a0565b6108ee828261135c565b60405181815233906001600160a01b038416907fb1233017d63154bc561d57c16f7b6a55e2e1acd7fcac94045a9f35fb31a850ca906020015b60405180910390a35050565b61093c81611434565b604051818152339081907f227fb4b3aae8331f21af5167739c291fefe3afd3c2e08cea44f499e564f486ef9060200160405180910390a350565b600061098283336103fe565b9050818110156109e05760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016105a0565b6109ed8333848403610fd6565b6109f7838361143a565b505050565b604051631c86b03760e31b81523360048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063e43581b890602401602060405180830381865afa158015610a60573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a849190611876565b80610b125750604051630c68ba2160e01b81523360048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690630c68ba2190602401602060405180830381865afa158015610aee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b129190611876565b610b2e5760405162461bcd60e51b81526004016105a090611898565b6107c8611588565b606060048054610479906117f4565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610bc75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105a0565b610bd43385858403610fd6565b5060019392505050565b60006105093384846110fa565b604051631c86b03760e31b81523360048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063e43581b890602401602060405180830381865afa158015610c4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c739190611876565b610cc95760405162461bcd60e51b815260206004820152602160248201527f436f72655265663a2043616c6c6572206973206e6f74206120676f7665726e6f6044820152603960f91b60648201526084016105a0565b610cd281611603565b50565b42841015610d145760405162461bcd60e51b815260206004820152600c60248201526b11995a4e881156141254915160a21b60448201526064016105a0565b6007546001600160a01b038816600090815260086020526040812080549192917f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9918b918b918b919087610d67836118e5565b909155506040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810187905260e00160405160208183030381529060405280519060200120604051602001610de092919061190160f01b81526002810192909252602282015260420190565b60408051601f198184030181528282528051602091820120600080855291840180845281905260ff88169284019290925260608301869052608083018590529092509060019060a0016020604051602081039080840390855afa158015610e4b573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811615801590610e815750886001600160a01b0316816001600160a01b0316145b610ec65760405162461bcd60e51b81526020600482015260166024820152754665693a20494e56414c49445f5349474e415455524560501b60448201526064016105a0565b610ed1898989610fd6565b505050505050505050565b6040516370a0823160e01b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a082319060240161060c565b600654604051632474521560e21b81526000916001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016916391d1485491610f8f9186906004019182526001600160a01b0316602082015260400190565b602060405180830381865afa158015610fac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd09190611876565b92915050565b6001600160a01b0383166110385760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105a0565b6001600160a01b0382166110995760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105a0565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661115e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105a0565b6001600160a01b0382166111c05760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105a0565b6001600160a01b038316600090815260208190526040902054818110156112385760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105a0565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061126f90849061185e565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112bb91815260200190565b60405180910390a350505050565b60055460ff166113125760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016105a0565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0382166113b25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105a0565b80600260008282546113c4919061185e565b90915550506001600160a01b038216600090815260208190526040812080548392906113f190849061185e565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610927565b610cd233825b6001600160a01b03821661149a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105a0565b6001600160a01b0382166000908152602081905260409020548181101561150e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105a0565b6001600160a01b038316600090815260208190526040812083830390556002805484929061153d908490611900565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b60055460ff16156115ce5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105a0565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861133f3390565b6006805490829055604051829082907f29ddd278ef9169e35aa84e424b39048b89af9c0b50f85497e40f97dff6946cf590600090a35050565b600060208083528351808285015260005b818110156116695785810183015185820160400152820161164d565b8181111561167b576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146116a857600080fd5b919050565b600080604083850312156116c057600080fd5b6116c983611691565b946020939093013593505050565b6000806000606084860312156116ec57600080fd5b6116f584611691565b925061170360208501611691565b9150604084013590509250925092565b60006020828403121561172557600080fd5b5035919050565b60006020828403121561173e57600080fd5b61174782611691565b9392505050565b600080600080600080600060e0888a03121561176957600080fd5b61177288611691565b965061178060208901611691565b95506040880135945060608801359350608088013560ff811681146117a457600080fd5b9699959850939692959460a0840135945060c09093013592915050565b600080604083850312156117d457600080fd5b6117dd83611691565b91506117eb60208401611691565b90509250929050565b600181811c9082168061180857607f821691505b6020821081141561182957634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561184157600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561187157611871611848565b500190565b60006020828403121561188857600080fd5b8151801515811461174757600080fd5b6020808252602d908201527f436f72655265663a2043616c6c6572206973206e6f742061206775617264696160408201526c371037b91033b7bb32b93737b960991b606082015260800190565b60006000198214156118f9576118f9611848565b5060010190565b60008282101561191257611912611848565b50039056fea2646970667358221220cdaee04af0d4c81a2a6b0f7f11169cc9593b51ec8f42ea5c9f2f58402ba6e12f64736f6c634300080a0033000000000000000000000000ec7ad284f7ad256b64c6e69b84eb0f48f42e8196
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c806342966c6811610104578063a457c2d7116100a2578063dd62ed3e11610071578063dd62ed3e146103f0578063f2f4eb2614610429578063fa9ee68b1461044f578063fc81a12a1461045757600080fd5b8063a457c2d7146103a4578063a9059cbb146103b7578063d3488442146103ca578063d505accf146103dd57600080fd5b806379cc6790116100de57806379cc6790146103615780637ecebe00146103745780638456cb591461039457806395d89b411461039c57600080fd5b806342966c681461031a5780635c975abb1461032d57806370a082311461033857600080fd5b8063313ce567116101715780633872cdb11161014b5780633872cdb1146102e257806339509351146102ea5780633f4ba83a146102fd57806340c10f191461030757600080fd5b8063313ce567146102a4578063315d2f5b146102b35780633644e515146102d957600080fd5b806318160ddd116101ad57806318160ddd1461024f5780631da033121461026157806323b872dd1461026a57806330adf81f1461027d57600080fd5b806306fdde03146101d4578063095ea7b3146101f257806317607ad914610215575b600080fd5b6101dc61046a565b6040516101e9919061163c565b60405180910390f35b6102056102003660046116ad565b6104fc565b60405190151581526020016101e9565b7f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b0390911681526020016101e9565b6002545b6040519081526020016101e9565b61025360065481565b6102056102783660046116d7565b610512565b6102537f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b604051601281526020016101e9565b7f0000000000000000000000000000000000000000000000000000000000000000610237565b61025360075481565b6102536105c1565b6102056102f83660046116ad565b610652565b61030561068e565b005b6103056103153660046116ad565b6107ca565b610305610328366004611713565b610933565b60055460ff16610205565b61025361034636600461172c565b6001600160a01b031660009081526020819052604090205490565b61030561036f3660046116ad565b610976565b61025361038236600461172c565b60086020526000908152604090205481565b6103056109fc565b6101dc610b36565b6102056103b23660046116ad565b610b45565b6102056103c53660046116ad565b610bde565b6103056103d8366004611713565b610beb565b6103056103eb36600461174e565b610cd5565b6102536103fe3660046117c1565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b7f000000000000000000000000ec7ad284f7ad256b64c6e69b84eb0f48f42e8196610237565b610253610edc565b61020561046536600461172c565b610f2b565b606060038054610479906117f4565b80601f01602080910402602001604051908101604052809291908181526020018280546104a5906117f4565b80156104f25780601f106104c7576101008083540402835291602001916104f2565b820191906000526020600020905b8154815290600101906020018083116104d557829003601f168201915b5050505050905090565b6000610509338484610fd6565b50600192915050565b600061051f8484846110fa565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156105a95760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6105b68533858403610fd6565b506001949350505050565b6040516370a0823160e01b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a08231906024015b602060405180830381865afa158015610629573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061064d919061182f565b905090565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161050991859061068990869061185e565b610fd6565b604051631c86b03760e31b81523360048201527f000000000000000000000000ec7ad284f7ad256b64c6e69b84eb0f48f42e81966001600160a01b03169063e43581b890602401602060405180830381865afa1580156106f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107169190611876565b806107a45750604051630c68ba2160e01b81523360048201527f000000000000000000000000ec7ad284f7ad256b64c6e69b84eb0f48f42e81966001600160a01b031690630c68ba2190602401602060405180830381865afa158015610780573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107a49190611876565b6107c05760405162461bcd60e51b81526004016105a090611898565b6107c86112c9565b565b6040516355138f0d60e11b81523360048201527f000000000000000000000000ec7ad284f7ad256b64c6e69b84eb0f48f42e81966001600160a01b03169063aa271e1a90602401602060405180830381865afa15801561082e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108529190611876565b61089e5760405162461bcd60e51b815260206004820152601f60248201527f436f72655265663a2043616c6c6572206973206e6f742061206d696e7465720060448201526064016105a0565b60055460ff16156108e45760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105a0565b6108ee828261135c565b60405181815233906001600160a01b038416907fb1233017d63154bc561d57c16f7b6a55e2e1acd7fcac94045a9f35fb31a850ca906020015b60405180910390a35050565b61093c81611434565b604051818152339081907f227fb4b3aae8331f21af5167739c291fefe3afd3c2e08cea44f499e564f486ef9060200160405180910390a350565b600061098283336103fe565b9050818110156109e05760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016105a0565b6109ed8333848403610fd6565b6109f7838361143a565b505050565b604051631c86b03760e31b81523360048201527f000000000000000000000000ec7ad284f7ad256b64c6e69b84eb0f48f42e81966001600160a01b03169063e43581b890602401602060405180830381865afa158015610a60573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a849190611876565b80610b125750604051630c68ba2160e01b81523360048201527f000000000000000000000000ec7ad284f7ad256b64c6e69b84eb0f48f42e81966001600160a01b031690630c68ba2190602401602060405180830381865afa158015610aee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b129190611876565b610b2e5760405162461bcd60e51b81526004016105a090611898565b6107c8611588565b606060048054610479906117f4565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610bc75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105a0565b610bd43385858403610fd6565b5060019392505050565b60006105093384846110fa565b604051631c86b03760e31b81523360048201527f000000000000000000000000ec7ad284f7ad256b64c6e69b84eb0f48f42e81966001600160a01b03169063e43581b890602401602060405180830381865afa158015610c4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c739190611876565b610cc95760405162461bcd60e51b815260206004820152602160248201527f436f72655265663a2043616c6c6572206973206e6f74206120676f7665726e6f6044820152603960f91b60648201526084016105a0565b610cd281611603565b50565b42841015610d145760405162461bcd60e51b815260206004820152600c60248201526b11995a4e881156141254915160a21b60448201526064016105a0565b6007546001600160a01b038816600090815260086020526040812080549192917f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9918b918b918b919087610d67836118e5565b909155506040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810187905260e00160405160208183030381529060405280519060200120604051602001610de092919061190160f01b81526002810192909252602282015260420190565b60408051601f198184030181528282528051602091820120600080855291840180845281905260ff88169284019290925260608301869052608083018590529092509060019060a0016020604051602081039080840390855afa158015610e4b573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811615801590610e815750886001600160a01b0316816001600160a01b0316145b610ec65760405162461bcd60e51b81526020600482015260166024820152754665693a20494e56414c49445f5349474e415455524560501b60448201526064016105a0565b610ed1898989610fd6565b505050505050505050565b6040516370a0823160e01b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a082319060240161060c565b600654604051632474521560e21b81526000916001600160a01b037f000000000000000000000000ec7ad284f7ad256b64c6e69b84eb0f48f42e819616916391d1485491610f8f9186906004019182526001600160a01b0316602082015260400190565b602060405180830381865afa158015610fac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd09190611876565b92915050565b6001600160a01b0383166110385760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105a0565b6001600160a01b0382166110995760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105a0565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661115e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105a0565b6001600160a01b0382166111c05760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105a0565b6001600160a01b038316600090815260208190526040902054818110156112385760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105a0565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061126f90849061185e565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112bb91815260200190565b60405180910390a350505050565b60055460ff166113125760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016105a0565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0382166113b25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105a0565b80600260008282546113c4919061185e565b90915550506001600160a01b038216600090815260208190526040812080548392906113f190849061185e565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610927565b610cd233825b6001600160a01b03821661149a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105a0565b6001600160a01b0382166000908152602081905260409020548181101561150e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105a0565b6001600160a01b038316600090815260208190526040812083830390556002805484929061153d908490611900565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b60055460ff16156115ce5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105a0565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861133f3390565b6006805490829055604051829082907f29ddd278ef9169e35aa84e424b39048b89af9c0b50f85497e40f97dff6946cf590600090a35050565b600060208083528351808285015260005b818110156116695785810183015185820160400152820161164d565b8181111561167b576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146116a857600080fd5b919050565b600080604083850312156116c057600080fd5b6116c983611691565b946020939093013593505050565b6000806000606084860312156116ec57600080fd5b6116f584611691565b925061170360208501611691565b9150604084013590509250925092565b60006020828403121561172557600080fd5b5035919050565b60006020828403121561173e57600080fd5b61174782611691565b9392505050565b600080600080600080600060e0888a03121561176957600080fd5b61177288611691565b965061178060208901611691565b95506040880135945060608801359350608088013560ff811681146117a457600080fd5b9699959850939692959460a0840135945060c09093013592915050565b600080604083850312156117d457600080fd5b6117dd83611691565b91506117eb60208401611691565b90509250929050565b600181811c9082168061180857607f821691505b6020821081141561182957634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561184157600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561187157611871611848565b500190565b60006020828403121561188857600080fd5b8151801515811461174757600080fd5b6020808252602d908201527f436f72655265663a2043616c6c6572206973206e6f742061206775617264696160408201526c371037b91033b7bb32b93737b960991b606082015260800190565b60006000198214156118f9576118f9611848565b5060010190565b60008282101561191257611912611848565b50039056fea2646970667358221220cdaee04af0d4c81a2a6b0f7f11169cc9593b51ec8f42ea5c9f2f58402ba6e12f64736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000ec7ad284f7ad256b64c6e69b84eb0f48f42e8196
-----Decoded View---------------
Arg [0] : core (address): 0xEC7AD284f7Ad256b64c6E69b84Eb0F48f42e8196
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000ec7ad284f7ad256b64c6e69b84eb0f48f42e8196
Deployed Bytecode Sourcemap
227:2894:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2141:98:10;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4238:166;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:18;;1211:22;1193:41;;1181:2;1166:18;4238:166:10;1053:187:18;5250:82:3;5320:5;5250:82;;;-1:-1:-1;;;;;1422:32:18;;;1404:51;;1392:2;1377:18;5250:82:3;1245:216:18;3229:106:10;3316:12;;3229:106;;;1612:25:18;;;1600:2;1585:18;3229:106:10;1466:177:18;536:43:3;;;;;;4871:478:10;;;;;;:::i;:::-;;:::i;473:116:6:-;;523:66;473:116;;3078:91:10;;;3160:2;2305:36:18;;2293:2;2278:18;3078:91:10;2163:184:18;5449:83:3;5520:5;5449:83;;332:31:6;;;;;;5808:116:3;;;:::i;5744:212:10:-;;;;;;:::i;:::-;;:::i;4863:85:3:-;;;:::i;:::-;;1442:216:6;;;;;;:::i;:::-;;:::i;1749:157::-;;;;;;:::i;:::-;;:::i;1098:84:9:-;1168:7;;;;1098:84;;3393:125:10;;;;;;:::i;:::-;-1:-1:-1;;;;;3493:18:10;3467:7;3493:18;;;;;;;;;;;;3393:125;958:361:12;;;;;;:::i;:::-;;:::i;595:41:6:-;;;;;;:::i;:::-;;;;;;;;;;;;;;4727:81:3;;;:::i;2352:102:10:-;;;:::i;6443:405::-;;;;;;:::i;:::-;;:::i;3721:172::-;;;;;;:::i;:::-;;:::i;4225:179:3:-;;;;;;:::i;:::-;;:::i;2154:965:6:-;;;;;;:::i;:::-;;:::i;3951:149:10:-;;;;;;:::i;:::-;-1:-1:-1;;;;;4066:18:10;;;4040:7;4066:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3951:149;5055:82:3;5125:5;5055:82;;5612:116;;;:::i;4495:179::-;;;;;;:::i;:::-;;:::i;2141:98:10:-;2195:13;2227:5;2220:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2141:98;:::o;4238:166::-;4321:4;4337:39;719:10:14;4360:7:10;4369:6;4337:8;:39::i;:::-;-1:-1:-1;4393:4:10;4238:166;;;;:::o;4871:478::-;5007:4;5023:36;5033:6;5041:9;5052:6;5023:9;:36::i;:::-;-1:-1:-1;;;;;5097:19:10;;5070:24;5097:19;;;:11;:19;;;;;;;;719:10:14;5097:33:10;;;;;;;;5148:26;;;;5140:79;;;;-1:-1:-1;;;5140:79:10;;4906:2:18;5140:79:10;;;4888:21:18;4945:2;4925:18;;;4918:30;4984:34;4964:18;;;4957:62;-1:-1:-1;;;5035:18:18;;;5028:38;5083:19;;5140:79:10;;;;;;;;;5253:57;5262:6;719:10:14;5303:6:10;5284:16;:25;5253:8;:57::i;:::-;-1:-1:-1;5338:4:10;;4871:478;-1:-1:-1;;;;4871:478:10:o;5808:116:3:-;5887:30;;-1:-1:-1;;;5887:30:3;;5911:4;5887:30;;;1404:51:18;5861:7:3;;5887:5;-1:-1:-1;;;;;5887:15:3;;;;1377:18:18;;5887:30:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5880:37;;5808:116;:::o;5744:212:10:-;719:10:14;5832:4:10;5880:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5880:34:10;;;;;;;;;;5832:4;;5848:80;;5871:7;;5880:47;;5917:10;;5880:47;:::i;:::-;5848:8;:80::i;4863:85:3:-;1891:28;;-1:-1:-1;;;1891:28:3;;1908:10;1891:28;;;1404:51:18;1891:5:3;-1:-1:-1;;;;;1891:16:3;;;;1377:18:18;;1891:28:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:60;;;-1:-1:-1;1923:28:3;;-1:-1:-1;;;1923:28:3;;1940:10;1923:28;;;1404:51:18;1923:5:3;-1:-1:-1;;;;;1923:16:3;;;;1377:18:18;;1923:28:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1870:152;;;;-1:-1:-1;;;1870:152:3;;;;;;;:::i;:::-;4931:10:::1;:8;:10::i;:::-;4863:85::o:0;1442:216:6:-;1044:26:3;;-1:-1:-1;;;1044:26:3;;1059:10;1044:26;;;1404:51:18;1044:5:3;-1:-1:-1;;;;;1044:14:3;;;;1377:18:18;;1044:26:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1036:70;;;;-1:-1:-1;;;1036:70:3;;6673:2:18;1036:70:3;;;6655:21:18;6712:2;6692:18;;;6685:30;6751:33;6731:18;;;6724:61;6802:18;;1036:70:3;6471:355:18;1036:70:3;1168:7:9;;;;1411:9:::1;1403:38;;;::::0;-1:-1:-1;;;1403:38:9;;7033:2:18;1403:38:9::1;::::0;::::1;7015:21:18::0;7072:2;7052:18;;;7045:30;-1:-1:-1;;;7091:18:18;;;7084:46;7147:18;;1403:38:9::1;6831:340:18::0;1403:38:9::1;1578:22:6::2;1584:7;1593:6;1578:5;:22::i;:::-;1615:36;::::0;1612:25:18;;;1632:10:6::2;::::0;-1:-1:-1;;;;;1615:36:6;::::2;::::0;::::2;::::0;1600:2:18;1585:18;1615:36:6::2;;;;;;;;1442:216:::0;;:::o;1749:157::-;1827:18;1838:6;1827:10;:18::i;:::-;1860:39;;1612:25:18;;;1880:10:6;;;;1860:39;;1600:2:18;1585:18;1860:39:6;;;;;;;1749:157;:::o;958:361:12:-;1034:24;1061:32;1071:7;719:10:14;3951:149:10;:::i;1061:32:12:-;1034:59;;1131:6;1111:16;:26;;1103:75;;;;-1:-1:-1;;;1103:75:12;;7378:2:18;1103:75:12;;;7360:21:18;7417:2;7397:18;;;7390:30;7456:34;7436:18;;;7429:62;-1:-1:-1;;;7507:18:18;;;7500:34;7551:19;;1103:75:12;7176:400:18;1103:75:12;1212:58;1221:7;719:10:14;1263:6:12;1244:16;:25;1212:8;:58::i;:::-;1290:22;1296:7;1305:6;1290:5;:22::i;:::-;1024:295;958:361;;:::o;4727:81:3:-;1891:28;;-1:-1:-1;;;1891:28:3;;1908:10;1891:28;;;1404:51:18;1891:5:3;-1:-1:-1;;;;;1891:16:3;;;;1377:18:18;;1891:28:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:60;;;-1:-1:-1;1923:28:3;;-1:-1:-1;;;1923:28:3;;1940:10;1923:28;;;1404:51:18;1923:5:3;-1:-1:-1;;;;;1923:16:3;;;;1377:18:18;;1923:28:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1870:152;;;;-1:-1:-1;;;1870:152:3;;;;;;;:::i;:::-;4793:8:::1;:6;:8::i;2352:102:10:-:0;2408:13;2440:7;2433:14;;;;;:::i;6443:405::-;719:10:14;6536:4:10;6579:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6579:34:10;;;;;;;;;;6631:35;;;;6623:85;;;;-1:-1:-1;;;6623:85:10;;7783:2:18;6623:85:10;;;7765:21:18;7822:2;7802:18;;;7795:30;7861:34;7841:18;;;7834:62;-1:-1:-1;;;7912:18:18;;;7905:35;7957:19;;6623:85:10;7581:401:18;6623:85:10;6742:67;719:10:14;6765:7:10;6793:15;6774:16;:34;6742:8;:67::i;:::-;-1:-1:-1;6837:4:10;;6443:405;-1:-1:-1;;;6443:405:10:o;3721:172::-;3807:4;3823:42;719:10:14;3847:9:10;3858:6;3823:9;:42::i;4225:179:3:-;1715:28;;-1:-1:-1;;;1715:28:3;;1732:10;1715:28;;;1404:51:18;1715:5:3;-1:-1:-1;;;;;1715:16:3;;;;1377:18:18;;1715:28:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1694:108;;;;-1:-1:-1;;;1694:108:3;;8189:2:18;1694:108:3;;;8171:21:18;8228:2;8208:18;;;8201:30;8267:34;8247:18;;;8240:62;-1:-1:-1;;;8318:18:18;;;8311:31;8359:19;;1694:108:3;7987:397:18;1694:108:3;4354:43:::1;4376:20;4354:21;:43::i;:::-;4225:179:::0;:::o;2154:965:6:-;2376:15;2364:8;:27;;2356:52;;;;-1:-1:-1;;;2356:52:6;;8591:2:18;2356:52:6;;;8573:21:18;8630:2;8610:18;;;8603:30;-1:-1:-1;;;8649:18:18;;;8642:42;8701:18;;2356:52:6;8389:336:18;2356:52:6;2520:16;;-1:-1:-1;;;;;2757:13:6;;2418:14;2757:13;;;:6;:13;;;;;:15;;2418:14;;2520:16;523:66;;2662:5;;2693:7;;2726:5;;2757:15;2418:14;2757:15;;;:::i;:::-;;;;-1:-1:-1;2585:243:6;;;;;;9157:25:18;;;;-1:-1:-1;;;;;9256:15:18;;;9236:18;;;9229:43;9308:15;;;;9288:18;;;9281:43;9340:18;;;9333:34;9383:19;;;9376:35;9427:19;;;9420:35;;;9129:19;;2585:243:6;;;;;;;;;;;;2554:292;;;;;;2458:402;;;;;;;;-1:-1:-1;;;9724:27:18;;9776:1;9767:11;;9760:27;;;;9812:2;9803:12;;9796:28;9849:2;9840:12;;9466:392;2458:402:6;;;;-1:-1:-1;;2458:402:6;;;;;;;;;2435:435;;2458:402;2435:435;;;;2880:24;2907:26;;;;;;;;;10090:25:18;;;10163:4;10151:17;;10131:18;;;10124:45;;;;10185:18;;;10178:34;;;10228:18;;;10221:34;;;2435:435:6;;-1:-1:-1;2880:24:6;2907:26;;10062:19:18;;2907:26:6;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;2907:26:6;;-1:-1:-1;;2907:26:6;;;-1:-1:-1;;;;;;;2964:30:6;;;;;;:59;;;3018:5;-1:-1:-1;;;;;2998:25:6;:16;-1:-1:-1;;;;;2998:25:6;;2964:59;2943:128;;;;-1:-1:-1;;;2943:128:6;;10468:2:18;2943:128:6;;;10450:21:18;10507:2;10487:18;;;10480:30;-1:-1:-1;;;10526:18:18;;;10519:52;10588:18;;2943:128:6;10266:346:18;2943:128:6;3081:31;3090:5;3097:7;3106:5;3081:8;:31::i;:::-;2346:773;;2154:965;;;;;;;:::o;5612:116:3:-;5691:30;;-1:-1:-1;;;5691:30:3;;5715:4;5691:30;;;1404:51:18;5665:7:3;;5691:5;-1:-1:-1;;;;;5691:15:3;;;;1377:18:18;;5691:30:3;1245:216:18;4495:179:3;4639:19;;4625:42;;-1:-1:-1;;;4625:42:3;;4598:4;;-1:-1:-1;;;;;4625:5:3;:13;;;;:42;;4660:6;;4625:42;;10791:25:18;;;-1:-1:-1;;;;;10852:32:18;10847:2;10832:18;;10825:60;10779:2;10764:18;;10617:274;4625:42:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4618:49;4495:179;-1:-1:-1;;4495:179:3:o;10019:370:10:-;-1:-1:-1;;;;;10150:19:10;;10142:68;;;;-1:-1:-1;;;10142:68:10;;11098:2:18;10142:68:10;;;11080:21:18;11137:2;11117:18;;;11110:30;11176:34;11156:18;;;11149:62;-1:-1:-1;;;11227:18:18;;;11220:34;11271:19;;10142:68:10;10896:400:18;10142:68:10;-1:-1:-1;;;;;10228:21:10;;10220:68;;;;-1:-1:-1;;;10220:68:10;;11503:2:18;10220:68:10;;;11485:21:18;11542:2;11522:18;;;11515:30;11581:34;11561:18;;;11554:62;-1:-1:-1;;;11632:18:18;;;11625:32;11674:19;;10220:68:10;11301:398:18;10220:68:10;-1:-1:-1;;;;;10299:18:10;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10350:32;;1612:25:18;;;10350:32:10;;1585:18:18;10350:32:10;;;;;;;10019:370;;;:::o;7322:713::-;-1:-1:-1;;;;;7457:20:10;;7449:70;;;;-1:-1:-1;;;7449:70:10;;11906:2:18;7449:70:10;;;11888:21:18;11945:2;11925:18;;;11918:30;11984:34;11964:18;;;11957:62;-1:-1:-1;;;12035:18:18;;;12028:35;12080:19;;7449:70:10;11704:401:18;7449:70:10;-1:-1:-1;;;;;7537:23:10;;7529:71;;;;-1:-1:-1;;;7529:71:10;;12312:2:18;7529:71:10;;;12294:21:18;12351:2;12331:18;;;12324:30;12390:34;12370:18;;;12363:62;-1:-1:-1;;;12441:18:18;;;12434:33;12484:19;;7529:71:10;12110:399:18;7529:71:10;-1:-1:-1;;;;;7693:17:10;;7669:21;7693:17;;;;;;;;;;;7728:23;;;;7720:74;;;;-1:-1:-1;;;7720:74:10;;12716:2:18;7720:74:10;;;12698:21:18;12755:2;12735:18;;;12728:30;12794:34;12774:18;;;12767:62;-1:-1:-1;;;12845:18:18;;;12838:36;12891:19;;7720:74:10;12514:402:18;7720:74:10;-1:-1:-1;;;;;7828:17:10;;;:9;:17;;;;;;;;;;;7848:22;;;7828:42;;7890:20;;;;;;;;:30;;7864:6;;7828:9;7890:30;;7864:6;;7890:30;:::i;:::-;;;;;;;;7953:9;-1:-1:-1;;;;;7936:35:10;7945:6;-1:-1:-1;;;;;7936:35:10;;7964:6;7936:35;;;;1612:25:18;;1600:2;1585:18;;1466:177;7936:35:10;;;;;;;;7439:596;7322:713;;;:::o;2110:117:9:-;1168:7;;;;1669:41;;;;-1:-1:-1;;;1669:41:9;;13123:2:18;1669:41:9;;;13105:21:18;13162:2;13142:18;;;13135:30;-1:-1:-1;;;13181:18:18;;;13174:50;13241:18;;1669:41:9;12921:344:18;1669:41:9;2168:7:::1;:15:::0;;-1:-1:-1;;2168:15:9::1;::::0;;2198:22:::1;719:10:14::0;2207:12:9::1;2198:22;::::0;-1:-1:-1;;;;;1422:32:18;;;1404:51;;1392:2;1377:18;2198:22:9::1;;;;;;;2110:117::o:0;8311:389:10:-;-1:-1:-1;;;;;8394:21:10;;8386:65;;;;-1:-1:-1;;;8386:65:10;;13472:2:18;8386:65:10;;;13454:21:18;13511:2;13491:18;;;13484:30;13550:33;13530:18;;;13523:61;13601:18;;8386:65:10;13270:355:18;8386:65:10;8538:6;8522:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8554:18:10;;:9;:18;;;;;;;;;;:28;;8576:6;;8554:9;:28;;8576:6;;8554:28;:::i;:::-;;;;-1:-1:-1;;8597:37:10;;1612:25:18;;;-1:-1:-1;;;;;8597:37:10;;;8614:1;;8597:37;;1600:2:18;1585:18;8597:37:10;1466:177:18;563:89:12;618:27;719:10:14;638:6:12;9020:576:10;-1:-1:-1;;;;;9103:21:10;;9095:67;;;;-1:-1:-1;;;9095:67:10;;13832:2:18;9095:67:10;;;13814:21:18;13871:2;13851:18;;;13844:30;13910:34;13890:18;;;13883:62;-1:-1:-1;;;13961:18:18;;;13954:31;14002:19;;9095:67:10;13630:397:18;9095:67:10;-1:-1:-1;;;;;9258:18:10;;9233:22;9258:18;;;;;;;;;;;9294:24;;;;9286:71;;;;-1:-1:-1;;;9286:71:10;;14234:2:18;9286:71:10;;;14216:21:18;14273:2;14253:18;;;14246:30;14312:34;14292:18;;;14285:62;-1:-1:-1;;;14363:18:18;;;14356:32;14405:19;;9286:71:10;14032:398:18;9286:71:10;-1:-1:-1;;;;;9391:18:10;;:9;:18;;;;;;;;;;9412:23;;;9391:44;;9455:12;:22;;9429:6;;9391:9;9455:22;;9429:6;;9455:22;:::i;:::-;;;;-1:-1:-1;;9493:37:10;;1612:25:18;;;9519:1:10;;-1:-1:-1;;;;;9493:37:10;;;;;1600:2:18;1585:18;9493:37:10;;;;;;;1024:295:12;958:361;;:::o;1863:115:9:-;1168:7;;;;1411:9;1403:38;;;;-1:-1:-1;;;1403:38:9;;7033:2:18;1403:38:9;;;7015:21:18;7072:2;7052:18;;;7045:30;-1:-1:-1;;;7091:18:18;;;7084:46;7147:18;;1403:38:9;6831:340:18;1403:38:9;1922:7:::1;:14:::0;;-1:-1:-1;;1922:14:9::1;1932:4;1922:14;::::0;;1951:20:::1;1958:12;719:10:14::0;;640:96;6162:305:3;6273:19;;;6302:42;;;;6359:101;;6324:20;;6273:19;;6359:101;;6242:28;;6359:101;6232:235;6162:305;:::o;14:597:18:-;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:18;574:15;-1:-1:-1;;570:29:18;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:18:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:18;;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:18:o;1830:328::-;1907:6;1915;1923;1976:2;1964:9;1955:7;1951:23;1947:32;1944:52;;;1992:1;1989;1982:12;1944:52;2015:29;2034:9;2015:29;:::i;:::-;2005:39;;2063:38;2097:2;2086:9;2082:18;2063:38;:::i;:::-;2053:48;;2148:2;2137:9;2133:18;2120:32;2110:42;;1830:328;;;;;:::o;2575:180::-;2634:6;2687:2;2675:9;2666:7;2662:23;2658:32;2655:52;;;2703:1;2700;2693:12;2655:52;-1:-1:-1;2726:23:18;;2575:180;-1:-1:-1;2575:180:18:o;2760:186::-;2819:6;2872:2;2860:9;2851:7;2847:23;2843:32;2840:52;;;2888:1;2885;2878:12;2840:52;2911:29;2930:9;2911:29;:::i;:::-;2901:39;2760:186;-1:-1:-1;;;2760:186:18:o;3136:693::-;3247:6;3255;3263;3271;3279;3287;3295;3348:3;3336:9;3327:7;3323:23;3319:33;3316:53;;;3365:1;3362;3355:12;3316:53;3388:29;3407:9;3388:29;:::i;:::-;3378:39;;3436:38;3470:2;3459:9;3455:18;3436:38;:::i;:::-;3426:48;;3521:2;3510:9;3506:18;3493:32;3483:42;;3572:2;3561:9;3557:18;3544:32;3534:42;;3626:3;3615:9;3611:19;3598:33;3671:4;3664:5;3660:16;3653:5;3650:27;3640:55;;3691:1;3688;3681:12;3640:55;3136:693;;;;-1:-1:-1;3136:693:18;;;;3714:5;3766:3;3751:19;;3738:33;;-1:-1:-1;3818:3:18;3803:19;;;3790:33;;3136:693;-1:-1:-1;;3136:693:18:o;3834:260::-;3902:6;3910;3963:2;3951:9;3942:7;3938:23;3934:32;3931:52;;;3979:1;3976;3969:12;3931:52;4002:29;4021:9;4002:29;:::i;:::-;3992:39;;4050:38;4084:2;4073:9;4069:18;4050:38;:::i;:::-;4040:48;;3834:260;;;;;:::o;4319:380::-;4398:1;4394:12;;;;4441;;;4462:61;;4516:4;4508:6;4504:17;4494:27;;4462:61;4569:2;4561:6;4558:14;4538:18;4535:38;4532:161;;;4615:10;4610:3;4606:20;4603:1;4596:31;4650:4;4647:1;4640:15;4678:4;4675:1;4668:15;4532:161;;4319:380;;;:::o;5321:184::-;5391:6;5444:2;5432:9;5423:7;5419:23;5415:32;5412:52;;;5460:1;5457;5450:12;5412:52;-1:-1:-1;5483:16:18;;5321:184;-1:-1:-1;5321:184:18:o;5510:127::-;5571:10;5566:3;5562:20;5559:1;5552:31;5602:4;5599:1;5592:15;5626:4;5623:1;5616:15;5642:128;5682:3;5713:1;5709:6;5706:1;5703:13;5700:39;;;5719:18;;:::i;:::-;-1:-1:-1;5755:9:18;;5642:128::o;5775:277::-;5842:6;5895:2;5883:9;5874:7;5870:23;5866:32;5863:52;;;5911:1;5908;5901:12;5863:52;5943:9;5937:16;5996:5;5989:13;5982:21;5975:5;5972:32;5962:60;;6018:1;6015;6008:12;6057:409;6259:2;6241:21;;;6298:2;6278:18;;;6271:30;6337:34;6332:2;6317:18;;6310:62;-1:-1:-1;;;6403:2:18;6388:18;;6381:43;6456:3;6441:19;;6057:409::o;8730:135::-;8769:3;-1:-1:-1;;8790:17:18;;8787:43;;;8810:18;;:::i;:::-;-1:-1:-1;8857:1:18;8846:13;;8730:135::o;14435:125::-;14475:4;14503:1;14500;14497:8;14494:34;;;14508:18;;:::i;:::-;-1:-1:-1;14545:9:18;;14435:125::o
Swarm Source
ipfs://cdaee04af0d4c81a2a6b0f7f11169cc9593b51ec8f42ea5c9f2f58402ba6e12f
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.
Add Token to MetaMask (Web3)