Contract Overview
[ Download CSV Export ]
Contract Name:
RealBToken
Compiler Version
v0.8.0+commit.c7dfd78e
Optimization Enabled:
Yes with 999999 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "./erc20Token/EmergencyFundToken.sol"; import "./erc20Token/LongTermFoundationBudgetToken.sol"; import "./erc20Token/ReservedForUseByAdminToken.sol"; contract RealBToken is EmergencyFundToken, LongTermFoundationBudgetToken, ReservedForUseByAdminToken { constructor(string memory _name, string memory _symbol) ERC20(_name, _symbol) public { } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity 0.8.0; import "./InvestorAndFundsToken.sol"; abstract contract EmergencyFundToken is InvestorAndFundsToken { uint256 constant public emergencyFundSupplyToMint = 10e25; bool public isEmergencyFundMinted; uint256 emergencyFundReleaseDate; constructor() { emergencyFundReleaseDate = block.timestamp + 2 * 365 days; isEmergencyFundMinted = false; } modifier canReleaseEmergencyFund() { require(block.timestamp >= emergencyFundReleaseDate, "Emergency fund can't be released yet"); _; } function mintEmergencyFund() public onlyOwner canReleaseEmergencyFund { require(!isEmergencyFundMinted, "Emergency fund has been minted"); isEmergencyFundMinted = true; mintFund(owner(), emergencyFundSupplyToMint); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.0; import "./InvestorAndFundsToken.sol"; abstract contract LongTermFoundationBudgetToken is InvestorAndFundsToken { uint256 constant public longTermFoundationBudgetSupplyToMint = 4e25; bool public isLongTermFoundationBudgetMinted; uint256 public longTermFoundationBudgetReleaseDate; constructor() { longTermFoundationBudgetReleaseDate = block.timestamp + 4 * 365 days; isLongTermFoundationBudgetMinted = false; } modifier canReleaseLongTermFoundationBudget() { require(block.timestamp >= longTermFoundationBudgetReleaseDate, "Long Term Foundation Budget can't be released yet"); _; } function mintLongTermFoundationBudget() public onlyOwner canReleaseLongTermFoundationBudget { require(!isLongTermFoundationBudgetMinted, "Long term foundation budget has been minted"); isLongTermFoundationBudgetMinted = true; mintFund(owner(), longTermFoundationBudgetSupplyToMint); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.0; import "./InvestorAndFundsToken.sol"; abstract contract ReservedForUseByAdminToken is InvestorAndFundsToken { uint256 constant public reservedForUseByAdminSupplyToMint = 36e25; uint256 constant public amountToMint = 72e24; bool public isReservedForUseByAdminMinted; uint256 reservedForUseByAdminReleaseDate; uint256 public reservedForUseByAdminSupplyMinted = 0; constructor() { reservedForUseByAdminReleaseDate = block.timestamp + 365 days; isReservedForUseByAdminMinted = false; } modifier canReleaseReservedForUseByAdmin() { require(block.timestamp >= reservedForUseByAdminReleaseDate, "Tokens Reserved For Use By Admin can't be released yet"); _; } function mintReservedForUseByAdmin() public onlyOwner canReleaseReservedForUseByAdmin { reservedForUseByAdminReleaseDate = reservedForUseByAdminReleaseDate + 182 days; mintFund(owner(), amountToMint); reservedForUseByAdminSupplyMinted = reservedForUseByAdminSupplyMinted + amountToMint; require(reservedForUseByAdminSupplyMinted <= reservedForUseByAdminSupplyToMint, "Exceeded Reserved For Use By Admin Supply To Mint"); if (reservedForUseByAdminSupplyMinted == reservedForUseByAdminSupplyToMint) { isReservedForUseByAdminMinted = true; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT 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 pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.0; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Pausable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; abstract contract InvestorAndFundsToken is ERC20Capped, ERC20Pausable, Ownable { uint256 constant public investorSupplyToMint = 50e25; uint256 public investorSupplyMinted = 0; constructor() ERC20Capped(1e27) { _pause(); } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal override(ERC20Pausable, ERC20) { if (msg.sender != owner()) { ERC20Pausable._beforeTokenTransfer(from, to, amount); } } function _mint(address account, uint256 amount ) internal override(ERC20Capped, ERC20) { ERC20Capped._mint(account, amount); } function mint( address _to, uint256 _amount ) public onlyOwner { uint256 newInvestorSupplyMinted = investorSupplyMinted + _amount; require(newInvestorSupplyMinted <= investorSupplyToMint, "Investors exceeded total cap for sale"); investorSupplyMinted = newInvestorSupplyMinted; _mint(_to, _amount); } function mintFund( address _to, uint256 _amount ) internal onlyOwner { _mint(_to, _amount); } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC20.sol"; /** * @dev Extension of {ERC20} that adds a cap to the supply of tokens. */ abstract contract ERC20Capped is ERC20 { uint256 private immutable _cap; /** * @dev Sets the value of the `cap`. This value is immutable, it can only be * set once during construction. */ constructor(uint256 cap_) { require(cap_ > 0, "ERC20Capped: cap is 0"); _cap = cap_; } /** * @dev Returns the cap on the token's total supply. */ function cap() public view virtual returns (uint256) { return _cap; } /** * @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: MIT pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../security/Pausable.sol"; /** * @dev ERC20 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC20Pausable is ERC20, Pausable { /** * @dev See {ERC20-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override { super._beforeTokenTransfer(from, to, amount); require(!paused(), "ERC20Pausable: token transfer while paused"); } }
// SPDX-License-Identifier: MIT 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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
{ "metadata": {}, "optimizer": { "enabled": true, "runs": 999999 }, "evmVersion": "istanbul", "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountToMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emergencyFundSupplyToMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"investorSupplyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"investorSupplyToMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isEmergencyFundMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLongTermFoundationBudgetMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isReservedForUseByAdminMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"longTermFoundationBudgetReleaseDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"longTermFoundationBudgetSupplyToMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintEmergencyFund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintLongTermFoundationBudget","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintReservedForUseByAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedForUseByAdminSupplyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reservedForUseByAdminSupplyToMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a060405260006006556000600d553480156200001b57600080fd5b50604051620023ad380380620023ad8339810160408190526200003e9162000367565b6b033b2e3c9fd0803ce8000000828281600390805190602001906200006592919062000216565b5080516200007b90600490602084019062000216565b50505060008111620000aa5760405162461bcd60e51b8152600401620000a190620003e2565b60405180910390fd5b6080526005805460ff19169055620000cb620000c562000134565b62000138565b620000d562000192565b620000e5426303c2670062000443565b6008556007805460ff191690556200010242630784ce0062000443565b600a556009805460ff191690556200011f426301e1338062000443565b600c555050600b805460ff19169055620004bb565b3390565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200019c6200020d565b15620001bc5760405162461bcd60e51b8152600401620000a19062000419565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620001f462000134565b604051620002039190620003ce565b60405180910390a1565b60055460ff1690565b828054620002249062000468565b90600052602060002090601f01602090048101928262000248576000855562000293565b82601f106200026357805160ff191683800117855562000293565b8280016001018555821562000293579182015b828111156200029357825182559160200191906001019062000276565b50620002a1929150620002a5565b5090565b5b80821115620002a15760008155600101620002a6565b600082601f830112620002cd578081fd5b81516001600160401b0380821115620002ea57620002ea620004a5565b6040516020601f8401601f1916820181018381118382101715620003125762000312620004a5565b604052838252858401810187101562000329578485fd5b8492505b838310156200034c57858301810151828401820152918201916200032d565b838311156200035d57848185840101525b5095945050505050565b600080604083850312156200037a578182fd5b82516001600160401b038082111562000391578384fd5b6200039f86838701620002bc565b93506020850151915080821115620003b5578283fd5b50620003c485828601620002bc565b9150509250929050565b6001600160a01b0391909116815260200190565b60208082526015908201527f45524332304361707065643a2063617020697320300000000000000000000000604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b600082198211156200046357634e487b7160e01b81526011600452602481fd5b500190565b6002810460018216806200047d57607f821691505b602082108114156200049f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b608051611ed6620004d760003960006105810152611ed66000f3fe608060405234801561001057600080fd5b506004361061020b5760003560e01c80634a432d241161012a5780638da5cb5b116100bd578063c45a1c9b1161008c578063dd62ed3e11610071578063dd62ed3e14610399578063e6fb1fb4146103ac578063f2fde38b146103b45761020b565b8063c45a1c9b14610389578063cc72b5ca146103915761020b565b80638da5cb5b1461034657806395d89b411461035b578063a457c2d714610363578063a9059cbb146103765761020b565b806370a08231116100f957806370a082311461031b578063715018a61461032e5780637824ab03146103365780638456cb591461033e5761020b565b80634a432d24146102fb5780635c975abb1461030357806362cd55641461030b578063684409df146103135761020b565b8063355274ea116101a25780633b2cbdc2116101715780633b2cbdc2146102d05780633f4ba83a146102d857806340c10f19146102e0578063437cc01e146102f35761020b565b8063355274ea146102a3578063369f3076146102ab57806337861295146102b357806339509351146102bd5761020b565b806323b872dd116101de57806323b872dd1461026b5780632651ed131461027e578063313ce5671461028657806332cb36bf1461029b5761020b565b806306fdde0314610210578063095ea7b31461022e57806318160ddd1461024e5780631df6ec1214610263575b600080fd5b6102186103c7565b60405161022591906116cc565b60405180910390f35b61024161023c366004611677565b610459565b60405161022591906116c1565b610256610476565b6040516102259190611df8565b61025661047c565b61024161027936600461163c565b61048b565b610256610565565b61028e61056b565b6040516102259190611e01565b610256610570565b61025661057f565b6102416105a3565b6102bb6105ac565b005b6102416102cb366004611677565b6106e1565b610256610742565b6102bb610752565b6102bb6102ee366004611677565b6107cd565b6102416108ac565b6102566108b5565b6102416108c5565b6102566108ce565b6102bb6108d4565b6102566103293660046115e9565b610a07565b6102bb610a33565b610241610ab0565b6102bb610ab9565b61034e610b34565b60405161022591906116a0565b610218610b55565b610241610371366004611677565b610b64565b610241610384366004611677565b610c04565b610256610c18565b6102bb610c1e565b6102566103a736600461160a565b610da2565b610256610dda565b6102bb6103c23660046115e9565b610de9565b6060600380546103d690611e4c565b80601f016020809104026020016040519081016040528092919081815260200182805461040290611e4c565b801561044f5780601f106104245761010080835404028352916020019161044f565b820191906000526020600020905b81548152906001019060200180831161043257829003601f168201915b5050505050905090565b600061046d610466610eb5565b8484610eb9565b50600192915050565b60025490565b6a211654585005212800000081565b6000610498848484610fc8565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600160205260408120816104c6610eb5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053d90611a10565b60405180910390fd5b61055a85610552610eb5565b858403610eb9565b506001949350505050565b60065481565b601290565b6a52b7d2dcc80cd2e400000081565b7f000000000000000000000000000000000000000000000000000000000000000090565b600b5460ff1681565b6105b4610eb5565b73ffffffffffffffffffffffffffffffffffffffff166105d2610b34565b73ffffffffffffffffffffffffffffffffffffffff161461061f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053d90611a6d565b60085442101561065b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053d90611caa565b60075460ff1615610698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053d906119d9565b600780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790556106df6106ce610b34565b6a52b7d2dcc80cd2e400000061118e565b565b600061046d6106ee610eb5565b8484600160006106fc610eb5565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918b168152925290205461073d9190611e0f565b610eb9565b6b0129c8f71ad02e2a6800000081565b61075a610eb5565b73ffffffffffffffffffffffffffffffffffffffff16610778610b34565b73ffffffffffffffffffffffffffffffffffffffff16146107c5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053d90611a6d565b6106df61120f565b6107d5610eb5565b73ffffffffffffffffffffffffffffffffffffffff166107f3610b34565b73ffffffffffffffffffffffffffffffffffffffff1614610840576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053d90611a6d565b6000816006546108509190611e0f565b90506b019d971e4fe8401e74000000811115610898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053d90611b93565b60068190556108a783836112b5565b505050565b60095460ff1681565b6b019d971e4fe8401e7400000081565b60055460ff1690565b600d5481565b6108dc610eb5565b73ffffffffffffffffffffffffffffffffffffffff166108fa610b34565b73ffffffffffffffffffffffffffffffffffffffff1614610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053d90611a6d565b600a54421015610983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053d9061182e565b60095460ff16156109c0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053d90611bf0565b600980547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790556106df6109f6610b34565b6a211654585005212800000061118e565b73ffffffffffffffffffffffffffffffffffffffff81166000908152602081905260409020545b919050565b610a3b610eb5565b73ffffffffffffffffffffffffffffffffffffffff16610a59610b34565b73ffffffffffffffffffffffffffffffffffffffff1614610aa6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053d90611a6d565b6106df60006112bf565b60075460ff1681565b610ac1610eb5565b73ffffffffffffffffffffffffffffffffffffffff16610adf610b34565b73ffffffffffffffffffffffffffffffffffffffff1614610b2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053d90611a6d565b6106df61133d565b600554610100900473ffffffffffffffffffffffffffffffffffffffff1690565b6060600480546103d690611e4c565b60008060016000610b73610eb5565b73ffffffffffffffffffffffffffffffffffffffff90811682526020808301939093526040918201600090812091881681529252902054905082811015610be6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053d90611d07565b610bfa610bf1610eb5565b85858403610eb9565b5060019392505050565b600061046d610c11610eb5565b8484610fc8565b600a5481565b610c26610eb5565b73ffffffffffffffffffffffffffffffffffffffff16610c44610b34565b73ffffffffffffffffffffffffffffffffffffffff1614610c91576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053d90611a6d565b600c54421015610ccd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053d90611aa2565b600c54610cdd9062eff100611e0f565b600c55610cfc610ceb610b34565b6a3b8e97d229a2d54800000061118e565b6a3b8e97d229a2d548000000600d54610d159190611e0f565b600d8190556b0129c8f71ad02e2a680000001015610d5f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053d906117d1565b6b0129c8f71ad02e2a68000000600d5414156106df57600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b6a3b8e97d229a2d54800000081565b610df1610eb5565b73ffffffffffffffffffffffffffffffffffffffff16610e0f610b34565b73ffffffffffffffffffffffffffffffffffffffff1614610e5c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053d90611a6d565b73ffffffffffffffffffffffffffffffffffffffff8116610ea9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053d9061188b565b610eb2816112bf565b50565b3390565b73ffffffffffffffffffffffffffffffffffffffff8316610f06576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053d90611c4d565b73ffffffffffffffffffffffffffffffffffffffff8216610f53576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053d906118e8565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610fbb908590611df8565b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316611015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053d90611aff565b73ffffffffffffffffffffffffffffffffffffffff8216611062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053d9061173d565b61106d8383836113d0565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054818110156110cd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053d90611945565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260208190526040808220858503905591851681529081208054849290611111908490611e0f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111759190611df8565b60405180910390a36111888484846108a7565b50505050565b611196610eb5565b73ffffffffffffffffffffffffffffffffffffffff166111b4610b34565b73ffffffffffffffffffffffffffffffffffffffff1614611201576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053d90611a6d565b61120b82826112b5565b5050565b6112176108c5565b61124d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053d9061179a565b600580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61129e610eb5565b6040516112ab91906116a0565b60405180910390a1565b61120b8282611415565b6005805473ffffffffffffffffffffffffffffffffffffffff8381166101008181027fffffffffffffffffffffff0000000000000000000000000000000000000000ff85161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6113456108c5565b1561137c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053d906119a2565b600580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861129e610eb5565b6113d8610b34565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108a7576108a7838383611472565b61141d61057f565b81611426610476565b6114309190611e0f565b1115611468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053d90611b5c565b61120b82826114bc565b61147d8383836108a7565b6114856108c5565b156108a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053d90611d9b565b73ffffffffffffffffffffffffffffffffffffffff8216611509576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053d90611d64565b611515600083836113d0565b80600260008282546115279190611e0f565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604081208054839290611561908490611e0f565b909155505060405173ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906115b1908590611df8565b60405180910390a361120b600083836108a7565b803573ffffffffffffffffffffffffffffffffffffffff81168114610a2e57600080fd5b6000602082840312156115fa578081fd5b611603826115c5565b9392505050565b6000806040838503121561161c578081fd5b611625836115c5565b9150611633602084016115c5565b90509250929050565b600080600060608486031215611650578081fd5b611659846115c5565b9250611667602085016115c5565b9150604084013590509250925092565b60008060408385031215611689578182fd5b611692836115c5565b946020939093013593505050565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b901515815260200190565b6000602080835283518082850152825b818110156116f8578581018301518582016040015282016116dc565b818111156117095783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201527f6573730000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526014908201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604082015260600190565b60208082526031908201527f457863656564656420526573657276656420466f72205573652042792041646d60408201527f696e20537570706c7920546f204d696e74000000000000000000000000000000606082015260800190565b60208082526031908201527f4c6f6e67205465726d20466f756e646174696f6e204275646765742063616e2760408201527f742062652072656c656173656420796574000000000000000000000000000000606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560408201527f7373000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260408201527f616c616e63650000000000000000000000000000000000000000000000000000606082015260800190565b60208082526010908201527f5061757361626c653a2070617573656400000000000000000000000000000000604082015260600190565b6020808252601e908201527f456d657267656e63792066756e6420686173206265656e206d696e7465640000604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160408201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526036908201527f546f6b656e7320526573657276656420466f72205573652042792041646d696e60408201527f2063616e27742062652072656c65617365642079657400000000000000000000606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460408201527f6472657373000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526019908201527f45524332304361707065643a2063617020657863656564656400000000000000604082015260600190565b60208082526025908201527f496e766573746f727320657863656564656420746f74616c2063617020666f7260408201527f2073616c65000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252602b908201527f4c6f6e67207465726d20666f756e646174696f6e20627564676574206861732060408201527f6265656e206d696e746564000000000000000000000000000000000000000000606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526024908201527f456d657267656e63792066756e642063616e27742062652072656c656173656460408201527f2079657400000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760408201527f207a65726f000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b6020808252602a908201527f45524332305061757361626c653a20746f6b656e207472616e7366657220776860408201527f696c652070617573656400000000000000000000000000000000000000000000606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115611e47577f4e487b710000000000000000000000000000000000000000000000000000000081526011600452602481fd5b500190565b600281046001821680611e6057607f821691505b60208210811415611e9a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b5091905056fea2646970667358221220cdd76450504a410fa1fa464cf094802ba5180a62ea522d4feb7662cea171f7a064736f6c634300080000330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000075265616c4269670000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055265616c42000000000000000000000000000000000000000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000075265616c4269670000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055265616c42000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): RealBig
Arg [1] : _symbol (string): RealB
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [3] : 5265616c42696700000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 5265616c42000000000000000000000000000000000000000000000000000000
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.