Source Code
Overview
MNT Balance
MNT Value
$0.00Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 73543058 | 386 days ago | Contract Creation | 0 MNT |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
SynthFactory
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED
// Copyright (c) Eywa.Fi, 2021-2023 - all rights reserved
pragma solidity 0.8.17;
import "@openzeppelin/contracts/access/AccessControlEnumerable.sol";
import "@openzeppelin/contracts/utils/Create2.sol";
import "./SynthERC20.sol";
import "./interfaces/IOwnable.sol";
import "./interfaces/IAddressBook.sol";
import "./interfaces/ISynth.sol";
contract SynthFactory is AccessControlEnumerable {
/// @dev operator role id
bytes32 public constant OPERATOR_ROLE = keccak256("OPERATOR_ROLE");
/// @dev clp address book
address public addressBook;
constructor(address addressBook_) {
require(addressBook_ != address(0), "SynthFactory: zero address");
addressBook = addressBook_;
_grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
}
function setAddressBook(address addressBook_) external onlyRole(DEFAULT_ADMIN_ROLE) {
require(addressBook_ != address(0), "SynthFactory: zero address");
addressBook = addressBook_;
}
function getCustomSynth(
address originalToken_,
uint8 decimals_,
string memory name_,
string memory symbol_,
uint64 chainIdFrom_,
string memory chainSymbolFrom_
) external view returns (address stoken) {
stoken = _getSynth(
originalToken_,
decimals_,
name_,
symbol_,
chainIdFrom_,
chainSymbolFrom_,
ISynthAdapter.SynthType.CustomSynth
);
}
function getDefaultSynth(
address originalToken_,
uint8 decimals_,
string memory originalName_,
string memory originalSymbol_,
uint64 chainIdFrom_,
string memory chainSymbolFrom_
) external view returns (address stoken) {
stoken = _getSynth(
originalToken_,
decimals_,
string(abi.encodePacked("s ", originalName_, " ", chainSymbolFrom_)),
string(abi.encodePacked("s", originalSymbol_, "_", chainSymbolFrom_)),
chainIdFrom_,
chainSymbolFrom_,
ISynthAdapter.SynthType.DefaultSynth
);
}
function deployCustomSynth(
address originalToken_,
uint8 decimals_,
string memory name_,
string memory symbol_,
uint64 chainIdFrom_,
string memory chainSymbolFrom_
) external onlyRole(OPERATOR_ROLE) returns (address stoken) {
stoken = _deploySynth(
originalToken_,
decimals_,
name_,
symbol_,
chainIdFrom_,
chainSymbolFrom_,
ISynthAdapter.SynthType.CustomSynth
);
}
function deployDefaultSynth(
address originalToken_,
uint8 decimals_,
string memory originalName_,
string memory originalSymbol_,
uint64 chainIdFrom_,
string memory chainSymbolFrom_
) external onlyRole(OPERATOR_ROLE) returns (address stoken) {
stoken = _deploySynth(
originalToken_,
decimals_,
string(abi.encodePacked("s ", originalName_, " ", chainSymbolFrom_)),
string(abi.encodePacked("s", originalSymbol_, "_", chainSymbolFrom_)),
chainIdFrom_,
chainSymbolFrom_,
ISynthAdapter.SynthType.DefaultSynth
);
}
function _getSynth(
address originalToken_,
uint8 decimals_,
string memory name_,
string memory symbol_,
uint64 chainIdFrom_,
string memory chainSymbolFrom_,
ISynthAdapter.SynthType synthType_
) private view returns (address stoken) {
stoken = Create2.computeAddress(
keccak256(abi.encodePacked(originalToken_, chainIdFrom_)),
keccak256(abi.encodePacked(
type(SynthERC20).creationCode,
abi.encode(name_, symbol_, decimals_, originalToken_, chainIdFrom_, chainSymbolFrom_, synthType_)
))
);
}
function _deploySynth(
address originalToken_,
uint8 decimals_,
string memory name_,
string memory symbol_,
uint64 chainIdFrom_,
string memory chainSymbolFrom_,
ISynthAdapter.SynthType synthType_
) private returns (address stoken) {
stoken = Create2.deploy(
0,
keccak256(abi.encodePacked(originalToken_, chainIdFrom_)),
abi.encodePacked(
type(SynthERC20).creationCode,
abi.encode(name_, symbol_, decimals_, originalToken_, chainIdFrom_, chainSymbolFrom_, synthType_)
)
);
address synthesis = IAddressBook(addressBook).synthesis(uint64(block.chainid));
IOwnable(stoken).transferOwnership(synthesis);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (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:
*
* ```solidity
* 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}:
*
* ```solidity
* 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. We recommend using {AccessControlDefaultAdminRules}
* to enforce additional security measures for this role.
*/
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);
_;
}
/**
* @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 virtual override returns (bool) {
return _roles[role].members[account];
}
/**
* @dev Revert with a standard message if `_msgSender()` is missing `role`.
* Overriding this function changes the behavior of the {onlyRole} modifier.
*
* Format of the revert message is described in {_checkRole}.
*
* _Available since v4.6._
*/
function _checkRole(bytes32 role) internal view virtual {
_checkRole(role, _msgSender());
}
/**
* @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 virtual {
if (!hasRole(role, account)) {
revert(
string(
abi.encodePacked(
"AccessControl: account ",
Strings.toHexString(account),
" 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 virtual 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.
*
* May emit a {RoleGranted} event.
*/
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.
*
* May emit a {RoleRevoked} event.
*/
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`.
*
* May emit a {RoleRevoked} event.
*/
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.
*
* May emit a {RoleGranted} event.
*
* [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.
*
* May emit a {RoleGranted} event.
*/
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.
*
* May emit a {RoleRevoked} event.
*/
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 (last updated v4.5.0) (access/AccessControlEnumerable.sol)
pragma solidity ^0.8.0;
import "./IAccessControlEnumerable.sol";
import "./AccessControl.sol";
import "../utils/structs/EnumerableSet.sol";
/**
* @dev Extension of {AccessControl} that allows enumerating the members of each role.
*/
abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl {
using EnumerableSet for EnumerableSet.AddressSet;
mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IAccessControlEnumerable).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev Returns one of the accounts that have `role`. `index` must be a
* value between 0 and {getRoleMemberCount}, non-inclusive.
*
* Role bearers are not sorted in any particular way, and their ordering may
* change at any point.
*
* WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
* you perform all queries on the same block. See the following
* https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
* for more information.
*/
function getRoleMember(bytes32 role, uint256 index) public view virtual override returns (address) {
return _roleMembers[role].at(index);
}
/**
* @dev Returns the number of accounts that have `role`. Can be used
* together with {getRoleMember} to enumerate all bearers of a role.
*/
function getRoleMemberCount(bytes32 role) public view virtual override returns (uint256) {
return _roleMembers[role].length();
}
/**
* @dev Overload {_grantRole} to track enumerable memberships
*/
function _grantRole(bytes32 role, address account) internal virtual override {
super._grantRole(role, account);
_roleMembers[role].add(account);
}
/**
* @dev Overload {_revokeRole} to track enumerable memberships
*/
function _revokeRole(bytes32 role, address account) internal virtual override {
super._revokeRole(role, account);
_roleMembers[role].remove(account);
}
}// 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 (access/IAccessControlEnumerable.sol)
pragma solidity ^0.8.0;
import "./IAccessControl.sol";
/**
* @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
*/
interface IAccessControlEnumerable is IAccessControl {
/**
* @dev Returns one of the accounts that have `role`. `index` must be a
* value between 0 and {getRoleMemberCount}, non-inclusive.
*
* Role bearers are not sorted in any particular way, and their ordering may
* change at any point.
*
* WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
* you perform all queries on the same block. See the following
* https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
* for more information.
*/
function getRoleMember(bytes32 role, uint256 index) external view returns (address);
/**
* @dev Returns the number of accounts that have `role`. Can be used
* together with {getRoleMember} to enumerate all bearers of a role.
*/
function getRoleMemberCount(bytes32 role) external view returns (uint256);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC5267.sol)
pragma solidity ^0.8.0;
interface IERC5267 {
/**
* @dev MAY be emitted to signal that the domain could have changed.
*/
event EIP712DomainChanged();
/**
* @dev returns the fields and values that describe the domain separator used by this contract for EIP-712
* signature.
*/
function eip712Domain()
external
view
returns (
bytes1 fields,
string memory name,
string memory version,
uint256 chainId,
address verifyingContract,
bytes32 salt,
uint256[] memory extensions
);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* 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}.
*
* 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 default value returned by this function, unless
* it's overridden.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(address from, address to, uint256 amount) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_balances[to] += amount;
}
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
unchecked {
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
_balances[account] += amount;
}
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_totalSupply -= amount;
}
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 amount) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (token/ERC20/extensions/ERC20Permit.sol)
pragma solidity ^0.8.0;
import "./IERC20Permit.sol";
import "../ERC20.sol";
import "../../../utils/cryptography/ECDSA.sol";
import "../../../utils/cryptography/EIP712.sol";
import "../../../utils/Counters.sol";
/**
* @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*
* _Available since v3.4._
*/
abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 {
using Counters for Counters.Counter;
mapping(address => Counters.Counter) private _nonces;
// solhint-disable-next-line var-name-mixedcase
bytes32 private constant _PERMIT_TYPEHASH =
keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
/**
* @dev In previous versions `_PERMIT_TYPEHASH` was declared as `immutable`.
* However, to ensure consistency with the upgradeable transpiler, we will continue
* to reserve a slot.
* @custom:oz-renamed-from _PERMIT_TYPEHASH
*/
// solhint-disable-next-line var-name-mixedcase
bytes32 private _PERMIT_TYPEHASH_DEPRECATED_SLOT;
/**
* @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`.
*
* It's a good idea to use the same `name` that is defined as the ERC20 token name.
*/
constructor(string memory name) EIP712(name, "1") {}
/**
* @inheritdoc IERC20Permit
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) public virtual override {
require(block.timestamp <= deadline, "ERC20Permit: expired deadline");
bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));
bytes32 hash = _hashTypedDataV4(structHash);
address signer = ECDSA.recover(hash, v, r, s);
require(signer == owner, "ERC20Permit: invalid signature");
_approve(owner, spender, value);
}
/**
* @inheritdoc IERC20Permit
*/
function nonces(address owner) public view virtual override returns (uint256) {
return _nonces[owner].current();
}
/**
* @inheritdoc IERC20Permit
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view override returns (bytes32) {
return _domainSeparatorV4();
}
/**
* @dev "Consume a nonce": return the current value and increment.
*
* _Available since v4.1._
*/
function _useNonce(address owner) internal virtual returns (uint256 current) {
Counters.Counter storage nonce = _nonces[owner];
current = nonce.current();
nonce.increment();
}
}// 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 (last updated v4.9.4) (token/ERC20/extensions/IERC20Permit.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*
* ==== Security Considerations
*
* There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
* expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
* considered as an intention to spend the allowance in any specific way. The second is that because permits have
* built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
* take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
* generally recommended is:
*
* ```solidity
* function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
* try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
* doThing(..., value);
* }
*
* function doThing(..., uint256 value) public {
* token.safeTransferFrom(msg.sender, address(this), value);
* ...
* }
* ```
*
* Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of
* `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also
* {SafeERC20-safeTransferFrom}).
*
* Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so
* contracts should have entry points that don't rely on permit.
*/
interface IERC20Permit {
/**
* @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
* given ``owner``'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
* over the EIP712-formatted function arguments.
* - the signature must use ``owner``'s current nonce (see {nonces}).
*
* For more information on the signature format, see the
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
* section].
*
* CAUTION: See Security Considerations above.
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
/**
* @dev Returns the current nonce for `owner`. This value must be
* included whenever a signature is generated for {permit}.
*
* Every successful call to {permit} increases ``owner``'s nonce by one. This
* prevents a signature from being used multiple times.
*/
function nonces(address owner) external view returns (uint256);
/**
* @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view returns (bytes32);
}// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/draft-ERC20Permit.sol) pragma solidity ^0.8.0; // EIP-2612 is Final as of 2022-11-01. This file is deprecated. import "./ERC20Permit.sol";
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (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;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)
pragma solidity ^0.8.0;
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
*/
library Counters {
struct Counter {
// This variable should never be directly accessed by users of the library: interactions must be restricted to
// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
// this feature: see https://github.com/ethereum/solidity/issues/4637
uint256 _value; // default: 0
}
function current(Counter storage counter) internal view returns (uint256) {
return counter._value;
}
function increment(Counter storage counter) internal {
unchecked {
counter._value += 1;
}
}
function decrement(Counter storage counter) internal {
uint256 value = counter._value;
require(value > 0, "Counter: decrement overflow");
unchecked {
counter._value = value - 1;
}
}
function reset(Counter storage counter) internal {
counter._value = 0;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Create2.sol)
pragma solidity ^0.8.0;
/**
* @dev Helper to make usage of the `CREATE2` EVM opcode easier and safer.
* `CREATE2` can be used to compute in advance the address where a smart
* contract will be deployed, which allows for interesting new mechanisms known
* as 'counterfactual interactions'.
*
* See the https://eips.ethereum.org/EIPS/eip-1014#motivation[EIP] for more
* information.
*/
library Create2 {
/**
* @dev Deploys a contract using `CREATE2`. The address where the contract
* will be deployed can be known in advance via {computeAddress}.
*
* The bytecode for a contract can be obtained from Solidity with
* `type(contractName).creationCode`.
*
* Requirements:
*
* - `bytecode` must not be empty.
* - `salt` must have not been used for `bytecode` already.
* - the factory must have a balance of at least `amount`.
* - if `amount` is non-zero, `bytecode` must have a `payable` constructor.
*/
function deploy(uint256 amount, bytes32 salt, bytes memory bytecode) internal returns (address addr) {
require(address(this).balance >= amount, "Create2: insufficient balance");
require(bytecode.length != 0, "Create2: bytecode length is zero");
/// @solidity memory-safe-assembly
assembly {
addr := create2(amount, add(bytecode, 0x20), mload(bytecode), salt)
}
require(addr != address(0), "Create2: Failed on deploy");
}
/**
* @dev Returns the address where a contract will be stored if deployed via {deploy}. Any change in the
* `bytecodeHash` or `salt` will result in a new destination address.
*/
function computeAddress(bytes32 salt, bytes32 bytecodeHash) internal view returns (address) {
return computeAddress(salt, bytecodeHash, address(this));
}
/**
* @dev Returns the address where a contract will be stored if deployed via {deploy} from a contract located at
* `deployer`. If `deployer` is this contract's address, returns the same value as {computeAddress}.
*/
function computeAddress(bytes32 salt, bytes32 bytecodeHash, address deployer) internal pure returns (address addr) {
/// @solidity memory-safe-assembly
assembly {
let ptr := mload(0x40) // Get free memory pointer
// | | ↓ ptr ... ↓ ptr + 0x0B (start) ... ↓ ptr + 0x20 ... ↓ ptr + 0x40 ... |
// |-------------------|---------------------------------------------------------------------------|
// | bytecodeHash | CCCCCCCCCCCCC...CC |
// | salt | BBBBBBBBBBBBB...BB |
// | deployer | 000000...0000AAAAAAAAAAAAAAAAAAA...AA |
// | 0xFF | FF |
// |-------------------|---------------------------------------------------------------------------|
// | memory | 000000...00FFAAAAAAAAAAAAAAAAAAA...AABBBBBBBBBBBBB...BBCCCCCCCCCCCCC...CC |
// | keccak(start, 85) | ↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑ |
mstore(add(ptr, 0x40), bytecodeHash)
mstore(add(ptr, 0x20), salt)
mstore(ptr, deployer) // Right-aligned with 12 preceding garbage bytes
let start := add(ptr, 0x0b) // The hashed data starts at the final garbage byte which we will set to 0xff
mstore8(start, 0xff)
addr := keccak256(start, 85)
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/ShortStrings.sol)
pragma solidity ^0.8.8;
import "./StorageSlot.sol";
// | string | 0xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA |
// | length | 0x BB |
type ShortString is bytes32;
/**
* @dev This library provides functions to convert short memory strings
* into a `ShortString` type that can be used as an immutable variable.
*
* Strings of arbitrary length can be optimized using this library if
* they are short enough (up to 31 bytes) by packing them with their
* length (1 byte) in a single EVM word (32 bytes). Additionally, a
* fallback mechanism can be used for every other case.
*
* Usage example:
*
* ```solidity
* contract Named {
* using ShortStrings for *;
*
* ShortString private immutable _name;
* string private _nameFallback;
*
* constructor(string memory contractName) {
* _name = contractName.toShortStringWithFallback(_nameFallback);
* }
*
* function name() external view returns (string memory) {
* return _name.toStringWithFallback(_nameFallback);
* }
* }
* ```
*/
library ShortStrings {
// Used as an identifier for strings longer than 31 bytes.
bytes32 private constant _FALLBACK_SENTINEL = 0x00000000000000000000000000000000000000000000000000000000000000FF;
error StringTooLong(string str);
error InvalidShortString();
/**
* @dev Encode a string of at most 31 chars into a `ShortString`.
*
* This will trigger a `StringTooLong` error is the input string is too long.
*/
function toShortString(string memory str) internal pure returns (ShortString) {
bytes memory bstr = bytes(str);
if (bstr.length > 31) {
revert StringTooLong(str);
}
return ShortString.wrap(bytes32(uint256(bytes32(bstr)) | bstr.length));
}
/**
* @dev Decode a `ShortString` back to a "normal" string.
*/
function toString(ShortString sstr) internal pure returns (string memory) {
uint256 len = byteLength(sstr);
// using `new string(len)` would work locally but is not memory safe.
string memory str = new string(32);
/// @solidity memory-safe-assembly
assembly {
mstore(str, len)
mstore(add(str, 0x20), sstr)
}
return str;
}
/**
* @dev Return the length of a `ShortString`.
*/
function byteLength(ShortString sstr) internal pure returns (uint256) {
uint256 result = uint256(ShortString.unwrap(sstr)) & 0xFF;
if (result > 31) {
revert InvalidShortString();
}
return result;
}
/**
* @dev Encode a string into a `ShortString`, or write it to storage if it is too long.
*/
function toShortStringWithFallback(string memory value, string storage store) internal returns (ShortString) {
if (bytes(value).length < 32) {
return toShortString(value);
} else {
StorageSlot.getStringSlot(store).value = value;
return ShortString.wrap(_FALLBACK_SENTINEL);
}
}
/**
* @dev Decode a string that was encoded to `ShortString` or written to storage using {setWithFallback}.
*/
function toStringWithFallback(ShortString value, string storage store) internal pure returns (string memory) {
if (ShortString.unwrap(value) != _FALLBACK_SENTINEL) {
return toString(value);
} else {
return store;
}
}
/**
* @dev Return the length of a string that was encoded to `ShortString` or written to storage using {setWithFallback}.
*
* WARNING: This will return the "byte length" of the string. This may not reflect the actual length in terms of
* actual characters as the UTF-8 encoding of a single character can span over multiple bytes.
*/
function byteLengthWithFallback(ShortString value, string storage store) internal view returns (uint256) {
if (ShortString.unwrap(value) != _FALLBACK_SENTINEL) {
return byteLength(value);
} else {
return bytes(store).length;
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/StorageSlot.sol)
// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.
pragma solidity ^0.8.0;
/**
* @dev Library for reading and writing primitive types to specific storage slots.
*
* Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
* This library helps with reading and writing to such slots without the need for inline assembly.
*
* The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
*
* Example usage to set ERC1967 implementation slot:
* ```solidity
* contract ERC1967 {
* bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
*
* function _getImplementation() internal view returns (address) {
* return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
* }
*
* function _setImplementation(address newImplementation) internal {
* require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
* StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
* }
* }
* ```
*
* _Available since v4.1 for `address`, `bool`, `bytes32`, `uint256`._
* _Available since v4.9 for `string`, `bytes`._
*/
library StorageSlot {
struct AddressSlot {
address value;
}
struct BooleanSlot {
bool value;
}
struct Bytes32Slot {
bytes32 value;
}
struct Uint256Slot {
uint256 value;
}
struct StringSlot {
string value;
}
struct BytesSlot {
bytes value;
}
/**
* @dev Returns an `AddressSlot` with member `value` located at `slot`.
*/
function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `BooleanSlot` with member `value` located at `slot`.
*/
function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
*/
function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `Uint256Slot` with member `value` located at `slot`.
*/
function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `StringSlot` with member `value` located at `slot`.
*/
function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `StringSlot` representation of the string storage pointer `store`.
*/
function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := store.slot
}
}
/**
* @dev Returns an `BytesSlot` with member `value` located at `slot`.
*/
function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.
*/
function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := store.slot
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
import "./math/Math.sol";
import "./math/SignedMath.sol";
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
unchecked {
uint256 length = Math.log10(value) + 1;
string memory buffer = new string(length);
uint256 ptr;
/// @solidity memory-safe-assembly
assembly {
ptr := add(buffer, add(32, length))
}
while (true) {
ptr--;
/// @solidity memory-safe-assembly
assembly {
mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
}
value /= 10;
if (value == 0) break;
}
return buffer;
}
}
/**
* @dev Converts a `int256` to its ASCII `string` decimal representation.
*/
function toString(int256 value) internal pure returns (string memory) {
return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
unchecked {
return toHexString(value, Math.log256(value) + 1);
}
}
/**
* @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] = _SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
}
/**
* @dev Returns true if the two strings are equal.
*/
function equal(string memory a, string memory b) internal pure returns (bool) {
return keccak256(bytes(a)) == keccak256(bytes(b));
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol)
pragma solidity ^0.8.0;
import "../Strings.sol";
/**
* @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
*
* These functions can be used to verify that a message was signed by the holder
* of the private keys of a given address.
*/
library ECDSA {
enum RecoverError {
NoError,
InvalidSignature,
InvalidSignatureLength,
InvalidSignatureS,
InvalidSignatureV // Deprecated in v4.8
}
function _throwError(RecoverError error) private pure {
if (error == RecoverError.NoError) {
return; // no error: do nothing
} else if (error == RecoverError.InvalidSignature) {
revert("ECDSA: invalid signature");
} else if (error == RecoverError.InvalidSignatureLength) {
revert("ECDSA: invalid signature length");
} else if (error == RecoverError.InvalidSignatureS) {
revert("ECDSA: invalid signature 's' value");
}
}
/**
* @dev Returns the address that signed a hashed message (`hash`) with
* `signature` or error string. This address can then be used for verification purposes.
*
* The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {toEthSignedMessageHash} on it.
*
* Documentation for signature generation:
* - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
* - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
*
* _Available since v4.3._
*/
function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
if (signature.length == 65) {
bytes32 r;
bytes32 s;
uint8 v;
// ecrecover takes the signature parameters, and the only way to get them
// currently is to use assembly.
/// @solidity memory-safe-assembly
assembly {
r := mload(add(signature, 0x20))
s := mload(add(signature, 0x40))
v := byte(0, mload(add(signature, 0x60)))
}
return tryRecover(hash, v, r, s);
} else {
return (address(0), RecoverError.InvalidSignatureLength);
}
}
/**
* @dev Returns the address that signed a hashed message (`hash`) with
* `signature`. This address can then be used for verification purposes.
*
* The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {toEthSignedMessageHash} on it.
*/
function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, signature);
_throwError(error);
return recovered;
}
/**
* @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
*
* See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
*
* _Available since v4.3._
*/
function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError) {
bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
uint8 v = uint8((uint256(vs) >> 255) + 27);
return tryRecover(hash, v, r, s);
}
/**
* @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
*
* _Available since v4.2._
*/
function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, r, vs);
_throwError(error);
return recovered;
}
/**
* @dev Overload of {ECDSA-tryRecover} that receives the `v`,
* `r` and `s` signature fields separately.
*
* _Available since v4.3._
*/
function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address, RecoverError) {
// EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
// unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
// the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
// signatures from current libraries generate a unique signature with an s-value in the lower half order.
//
// If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
// with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
// vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
// these malleable signatures as well.
if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
return (address(0), RecoverError.InvalidSignatureS);
}
// If the signature is valid (and not malleable), return the signer address
address signer = ecrecover(hash, v, r, s);
if (signer == address(0)) {
return (address(0), RecoverError.InvalidSignature);
}
return (signer, RecoverError.NoError);
}
/**
* @dev Overload of {ECDSA-recover} that receives the `v`,
* `r` and `s` signature fields separately.
*/
function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, v, r, s);
_throwError(error);
return recovered;
}
/**
* @dev Returns an Ethereum Signed Message, created from a `hash`. This
* produces hash corresponding to the one signed with the
* https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
* JSON-RPC method as part of EIP-191.
*
* See {recover}.
*/
function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 message) {
// 32 is the length in bytes of hash,
// enforced by the type signature above
/// @solidity memory-safe-assembly
assembly {
mstore(0x00, "\x19Ethereum Signed Message:\n32")
mstore(0x1c, hash)
message := keccak256(0x00, 0x3c)
}
}
/**
* @dev Returns an Ethereum Signed Message, created from `s`. This
* produces hash corresponding to the one signed with the
* https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
* JSON-RPC method as part of EIP-191.
*
* See {recover}.
*/
function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
}
/**
* @dev Returns an Ethereum Signed Typed Data, created from a
* `domainSeparator` and a `structHash`. This produces hash corresponding
* to the one signed with the
* https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
* JSON-RPC method as part of EIP-712.
*
* See {recover}.
*/
function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 data) {
/// @solidity memory-safe-assembly
assembly {
let ptr := mload(0x40)
mstore(ptr, "\x19\x01")
mstore(add(ptr, 0x02), domainSeparator)
mstore(add(ptr, 0x22), structHash)
data := keccak256(ptr, 0x42)
}
}
/**
* @dev Returns an Ethereum Signed Data with intended validator, created from a
* `validator` and `data` according to the version 0 of EIP-191.
*
* See {recover}.
*/
function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {
return keccak256(abi.encodePacked("\x19\x00", validator, data));
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/EIP712.sol)
pragma solidity ^0.8.8;
import "./ECDSA.sol";
import "../ShortStrings.sol";
import "../../interfaces/IERC5267.sol";
/**
* @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
*
* The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
* thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
* they need in their contracts using a combination of `abi.encode` and `keccak256`.
*
* This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
* scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
* ({_hashTypedDataV4}).
*
* The implementation of the domain separator was designed to be as efficient as possible while still properly updating
* the chain id to protect against replay attacks on an eventual fork of the chain.
*
* NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
* https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
*
* NOTE: In the upgradeable version of this contract, the cached values will correspond to the address, and the domain
* separator of the implementation contract. This will cause the `_domainSeparatorV4` function to always rebuild the
* separator from the immutable values, which is cheaper than accessing a cached version in cold storage.
*
* _Available since v3.4._
*
* @custom:oz-upgrades-unsafe-allow state-variable-immutable state-variable-assignment
*/
abstract contract EIP712 is IERC5267 {
using ShortStrings for *;
bytes32 private constant _TYPE_HASH =
keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)");
// Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
// invalidate the cached domain separator if the chain id changes.
bytes32 private immutable _cachedDomainSeparator;
uint256 private immutable _cachedChainId;
address private immutable _cachedThis;
bytes32 private immutable _hashedName;
bytes32 private immutable _hashedVersion;
ShortString private immutable _name;
ShortString private immutable _version;
string private _nameFallback;
string private _versionFallback;
/**
* @dev Initializes the domain separator and parameter caches.
*
* The meaning of `name` and `version` is specified in
* https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
*
* - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
* - `version`: the current major version of the signing domain.
*
* NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
* contract upgrade].
*/
constructor(string memory name, string memory version) {
_name = name.toShortStringWithFallback(_nameFallback);
_version = version.toShortStringWithFallback(_versionFallback);
_hashedName = keccak256(bytes(name));
_hashedVersion = keccak256(bytes(version));
_cachedChainId = block.chainid;
_cachedDomainSeparator = _buildDomainSeparator();
_cachedThis = address(this);
}
/**
* @dev Returns the domain separator for the current chain.
*/
function _domainSeparatorV4() internal view returns (bytes32) {
if (address(this) == _cachedThis && block.chainid == _cachedChainId) {
return _cachedDomainSeparator;
} else {
return _buildDomainSeparator();
}
}
function _buildDomainSeparator() private view returns (bytes32) {
return keccak256(abi.encode(_TYPE_HASH, _hashedName, _hashedVersion, block.chainid, address(this)));
}
/**
* @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
* function returns the hash of the fully encoded EIP712 message for this domain.
*
* This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
*
* ```solidity
* bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
* keccak256("Mail(address to,string contents)"),
* mailTo,
* keccak256(bytes(mailContents))
* )));
* address signer = ECDSA.recover(digest, signature);
* ```
*/
function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
}
/**
* @dev See {EIP-5267}.
*
* _Available since v4.9._
*/
function eip712Domain()
public
view
virtual
override
returns (
bytes1 fields,
string memory name,
string memory version,
uint256 chainId,
address verifyingContract,
bytes32 salt,
uint256[] memory extensions
)
{
return (
hex"0f", // 01111
_name.toStringWithFallback(_nameFallback),
_version.toStringWithFallback(_versionFallback),
block.chainid,
address(this),
bytes32(0),
new uint256[](0)
);
}
}// 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);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
enum Rounding {
Down, // Toward negative infinity
Up, // Toward infinity
Zero // Toward zero
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds up instead
* of rounding down.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
* @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
* with further edits by Uniswap Labs also under MIT license.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod0 := mul(x, y)
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
// Solidity will revert if denominator == 0, unlike the div opcode on its own.
// The surrounding unchecked block does not change this fact.
// See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
require(denominator > prod1, "Math: mulDiv overflow");
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
// See https://cs.stackexchange.com/q/138556/92363.
// Does not overflow because the denominator cannot be zero at this stage in the function.
uint256 twos = denominator & (~denominator + 1);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
// in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
//
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
//
// This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
// → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
// → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
//
// Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1 << (log2(a) >> 1);
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 128;
}
if (value >> 64 > 0) {
value >>= 64;
result += 64;
}
if (value >> 32 > 0) {
value >>= 32;
result += 32;
}
if (value >> 16 > 0) {
value >>= 16;
result += 16;
}
if (value >> 8 > 0) {
value >>= 8;
result += 8;
}
if (value >> 4 > 0) {
value >>= 4;
result += 4;
}
if (value >> 2 > 0) {
value >>= 2;
result += 2;
}
if (value >> 1 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 2, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 10, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10 ** 64) {
value /= 10 ** 64;
result += 64;
}
if (value >= 10 ** 32) {
value /= 10 ** 32;
result += 32;
}
if (value >= 10 ** 16) {
value /= 10 ** 16;
result += 16;
}
if (value >= 10 ** 8) {
value /= 10 ** 8;
result += 8;
}
if (value >= 10 ** 4) {
value /= 10 ** 4;
result += 4;
}
if (value >= 10 ** 2) {
value /= 10 ** 2;
result += 2;
}
if (value >= 10 ** 1) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 256, rounded down, of a positive value.
* Returns 0 if given 0.
*
* Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
*/
function log256(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 16;
}
if (value >> 64 > 0) {
value >>= 64;
result += 8;
}
if (value >> 32 > 0) {
value >>= 32;
result += 4;
}
if (value >> 16 > 0) {
value >>= 16;
result += 2;
}
if (value >> 8 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 256, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard signed math utilities missing in the Solidity language.
*/
library SignedMath {
/**
* @dev Returns the largest of two signed numbers.
*/
function max(int256 a, int256 b) internal pure returns (int256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two signed numbers.
*/
function min(int256 a, int256 b) internal pure returns (int256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two signed numbers without overflow.
* The result is rounded towards zero.
*/
function average(int256 a, int256 b) internal pure returns (int256) {
// Formula from the book "Hacker's Delight"
int256 x = (a & b) + ((a ^ b) >> 1);
return x + (int256(uint256(x) >> 255) & (a ^ b));
}
/**
* @dev Returns the absolute unsigned value of a signed value.
*/
function abs(int256 n) internal pure returns (uint256) {
unchecked {
// must be unchecked in order to support `n = type(int256).min`
return uint256(n >= 0 ? n : -n);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/structs/EnumerableSet.sol)
// This file was procedurally generated from scripts/generate/templates/EnumerableSet.js.
pragma solidity ^0.8.0;
/**
* @dev Library for managing
* https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
* types.
*
* Sets have the following properties:
*
* - Elements are added, removed, and checked for existence in constant time
* (O(1)).
* - Elements are enumerated in O(n). No guarantees are made on the ordering.
*
* ```solidity
* contract Example {
* // Add the library methods
* using EnumerableSet for EnumerableSet.AddressSet;
*
* // Declare a set state variable
* EnumerableSet.AddressSet private mySet;
* }
* ```
*
* As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
* and `uint256` (`UintSet`) are supported.
*
* [WARNING]
* ====
* Trying to delete such a structure from storage will likely result in data corruption, rendering the structure
* unusable.
* See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
*
* In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an
* array of EnumerableSet.
* ====
*/
library EnumerableSet {
// To implement this library for multiple types with as little code
// repetition as possible, we write it in terms of a generic Set type with
// bytes32 values.
// The Set implementation uses private functions, and user-facing
// implementations (such as AddressSet) are just wrappers around the
// underlying Set.
// This means that we can only create new EnumerableSets for types that fit
// in bytes32.
struct Set {
// Storage of set values
bytes32[] _values;
// Position of the value in the `values` array, plus 1 because index 0
// means a value is not in the set.
mapping(bytes32 => uint256) _indexes;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function _add(Set storage set, bytes32 value) private returns (bool) {
if (!_contains(set, value)) {
set._values.push(value);
// The value is stored at length-1, but we add 1 to all indexes
// and use 0 as a sentinel value
set._indexes[value] = set._values.length;
return true;
} else {
return false;
}
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function _remove(Set storage set, bytes32 value) private returns (bool) {
// We read and store the value's index to prevent multiple reads from the same storage slot
uint256 valueIndex = set._indexes[value];
if (valueIndex != 0) {
// Equivalent to contains(set, value)
// To delete an element from the _values array in O(1), we swap the element to delete with the last one in
// the array, and then remove the last element (sometimes called as 'swap and pop').
// This modifies the order of the array, as noted in {at}.
uint256 toDeleteIndex = valueIndex - 1;
uint256 lastIndex = set._values.length - 1;
if (lastIndex != toDeleteIndex) {
bytes32 lastValue = set._values[lastIndex];
// Move the last value to the index where the value to delete is
set._values[toDeleteIndex] = lastValue;
// Update the index for the moved value
set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex
}
// Delete the slot where the moved value was stored
set._values.pop();
// Delete the index for the deleted slot
delete set._indexes[value];
return true;
} else {
return false;
}
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function _contains(Set storage set, bytes32 value) private view returns (bool) {
return set._indexes[value] != 0;
}
/**
* @dev Returns the number of values on the set. O(1).
*/
function _length(Set storage set) private view returns (uint256) {
return set._values.length;
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function _at(Set storage set, uint256 index) private view returns (bytes32) {
return set._values[index];
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function _values(Set storage set) private view returns (bytes32[] memory) {
return set._values;
}
// Bytes32Set
struct Bytes32Set {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
return _add(set._inner, value);
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
return _remove(set._inner, value);
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
return _contains(set._inner, value);
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(Bytes32Set storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
return _at(set._inner, index);
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
bytes32[] memory store = _values(set._inner);
bytes32[] memory result;
/// @solidity memory-safe-assembly
assembly {
result := store
}
return result;
}
// AddressSet
struct AddressSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(AddressSet storage set, address value) internal returns (bool) {
return _add(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(AddressSet storage set, address value) internal returns (bool) {
return _remove(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(AddressSet storage set, address value) internal view returns (bool) {
return _contains(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(AddressSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(AddressSet storage set, uint256 index) internal view returns (address) {
return address(uint160(uint256(_at(set._inner, index))));
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(AddressSet storage set) internal view returns (address[] memory) {
bytes32[] memory store = _values(set._inner);
address[] memory result;
/// @solidity memory-safe-assembly
assembly {
result := store
}
return result;
}
// UintSet
struct UintSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(UintSet storage set, uint256 value) internal returns (bool) {
return _add(set._inner, bytes32(value));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(UintSet storage set, uint256 value) internal returns (bool) {
return _remove(set._inner, bytes32(value));
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(UintSet storage set, uint256 value) internal view returns (bool) {
return _contains(set._inner, bytes32(value));
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(UintSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(UintSet storage set, uint256 index) internal view returns (uint256) {
return uint256(_at(set._inner, index));
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(UintSet storage set) internal view returns (uint256[] memory) {
bytes32[] memory store = _values(set._inner);
uint256[] memory result;
/// @solidity memory-safe-assembly
assembly {
result := store
}
return result;
}
}// SPDX-License-Identifier: UNLICENSED
// Copyright (c) Eywa.Fi, 2021-2023 - all rights reserved
pragma solidity 0.8.17;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol";
import "./interfaces/ISynth.sol";
/**
* @dev Synthesis must be owner of this contract.
*/
contract SynthERC20 is ISynthERC20, Ownable, ERC20Permit {
/// @dev original token address
address public originalToken;
/// @dev original token chain id
uint64 public chainIdFrom;
/// @dev original chain symbol
string public chainSymbolFrom;
/// @dev synth type
uint8 public synthType;
/// @dev cap (max possible supply)
uint256 public cap;
/// @dev synth token address for backward compatibility with ISynthAdapter (which may has backed third-party synth)
address public synthToken;
/// @dev synth decimals
uint8 private _decimals;
constructor(
string memory name_,
string memory symbol_,
uint8 decimals_,
address originalToken_,
uint64 chainIdFrom_,
string memory chainSymbolFrom_,
SynthType synthType_
) ERC20Permit("EYWA") ERC20(name_, symbol_) {
originalToken = originalToken_;
chainIdFrom = chainIdFrom_;
chainSymbolFrom = chainSymbolFrom_;
_decimals = decimals_;
synthType = uint8(synthType_);
cap = 2 ** 256 - 1;
synthToken = address(this);
}
/**
* @dev Returns the cap on the token's total supply.
*/
function setCap(uint256 cap_) external onlyOwner {
require(ERC20.totalSupply() <= cap_, "SynthERC20: cap exceeded");
cap = cap_;
emit CapSet(cap);
}
function mint(address account, uint256 amount) external onlyOwner {
_mint(account, amount);
}
function mintWithAllowanceIncrease(
address account,
address spender,
uint256 amount
) external onlyOwner {
_mint(account, amount);
_approve(account, spender, allowance(account, spender) + amount);
}
function burn(address account, uint256 amount) external onlyOwner {
_burn(account, amount);
}
function burnWithAllowanceDecrease(
address account,
address spender,
uint256 amount
) external onlyOwner {
uint256 currentAllowance = allowance(account, spender);
require(currentAllowance >= amount, "ERC20: decreased allowance below zero");
_approve(account, spender, currentAllowance - amount);
_burn(account, amount);
}
function decimals() public view override (ISynthAdapter, ERC20) returns (uint8) {
return _decimals;
}
/**
* @dev See {ERC20-_mint}.
*/
function _mint(address account, uint256 amount) internal virtual override {
require(ERC20.totalSupply() + amount <= cap, "ERC20Capped: cap exceeded");
super._mint(account, amount);
}
}// SPDX-License-Identifier: UNLICENSED
// Copyright (c) Eywa.Fi, 2021-2023 - all rights reserved
pragma solidity 0.8.17;
interface IAddressBook {
/// @dev returns portal by given chainId
function portal(uint64 chainId) external view returns (address);
/// @dev returns synthesis by given chainId
function synthesis(uint64 chainId) external view returns (address);
/// @dev returns router by given chainId
function router(uint64 chainId) external view returns (address);
/// @dev returns whitelist
function whitelist() external view returns (address);
/// @dev returns treasury
function treasury() external view returns (address);
/// @dev returns gateKeeper
function gateKeeper() external view returns (address);
/// @dev returns bridge
function bridge() external view returns (address);
}// SPDX-License-Identifier: UNLICENSED
// Copyright (c) Eywa.Fi, 2021-2023 - all rights reserved
pragma solidity ^0.8.17;
interface IOwnable {
function transferOwnership(address newOwner) external;
}// SPDX-License-Identifier: UNLICENSED
// Copyright (c) Eywa.Fi, 2021-2023 - all rights reserved
pragma solidity 0.8.17;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
/**
* @dev Should be implemented by "treasury" contract in cases when third party token used instead of our synth.
*
* Mint\Burn can be implemented as Lock\Unlock in treasury contract.
*/
interface ISynthAdapter {
enum SynthType { Unknown, DefaultSynth, CustomSynth, ThirdPartySynth, ThirdPartyToken }
function mint(address account, uint256 amount) external;
function burn(address account, uint256 amount) external;
function setCap(uint256) external;
function decimals() external view returns (uint8);
function originalToken() external view returns (address);
function synthToken() external view returns (address);
function chainIdFrom() external view returns (uint64); // TODO what if token native in 2-3-4 chains? // []
function chainSymbolFrom() external view returns (string memory);
function synthType() external view returns (uint8);
function cap() external view returns (uint256);
event CapSet(uint256 cap);
}
interface ISynthERC20 is ISynthAdapter, IERC20 {
function mintWithAllowanceIncrease(address account, address spender, uint256 amount) external;
function burnWithAllowanceDecrease(address account, address spender, uint256 amount) external;
}{
"libraries": {},
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"addressBook_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addressBook","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"originalToken_","type":"address"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint64","name":"chainIdFrom_","type":"uint64"},{"internalType":"string","name":"chainSymbolFrom_","type":"string"}],"name":"deployCustomSynth","outputs":[{"internalType":"address","name":"stoken","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"originalToken_","type":"address"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"string","name":"originalName_","type":"string"},{"internalType":"string","name":"originalSymbol_","type":"string"},{"internalType":"uint64","name":"chainIdFrom_","type":"uint64"},{"internalType":"string","name":"chainSymbolFrom_","type":"string"}],"name":"deployDefaultSynth","outputs":[{"internalType":"address","name":"stoken","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"originalToken_","type":"address"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint64","name":"chainIdFrom_","type":"uint64"},{"internalType":"string","name":"chainSymbolFrom_","type":"string"}],"name":"getCustomSynth","outputs":[{"internalType":"address","name":"stoken","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"originalToken_","type":"address"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"string","name":"originalName_","type":"string"},{"internalType":"string","name":"originalSymbol_","type":"string"},{"internalType":"uint64","name":"chainIdFrom_","type":"uint64"},{"internalType":"string","name":"chainSymbolFrom_","type":"string"}],"name":"getDefaultSynth","outputs":[{"internalType":"address","name":"stoken","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addressBook_","type":"address"}],"name":"setAddressBook","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]Contract Creation Code
60806040523480156200001157600080fd5b50604051620038e1380380620038e1833981016040819052620000349162000214565b6001600160a01b0381166200008f5760405162461bcd60e51b815260206004820152601a60248201527f53796e7468466163746f72793a207a65726f2061646472657373000000000000604482015260640160405180910390fd5b600280546001600160a01b0319166001600160a01b038316179055620000b7600033620000be565b5062000246565b620000d582826200010160201b620006191760201c565b6000828152600160209081526040909120620000fc918390620006a1620001a2821b17901c565b505050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff166200019e576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556200015d3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000620001b9836001600160a01b038416620001c2565b90505b92915050565b60008181526001830160205260408120546200020b57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155620001bc565b506000620001bc565b6000602082840312156200022757600080fd5b81516001600160a01b03811681146200023f57600080fd5b9392505050565b61368b80620002566000396000f3fe60806040523480156200001157600080fd5b5060043610620001155760003560e01c806391d1485411620000a3578063ca15c873116200006e578063ca15c873146200026e578063d547741f1462000285578063f5887cdd146200029c578063f5b541a614620002b057600080fd5b806391d14854146200022057806396bd23041462000237578063a217fddf146200024e578063c3eecb41146200025757600080fd5b80632f2ff15d11620000e45780632f2ff15d14620001c457806336568abe14620001db5780638801e40a14620001f25780639010d07c146200020957600080fd5b806301ffc9a7146200011a5780630b3448a81462000146578063248a9ca3146200015f5780632ab7f2f31462000194575b600080fd5b620001316200012b36600462000f30565b620002d8565b60405190151581526020015b60405180910390f35b6200015d6200015736600462000f72565b62000306565b005b620001856200017036600462000f92565b60009081526020819052604090206001015490565b6040519081526020016200013d565b620001ab620001a536600462001075565b62000392565b6040516001600160a01b0390911681526020016200013d565b6200015d620001d536600462001147565b62000424565b6200015d620001ec36600462001147565b62000452565b620001ab6200020336600462001075565b620004d4565b620001ab6200021a3660046200117a565b62000539565b620001316200023136600462001147565b6200055a565b620001ab6200024836600462001075565b62000583565b62000185600081565b620001ab6200026836600462001075565b620005c3565b620001856200027f36600462000f92565b620005d7565b6200015d6200029636600462001147565b620005f0565b600254620001ab906001600160a01b031681565b620001857f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b92981565b60006001600160e01b03198216635a05180f60e01b14806200030057506200030082620006b8565b92915050565b60006200031381620006ef565b6001600160a01b0382166200036f5760405162461bcd60e51b815260206004820152601a60248201527f53796e7468466163746f72793a207a65726f206164647265737300000000000060448201526064015b60405180910390fd5b50600280546001600160a01b0319166001600160a01b0392909216919091179055565b60007f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b929620003c081620006ef565b6200041888888886604051602001620003db929190620011c3565b6040516020818303038152906040528887604051602001620003ff92919062001211565b60405160208183030381529060405288886001620006fe565b98975050505050505050565b6000828152602081905260409020600101546200044181620006ef565b6200044d838362000897565b505050565b6001600160a01b0381163314620004c45760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840162000366565b620004d08282620008bd565b5050565b60006200052e87878785604051602001620004f1929190620011c3565b60405160208183030381529060405287866040516020016200051592919062001211565b60405160208183030381529060405287876001620008e3565b979650505050505050565b600082815260016020526040812062000553908362000993565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b60007f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b929620005b181620006ef565b620004188888888888886002620006fe565b60006200052e8787878787876002620008e3565b60008181526001602052604081206200030090620009a1565b6000828152602081905260409020600101546200060d81620006ef565b6200044d8383620008bd565b6200062582826200055a565b620004d0576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556200065d3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600062000553836001600160a01b038416620009ac565b60006001600160e01b03198216637965db0b60e01b14806200030057506301ffc9a760e01b6001600160e01b031983161462000300565b620006fb8133620009fe565b50565b6000620007ab600089866040516020016200071b9291906200125e565b6040516020818303038152906040528051906020012060405180602001620007439062000f22565b6020820181038252601f19601f8201166040525089898c8e8b8b8b604051602001620007769796959493929190620012bb565b60408051601f198184030181529082905262000796929160200162001356565b60405160208183030381529060405262000a62565b60025460405163d4f0cceb60e01b815267ffffffffffffffff461660048201529192506000916001600160a01b039091169063d4f0cceb90602401602060405180830381865afa15801562000804573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200082a919062001389565b60405163f2fde38b60e01b81526001600160a01b0380831660048301529192509083169063f2fde38b90602401600060405180830381600087803b1580156200087257600080fd5b505af115801562000887573d6000803e3d6000fd5b5050505050979650505050505050565b620008a3828262000619565b60008281526001602052604090206200044d9082620006a1565b620008c9828262000b6c565b60008281526001602052604090206200044d908262000bd4565b6000620004188885604051602001620008fe9291906200125e565b6040516020818303038152906040528051906020012060405180602001620009269062000f22565b601f1982820381018352601f90910116604081905262000957908a908a908d908f908c908c908c90602001620012bb565b60408051601f198184030181529082905262000977929160200162001356565b6040516020818303038152906040528051906020012062000beb565b600062000553838362000bfa565b600062000300825490565b6000818152600183016020526040812054620009f55750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000300565b50600062000300565b62000a0a82826200055a565b620004d05762000a1a8162000c27565b62000a2783602062000c3a565b60405160200162000a3a929190620013a9565b60408051601f198184030181529082905262461bcd60e51b8252620003669160040162001422565b60008347101562000ab65760405162461bcd60e51b815260206004820152601d60248201527f437265617465323a20696e73756666696369656e742062616c616e6365000000604482015260640162000366565b815160000362000b095760405162461bcd60e51b815260206004820181905260248201527f437265617465323a2062797465636f6465206c656e677468206973207a65726f604482015260640162000366565b8282516020840186f590506001600160a01b038116620005535760405162461bcd60e51b815260206004820152601960248201527f437265617465323a204661696c6564206f6e206465706c6f7900000000000000604482015260640162000366565b62000b7882826200055a565b15620004d0576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600062000553836001600160a01b03841662000df4565b60006200055383833062000ef8565b600082600001828154811062000c145762000c1462001437565b9060005260206000200154905092915050565b6060620003006001600160a01b03831660145b6060600062000c4b83600262001463565b62000c589060026200147d565b67ffffffffffffffff81111562000c735762000c7362000fac565b6040519080825280601f01601f19166020018201604052801562000c9e576020820181803683370190505b509050600360fc1b8160008151811062000cbc5762000cbc62001437565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811062000cee5762000cee62001437565b60200101906001600160f81b031916908160001a905350600062000d1484600262001463565b62000d219060016200147d565b90505b600181111562000da3576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811062000d595762000d5962001437565b1a60f81b82828151811062000d725762000d7262001437565b60200101906001600160f81b031916908160001a90535060049490941c9362000d9b8162001493565b905062000d24565b508315620005535760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640162000366565b6000818152600183016020526040812054801562000eed57600062000e1b600183620014ad565b855490915060009062000e3190600190620014ad565b905081811462000e9d57600086600001828154811062000e555762000e5562001437565b906000526020600020015490508087600001848154811062000e7b5762000e7b62001437565b6000918252602080832090910192909255918252600188019052604090208390555b855486908062000eb15762000eb1620014c3565b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505062000300565b600091505062000300565b6000604051836040820152846020820152828152600b8101905060ff815360559020949350505050565b61217c80620014da83390190565b60006020828403121562000f4357600080fd5b81356001600160e01b0319811681146200055357600080fd5b6001600160a01b0381168114620006fb57600080fd5b60006020828403121562000f8557600080fd5b8135620005538162000f5c565b60006020828403121562000fa557600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b600082601f83011262000fd457600080fd5b813567ffffffffffffffff8082111562000ff25762000ff262000fac565b604051601f8301601f19908116603f011681019082821181831017156200101d576200101d62000fac565b816040528381528660208588010111156200103757600080fd5b836020870160208301376000602085830101528094505050505092915050565b803567ffffffffffffffff811681146200107057600080fd5b919050565b60008060008060008060c087890312156200108f57600080fd5b86356200109c8162000f5c565b9550602087013560ff81168114620010b357600080fd5b9450604087013567ffffffffffffffff80821115620010d157600080fd5b620010df8a838b0162000fc2565b95506060890135915080821115620010f657600080fd5b620011048a838b0162000fc2565b94506200111460808a0162001057565b935060a08901359150808211156200112b57600080fd5b506200113a89828a0162000fc2565b9150509295509295509295565b600080604083850312156200115b57600080fd5b8235915060208301356200116f8162000f5c565b809150509250929050565b600080604083850312156200118e57600080fd5b50508035926020909101359150565b60005b83811015620011ba578181015183820152602001620011a0565b50506000910152565b61039960f51b815260008351620011e28160028501602088016200119d565b600160fd1b6002918401918201528351620012058160038401602088016200119d565b01600301949350505050565b607360f81b8152600083516200122f8160018501602088016200119d565b605f60f81b6001918401918201528351620012528160028401602088016200119d565b01600201949350505050565b60609290921b6bffffffffffffffffffffffff1916825260c01b6001600160c01b0319166014820152601c0190565b60008151808452620012a78160208601602086016200119d565b601f01601f19169290920160200192915050565b60e081526000620012d060e083018a6200128d565b8281036020840152620012e4818a6200128d565b60ff891660408501526001600160a01b038816606085015267ffffffffffffffff8716608085015283810360a085015290506200132281866200128d565b915050600583106200134457634e487b7160e01b600052602160045260246000fd5b8260c083015298975050505050505050565b600083516200136a8184602088016200119d565b835190830190620013808183602088016200119d565b01949350505050565b6000602082840312156200139c57600080fd5b8151620005538162000f5c565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351620013e38160178501602088016200119d565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351620014168160288401602088016200119d565b01602801949350505050565b6020815260006200055360208301846200128d565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176200030057620003006200144d565b808201808211156200030057620003006200144d565b600081620014a557620014a56200144d565b506000190190565b818103818111156200030057620003006200144d565b634e487b7160e01b600052603160045260246000fdfe6101606040523480156200001257600080fd5b506040516200217c3803806200217c833981016040819052620000359162000424565b604051806040016040528060048152602001634559574160e01b81525080604051806040016040528060018152602001603160f81b815250898962000089620000836200021f60201b60201c565b62000223565b600462000097838262000599565b506005620000a6828262000599565b505050620000c46006836200027360201b62000a2d1790919060201c565b61012052620000e181600762000273602090811b62000a2d17901c565b61014052815160208084019190912060e052815190820120610100524660a0526200016f60e05161010051604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201529081019290925260608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b60805250503060c05250600a80546001600160401b038516600160a01b026001600160e01b03199091166001600160a01b03871617179055600b620001b5838262000599565b50600e805460ff60a01b1916600160a01b60ff881602179055806004811115620001e357620001e362000665565b600c805460ff9290921660ff199092169190911790555050600019600d555050600e80546001600160a01b0319163017905550620006d5915050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208351101562000293576200028b83620002c3565b9050620002bd565b82620002aa836200030f60201b62000a5e1760201c565b90620002b7908262000599565b5060ff90505b92915050565b600080829050601f81511115620002fa578260405163305a27a960e01b8152600401620002f191906200067b565b60405180910390fd5b80516200030782620006b0565b179392505050565b90565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620003455781810151838201526020016200032b565b50506000910152565b600082601f8301126200036057600080fd5b81516001600160401b03808211156200037d576200037d62000312565b604051601f8301601f19908116603f01168101908282118183101715620003a857620003a862000312565b81604052838152866020858801011115620003c257600080fd5b620003d584602083016020890162000328565b9695505050505050565b80516001600160a01b0381168114620003f757600080fd5b919050565b80516001600160401b0381168114620003f757600080fd5b805160058110620003f757600080fd5b600080600080600080600060e0888a0312156200044057600080fd5b87516001600160401b03808211156200045857600080fd5b620004668b838c016200034e565b985060208a01519150808211156200047d57600080fd5b6200048b8b838c016200034e565b975060408a0151915060ff82168214620004a457600080fd5b819650620004b560608b01620003df565b9550620004c560808b01620003fc565b945060a08a0151915080821115620004dc57600080fd5b50620004eb8a828b016200034e565b925050620004fc60c0890162000414565b905092959891949750929550565b600181811c908216806200051f57607f821691505b6020821081036200054057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200059457600081815260208120601f850160051c810160208610156200056f5750805b601f850160051c820191505b8181101562000590578281556001016200057b565b5050505b505050565b81516001600160401b03811115620005b557620005b562000312565b620005cd81620005c684546200050a565b8462000546565b602080601f831160018114620006055760008415620005ec5750858301515b600019600386901b1c1916600185901b17855562000590565b600085815260208120601f198616915b82811015620006365788860151825594840194600190910190840162000615565b5085821015620006555787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052602160045260246000fd5b60208152600082518060208401526200069c81604085016020870162000328565b601f01601f19169190910160400192915050565b80516020808301519190811015620005405760001960209190910360031b1b16919050565b60805160a05160c05160e051610100516101205161014051611a4c6200073060003960006106860152600061065b01526000610f4701526000610f1f01526000610e7a01526000610ea401526000610ece0152611a4c6000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063715018a611610104578063a457c2d7116100a2578063d505accf11610071578063d505accf146103f7578063dd62ed3e1461040a578063e75afb141461041d578063f2fde38b1461042a57600080fd5b8063a457c2d7146103ab578063a9059cbb146103be578063a918adf5146103d1578063b6838cfa146103e457600080fd5b80638662847d116100de5780638662847d146103775780638da5cb5b1461037f57806395d89b41146103905780639dc29fac1461039857600080fd5b8063715018a6146103415780637ecebe001461034957806384b0196e1461035c57600080fd5b8063355274ea11610171578063395093511161014b57806339509351146102df57806340c10f19146102f257806347786d371461030557806370a082311461031857600080fd5b8063355274ea1461029a5780633644e515146102a3578063376c16e8146102ab57600080fd5b806318160ddd116101ad57806318160ddd1461024057806320c41a781461025257806323b872dd14610267578063313ce5671461027a57600080fd5b806306fdde03146101d4578063095ea7b3146101f25780630e7c1cb514610215575b600080fd5b6101dc61043d565b6040516101e991906115f7565b60405180910390f35b61020561020036600461162d565b6104cf565b60405190151581526020016101e9565b600a54610228906001600160a01b031681565b6040516001600160a01b0390911681526020016101e9565b6003545b6040519081526020016101e9565b610265610260366004611657565b6104e9565b005b610205610275366004611657565b61051f565b600e54600160a01b900460ff165b60405160ff90911681526020016101e9565b610244600d5481565b610244610543565b600a546102c690600160a01b900467ffffffffffffffff1681565b60405167ffffffffffffffff90911681526020016101e9565b6102056102ed36600461162d565b610552565b61026561030036600461162d565b610565565b610265610313366004611693565b61057b565b6102446103263660046116ac565b6001600160a01b031660009081526001602052604090205490565b61026561061b565b6102446103573660046116ac565b61062f565b61036461064d565b6040516101e997969594939291906116c7565b6101dc6106d6565b6000546001600160a01b0316610228565b6101dc610764565b6102656103a636600461162d565b610773565b6102056103b936600461162d565b610785565b6102056103cc36600461162d565b6107c2565b6102656103df366004611657565b6107d0565b600e54610228906001600160a01b031681565b61026561040536600461175d565b610825565b6102446104183660046117d0565b610989565b600c546102889060ff1681565b6102656104383660046116ac565b6109b4565b60606004805461044c90611803565b80601f016020809104026020016040519081016040528092919081815260200182805461047890611803565b80156104c55780601f1061049a576101008083540402835291602001916104c5565b820191906000526020600020905b8154815290600101906020018083116104a857829003601f168201915b5050505050905090565b6000336104dd818585610a61565b60019150505b92915050565b6104f1610b85565b6104fb8382610bdf565b61051a83838361050b8787610989565b610515919061184d565b610a61565b505050565b60003361052d858285610c4e565b610538858585610cc2565b506001949350505050565b600061054d610e6d565b905090565b6000336104dd81858561050b8383610989565b61056d610b85565b6105778282610bdf565b5050565b610583610b85565b8061058d60035490565b11156105e05760405162461bcd60e51b815260206004820152601860248201527f53796e746845524332303a20636170206578636565646564000000000000000060448201526064015b60405180910390fd5b600d8190556040518181527f9872d5eb566b79923d043f1b59aca655ca80a2bb5b6bca4824e515b0e398902f9060200160405180910390a150565b610623610b85565b61062d6000610f98565b565b6001600160a01b0381166000908152600860205260408120546104e3565b6000606080828080836106817f00000000000000000000000000000000000000000000000000000000000000006006610fe8565b6106ac7f00000000000000000000000000000000000000000000000000000000000000006007610fe8565b60408051600080825260208201909252600f60f81b9b939a50919850469750309650945092509050565b600b80546106e390611803565b80601f016020809104026020016040519081016040528092919081815260200182805461070f90611803565b801561075c5780601f106107315761010080835404028352916020019161075c565b820191906000526020600020905b81548152906001019060200180831161073f57829003601f168201915b505050505081565b60606005805461044c90611803565b61077b610b85565b610577828261108c565b600033816107938286610989565b9050838110156107b55760405162461bcd60e51b81526004016105d790611876565b6105388286868403610a61565b6000336104dd818585610cc2565b6107d8610b85565b60006107e48484610989565b9050818110156108065760405162461bcd60e51b81526004016105d790611876565b610815848461051585856118bb565b61081f848361108c565b50505050565b834211156108755760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e6500000060448201526064016105d7565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886108a48c6111c0565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e00160405160208183030381529060405280519060200120905060006108ff826111e8565b9050600061090f82878787611215565b9050896001600160a01b0316816001600160a01b0316146109725760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e6174757265000060448201526064016105d7565b61097d8a8a8a610a61565b50505050505050505050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6109bc610b85565b6001600160a01b038116610a215760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105d7565b610a2a81610f98565b50565b6000602083511015610a4957610a428361123d565b90506104e3565b81610a54848261191c565b5060ff90506104e3565b90565b6001600160a01b038316610ac35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105d7565b6001600160a01b038216610b245760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105d7565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000546001600160a01b0316331461062d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105d7565b600d5481610bec60035490565b610bf6919061184d565b1115610c445760405162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a206361702065786365656465640000000000000060448201526064016105d7565b610577828261127b565b6000610c5a8484610989565b9050600019811461081f5781811015610cb55760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105d7565b61081f8484848403610a61565b6001600160a01b038316610d265760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105d7565b6001600160a01b038216610d885760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105d7565b6001600160a01b03831660009081526001602052604090205481811015610e005760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105d7565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610e609086815260200190565b60405180910390a361081f565b6000306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148015610ec657507f000000000000000000000000000000000000000000000000000000000000000046145b15610ef057507f000000000000000000000000000000000000000000000000000000000000000090565b61054d604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f0000000000000000000000000000000000000000000000000000000000000000918101919091527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b606060ff8314610ffb57610a428361133c565b81805461100790611803565b80601f016020809104026020016040519081016040528092919081815260200182805461103390611803565b80156110805780601f1061105557610100808354040283529160200191611080565b820191906000526020600020905b81548152906001019060200180831161106357829003601f168201915b505050505090506104e3565b6001600160a01b0382166110ec5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105d7565b6001600160a01b038216600090815260016020526040902054818110156111605760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105d7565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6001600160a01b03811660009081526008602052604090208054600181018255905b50919050565b60006104e36111f5610e6d565b8360405161190160f01b8152600281019290925260228201526042902090565b60008060006112268787878761137b565b915091506112338161143f565b5095945050505050565b600080829050601f81511115611268578260405163305a27a960e01b81526004016105d791906115f7565b8051611273826119dc565b179392505050565b6001600160a01b0382166112d15760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105d7565b80600360008282546112e3919061184d565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6060600061134983611589565b604080516020808252818301909252919250600091906020820181803683375050509182525060208101929092525090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156113b25750600090506003611436565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611406573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661142f57600060019250925050611436565b9150600090505b94509492505050565b600081600481111561145357611453611a00565b0361145b5750565b600181600481111561146f5761146f611a00565b036114bc5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016105d7565b60028160048111156114d0576114d0611a00565b0361151d5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016105d7565b600381600481111561153157611531611a00565b03610a2a5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016105d7565b600060ff8216601f8111156104e357604051632cd44ac360e21b815260040160405180910390fd5b6000815180845260005b818110156115d7576020818501810151868301820152016115bb565b506000602082860101526020601f19601f83011685010191505092915050565b60208152600061160a60208301846115b1565b9392505050565b80356001600160a01b038116811461162857600080fd5b919050565b6000806040838503121561164057600080fd5b61164983611611565b946020939093013593505050565b60008060006060848603121561166c57600080fd5b61167584611611565b925061168360208501611611565b9150604084013590509250925092565b6000602082840312156116a557600080fd5b5035919050565b6000602082840312156116be57600080fd5b61160a82611611565b60ff60f81b881681526000602060e0818401526116e760e084018a6115b1565b83810360408501526116f9818a6115b1565b606085018990526001600160a01b038816608086015260a0850187905284810360c0860152855180825283870192509083019060005b8181101561174b5783518352928401929184019160010161172f565b50909c9b505050505050505050505050565b600080600080600080600060e0888a03121561177857600080fd5b61178188611611565b965061178f60208901611611565b95506040880135945060608801359350608088013560ff811681146117b357600080fd5b9699959850939692959460a0840135945060c09093013592915050565b600080604083850312156117e357600080fd5b6117ec83611611565b91506117fa60208401611611565b90509250929050565b600181811c9082168061181757607f821691505b6020821081036111e257634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b808201808211156104e3576104e3611837565b634e487b7160e01b600052604160045260246000fd5b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b818103818111156104e3576104e3611837565b601f82111561051a57600081815260208120601f850160051c810160208610156118f55750805b601f850160051c820191505b8181101561191457828155600101611901565b505050505050565b815167ffffffffffffffff81111561193657611936611860565b61194a816119448454611803565b846118ce565b602080601f83116001811461197f57600084156119675750858301515b600019600386901b1c1916600185901b178555611914565b600085815260208120601f198616915b828110156119ae5788860151825594840194600190910190840161198f565b50858210156119cc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b805160208083015191908110156111e25760001960209190910360031b1b16919050565b634e487b7160e01b600052602160045260246000fdfea26469706673582212202eb8536582ccecae28c09188dfcaabf368cb467d534eee02a624e7e9155c593164736f6c63430008110033a2646970667358221220ccffc778ad983ea28acaa3b06c7044cb53eb470a8e21df0111030e3760462b9564736f6c63430008110033000000000000000000000000564a0c04877e4ca6f5d0cad8c20522226321d9b0
Deployed Bytecode
0x60806040523480156200001157600080fd5b5060043610620001155760003560e01c806391d1485411620000a3578063ca15c873116200006e578063ca15c873146200026e578063d547741f1462000285578063f5887cdd146200029c578063f5b541a614620002b057600080fd5b806391d14854146200022057806396bd23041462000237578063a217fddf146200024e578063c3eecb41146200025757600080fd5b80632f2ff15d11620000e45780632f2ff15d14620001c457806336568abe14620001db5780638801e40a14620001f25780639010d07c146200020957600080fd5b806301ffc9a7146200011a5780630b3448a81462000146578063248a9ca3146200015f5780632ab7f2f31462000194575b600080fd5b620001316200012b36600462000f30565b620002d8565b60405190151581526020015b60405180910390f35b6200015d6200015736600462000f72565b62000306565b005b620001856200017036600462000f92565b60009081526020819052604090206001015490565b6040519081526020016200013d565b620001ab620001a536600462001075565b62000392565b6040516001600160a01b0390911681526020016200013d565b6200015d620001d536600462001147565b62000424565b6200015d620001ec36600462001147565b62000452565b620001ab6200020336600462001075565b620004d4565b620001ab6200021a3660046200117a565b62000539565b620001316200023136600462001147565b6200055a565b620001ab6200024836600462001075565b62000583565b62000185600081565b620001ab6200026836600462001075565b620005c3565b620001856200027f36600462000f92565b620005d7565b6200015d6200029636600462001147565b620005f0565b600254620001ab906001600160a01b031681565b620001857f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b92981565b60006001600160e01b03198216635a05180f60e01b14806200030057506200030082620006b8565b92915050565b60006200031381620006ef565b6001600160a01b0382166200036f5760405162461bcd60e51b815260206004820152601a60248201527f53796e7468466163746f72793a207a65726f206164647265737300000000000060448201526064015b60405180910390fd5b50600280546001600160a01b0319166001600160a01b0392909216919091179055565b60007f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b929620003c081620006ef565b6200041888888886604051602001620003db929190620011c3565b6040516020818303038152906040528887604051602001620003ff92919062001211565b60405160208183030381529060405288886001620006fe565b98975050505050505050565b6000828152602081905260409020600101546200044181620006ef565b6200044d838362000897565b505050565b6001600160a01b0381163314620004c45760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840162000366565b620004d08282620008bd565b5050565b60006200052e87878785604051602001620004f1929190620011c3565b60405160208183030381529060405287866040516020016200051592919062001211565b60405160208183030381529060405287876001620008e3565b979650505050505050565b600082815260016020526040812062000553908362000993565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b60007f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b929620005b181620006ef565b620004188888888888886002620006fe565b60006200052e8787878787876002620008e3565b60008181526001602052604081206200030090620009a1565b6000828152602081905260409020600101546200060d81620006ef565b6200044d8383620008bd565b6200062582826200055a565b620004d0576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556200065d3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600062000553836001600160a01b038416620009ac565b60006001600160e01b03198216637965db0b60e01b14806200030057506301ffc9a760e01b6001600160e01b031983161462000300565b620006fb8133620009fe565b50565b6000620007ab600089866040516020016200071b9291906200125e565b6040516020818303038152906040528051906020012060405180602001620007439062000f22565b6020820181038252601f19601f8201166040525089898c8e8b8b8b604051602001620007769796959493929190620012bb565b60408051601f198184030181529082905262000796929160200162001356565b60405160208183030381529060405262000a62565b60025460405163d4f0cceb60e01b815267ffffffffffffffff461660048201529192506000916001600160a01b039091169063d4f0cceb90602401602060405180830381865afa15801562000804573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200082a919062001389565b60405163f2fde38b60e01b81526001600160a01b0380831660048301529192509083169063f2fde38b90602401600060405180830381600087803b1580156200087257600080fd5b505af115801562000887573d6000803e3d6000fd5b5050505050979650505050505050565b620008a3828262000619565b60008281526001602052604090206200044d9082620006a1565b620008c9828262000b6c565b60008281526001602052604090206200044d908262000bd4565b6000620004188885604051602001620008fe9291906200125e565b6040516020818303038152906040528051906020012060405180602001620009269062000f22565b601f1982820381018352601f90910116604081905262000957908a908a908d908f908c908c908c90602001620012bb565b60408051601f198184030181529082905262000977929160200162001356565b6040516020818303038152906040528051906020012062000beb565b600062000553838362000bfa565b600062000300825490565b6000818152600183016020526040812054620009f55750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000300565b50600062000300565b62000a0a82826200055a565b620004d05762000a1a8162000c27565b62000a2783602062000c3a565b60405160200162000a3a929190620013a9565b60408051601f198184030181529082905262461bcd60e51b8252620003669160040162001422565b60008347101562000ab65760405162461bcd60e51b815260206004820152601d60248201527f437265617465323a20696e73756666696369656e742062616c616e6365000000604482015260640162000366565b815160000362000b095760405162461bcd60e51b815260206004820181905260248201527f437265617465323a2062797465636f6465206c656e677468206973207a65726f604482015260640162000366565b8282516020840186f590506001600160a01b038116620005535760405162461bcd60e51b815260206004820152601960248201527f437265617465323a204661696c6564206f6e206465706c6f7900000000000000604482015260640162000366565b62000b7882826200055a565b15620004d0576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600062000553836001600160a01b03841662000df4565b60006200055383833062000ef8565b600082600001828154811062000c145762000c1462001437565b9060005260206000200154905092915050565b6060620003006001600160a01b03831660145b6060600062000c4b83600262001463565b62000c589060026200147d565b67ffffffffffffffff81111562000c735762000c7362000fac565b6040519080825280601f01601f19166020018201604052801562000c9e576020820181803683370190505b509050600360fc1b8160008151811062000cbc5762000cbc62001437565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811062000cee5762000cee62001437565b60200101906001600160f81b031916908160001a905350600062000d1484600262001463565b62000d219060016200147d565b90505b600181111562000da3576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811062000d595762000d5962001437565b1a60f81b82828151811062000d725762000d7262001437565b60200101906001600160f81b031916908160001a90535060049490941c9362000d9b8162001493565b905062000d24565b508315620005535760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640162000366565b6000818152600183016020526040812054801562000eed57600062000e1b600183620014ad565b855490915060009062000e3190600190620014ad565b905081811462000e9d57600086600001828154811062000e555762000e5562001437565b906000526020600020015490508087600001848154811062000e7b5762000e7b62001437565b6000918252602080832090910192909255918252600188019052604090208390555b855486908062000eb15762000eb1620014c3565b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505062000300565b600091505062000300565b6000604051836040820152846020820152828152600b8101905060ff815360559020949350505050565b61217c80620014da83390190565b60006020828403121562000f4357600080fd5b81356001600160e01b0319811681146200055357600080fd5b6001600160a01b0381168114620006fb57600080fd5b60006020828403121562000f8557600080fd5b8135620005538162000f5c565b60006020828403121562000fa557600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b600082601f83011262000fd457600080fd5b813567ffffffffffffffff8082111562000ff25762000ff262000fac565b604051601f8301601f19908116603f011681019082821181831017156200101d576200101d62000fac565b816040528381528660208588010111156200103757600080fd5b836020870160208301376000602085830101528094505050505092915050565b803567ffffffffffffffff811681146200107057600080fd5b919050565b60008060008060008060c087890312156200108f57600080fd5b86356200109c8162000f5c565b9550602087013560ff81168114620010b357600080fd5b9450604087013567ffffffffffffffff80821115620010d157600080fd5b620010df8a838b0162000fc2565b95506060890135915080821115620010f657600080fd5b620011048a838b0162000fc2565b94506200111460808a0162001057565b935060a08901359150808211156200112b57600080fd5b506200113a89828a0162000fc2565b9150509295509295509295565b600080604083850312156200115b57600080fd5b8235915060208301356200116f8162000f5c565b809150509250929050565b600080604083850312156200118e57600080fd5b50508035926020909101359150565b60005b83811015620011ba578181015183820152602001620011a0565b50506000910152565b61039960f51b815260008351620011e28160028501602088016200119d565b600160fd1b6002918401918201528351620012058160038401602088016200119d565b01600301949350505050565b607360f81b8152600083516200122f8160018501602088016200119d565b605f60f81b6001918401918201528351620012528160028401602088016200119d565b01600201949350505050565b60609290921b6bffffffffffffffffffffffff1916825260c01b6001600160c01b0319166014820152601c0190565b60008151808452620012a78160208601602086016200119d565b601f01601f19169290920160200192915050565b60e081526000620012d060e083018a6200128d565b8281036020840152620012e4818a6200128d565b60ff891660408501526001600160a01b038816606085015267ffffffffffffffff8716608085015283810360a085015290506200132281866200128d565b915050600583106200134457634e487b7160e01b600052602160045260246000fd5b8260c083015298975050505050505050565b600083516200136a8184602088016200119d565b835190830190620013808183602088016200119d565b01949350505050565b6000602082840312156200139c57600080fd5b8151620005538162000f5c565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351620013e38160178501602088016200119d565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351620014168160288401602088016200119d565b01602801949350505050565b6020815260006200055360208301846200128d565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176200030057620003006200144d565b808201808211156200030057620003006200144d565b600081620014a557620014a56200144d565b506000190190565b818103818111156200030057620003006200144d565b634e487b7160e01b600052603160045260246000fdfe6101606040523480156200001257600080fd5b506040516200217c3803806200217c833981016040819052620000359162000424565b604051806040016040528060048152602001634559574160e01b81525080604051806040016040528060018152602001603160f81b815250898962000089620000836200021f60201b60201c565b62000223565b600462000097838262000599565b506005620000a6828262000599565b505050620000c46006836200027360201b62000a2d1790919060201c565b61012052620000e181600762000273602090811b62000a2d17901c565b61014052815160208084019190912060e052815190820120610100524660a0526200016f60e05161010051604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201529081019290925260608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b60805250503060c05250600a80546001600160401b038516600160a01b026001600160e01b03199091166001600160a01b03871617179055600b620001b5838262000599565b50600e805460ff60a01b1916600160a01b60ff881602179055806004811115620001e357620001e362000665565b600c805460ff9290921660ff199092169190911790555050600019600d555050600e80546001600160a01b0319163017905550620006d5915050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208351101562000293576200028b83620002c3565b9050620002bd565b82620002aa836200030f60201b62000a5e1760201c565b90620002b7908262000599565b5060ff90505b92915050565b600080829050601f81511115620002fa578260405163305a27a960e01b8152600401620002f191906200067b565b60405180910390fd5b80516200030782620006b0565b179392505050565b90565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620003455781810151838201526020016200032b565b50506000910152565b600082601f8301126200036057600080fd5b81516001600160401b03808211156200037d576200037d62000312565b604051601f8301601f19908116603f01168101908282118183101715620003a857620003a862000312565b81604052838152866020858801011115620003c257600080fd5b620003d584602083016020890162000328565b9695505050505050565b80516001600160a01b0381168114620003f757600080fd5b919050565b80516001600160401b0381168114620003f757600080fd5b805160058110620003f757600080fd5b600080600080600080600060e0888a0312156200044057600080fd5b87516001600160401b03808211156200045857600080fd5b620004668b838c016200034e565b985060208a01519150808211156200047d57600080fd5b6200048b8b838c016200034e565b975060408a0151915060ff82168214620004a457600080fd5b819650620004b560608b01620003df565b9550620004c560808b01620003fc565b945060a08a0151915080821115620004dc57600080fd5b50620004eb8a828b016200034e565b925050620004fc60c0890162000414565b905092959891949750929550565b600181811c908216806200051f57607f821691505b6020821081036200054057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200059457600081815260208120601f850160051c810160208610156200056f5750805b601f850160051c820191505b8181101562000590578281556001016200057b565b5050505b505050565b81516001600160401b03811115620005b557620005b562000312565b620005cd81620005c684546200050a565b8462000546565b602080601f831160018114620006055760008415620005ec5750858301515b600019600386901b1c1916600185901b17855562000590565b600085815260208120601f198616915b82811015620006365788860151825594840194600190910190840162000615565b5085821015620006555787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052602160045260246000fd5b60208152600082518060208401526200069c81604085016020870162000328565b601f01601f19169190910160400192915050565b80516020808301519190811015620005405760001960209190910360031b1b16919050565b60805160a05160c05160e051610100516101205161014051611a4c6200073060003960006106860152600061065b01526000610f4701526000610f1f01526000610e7a01526000610ea401526000610ece0152611a4c6000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063715018a611610104578063a457c2d7116100a2578063d505accf11610071578063d505accf146103f7578063dd62ed3e1461040a578063e75afb141461041d578063f2fde38b1461042a57600080fd5b8063a457c2d7146103ab578063a9059cbb146103be578063a918adf5146103d1578063b6838cfa146103e457600080fd5b80638662847d116100de5780638662847d146103775780638da5cb5b1461037f57806395d89b41146103905780639dc29fac1461039857600080fd5b8063715018a6146103415780637ecebe001461034957806384b0196e1461035c57600080fd5b8063355274ea11610171578063395093511161014b57806339509351146102df57806340c10f19146102f257806347786d371461030557806370a082311461031857600080fd5b8063355274ea1461029a5780633644e515146102a3578063376c16e8146102ab57600080fd5b806318160ddd116101ad57806318160ddd1461024057806320c41a781461025257806323b872dd14610267578063313ce5671461027a57600080fd5b806306fdde03146101d4578063095ea7b3146101f25780630e7c1cb514610215575b600080fd5b6101dc61043d565b6040516101e991906115f7565b60405180910390f35b61020561020036600461162d565b6104cf565b60405190151581526020016101e9565b600a54610228906001600160a01b031681565b6040516001600160a01b0390911681526020016101e9565b6003545b6040519081526020016101e9565b610265610260366004611657565b6104e9565b005b610205610275366004611657565b61051f565b600e54600160a01b900460ff165b60405160ff90911681526020016101e9565b610244600d5481565b610244610543565b600a546102c690600160a01b900467ffffffffffffffff1681565b60405167ffffffffffffffff90911681526020016101e9565b6102056102ed36600461162d565b610552565b61026561030036600461162d565b610565565b610265610313366004611693565b61057b565b6102446103263660046116ac565b6001600160a01b031660009081526001602052604090205490565b61026561061b565b6102446103573660046116ac565b61062f565b61036461064d565b6040516101e997969594939291906116c7565b6101dc6106d6565b6000546001600160a01b0316610228565b6101dc610764565b6102656103a636600461162d565b610773565b6102056103b936600461162d565b610785565b6102056103cc36600461162d565b6107c2565b6102656103df366004611657565b6107d0565b600e54610228906001600160a01b031681565b61026561040536600461175d565b610825565b6102446104183660046117d0565b610989565b600c546102889060ff1681565b6102656104383660046116ac565b6109b4565b60606004805461044c90611803565b80601f016020809104026020016040519081016040528092919081815260200182805461047890611803565b80156104c55780601f1061049a576101008083540402835291602001916104c5565b820191906000526020600020905b8154815290600101906020018083116104a857829003601f168201915b5050505050905090565b6000336104dd818585610a61565b60019150505b92915050565b6104f1610b85565b6104fb8382610bdf565b61051a83838361050b8787610989565b610515919061184d565b610a61565b505050565b60003361052d858285610c4e565b610538858585610cc2565b506001949350505050565b600061054d610e6d565b905090565b6000336104dd81858561050b8383610989565b61056d610b85565b6105778282610bdf565b5050565b610583610b85565b8061058d60035490565b11156105e05760405162461bcd60e51b815260206004820152601860248201527f53796e746845524332303a20636170206578636565646564000000000000000060448201526064015b60405180910390fd5b600d8190556040518181527f9872d5eb566b79923d043f1b59aca655ca80a2bb5b6bca4824e515b0e398902f9060200160405180910390a150565b610623610b85565b61062d6000610f98565b565b6001600160a01b0381166000908152600860205260408120546104e3565b6000606080828080836106817f00000000000000000000000000000000000000000000000000000000000000006006610fe8565b6106ac7f00000000000000000000000000000000000000000000000000000000000000006007610fe8565b60408051600080825260208201909252600f60f81b9b939a50919850469750309650945092509050565b600b80546106e390611803565b80601f016020809104026020016040519081016040528092919081815260200182805461070f90611803565b801561075c5780601f106107315761010080835404028352916020019161075c565b820191906000526020600020905b81548152906001019060200180831161073f57829003601f168201915b505050505081565b60606005805461044c90611803565b61077b610b85565b610577828261108c565b600033816107938286610989565b9050838110156107b55760405162461bcd60e51b81526004016105d790611876565b6105388286868403610a61565b6000336104dd818585610cc2565b6107d8610b85565b60006107e48484610989565b9050818110156108065760405162461bcd60e51b81526004016105d790611876565b610815848461051585856118bb565b61081f848361108c565b50505050565b834211156108755760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e6500000060448201526064016105d7565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886108a48c6111c0565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e00160405160208183030381529060405280519060200120905060006108ff826111e8565b9050600061090f82878787611215565b9050896001600160a01b0316816001600160a01b0316146109725760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e6174757265000060448201526064016105d7565b61097d8a8a8a610a61565b50505050505050505050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6109bc610b85565b6001600160a01b038116610a215760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105d7565b610a2a81610f98565b50565b6000602083511015610a4957610a428361123d565b90506104e3565b81610a54848261191c565b5060ff90506104e3565b90565b6001600160a01b038316610ac35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105d7565b6001600160a01b038216610b245760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105d7565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000546001600160a01b0316331461062d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105d7565b600d5481610bec60035490565b610bf6919061184d565b1115610c445760405162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a206361702065786365656465640000000000000060448201526064016105d7565b610577828261127b565b6000610c5a8484610989565b9050600019811461081f5781811015610cb55760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105d7565b61081f8484848403610a61565b6001600160a01b038316610d265760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105d7565b6001600160a01b038216610d885760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105d7565b6001600160a01b03831660009081526001602052604090205481811015610e005760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105d7565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610e609086815260200190565b60405180910390a361081f565b6000306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148015610ec657507f000000000000000000000000000000000000000000000000000000000000000046145b15610ef057507f000000000000000000000000000000000000000000000000000000000000000090565b61054d604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f0000000000000000000000000000000000000000000000000000000000000000918101919091527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b606060ff8314610ffb57610a428361133c565b81805461100790611803565b80601f016020809104026020016040519081016040528092919081815260200182805461103390611803565b80156110805780601f1061105557610100808354040283529160200191611080565b820191906000526020600020905b81548152906001019060200180831161106357829003601f168201915b505050505090506104e3565b6001600160a01b0382166110ec5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105d7565b6001600160a01b038216600090815260016020526040902054818110156111605760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105d7565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6001600160a01b03811660009081526008602052604090208054600181018255905b50919050565b60006104e36111f5610e6d565b8360405161190160f01b8152600281019290925260228201526042902090565b60008060006112268787878761137b565b915091506112338161143f565b5095945050505050565b600080829050601f81511115611268578260405163305a27a960e01b81526004016105d791906115f7565b8051611273826119dc565b179392505050565b6001600160a01b0382166112d15760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105d7565b80600360008282546112e3919061184d565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6060600061134983611589565b604080516020808252818301909252919250600091906020820181803683375050509182525060208101929092525090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156113b25750600090506003611436565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611406573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661142f57600060019250925050611436565b9150600090505b94509492505050565b600081600481111561145357611453611a00565b0361145b5750565b600181600481111561146f5761146f611a00565b036114bc5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016105d7565b60028160048111156114d0576114d0611a00565b0361151d5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016105d7565b600381600481111561153157611531611a00565b03610a2a5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016105d7565b600060ff8216601f8111156104e357604051632cd44ac360e21b815260040160405180910390fd5b6000815180845260005b818110156115d7576020818501810151868301820152016115bb565b506000602082860101526020601f19601f83011685010191505092915050565b60208152600061160a60208301846115b1565b9392505050565b80356001600160a01b038116811461162857600080fd5b919050565b6000806040838503121561164057600080fd5b61164983611611565b946020939093013593505050565b60008060006060848603121561166c57600080fd5b61167584611611565b925061168360208501611611565b9150604084013590509250925092565b6000602082840312156116a557600080fd5b5035919050565b6000602082840312156116be57600080fd5b61160a82611611565b60ff60f81b881681526000602060e0818401526116e760e084018a6115b1565b83810360408501526116f9818a6115b1565b606085018990526001600160a01b038816608086015260a0850187905284810360c0860152855180825283870192509083019060005b8181101561174b5783518352928401929184019160010161172f565b50909c9b505050505050505050505050565b600080600080600080600060e0888a03121561177857600080fd5b61178188611611565b965061178f60208901611611565b95506040880135945060608801359350608088013560ff811681146117b357600080fd5b9699959850939692959460a0840135945060c09093013592915050565b600080604083850312156117e357600080fd5b6117ec83611611565b91506117fa60208401611611565b90509250929050565b600181811c9082168061181757607f821691505b6020821081036111e257634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b808201808211156104e3576104e3611837565b634e487b7160e01b600052604160045260246000fd5b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b818103818111156104e3576104e3611837565b601f82111561051a57600081815260208120601f850160051c810160208610156118f55750805b601f850160051c820191505b8181101561191457828155600101611901565b505050505050565b815167ffffffffffffffff81111561193657611936611860565b61194a816119448454611803565b846118ce565b602080601f83116001811461197f57600084156119675750858301515b600019600386901b1c1916600185901b178555611914565b600085815260208120601f198616915b828110156119ae5788860151825594840194600190910190840161198f565b50858210156119cc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b805160208083015191908110156111e25760001960209190910360031b1b16919050565b634e487b7160e01b600052602160045260246000fdfea26469706673582212202eb8536582ccecae28c09188dfcaabf368cb467d534eee02a624e7e9155c593164736f6c63430008110033a2646970667358221220ccffc778ad983ea28acaa3b06c7044cb53eb470a8e21df0111030e3760462b9564736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000564a0c04877e4ca6f5d0cad8c20522226321d9b0
-----Decoded View---------------
Arg [0] : addressBook_ (address): 0x564A0c04877E4ca6f5d0CAd8C20522226321d9b0
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000564a0c04877e4ca6f5d0cad8c20522226321d9b0
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in MNT
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.