Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
- Contract name:
- Equal
- Optimization enabled
- false
- Compiler version
- v0.8.24+commit.e11b9ed9
- EVM Version
- Verified at
- 2026-09-19T09:37:12.040405Z
Constructor Arguments
000000000000000000000000b7f11392542aceedb11dbef3b84064079e979a71000000000000000000000000010e9cd0ad95aec5af148c3c2b8c3a1c5a528968000000000000000000000000587e6869c19c65f4c17114ca7ffe21e6048b072d000000000000000000000000db201dd7a98eafc26caa43165e60023ccc1f430600000000000000000000000010b35f4e786cd44c0d37fb270ac0339d419a10bb000000000000000000000000de38b370626bf2db25b6294c06a85a73ef3ee454
Arg [0] (address) : 0xb7f11392542aceedb11dbef3b84064079e979a71
Arg [1] (address) : 0x010e9cd0ad95aec5af148c3c2b8c3a1c5a528968
Arg [2] (address) : 0x587e6869c19c65f4c17114ca7ffe21e6048b072d
Arg [3] (address) : 0xdb201dd7a98eafc26caa43165e60023ccc1f4306
Arg [4] (address) : 0x10b35f4e786cd44c0d37fb270ac0339d419a10bb
Arg [5] (address) : 0xde38b370626bf2db25b6294c06a85a73ef3ee454
src/Equal.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;
import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
/// @title Equilibrium (EQUAL)
/// @notice Immutable fixed-supply token core for the Vitality Trinity.
/// @dev No owner, administrator, post-constructor mint, proxy, pause, or transfer tax.
contract Equal is ERC20 {
uint256 public constant TOKEN_UNIT = 10 ** 18;
uint256 public constant MAX_SUPPLY = 1_000_000_000 * TOKEN_UNIT;
uint256 public constant EMISSION_VAULT_ALLOCATION = 800_000_000 * TOKEN_UNIT;
uint256 public constant POL_ALLOCATION = 60_000_000 * TOKEN_UNIT;
uint256 public constant TREASURY_SECURITY_ALLOCATION = 40_000_000 * TOKEN_UNIT;
uint256 public constant ECOSYSTEM_ALLOCATION = 40_000_000 * TOKEN_UNIT;
uint256 public constant MARKET_EXCHANGE_ALLOCATION = 30_000_000 * TOKEN_UNIT;
uint256 public constant CONTRIBUTOR_ALLOCATION = 30_000_000 * TOKEN_UNIT;
uint256 public constant TRANSFER_TAX_BPS = 0;
enum GenesisAllocationType {
EmissionVault,
ProtocolOwnedLiquidity,
TreasurySecurity,
Ecosystem,
MarketExchange,
Contributor
}
error EqualZeroAllocationRecipient(uint8 allocationType);
error EqualDuplicateAllocationRecipient(uint8 firstAllocationType, uint8 secondAllocationType);
event GenesisAllocation(
GenesisAllocationType indexed allocationType, address indexed recipient, uint256 amount
);
constructor(
address emissionVault,
address protocolOwnedLiquidity,
address treasurySecurity,
address ecosystem,
address marketExchange,
address contributor
) ERC20("Equilibrium", "EQUAL") {
address[6] memory recipients = [
emissionVault,
protocolOwnedLiquidity,
treasurySecurity,
ecosystem,
marketExchange,
contributor
];
uint256[6] memory amounts = [
EMISSION_VAULT_ALLOCATION,
POL_ALLOCATION,
TREASURY_SECURITY_ALLOCATION,
ECOSYSTEM_ALLOCATION,
MARKET_EXCHANGE_ALLOCATION,
CONTRIBUTOR_ALLOCATION
];
for (uint256 i = 0; i < recipients.length; ++i) {
if (recipients[i] == address(0)) {
revert EqualZeroAllocationRecipient(uint8(i));
}
for (uint256 j = 0; j < i; ++j) {
if (recipients[i] == recipients[j]) {
revert EqualDuplicateAllocationRecipient(uint8(j), uint8(i));
}
}
_mint(recipients[i], amounts[i]);
emit GenesisAllocation(GenesisAllocationType(i), recipients[i], amounts[i]);
}
assert(totalSupply() == MAX_SUPPLY);
}
}
lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity >=0.6.2;
import {IERC20} from "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC-20 standard.
*/
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);
}
lib/openzeppelin-contracts/contracts/utils/Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
pragma solidity ^0.8.20;
/**
* @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;
}
}
lib/openzeppelin-contracts/contracts/interfaces/draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.5.0) (interfaces/draft-IERC6093.sol)
pragma solidity >=0.8.4;
/**
* @dev Standard ERC-20 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
*/
interface IERC20Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC20InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC20InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
* @param spender Address that may be allowed to operate on tokens without being their owner.
* @param allowance Amount of tokens a `spender` is allowed to operate with.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC20InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `spender` to be approved. Used in approvals.
* @param spender Address that may be allowed to operate on tokens without being their owner.
*/
error ERC20InvalidSpender(address spender);
}
/**
* @dev Standard ERC-721 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
*/
interface IERC721Errors {
/**
* @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-721.
* Used in balance queries.
* @param owner Address of the current owner of a token.
*/
error ERC721InvalidOwner(address owner);
/**
* @dev Indicates a `tokenId` whose `owner` is the zero address.
* @param tokenId Identifier number of a token.
*/
error ERC721NonexistentToken(uint256 tokenId);
/**
* @dev Indicates an error related to the ownership over a particular token. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param tokenId Identifier number of a token.
* @param owner Address of the current owner of a token.
*/
error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC721InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC721InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param tokenId Identifier number of a token.
*/
error ERC721InsufficientApproval(address operator, uint256 tokenId);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC721InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC721InvalidOperator(address operator);
}
/**
* @dev Standard ERC-1155 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.
*/
interface IERC1155Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
* @param tokenId Identifier number of a token.
*/
error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC1155InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC1155InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param owner Address of the current owner of a token.
*/
error ERC1155MissingApprovalForAll(address operator, address owner);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC1155InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC1155InvalidOperator(address operator);
/**
* @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
* Used in batch transfers.
* @param idsLength Length of the array of token identifiers
* @param valuesLength Length of the array of token amounts
*/
error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}
lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.5.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.20;
import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.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}.
*
* 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 ERC-20
* applications.
*/
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
mapping(address account => uint256) private _balances;
mapping(address account => mapping(address spender => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* Both 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 returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual 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 returns (uint8) {
return 18;
}
/// @inheritdoc IERC20
function totalSupply() public view virtual returns (uint256) {
return _totalSupply;
}
/// @inheritdoc IERC20
function balanceOf(address account) public view virtual 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 `value`.
*/
function transfer(address to, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_transfer(owner, to, value);
return true;
}
/// @inheritdoc IERC20
function allowance(address owner, address spender) public view virtual returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `value` 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 value) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, value);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Skips emitting an {Approval} event indicating an allowance update. This is not
* required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
*
* 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 `value`.
* - the caller must have allowance for ``from``'s tokens of at least
* `value`.
*/
function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, value);
_transfer(from, to, value);
return true;
}
/**
* @dev Moves a `value` 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.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _transfer(address from, address to, uint256 value) internal {
if (from == address(0)) {
revert ERC20InvalidSender(address(0));
}
if (to == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(from, to, value);
}
/**
* @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
* (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
* this function.
*
* Emits a {Transfer} event.
*/
function _update(address from, address to, uint256 value) internal virtual {
if (from == address(0)) {
// Overflow check required: The rest of the code assumes that totalSupply never overflows
_totalSupply += value;
} else {
uint256 fromBalance = _balances[from];
if (fromBalance < value) {
revert ERC20InsufficientBalance(from, fromBalance, value);
}
unchecked {
// Overflow not possible: value <= fromBalance <= totalSupply.
_balances[from] = fromBalance - value;
}
}
if (to == address(0)) {
unchecked {
// Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
_totalSupply -= value;
}
} else {
unchecked {
// Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
_balances[to] += value;
}
}
emit Transfer(from, to, value);
}
/**
* @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
* Relies on the `_update` mechanism
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _mint(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(address(0), account, value);
}
/**
* @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
* Relies on the `_update` mechanism.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead
*/
function _burn(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidSender(address(0));
}
_update(account, address(0), value);
}
/**
* @dev Sets `value` 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.
*
* Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
*/
function _approve(address owner, address spender, uint256 value) internal {
_approve(owner, spender, value, true);
}
/**
* @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
*
* By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
* `_spendAllowance` during the `transferFrom` operation sets the flag to false. This saves gas by not emitting any
* `Approval` event during `transferFrom` operations.
*
* Anyone who wishes to continue emitting `Approval` events on the `transferFrom` operation can force the flag to
* true using the following override:
*
* ```solidity
* function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
* super._approve(owner, spender, value, true);
* }
* ```
*
* Requirements are the same as {_approve}.
*/
function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
if (owner == address(0)) {
revert ERC20InvalidApprover(address(0));
}
if (spender == address(0)) {
revert ERC20InvalidSpender(address(0));
}
_allowances[owner][spender] = value;
if (emitEvent) {
emit Approval(owner, spender, value);
}
}
/**
* @dev Updates `owner`'s allowance for `spender` based on spent `value`.
*
* Does not update the allowance value in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Does not emit an {Approval} event.
*/
function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance < type(uint256).max) {
if (currentAllowance < value) {
revert ERC20InsufficientAllowance(spender, currentAllowance, value);
}
unchecked {
_approve(owner, spender, currentAllowance - value, false);
}
}
}
}
lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/IERC20.sol)
pragma solidity >=0.4.16;
/**
* @dev Interface of the ERC-20 standard as defined in the ERC.
*/
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 value of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the value of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the
* allowance mechanism. `value` 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 value) external returns (bool);
}
Compiler Settings
{"viaIR":false,"remappings":["@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/","erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/","forge-std/=lib/openzeppelin-contracts/lib/forge-std/src/","halmos-cheatcodes/=lib/openzeppelin-contracts/lib/halmos-cheatcodes/src/","openzeppelin-contracts/=lib/openzeppelin-contracts/"],"outputSelection":{"*":{"*":["abi","evm.bytecode","evm.deployedBytecode"]}},"optimizer":{"runs":200,"enabled":true},"metadata":{"useLiteralContent":false,"bytecodeHash":"none","appendCBOR":true},"libraries":{},"evmVersion":"paris"}
Contract ABI
[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address","name":"emissionVault","internalType":"address"},{"type":"address","name":"protocolOwnedLiquidity","internalType":"address"},{"type":"address","name":"treasurySecurity","internalType":"address"},{"type":"address","name":"ecosystem","internalType":"address"},{"type":"address","name":"marketExchange","internalType":"address"},{"type":"address","name":"contributor","internalType":"address"}]},{"type":"error","name":"ERC20InsufficientAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"allowance","internalType":"uint256"},{"type":"uint256","name":"needed","internalType":"uint256"}]},{"type":"error","name":"ERC20InsufficientBalance","inputs":[{"type":"address","name":"sender","internalType":"address"},{"type":"uint256","name":"balance","internalType":"uint256"},{"type":"uint256","name":"needed","internalType":"uint256"}]},{"type":"error","name":"ERC20InvalidApprover","inputs":[{"type":"address","name":"approver","internalType":"address"}]},{"type":"error","name":"ERC20InvalidReceiver","inputs":[{"type":"address","name":"receiver","internalType":"address"}]},{"type":"error","name":"ERC20InvalidSender","inputs":[{"type":"address","name":"sender","internalType":"address"}]},{"type":"error","name":"ERC20InvalidSpender","inputs":[{"type":"address","name":"spender","internalType":"address"}]},{"type":"error","name":"EqualDuplicateAllocationRecipient","inputs":[{"type":"uint8","name":"firstAllocationType","internalType":"uint8"},{"type":"uint8","name":"secondAllocationType","internalType":"uint8"}]},{"type":"error","name":"EqualZeroAllocationRecipient","inputs":[{"type":"uint8","name":"allocationType","internalType":"uint8"}]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"GenesisAllocation","inputs":[{"type":"uint8","name":"allocationType","internalType":"enum Equal.GenesisAllocationType","indexed":true},{"type":"address","name":"recipient","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"CONTRIBUTOR_ALLOCATION","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"ECOSYSTEM_ALLOCATION","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"EMISSION_VAULT_ALLOCATION","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"MARKET_EXCHANGE_ALLOCATION","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"MAX_SUPPLY","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"POL_ALLOCATION","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"TOKEN_UNIT","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"TRANSFER_TAX_BPS","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"TREASURY_SECURITY_ALLOCATION","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"value","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"value","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"value","internalType":"uint256"}]}]
Contract Creation Code
0x60806040523480156200001157600080fd5b506040516200100438038062001004833981016040819052620000349162000523565b6040518060400160405280600b81526020016a457175696c69627269756d60a81b81525060405180604001604052806005815260200164115455505360da1b81525081600390816200008791906200064b565b5060046200009682826200064b565b50506040805160c080820183526001600160a01b03808b16835289811660208401528881168385015287811660608401528681166080840152851660a08301528251908101909252915060009080620000fc670de0b6b3a7640000632faf08006200072d565b815260200162000119670de0b6b3a764000063039387006200072d565b815260200162000136670de0b6b3a76400006302625a006200072d565b815260200162000153670de0b6b3a76400006302625a006200072d565b815260200162000170670de0b6b3a76400006301c9c3806200072d565b81526020016200018d670de0b6b3a76400006301c9c3806200072d565b9052905060005b60068110156200035b576000838260068110620001b557620001b56200074d565b60200201516001600160a01b031603620001ec57604051636dce91f760e01b815260ff821660048201526024015b60405180910390fd5b60005b8181101562000274578381600681106200020d576200020d6200074d565b60200201516001600160a01b03168483600681106200023057620002306200074d565b60200201516001600160a01b0316036200026b57604051630cf63dcd60e21b815260ff808316600483015283166024820152604401620001e3565b600101620001ef565b50620002b38382600681106200028e576200028e6200074d565b6020020151838360068110620002a857620002a86200074d565b602002015162000395565b828160068110620002c857620002c86200074d565b60200201516001600160a01b0316816005811115620002eb57620002eb62000763565b6005811115620002ff57620002ff62000763565b7ffec867d39dd5668ed4c308e487a8dbd622b198c451738bb62f33da8bc76689318484600681106200033557620003356200074d565b60200201516040516200034a91815260200190565b60405180910390a360010162000194565b5062000374670de0b6b3a7640000633b9aca006200072d565b6002541462000387576200038762000779565b5050505050505050620007a5565b6001600160a01b038216620003c15760405163ec442f0560e01b815260006004820152602401620001e3565b620003cf60008383620003d3565b5050565b6001600160a01b03831662000402578060026000828254620003f691906200078f565b90915550620004769050565b6001600160a01b03831660009081526020819052604090205481811015620004575760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401620001e3565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b0382166200049457600280548290039055620004b3565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004f991815260200190565b60405180910390a3505050565b80516001600160a01b03811681146200051e57600080fd5b919050565b60008060008060008060c087890312156200053d57600080fd5b620005488762000506565b9550620005586020880162000506565b9450620005686040880162000506565b9350620005786060880162000506565b9250620005886080880162000506565b91506200059860a0880162000506565b90509295509295509295565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005cf57607f821691505b602082108103620005f057634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000646576000816000526020600020601f850160051c81016020861015620006215750805b601f850160051c820191505b8181101562000642578281556001016200062d565b5050505b505050565b81516001600160401b03811115620006675762000667620005a4565b6200067f81620006788454620005ba565b84620005f6565b602080601f831160018114620006b757600084156200069e5750858301515b600019600386901b1c1916600185901b17855562000642565b600085815260208120601f198616915b82811015620006e857888601518255948401946001909101908401620006c7565b5085821015620007075787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000747576200074762000717565b92915050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052600160045260246000fd5b8082018082111562000747576200074762000717565b61084f80620007b56000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c80638bf241a9116100a2578063a098cbe511610071578063a098cbe5146101e5578063a5c9cd82146101ed578063a9059cbb146101fc578063ce5349991461020f578063dd62ed3e1461021757600080fd5b80638bf241a91461015c57806390534f24146101a457806395d89b41146101d557806398c57e38146101dd57600080fd5b806323b872dd116100e957806323b872dd1461017a578063313ce5671461018d57806332cb6b0c1461019c5780635af70b72146101a457806370a08231146101ac57600080fd5b806306fdde031461011b578063095ea7b3146101395780630c5feabf1461015c57806318160ddd14610172575b600080fd5b610123610250565b60405161013091906106a2565b60405180910390f35b61014c61014736600461070d565b6102e2565b6040519015158152602001610130565b6101646102fc565b604051908152602001610130565b600254610164565b61014c610188366004610737565b610315565b60405160128152602001610130565b610164610339565b61016461034f565b6101646101ba366004610773565b6001600160a01b031660009081526020819052604090205490565b610123610365565b610164610374565b610164600081565b610164670de0b6b3a764000081565b61014c61020a36600461070d565b61038a565b610164610398565b610164610225366004610795565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60606003805461025f906107c8565b80601f016020809104026020016040519081016040528092919081815260200182805461028b906107c8565b80156102d85780601f106102ad576101008083540402835291602001916102d8565b820191906000526020600020905b8154815290600101906020018083116102bb57829003601f168201915b5050505050905090565b6000336102f08185856103ae565b60019150505b92915050565b610312670de0b6b3a76400006301c9c380610818565b81565b6000336103238582856103c0565b61032e858585610444565b506001949350505050565b610312670de0b6b3a7640000633b9aca00610818565b610312670de0b6b3a76400006302625a00610818565b60606004805461025f906107c8565b610312670de0b6b3a76400006303938700610818565b6000336102f0818585610444565b610312670de0b6b3a7640000632faf0800610818565b6103bb83838360016104a3565b505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981101561043e578181101561042f57604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064015b60405180910390fd5b61043e848484840360006104a3565b50505050565b6001600160a01b03831661046e57604051634b637e8f60e11b815260006004820152602401610426565b6001600160a01b0382166104985760405163ec442f0560e01b815260006004820152602401610426565b6103bb838383610578565b6001600160a01b0384166104cd5760405163e602df0560e01b815260006004820152602401610426565b6001600160a01b0383166104f757604051634a1406b160e11b815260006004820152602401610426565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561043e57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161056a91815260200190565b60405180910390a350505050565b6001600160a01b0383166105a3578060026000828254610598919061082f565b909155506106159050565b6001600160a01b038316600090815260208190526040902054818110156105f65760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610426565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b03821661063157600280548290039055610650565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161069591815260200190565b60405180910390a3505050565b60006020808352835180602085015260005b818110156106d0578581018301518582016040015282016106b4565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461070857600080fd5b919050565b6000806040838503121561072057600080fd5b610729836106f1565b946020939093013593505050565b60008060006060848603121561074c57600080fd5b610755846106f1565b9250610763602085016106f1565b9150604084013590509250925092565b60006020828403121561078557600080fd5b61078e826106f1565b9392505050565b600080604083850312156107a857600080fd5b6107b1836106f1565b91506107bf602084016106f1565b90509250929050565b600181811c908216806107dc57607f821691505b6020821081036107fc57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176102f6576102f6610802565b808201808211156102f6576102f661080256fea164736f6c6343000818000a000000000000000000000000b7f11392542aceedb11dbef3b84064079e979a71000000000000000000000000010e9cd0ad95aec5af148c3c2b8c3a1c5a528968000000000000000000000000587e6869c19c65f4c17114ca7ffe21e6048b072d000000000000000000000000db201dd7a98eafc26caa43165e60023ccc1f430600000000000000000000000010b35f4e786cd44c0d37fb270ac0339d419a10bb000000000000000000000000de38b370626bf2db25b6294c06a85a73ef3ee454
Deployed ByteCode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c80638bf241a9116100a2578063a098cbe511610071578063a098cbe5146101e5578063a5c9cd82146101ed578063a9059cbb146101fc578063ce5349991461020f578063dd62ed3e1461021757600080fd5b80638bf241a91461015c57806390534f24146101a457806395d89b41146101d557806398c57e38146101dd57600080fd5b806323b872dd116100e957806323b872dd1461017a578063313ce5671461018d57806332cb6b0c1461019c5780635af70b72146101a457806370a08231146101ac57600080fd5b806306fdde031461011b578063095ea7b3146101395780630c5feabf1461015c57806318160ddd14610172575b600080fd5b610123610250565b60405161013091906106a2565b60405180910390f35b61014c61014736600461070d565b6102e2565b6040519015158152602001610130565b6101646102fc565b604051908152602001610130565b600254610164565b61014c610188366004610737565b610315565b60405160128152602001610130565b610164610339565b61016461034f565b6101646101ba366004610773565b6001600160a01b031660009081526020819052604090205490565b610123610365565b610164610374565b610164600081565b610164670de0b6b3a764000081565b61014c61020a36600461070d565b61038a565b610164610398565b610164610225366004610795565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60606003805461025f906107c8565b80601f016020809104026020016040519081016040528092919081815260200182805461028b906107c8565b80156102d85780601f106102ad576101008083540402835291602001916102d8565b820191906000526020600020905b8154815290600101906020018083116102bb57829003601f168201915b5050505050905090565b6000336102f08185856103ae565b60019150505b92915050565b610312670de0b6b3a76400006301c9c380610818565b81565b6000336103238582856103c0565b61032e858585610444565b506001949350505050565b610312670de0b6b3a7640000633b9aca00610818565b610312670de0b6b3a76400006302625a00610818565b60606004805461025f906107c8565b610312670de0b6b3a76400006303938700610818565b6000336102f0818585610444565b610312670de0b6b3a7640000632faf0800610818565b6103bb83838360016104a3565b505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981101561043e578181101561042f57604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064015b60405180910390fd5b61043e848484840360006104a3565b50505050565b6001600160a01b03831661046e57604051634b637e8f60e11b815260006004820152602401610426565b6001600160a01b0382166104985760405163ec442f0560e01b815260006004820152602401610426565b6103bb838383610578565b6001600160a01b0384166104cd5760405163e602df0560e01b815260006004820152602401610426565b6001600160a01b0383166104f757604051634a1406b160e11b815260006004820152602401610426565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561043e57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161056a91815260200190565b60405180910390a350505050565b6001600160a01b0383166105a3578060026000828254610598919061082f565b909155506106159050565b6001600160a01b038316600090815260208190526040902054818110156105f65760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610426565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b03821661063157600280548290039055610650565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161069591815260200190565b60405180910390a3505050565b60006020808352835180602085015260005b818110156106d0578581018301518582016040015282016106b4565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461070857600080fd5b919050565b6000806040838503121561072057600080fd5b610729836106f1565b946020939093013593505050565b60008060006060848603121561074c57600080fd5b610755846106f1565b9250610763602085016106f1565b9150604084013590509250925092565b60006020828403121561078557600080fd5b61078e826106f1565b9392505050565b600080604083850312156107a857600080fd5b6107b1836106f1565b91506107bf602084016106f1565b90509250929050565b600181811c908216806107dc57607f821691505b6020821081036107fc57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176102f6576102f6610802565b808201808211156102f6576102f661080256fea164736f6c6343000818000a