ERC-20
Overview
Max Total Supply
5,482.732841759883912404 RED
Holders
35
Market
Price
$0.00 @ 0.000000 S
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000008272029127 REDValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
Red
Compiler Version
v0.8.28+commit.7893614a
Contract Source Code (Solidity)
/** *Submitted for verification at SonicScan.org on 2025-02-21 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.28; 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); } 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); } 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; } } 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); } 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}. * * 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 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; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ 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; } /** * @dev See {IERC20-allowance}. */ 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 set 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); } } } } // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol) /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys a `value` amount of tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 value) public virtual { _burn(_msgSender(), value); } /** * @dev Destroys a `value` amount of tokens from `account`, deducting from * the caller's allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `value`. */ function burnFrom(address account, uint256 value) public virtual { _spendAllowance(account, _msgSender(), value); _burn(account, value); } } // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Capped.sol) /** * @dev Extension of {ERC20} that adds a cap to the supply of tokens. */ abstract contract ERC20Capped is ERC20 { uint256 private immutable _cap; /** * @dev Total supply cap has been exceeded. */ error ERC20ExceededCap(uint256 increasedSupply, uint256 cap); /** * @dev The supplied cap is not a valid cap. */ error ERC20InvalidCap(uint256 cap); /** * @dev Sets the value of the `cap`. This value is immutable, it can only be * set once during construction. */ constructor(uint256 cap_) { if (cap_ == 0) { revert ERC20InvalidCap(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-_update}. */ function _update(address from, address to, uint256 value) internal virtual override { super._update(from, to, value); if (from == address(0)) { uint256 maxSupply = cap(); uint256 supply = totalSupply(); if (supply > maxSupply) { revert ERC20ExceededCap(supply, maxSupply); } } } } // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol) /** * @dev Interface of the ERC-20 standard as defined in the ERC. */ // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) /** * @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. */ // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } abstract contract Operator is Context, Ownable { address private _operator; event OperatorTransferred(address indexed previousOperator, address indexed newOperator); constructor() Ownable(_msgSender()) { _operator = _msgSender(); emit OperatorTransferred(address(0), _operator); } function operator() public view returns (address) { return _operator; } modifier onlyOperator() { require(_operator == msg.sender, "operator: caller is not the operator"); _; } function isOperator() public view returns (bool) { return _msgSender() == _operator; } function transferOperator(address newOperator_) public onlyOwner { _transferOperator(newOperator_); } function _transferOperator(address newOperator_) internal { require(newOperator_ != address(0), "operator: zero address given for new operator"); emit OperatorTransferred(_operator, newOperator_); _operator = newOperator_; } function _renounceOperator() public onlyOwner { emit OperatorTransferred(_operator, address(0)); _operator = address(0); } } interface ITreasury { function epoch() external view returns (uint256); function nextEpochPoint() external view returns (uint256); function getSnakePrice() external view returns (uint256); function buyBonds(uint256 amount, uint256 targetPrice) external; function redeemBonds(uint256 amount, uint256 targetPrice) external; function isSharePrinter(address) external view returns (bool); } /** * @title Red * @dev A burnable, capped ERC20 token with a dynamic (time-based) cap. * The cap increases linearly over a vesting period, and burned tokens permanently reduce minting space. */ contract Red is ERC20Burnable, ERC20Capped, Operator { // Total supply parameters (using 18 decimals) uint256 public constant TOTAL_MAX_SUPPLY = 21000000 ether; // 21M RED uint256 public constant GENESIS_SUPPLY = 1000 ether; // 1000 RED minted at deployment // Allocation constants uint256 public constant LIQUIDITY_MINING_PROGRAM_ALLOCATION = 12600000 ether; // 60% uint256 public constant DAO_FUND_ALLOCATION = 3150000 ether; // 15% uint256 public constant COLLATERAL_POOL_ALLOCATION = 3150000 ether; // 15% uint256 public constant DEV_FUND_ALLOCATION = 2099000 ether; // ~10% (accounting for genesis supply) // Vesting duration for additional minting (1440 days = 48 months) uint256 public constant VESTING_DURATION = 1440 days; address public treasury; // Vesting and reward distribution timing uint256 public startTime; uint256 public vestingEndTime; uint256 public lastClaimedTime; // Reward rates (tokens per second) uint256 public daoFundRewardRate; uint256 public collateralPoolRewardRate; uint256 public devFundRewardRate; // Fund addresses address public daoFund; address public collateralPool; address public devFund; // Minting rate for new tokens (per second) over the vesting period uint256 public mintingRate; // Total tokens burned (which reduce minting space) uint256 public totalBurned; event TreasuryUpdated(address indexed newTreasury); /** * @dev Modifier to restrict functions to treasury or share printers. */ modifier onlySharePrinter() { require(treasury == msg.sender || ITreasury(treasury).isSharePrinter(msg.sender), "!sharePrinter"); _; } /** * @notice Constructor sets up the token, vesting schedule, and reward rates. * @param _startTime The timestamp when vesting starts. * @param _daoFund Address for DAO Fund rewards. * @param _collateralPool Address for Collateral Pool rewards. * @param _devFund Address for Dev Fund rewards. */ constructor(uint256 _startTime, address _daoFund, address _collateralPool, address _devFund) ERC20Capped(TOTAL_MAX_SUPPLY) ERC20("Color Red", "RED") { _mint(msg.sender, GENESIS_SUPPLY); startTime = _startTime; // 1740225600 - Saturday, 22 February 2025 12:00:00 UTC vestingEndTime = _startTime + VESTING_DURATION; lastClaimedTime = _startTime; daoFundRewardRate = DAO_FUND_ALLOCATION / VESTING_DURATION; collateralPoolRewardRate = COLLATERAL_POOL_ALLOCATION / VESTING_DURATION; devFundRewardRate = DEV_FUND_ALLOCATION / VESTING_DURATION; mintingRate = (TOTAL_MAX_SUPPLY - GENESIS_SUPPLY) / VESTING_DURATION; require(_daoFund != address(0), "Invalid daoFund address"); daoFund = _daoFund; require(_collateralPool != address(0), "Invalid collateralPool address"); collateralPool = _collateralPool; require(_devFund != address(0), "Invalid devFund address"); devFund = _devFund; } function setTreasuryAddress(address _treasury) public onlyOwner { require(_treasury != address(0), "Treasury cannot be zero"); treasury = _treasury; emit TreasuryUpdated(_treasury); } function setDaoFund(address _daoFund) external onlyOwner { require(_daoFund != address(0), "daoFund cannot be zero"); daoFund = _daoFund; } function setCollateralPool(address _collateralPool) external onlyOwner { require(_collateralPool != address(0), "collateralPool cannot be zero"); collateralPool = _collateralPool; } function setDevFund(address _devFund) external onlyOwner { require(_devFund != address(0), "devFund cannot be zero"); devFund = _devFund; } /* ========== VIEWS ================ */ /** * @notice Returns the dynamic cap on the token's total supply. * The cap increases linearly over the vesting period and is reduced by burned tokens. */ function cap() public view override returns (uint256) { uint256 currentTime = block.timestamp; if (currentTime <= startTime) { return GENESIS_SUPPLY; } if (currentTime > vestingEndTime) { currentTime = vestingEndTime; } uint256 dynamicCap = GENESIS_SUPPLY + ((currentTime + 1 - startTime) * mintingRate); // Adjust for tokens burned if (dynamicCap <= totalBurned) { return 0; } else { dynamicCap -= totalBurned; } if (dynamicCap > TOTAL_MAX_SUPPLY) { dynamicCap = TOTAL_MAX_SUPPLY; } return dynamicCap; } /** * @notice Returns the pending rewards for DAO, Collateral, and Dev funds since the last claim. */ function unclaimedFunds() public view returns (uint256 pendingDao, uint256 pendingPool, uint256 pendingDev) { uint256 currentTime = block.timestamp; if (currentTime > vestingEndTime) { currentTime = vestingEndTime; } if (lastClaimedTime < currentTime) { uint256 elapsed = currentTime - lastClaimedTime; pendingDao = elapsed * daoFundRewardRate; pendingPool = elapsed * collateralPoolRewardRate; pendingDev = elapsed * devFundRewardRate; } } /* ========== MUTATIVE FUNCTIONS ========== */ /** * @notice Claims pending rewards and mints tokens to the DAO, Collateral, and Dev funds. */ function claimRewards() external { (uint256 _pendingDao, uint256 _pendingPool, uint256 _pendingDev) = unclaimedFunds(); if (_pendingDao > 0) { _mint(daoFund, _pendingDao); } if (_pendingPool > 0) { _mint(collateralPool, _pendingPool); } if (_pendingDev > 0) { _mint(devFund, _pendingDev); } lastClaimedTime = block.timestamp; } /** * @notice Mints new tokens to a recipient, respecting the dynamic cap. * @param recipient_ The address receiving the minted tokens. * @param amount_ The requested amount to mint. * @return True if tokens were minted. */ function mint(address recipient_, uint256 amount_) public onlySharePrinter returns (bool) { uint256 currentSupply = totalSupply(); uint256 maxSupply = cap(); if (currentSupply > maxSupply) return false; if (currentSupply + amount_ > maxSupply) { amount_ = maxSupply - currentSupply; } uint256 balanceBefore = balanceOf(recipient_); _mint(recipient_, amount_); return balanceOf(recipient_) > balanceBefore; } /** * @notice Burns tokens and updates totalBurned. * @param amount The amount to burn. */ function burn(uint256 amount) public override { totalBurned += amount; super.burn(amount); } /** * @dev Override _update to use the ERC20Capped version. */ function _update(address from, address to, uint256 value) internal override(ERC20, ERC20Capped) { ERC20Capped._update(from, to, value); } /** * @notice Allows the owner to recover unsupported tokens. * @param token The ERC20 token to recover. * @param amount The amount to recover. * @param to The address to receive the tokens. */ function governanceRecoverUnsupported(IERC20 token, uint256 amount, address to) external onlyOwner { require(to != address(0), "Cannot transfer to zero address"); token.transfer(to, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"address","name":"_daoFund","type":"address"},{"internalType":"address","name":"_collateralPool","type":"address"},{"internalType":"address","name":"_devFund","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"uint256","name":"increasedSupply","type":"uint256"},{"internalType":"uint256","name":"cap","type":"uint256"}],"name":"ERC20ExceededCap","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"uint256","name":"cap","type":"uint256"}],"name":"ERC20InvalidCap","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOperator","type":"address"},{"indexed":true,"internalType":"address","name":"newOperator","type":"address"}],"name":"OperatorTransferred","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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newTreasury","type":"address"}],"name":"TreasuryUpdated","type":"event"},{"inputs":[],"name":"COLLATERAL_POOL_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DAO_FUND_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEV_FUND_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GENESIS_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LIQUIDITY_MINING_PROGRAM_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VESTING_DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_renounceOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"collateralPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collateralPoolRewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"daoFund","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"daoFundRewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFund","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFundRewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"governanceRecoverUnsupported","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastClaimedTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintingRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_collateralPool","type":"address"}],"name":"setCollateralPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_daoFund","type":"address"}],"name":"setDaoFund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_devFund","type":"address"}],"name":"setDevFund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasury","type":"address"}],"name":"setTreasuryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","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":"totalBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOperator_","type":"address"}],"name":"transferOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unclaimedFunds","outputs":[{"internalType":"uint256","name":"pendingDao","type":"uint256"},{"internalType":"uint256","name":"pendingPool","type":"uint256"},{"internalType":"uint256","name":"pendingDev","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vestingEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60a060405234801561000f575f5ffd5b5060405161235a38038061235a83398101604081905261002e9161062d565b336a115eec47f6cf7e350000006040518060400160405280600981526020016810dbdb1bdc8814995960ba1b8152506040518060400160405280600381526020016214915160ea1b81525081600390816100889190610707565b5060046100958282610707565b505050805f036100bf5760405163392e1e2760e01b81525f60048201526024015b60405180910390fd5b6080526001600160a01b0381166100eb57604051631e4fbdf760e01b81525f60048201526024016100b6565b6100f481610341565b50600680546001600160a01b031916339081179091556040515f907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a361014733683635c9adc5dea00000610392565b600884905561015a63076a7000856107d5565b600955600a84905561017b63076a70006a029b09d79838b954c000006107e8565b600b5561019763076a70006a029b09d79838b954c000006107e8565b600c556101b363076a70006a01bc7b049bcd6059e000006107e8565b600d5563076a70006101d9683635c9adc5dea000006a115eec47f6cf7e35000000610807565b6101e391906107e8565b6011556001600160a01b03831661023c5760405162461bcd60e51b815260206004820152601760248201527f496e76616c69642064616f46756e64206164647265737300000000000000000060448201526064016100b6565b600e80546001600160a01b0319166001600160a01b038581169190911790915582166102aa5760405162461bcd60e51b815260206004820152601e60248201527f496e76616c696420636f6c6c61746572616c506f6f6c2061646472657373000060448201526064016100b6565b600f80546001600160a01b0319166001600160a01b038481169190911790915581166103185760405162461bcd60e51b815260206004820152601760248201527f496e76616c69642064657646756e64206164647265737300000000000000000060448201526064016100b6565b601080546001600160a01b0319166001600160a01b039290921691909117905550610831915050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382166103bb5760405163ec442f0560e01b81525f60048201526024016100b6565b6103c65f83836103ca565b5050565b6103d58383836103da565b505050565b6103e583838361043c565b6001600160a01b0383166103d5575f6103fc610562565b90505f61040860025490565b9050818111156104355760405163279e7e1560e21b815260048101829052602481018390526044016100b6565b5050505050565b6001600160a01b038316610466578060025f82825461045b91906107d5565b909155506104d69050565b6001600160a01b0383165f90815260208190526040902054818110156104b85760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016100b6565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166104f257600280548290039055610510565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161055591815260200190565b60405180910390a3505050565b6008545f904290811161057f57683635c9adc5dea0000091505090565b60095481111561058e57506009545b5f6011546008548360016105a291906107d5565b6105ac9190610807565b6105b6919061081a565b6105c990683635c9adc5dea000006107d5565b905060125481116105dc575f9250505090565b6012546105e99082610807565b90506a115eec47f6cf7e3500000081111561060c57506a115eec47f6cf7e350000005b92915050565b80516001600160a01b0381168114610628575f5ffd5b919050565b5f5f5f5f60808587031215610640575f5ffd5b8451935061065060208601610612565b925061065e60408601610612565b915061066c60608601610612565b905092959194509250565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061069f57607f821691505b6020821081036106bd57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156103d557805f5260205f20601f840160051c810160208510156106e85750805b601f840160051c820191505b81811015610435575f81556001016106f4565b81516001600160401b0381111561072057610720610677565b6107348161072e845461068b565b846106c3565b6020601f821160018114610766575f831561074f5750848201515b5f19600385901b1c1916600184901b178455610435565b5f84815260208120601f198516915b828110156107955787850151825560209485019460019092019101610775565b50848210156107b257868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561060c5761060c6107c1565b5f8261080257634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561060c5761060c6107c1565b808202811582820484141761060c5761060c6107c1565b608051611b146108465f395f5050611b145ff3fe608060405234801561000f575f5ffd5b50600436106102f9575f3560e01c806370a08231116101925780639f7ff889116100e8578063d89135cd11610093578063f2fde38b1161006e578063f2fde38b14610660578063fe34b92f14610673578063ff0eccf614610696575f5ffd5b8063d89135cd14610609578063dd62ed3e14610612578063df5883c114610657575f5ffd5b8063b89dbdcd116100c3578063b89dbdcd146105ee578063c3ebc59314610600578063cace6b6a14610496575f5ffd5b80639f7ff889146105bf578063a9059cbb146105c8578063ae4db919146105db575f5ffd5b806386fab45e116101485780638da5cb5b116101235780638da5cb5b1461058957806395d89b41146105a757806399ec6765146105af575f5ffd5b806386fab45e146105585780638a27f103146105615780638d934f7414610569575f5ffd5b806378e979251161017857806378e979251461052a57806379cc67901461053357806384e09fd614610546575f5ffd5b806370a08231146104ed578063715018a614610522575f5ffd5b8063372500ab1161025257806354575af4116101fd57806361d027b3116101d857806361d027b3146104a857806365b1de20146104c85780636605bfda146104da575f5ffd5b806354575af414610465578063570ca7351461047857806361b5a93014610496575f5ffd5b80634390d2a81161022d5780634390d2a8146103f55780634456eda21461043a5780634cfc4d301461045a575f5ffd5b8063372500ab146103c757806340c10f19146103cf57806342966c68146103e2575f5ffd5b806329605e77116102b2578063313ce5671161028d578063313ce567146103a757806334b9558e146103b6578063355274ea146103bf575f5ffd5b806329605e77146103785780632c559d271461038b5780632e3367ce1461039e575f5ffd5b806318160ddd116102e257806318160ddd1461033e5780631ba288781461035057806323b872dd14610365575f5ffd5b806306fdde03146102fd578063095ea7b31461031b575b5f5ffd5b6103056106b6565b6040516103129190611879565b60405180910390f35b61032e6103293660046118ed565b610746565b6040519015158152602001610312565b6002545b604051908152602001610312565b61036361035e366004611917565b61075f565b005b61032e610373366004611939565b610830565b610363610386366004611917565b610853565b610363610399366004611917565b610867565b610342600d5481565b60405160128152602001610312565b610342600a5481565b610342610933565b6103636109e2565b61032e6103dd3660046118ed565b610a78565b6103636103f0366004611977565b610c3e565b6010546104159073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610312565b60065473ffffffffffffffffffffffffffffffffffffffff16331461032e565b61034263076a700081565b61036361047336600461198e565b610c5e565b60065473ffffffffffffffffffffffffffffffffffffffff16610415565b6103426a029b09d79838b954c0000081565b6007546104159073ffffffffffffffffffffffffffffffffffffffff1681565b6103426a115eec47f6cf7e3500000081565b6103636104e8366004611917565b610d7f565b6103426104fb366004611917565b73ffffffffffffffffffffffffffffffffffffffff165f9081526020819052604090205490565b610363610e72565b61034260085481565b6103636105413660046118ed565b610e85565b6103426a01bc7b049bcd6059e0000081565b61034260095481565b610363610e9e565b600e546104159073ffffffffffffffffffffffffffffffffffffffff1681565b60055473ffffffffffffffffffffffffffffffffffffffff16610415565b610305610f14565b610342683635c9adc5dea0000081565b61034260115481565b61032e6105d63660046118ed565b610f23565b6103636105e9366004611917565b610f30565b6103426a0a6c275e60e2e55300000081565b610342600b5481565b61034260125481565b6103426106203660046119cd565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260016020908152604080832093909416825291909152205490565b610342600c5481565b61036361066e366004611917565b610ffc565b61067b61105c565b60408051938452602084019290925290820152606001610312565b600f546104159073ffffffffffffffffffffffffffffffffffffffff1681565b6060600380546106c590611a04565b80601f01602080910402602001604051908101604052809291908181526020018280546106f190611a04565b801561073c5780601f106107135761010080835404028352916020019161073c565b820191905f5260205f20905b81548152906001019060200180831161071f57829003601f168201915b5050505050905090565b5f336107538185856110c5565b60019150505b92915050565b6107676110d7565b73ffffffffffffffffffffffffffffffffffffffff81166107e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f636f6c6c61746572616c506f6f6c2063616e6e6f74206265207a65726f00000060448201526064015b60405180910390fd5b600f80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b5f3361083d85828561112a565b6108488585856111f2565b506001949350505050565b61085b6110d7565b6108648161129b565b50565b61086f6110d7565b73ffffffffffffffffffffffffffffffffffffffff81166108ec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f64616f46756e642063616e6e6f74206265207a65726f0000000000000000000060448201526064016107e0565b600e80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6008545f904290811161095057683635c9adc5dea0000091505090565b60095481111561095f57506009545b5f6011546008548360016109739190611a82565b61097d9190611a95565b6109879190611aa8565b61099a90683635c9adc5dea00000611a82565b905060125481116109ad575f9250505090565b6012546109ba9082611a95565b90506a115eec47f6cf7e3500000081111561075957506a115eec47f6cf7e3500000092915050565b5f5f5f6109ed61105c565b919450925090508215610a1d57600e54610a1d9073ffffffffffffffffffffffffffffffffffffffff16846113cb565b8115610a4657600f54610a469073ffffffffffffffffffffffffffffffffffffffff16836113cb565b8015610a6f57601054610a6f9073ffffffffffffffffffffffffffffffffffffffff16826113cb565b505042600a5550565b6007545f9073ffffffffffffffffffffffffffffffffffffffff16331480610b2b57506007546040517ff5385bc400000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff9091169063f5385bc490602401602060405180830381865afa158015610b07573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b2b9190611abf565b610b91576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f2173686172655072696e7465720000000000000000000000000000000000000060448201526064016107e0565b5f610b9b60025490565b90505f610ba6610933565b905080821115610bba575f92505050610759565b80610bc58584611a82565b1115610bd857610bd58282611a95565b93505b73ffffffffffffffffffffffffffffffffffffffff85165f90815260208190526040902054610c0786866113cb565b80610c338773ffffffffffffffffffffffffffffffffffffffff165f9081526020819052604090205490565b119695505050505050565b8060125f828254610c4f9190611a82565b90915550610864905081611425565b610c666110d7565b73ffffffffffffffffffffffffffffffffffffffff8116610ce3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f43616e6e6f74207472616e7366657220746f207a65726f20616464726573730060448201526064016107e0565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff82811660048301526024820184905284169063a9059cbb906044016020604051808303815f875af1158015610d55573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d799190611abf565b50505050565b610d876110d7565b73ffffffffffffffffffffffffffffffffffffffff8116610e04576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f54726561737572792063616e6e6f74206265207a65726f00000000000000000060448201526064016107e0565b600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040517f7dae230f18360d76a040c81f050aa14eb9d6dc7901b20fc5d855e2a20fe814d1905f90a250565b610e7a6110d7565b610e835f61142f565b565b610e9082338361112a565b610e9a82826114a5565b5050565b610ea66110d7565b6006546040515f9173ffffffffffffffffffffffffffffffffffffffff16907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908390a3600680547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b6060600480546106c590611a04565b5f336107538185856111f2565b610f386110d7565b73ffffffffffffffffffffffffffffffffffffffff8116610fb5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f64657646756e642063616e6e6f74206265207a65726f0000000000000000000060448201526064016107e0565b601080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6110046110d7565b73ffffffffffffffffffffffffffffffffffffffff8116611053576040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081525f60048201526024016107e0565b6108648161142f565b5f5f5f5f42905060095481111561107257506009545b80600a5410156110bf575f600a548261108b9190611a95565b9050600b548161109b9190611aa8565b9450600c54816110ab9190611aa8565b9350600d54816110bb9190611aa8565b9250505b50909192565b6110d283838360016114ff565b505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610e83576040517f118cdaa70000000000000000000000000000000000000000000000000000000081523360048201526024016107e0565b73ffffffffffffffffffffffffffffffffffffffff8381165f908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811015610d7957818110156111e4576040517ffb8f41b200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8416600482015260248101829052604481018390526064016107e0565b610d7984848484035f6114ff565b73ffffffffffffffffffffffffffffffffffffffff8316611241576040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081525f60048201526024016107e0565b73ffffffffffffffffffffffffffffffffffffffff8216611290576040517fec442f050000000000000000000000000000000000000000000000000000000081525f60048201526024016107e0565b6110d2838383611644565b73ffffffffffffffffffffffffffffffffffffffff811661133e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f6f70657261746f723a207a65726f206164647265737320676976656e20666f7260448201527f206e6577206f70657261746f720000000000000000000000000000000000000060648201526084016107e0565b60065460405173ffffffffffffffffffffffffffffffffffffffff8084169216907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed905f90a3600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff821661141a576040517fec442f050000000000000000000000000000000000000000000000000000000081525f60048201526024016107e0565b610e9a5f8383611644565b61086433826114a5565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b73ffffffffffffffffffffffffffffffffffffffff82166114f4576040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081525f60048201526024016107e0565b610e9a825f83611644565b73ffffffffffffffffffffffffffffffffffffffff841661154e576040517fe602df050000000000000000000000000000000000000000000000000000000081525f60048201526024016107e0565b73ffffffffffffffffffffffffffffffffffffffff831661159d576040517f94280d620000000000000000000000000000000000000000000000000000000081525f60048201526024016107e0565b73ffffffffffffffffffffffffffffffffffffffff8085165f9081526001602090815260408083209387168352929052208290558015610d79578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161163691815260200190565b60405180910390a350505050565b6110d28383836116558383836116d2565b73ffffffffffffffffffffffffffffffffffffffff83166110d2575f611679610933565b90505f61168560025490565b9050818111156116cb576040517f9e79f85400000000000000000000000000000000000000000000000000000000815260048101829052602481018390526044016107e0565b5050505050565b73ffffffffffffffffffffffffffffffffffffffff8316611709578060025f8282546116fe9190611a82565b909155506117b99050565b73ffffffffffffffffffffffffffffffffffffffff83165f908152602081905260409020548181101561178e576040517fe450d38c00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8516600482015260248101829052604481018390526064016107e0565b73ffffffffffffffffffffffffffffffffffffffff84165f9081526020819052604090209082900390555b73ffffffffffffffffffffffffffffffffffffffff82166117e25760028054829003905561180d565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526020819052604090208054820190555b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161186c91815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f6040828501015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f83011684010191505092915050565b73ffffffffffffffffffffffffffffffffffffffff81168114610864575f5ffd5b5f5f604083850312156118fe575f5ffd5b8235611909816118cc565b946020939093013593505050565b5f60208284031215611927575f5ffd5b8135611932816118cc565b9392505050565b5f5f5f6060848603121561194b575f5ffd5b8335611956816118cc565b92506020840135611966816118cc565b929592945050506040919091013590565b5f60208284031215611987575f5ffd5b5035919050565b5f5f5f606084860312156119a0575f5ffd5b83356119ab816118cc565b92506020840135915060408401356119c2816118cc565b809150509250925092565b5f5f604083850312156119de575f5ffd5b82356119e9816118cc565b915060208301356119f9816118cc565b809150509250929050565b600181811c90821680611a1857607f821691505b602082108103611a4f577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b8082018082111561075957610759611a55565b8181038181111561075957610759611a55565b808202811582820484141761075957610759611a55565b5f60208284031215611acf575f5ffd5b81518015158114611932575f5ffdfea264697066735822122023b518954b6737edd915e8f07fc1912d338e02294ab8ed5dffa8d127e067d62364736f6c634300081c00330000000000000000000000000000000000000000000000000000000067b9bc40000000000000000000000000b19dc0457cc4f6527505ede1208caf05fb4c60f10000000000000000000000005ce15de5abac7c7b861b455e612a8df1daa5697d000000000000000000000000897f7ed4b44884c24c7ce02ed3a53cba3451ea74
Deployed Bytecode
0x608060405234801561000f575f5ffd5b50600436106102f9575f3560e01c806370a08231116101925780639f7ff889116100e8578063d89135cd11610093578063f2fde38b1161006e578063f2fde38b14610660578063fe34b92f14610673578063ff0eccf614610696575f5ffd5b8063d89135cd14610609578063dd62ed3e14610612578063df5883c114610657575f5ffd5b8063b89dbdcd116100c3578063b89dbdcd146105ee578063c3ebc59314610600578063cace6b6a14610496575f5ffd5b80639f7ff889146105bf578063a9059cbb146105c8578063ae4db919146105db575f5ffd5b806386fab45e116101485780638da5cb5b116101235780638da5cb5b1461058957806395d89b41146105a757806399ec6765146105af575f5ffd5b806386fab45e146105585780638a27f103146105615780638d934f7414610569575f5ffd5b806378e979251161017857806378e979251461052a57806379cc67901461053357806384e09fd614610546575f5ffd5b806370a08231146104ed578063715018a614610522575f5ffd5b8063372500ab1161025257806354575af4116101fd57806361d027b3116101d857806361d027b3146104a857806365b1de20146104c85780636605bfda146104da575f5ffd5b806354575af414610465578063570ca7351461047857806361b5a93014610496575f5ffd5b80634390d2a81161022d5780634390d2a8146103f55780634456eda21461043a5780634cfc4d301461045a575f5ffd5b8063372500ab146103c757806340c10f19146103cf57806342966c68146103e2575f5ffd5b806329605e77116102b2578063313ce5671161028d578063313ce567146103a757806334b9558e146103b6578063355274ea146103bf575f5ffd5b806329605e77146103785780632c559d271461038b5780632e3367ce1461039e575f5ffd5b806318160ddd116102e257806318160ddd1461033e5780631ba288781461035057806323b872dd14610365575f5ffd5b806306fdde03146102fd578063095ea7b31461031b575b5f5ffd5b6103056106b6565b6040516103129190611879565b60405180910390f35b61032e6103293660046118ed565b610746565b6040519015158152602001610312565b6002545b604051908152602001610312565b61036361035e366004611917565b61075f565b005b61032e610373366004611939565b610830565b610363610386366004611917565b610853565b610363610399366004611917565b610867565b610342600d5481565b60405160128152602001610312565b610342600a5481565b610342610933565b6103636109e2565b61032e6103dd3660046118ed565b610a78565b6103636103f0366004611977565b610c3e565b6010546104159073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610312565b60065473ffffffffffffffffffffffffffffffffffffffff16331461032e565b61034263076a700081565b61036361047336600461198e565b610c5e565b60065473ffffffffffffffffffffffffffffffffffffffff16610415565b6103426a029b09d79838b954c0000081565b6007546104159073ffffffffffffffffffffffffffffffffffffffff1681565b6103426a115eec47f6cf7e3500000081565b6103636104e8366004611917565b610d7f565b6103426104fb366004611917565b73ffffffffffffffffffffffffffffffffffffffff165f9081526020819052604090205490565b610363610e72565b61034260085481565b6103636105413660046118ed565b610e85565b6103426a01bc7b049bcd6059e0000081565b61034260095481565b610363610e9e565b600e546104159073ffffffffffffffffffffffffffffffffffffffff1681565b60055473ffffffffffffffffffffffffffffffffffffffff16610415565b610305610f14565b610342683635c9adc5dea0000081565b61034260115481565b61032e6105d63660046118ed565b610f23565b6103636105e9366004611917565b610f30565b6103426a0a6c275e60e2e55300000081565b610342600b5481565b61034260125481565b6103426106203660046119cd565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260016020908152604080832093909416825291909152205490565b610342600c5481565b61036361066e366004611917565b610ffc565b61067b61105c565b60408051938452602084019290925290820152606001610312565b600f546104159073ffffffffffffffffffffffffffffffffffffffff1681565b6060600380546106c590611a04565b80601f01602080910402602001604051908101604052809291908181526020018280546106f190611a04565b801561073c5780601f106107135761010080835404028352916020019161073c565b820191905f5260205f20905b81548152906001019060200180831161071f57829003601f168201915b5050505050905090565b5f336107538185856110c5565b60019150505b92915050565b6107676110d7565b73ffffffffffffffffffffffffffffffffffffffff81166107e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f636f6c6c61746572616c506f6f6c2063616e6e6f74206265207a65726f00000060448201526064015b60405180910390fd5b600f80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b5f3361083d85828561112a565b6108488585856111f2565b506001949350505050565b61085b6110d7565b6108648161129b565b50565b61086f6110d7565b73ffffffffffffffffffffffffffffffffffffffff81166108ec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f64616f46756e642063616e6e6f74206265207a65726f0000000000000000000060448201526064016107e0565b600e80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6008545f904290811161095057683635c9adc5dea0000091505090565b60095481111561095f57506009545b5f6011546008548360016109739190611a82565b61097d9190611a95565b6109879190611aa8565b61099a90683635c9adc5dea00000611a82565b905060125481116109ad575f9250505090565b6012546109ba9082611a95565b90506a115eec47f6cf7e3500000081111561075957506a115eec47f6cf7e3500000092915050565b5f5f5f6109ed61105c565b919450925090508215610a1d57600e54610a1d9073ffffffffffffffffffffffffffffffffffffffff16846113cb565b8115610a4657600f54610a469073ffffffffffffffffffffffffffffffffffffffff16836113cb565b8015610a6f57601054610a6f9073ffffffffffffffffffffffffffffffffffffffff16826113cb565b505042600a5550565b6007545f9073ffffffffffffffffffffffffffffffffffffffff16331480610b2b57506007546040517ff5385bc400000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff9091169063f5385bc490602401602060405180830381865afa158015610b07573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b2b9190611abf565b610b91576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f2173686172655072696e7465720000000000000000000000000000000000000060448201526064016107e0565b5f610b9b60025490565b90505f610ba6610933565b905080821115610bba575f92505050610759565b80610bc58584611a82565b1115610bd857610bd58282611a95565b93505b73ffffffffffffffffffffffffffffffffffffffff85165f90815260208190526040902054610c0786866113cb565b80610c338773ffffffffffffffffffffffffffffffffffffffff165f9081526020819052604090205490565b119695505050505050565b8060125f828254610c4f9190611a82565b90915550610864905081611425565b610c666110d7565b73ffffffffffffffffffffffffffffffffffffffff8116610ce3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f43616e6e6f74207472616e7366657220746f207a65726f20616464726573730060448201526064016107e0565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff82811660048301526024820184905284169063a9059cbb906044016020604051808303815f875af1158015610d55573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d799190611abf565b50505050565b610d876110d7565b73ffffffffffffffffffffffffffffffffffffffff8116610e04576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f54726561737572792063616e6e6f74206265207a65726f00000000000000000060448201526064016107e0565b600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040517f7dae230f18360d76a040c81f050aa14eb9d6dc7901b20fc5d855e2a20fe814d1905f90a250565b610e7a6110d7565b610e835f61142f565b565b610e9082338361112a565b610e9a82826114a5565b5050565b610ea66110d7565b6006546040515f9173ffffffffffffffffffffffffffffffffffffffff16907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908390a3600680547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b6060600480546106c590611a04565b5f336107538185856111f2565b610f386110d7565b73ffffffffffffffffffffffffffffffffffffffff8116610fb5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f64657646756e642063616e6e6f74206265207a65726f0000000000000000000060448201526064016107e0565b601080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6110046110d7565b73ffffffffffffffffffffffffffffffffffffffff8116611053576040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081525f60048201526024016107e0565b6108648161142f565b5f5f5f5f42905060095481111561107257506009545b80600a5410156110bf575f600a548261108b9190611a95565b9050600b548161109b9190611aa8565b9450600c54816110ab9190611aa8565b9350600d54816110bb9190611aa8565b9250505b50909192565b6110d283838360016114ff565b505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610e83576040517f118cdaa70000000000000000000000000000000000000000000000000000000081523360048201526024016107e0565b73ffffffffffffffffffffffffffffffffffffffff8381165f908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811015610d7957818110156111e4576040517ffb8f41b200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8416600482015260248101829052604481018390526064016107e0565b610d7984848484035f6114ff565b73ffffffffffffffffffffffffffffffffffffffff8316611241576040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081525f60048201526024016107e0565b73ffffffffffffffffffffffffffffffffffffffff8216611290576040517fec442f050000000000000000000000000000000000000000000000000000000081525f60048201526024016107e0565b6110d2838383611644565b73ffffffffffffffffffffffffffffffffffffffff811661133e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f6f70657261746f723a207a65726f206164647265737320676976656e20666f7260448201527f206e6577206f70657261746f720000000000000000000000000000000000000060648201526084016107e0565b60065460405173ffffffffffffffffffffffffffffffffffffffff8084169216907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed905f90a3600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff821661141a576040517fec442f050000000000000000000000000000000000000000000000000000000081525f60048201526024016107e0565b610e9a5f8383611644565b61086433826114a5565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b73ffffffffffffffffffffffffffffffffffffffff82166114f4576040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081525f60048201526024016107e0565b610e9a825f83611644565b73ffffffffffffffffffffffffffffffffffffffff841661154e576040517fe602df050000000000000000000000000000000000000000000000000000000081525f60048201526024016107e0565b73ffffffffffffffffffffffffffffffffffffffff831661159d576040517f94280d620000000000000000000000000000000000000000000000000000000081525f60048201526024016107e0565b73ffffffffffffffffffffffffffffffffffffffff8085165f9081526001602090815260408083209387168352929052208290558015610d79578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161163691815260200190565b60405180910390a350505050565b6110d28383836116558383836116d2565b73ffffffffffffffffffffffffffffffffffffffff83166110d2575f611679610933565b90505f61168560025490565b9050818111156116cb576040517f9e79f85400000000000000000000000000000000000000000000000000000000815260048101829052602481018390526044016107e0565b5050505050565b73ffffffffffffffffffffffffffffffffffffffff8316611709578060025f8282546116fe9190611a82565b909155506117b99050565b73ffffffffffffffffffffffffffffffffffffffff83165f908152602081905260409020548181101561178e576040517fe450d38c00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8516600482015260248101829052604481018390526064016107e0565b73ffffffffffffffffffffffffffffffffffffffff84165f9081526020819052604090209082900390555b73ffffffffffffffffffffffffffffffffffffffff82166117e25760028054829003905561180d565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526020819052604090208054820190555b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161186c91815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f6040828501015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f83011684010191505092915050565b73ffffffffffffffffffffffffffffffffffffffff81168114610864575f5ffd5b5f5f604083850312156118fe575f5ffd5b8235611909816118cc565b946020939093013593505050565b5f60208284031215611927575f5ffd5b8135611932816118cc565b9392505050565b5f5f5f6060848603121561194b575f5ffd5b8335611956816118cc565b92506020840135611966816118cc565b929592945050506040919091013590565b5f60208284031215611987575f5ffd5b5035919050565b5f5f5f606084860312156119a0575f5ffd5b83356119ab816118cc565b92506020840135915060408401356119c2816118cc565b809150509250925092565b5f5f604083850312156119de575f5ffd5b82356119e9816118cc565b915060208301356119f9816118cc565b809150509250929050565b600181811c90821680611a1857607f821691505b602082108103611a4f577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b8082018082111561075957610759611a55565b8181038181111561075957610759611a55565b808202811582820484141761075957610759611a55565b5f60208284031215611acf575f5ffd5b81518015158114611932575f5ffdfea264697066735822122023b518954b6737edd915e8f07fc1912d338e02294ab8ed5dffa8d127e067d62364736f6c634300081c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000067b9bc40000000000000000000000000b19dc0457cc4f6527505ede1208caf05fb4c60f10000000000000000000000005ce15de5abac7c7b861b455e612a8df1daa5697d000000000000000000000000897f7ed4b44884c24c7ce02ed3a53cba3451ea74
-----Decoded View---------------
Arg [0] : _startTime (uint256): 1740225600
Arg [1] : _daoFund (address): 0xB19dc0457Cc4f6527505edE1208CAf05fB4c60f1
Arg [2] : _collateralPool (address): 0x5CE15De5abAc7C7B861B455e612a8DF1DAa5697D
Arg [3] : _devFund (address): 0x897f7eD4B44884c24C7CE02eD3a53cBa3451ea74
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000067b9bc40
Arg [1] : 000000000000000000000000b19dc0457cc4f6527505ede1208caf05fb4c60f1
Arg [2] : 0000000000000000000000005ce15de5abac7c7b861b455e612a8df1daa5697d
Arg [3] : 000000000000000000000000897f7ed4b44884c24c7ce02ed3a53cba3451ea74
Deployed Bytecode Sourcemap
23482:7838:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5994:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8287:190;;;;;;:::i;:::-;;:::i;:::-;;;1192:14:1;;1185:22;1167:41;;1155:2;1140:18;8287:190:0;1027:187:1;7096:99:0;7175:12;;7096:99;;;1365:25:1;;;1353:2;1338:18;7096:99:0;1219:177:1;27018:204:0;;;;;;:::i;:::-;;:::i;:::-;;9087:249;;;;;;:::i;:::-;;:::i;22303:115::-;;;;;;:::i;:::-;;:::i;26848:162::-;;;;;;:::i;:::-;;:::i;24586:32::-;;;;;;6947:84;;;7021:2;2308:36:1;;2296:2;2281:18;6947:84:0;2166:184:1;24421:30:0;;;;;;27634:691;;;:::i;29182:443::-;;;:::i;29892:497::-;;;;;;:::i;:::-;;:::i;30511:115::-;;;;;;:::i;:::-;;:::i;24715:22::-;;;;;;;;;;;;2762:42:1;2750:55;;;2732:74;;2720:2;2705:18;24715:22:0;2586:226:1;22195:100:0;22278:9;;;;3248:10;22262:25;22195:100;;24214:52;;24257:9;24214:52;;31102:215;;;;;;:::i;:::-;;:::i;21967:85::-;22035:9;;;;21967:85;;23954:66;;24007:13;23954:66;;24275:23;;;;;;;;;23594:57;;23637:14;23594:57;;26625:215;;;;;;:::i;:::-;;:::i;7258:118::-;;;;;;:::i;:::-;7350:18;;7323:7;7350:18;;;;;;;;;;;;7258:118;20801:103;;;:::i;24354:24::-;;;;;;16259:161;;;;;;:::i;:::-;;:::i;24034:59::-;;24080:13;24034:59;;24385:29;;;;;;22690:145;;;:::i;24650:22::-;;;;;;;;;20126:87;20199:6;;;;20126:87;;6204:95;;;:::i;23669:51::-;;23710:10;23669:51;;24819:26;;;;;;7581:182;;;;;;:::i;:::-;;:::i;27230:162::-;;;;;;:::i;:::-;;:::i;23791:76::-;;23853:14;23791:76;;24501:32;;;;;;24911:26;;;;;;7826:142;;;;;;:::i;:::-;7933:18;;;;7906:7;7933:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7826:142;24540:39;;;;;;21059:220;;;;;;:::i;:::-;;:::i;28452:555::-;;;:::i;:::-;;;;3938:25:1;;;3994:2;3979:18;;3972:34;;;;4022:18;;;4015:34;3926:2;3911:18;28452:555:0;3736:319:1;24679:29:0;;;;;;;;;5994:91;6039:13;6072:5;6065:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5994:91;:::o;8287:190::-;8360:4;3248:10;8416:31;3248:10;8432:7;8441:5;8416:8;:31::i;:::-;8465:4;8458:11;;;8287:190;;;;;:::o;27018:204::-;20012:13;:11;:13::i;:::-;27108:29:::1;::::0;::::1;27100:71;;;::::0;::::1;::::0;;4704:2:1;27100:71:0::1;::::0;::::1;4686:21:1::0;4743:2;4723:18;;;4716:30;4782:31;4762:18;;;4755:59;4831:18;;27100:71:0::1;;;;;;;;;27182:14;:32:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;27018:204::o;9087:249::-;9174:4;3248:10;9232:37;9248:4;3248:10;9263:5;9232:15;:37::i;:::-;9280:26;9290:4;9296:2;9300:5;9280:9;:26::i;:::-;-1:-1:-1;9324:4:0;;9087:249;-1:-1:-1;;;;9087:249:0:o;22303:115::-;20012:13;:11;:13::i;:::-;22379:31:::1;22397:12;22379:17;:31::i;:::-;22303:115:::0;:::o;26848:162::-;20012:13;:11;:13::i;:::-;26924:22:::1;::::0;::::1;26916:57;;;::::0;::::1;::::0;;5062:2:1;26916:57:0::1;::::0;::::1;5044:21:1::0;5101:2;5081:18;;;5074:30;5140:24;5120:18;;;5113:52;5182:18;;26916:57:0::1;4860:346:1::0;26916:57:0::1;26984:7;:18:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;26848:162::o;27634:691::-;27766:9;;27679:7;;27721:15;;27751:24;;27747:78;;23710:10;27792:21;;;27634:691;:::o;27747:78::-;27853:14;;27839:11;:28;27835:89;;;-1:-1:-1;27898:14:0;;27835:89;27934:18;28005:11;;27992:9;;27974:11;27988:1;27974:15;;;;:::i;:::-;:27;;;;:::i;:::-;27973:43;;;;:::i;:::-;27955:62;;23710:10;27955:62;:::i;:::-;27934:83;;28083:11;;28069:10;:25;28065:124;;28118:1;28111:8;;;;27634:691;:::o;28065:124::-;28166:11;;28152:25;;;;:::i;:::-;;;23637:14;28203:10;:29;28199:91;;;-1:-1:-1;23637:14:0;28307:10;27634:691;-1:-1:-1;;27634:691:0:o;29182:443::-;29227:19;29248:20;29270:19;29293:16;:14;:16::i;:::-;29226:83;;-1:-1:-1;29226:83:0;-1:-1:-1;29226:83:0;-1:-1:-1;29324:15:0;;29320:75;;29362:7;;29356:27;;29362:7;;29371:11;29356:5;:27::i;:::-;29409:16;;29405:84;;29448:14;;29442:35;;29448:14;;29464:12;29442:5;:35::i;:::-;29503:15;;29499:75;;29541:7;;29535:27;;29541:7;;29550:11;29535:5;:27::i;:::-;-1:-1:-1;;29602:15:0;29584;:33;-1:-1:-1;29182:443:0:o;29892:497::-;25145:8;;29976:4;;25145:22;:8;25157:10;25145:22;;:72;;-1:-1:-1;25181:8:0;;25171:46;;;;;25206:10;25171:46;;;2732:74:1;25181:8:0;;;;;25171:34;;2705:18:1;;25171:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25137:98;;;;;;;6320:2:1;25137:98:0;;;6302:21:1;6359:2;6339:18;;;6332:30;6398:15;6378:18;;;6371:43;6431:18;;25137:98:0;6118:337:1;25137:98:0;29993:21:::1;30017:13;7175:12:::0;;;7096:99;30017:13:::1;29993:37;;30041:17;30061:5;:3;:5::i;:::-;30041:25;;30097:9;30081:13;:25;30077:43;;;30115:5;30108:12;;;;;;30077:43;30161:9:::0;30135:23:::1;30151:7:::0;30135:13;:23:::1;:::i;:::-;:35;30131:103;;;30197:25;30209:13:::0;30197:9;:25:::1;:::i;:::-;30187:35;;30131:103;7350:18:::0;;;30244:21:::1;7350:18:::0;;;;;;;;;;;30300:26:::1;7350:18:::0;30318:7;30300:5:::1;:26::i;:::-;30368:13;30344:21;30354:10;7350:18:::0;;7323:7;7350:18;;;;;;;;;;;;7258:118;30344:21:::1;:37;::::0;29892:497;-1:-1:-1;;;;;;29892:497:0:o;30511:115::-;30583:6;30568:11;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;30600:18:0;;-1:-1:-1;30611:6:0;30600:10;:18::i;31102:215::-;20012:13;:11;:13::i;:::-;31220:16:::1;::::0;::::1;31212:60;;;::::0;::::1;::::0;;6662:2:1;31212:60:0::1;::::0;::::1;6644:21:1::0;6701:2;6681:18;;;6674:30;6740:33;6720:18;;;6713:61;6791:18;;31212:60:0::1;6460:355:1::0;31212:60:0::1;31283:26;::::0;;;;:14:::1;7012:55:1::0;;;31283:26:0::1;::::0;::::1;6994:74:1::0;7084:18;;;7077:34;;;31283:14:0;::::1;::::0;::::1;::::0;6967:18:1;;31283:26:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31102:215:::0;;;:::o;26625:::-;20012:13;:11;:13::i;:::-;26708:23:::1;::::0;::::1;26700:59;;;::::0;::::1;::::0;;7324:2:1;26700:59:0::1;::::0;::::1;7306:21:1::0;7363:2;7343:18;;;7336:30;7402:25;7382:18;;;7375:53;7445:18;;26700:59:0::1;7122:347:1::0;26700:59:0::1;26770:8;:20:::0;;;::::1;;::::0;::::1;::::0;;::::1;::::0;;;26806:26:::1;::::0;::::1;::::0;-1:-1:-1;;26806:26:0::1;26625:215:::0;:::o;20801:103::-;20012:13;:11;:13::i;:::-;20866:30:::1;20893:1;20866:18;:30::i;:::-;20801:103::o:0;16259:161::-;16335:45;16351:7;3248:10;16374:5;16335:15;:45::i;:::-;16391:21;16397:7;16406:5;16391;:21::i;:::-;16259:161;;:::o;22690:145::-;20012:13;:11;:13::i;:::-;22772:9:::1;::::0;22752:42:::1;::::0;22791:1:::1;::::0;22752:42:::1;22772:9;::::0;22752:42:::1;::::0;22791:1;;22752:42:::1;22805:9;:22:::0;;;::::1;::::0;;22690:145::o;6204:95::-;6251:13;6284:7;6277:14;;;;;:::i;7581:182::-;7650:4;3248:10;7706:27;3248:10;7723:2;7727:5;7706:9;:27::i;27230:162::-;20012:13;:11;:13::i;:::-;27306:22:::1;::::0;::::1;27298:57;;;::::0;::::1;::::0;;7676:2:1;27298:57:0::1;::::0;::::1;7658:21:1::0;7715:2;7695:18;;;7688:30;7754:24;7734:18;;;7727:52;7796:18;;27298:57:0::1;7474:346:1::0;27298:57:0::1;27366:7;:18:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;27230:162::o;21059:220::-;20012:13;:11;:13::i;:::-;21144:22:::1;::::0;::::1;21140:93;;21190:31;::::0;::::1;::::0;;21218:1:::1;21190:31;::::0;::::1;2732:74:1::0;2705:18;;21190:31:0::1;2586:226:1::0;21140:93:0::1;21243:28;21262:8;21243:18;:28::i;28452:555::-:0;28499:18;28519:19;28540:18;28571:19;28593:15;28571:37;;28637:14;;28623:11;:28;28619:89;;;-1:-1:-1;28682:14:0;;28619:89;28740:11;28722:15;;:29;28718:282;;;28768:15;28800;;28786:11;:29;;;;:::i;:::-;28768:47;;28853:17;;28843:7;:27;;;;:::i;:::-;28830:40;;28909:24;;28899:7;:34;;;;:::i;:::-;28885:48;;28971:17;;28961:7;:27;;;;:::i;:::-;28948:40;;28753:247;28718:282;28560:447;28452:555;;;:::o;13134:130::-;13219:37;13228:5;13235:7;13244:5;13251:4;13219:8;:37::i;:::-;13134:130;;;:::o;20291:166::-;20199:6;;20351:23;20199:6;3248:10;20351:23;20347:103;;20398:40;;;;;3248:10;20398:40;;;2732:74:1;2705:18;;20398:40:0;2586:226:1;14866:486:0;7933:18;;;;14966:24;7933:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;15052:17;15033:36;;15029:316;;;15109:5;15090:16;:24;15086:132;;;15142:60;;;;;8057:42:1;8045:55;;15142:60:0;;;8027:74:1;8117:18;;;8110:34;;;8160:18;;;8153:34;;;8000:18;;15142:60:0;7825:368:1;15086:132:0;15261:57;15270:5;15277:7;15305:5;15286:16;:24;15312:5;15261:8;:57::i;9721:308::-;9805:18;;;9801:88;;9847:30;;;;;9874:1;9847:30;;;2732:74:1;2705:18;;9847:30:0;2586:226:1;9801:88:0;9903:16;;;9899:88;;9943:32;;;;;9972:1;9943:32;;;2732:74:1;2705:18;;9943:32:0;2586:226:1;9899:88:0;9997:24;10005:4;10011:2;10015:5;9997:7;:24::i;22426:256::-;22503:26;;;22495:84;;;;;;;8400:2:1;22495:84:0;;;8382:21:1;8439:2;8419:18;;;8412:30;8478:34;8458:18;;;8451:62;8549:15;8529:18;;;8522:43;8582:19;;22495:84:0;8198:409:1;22495:84:0;22615:9;;22595:44;;;;;;;22615:9;;22595:44;;22615:9;;22595:44;22650:9;:24;;;;;;;;;;;;;;;22426:256::o;11829:213::-;11900:21;;;11896:93;;11945:32;;;;;11974:1;11945:32;;;2732:74:1;2705:18;;11945:32:0;2586:226:1;11896:93:0;11999:35;12015:1;12019:7;12028:5;11999:7;:35::i;15841:89::-;15896:26;3248:10;15916:5;15896;:26::i;21439:191::-;21532:6;;;;21549:17;;;;;;;;;;;21582:40;;21532:6;;;21549:17;21532:6;;21582:40;;21513:16;;21582:40;21502:128;21439:191;:::o;12370:211::-;12441:21;;;12437:91;;12486:30;;;;;12513:1;12486:30;;;2732:74:1;2705:18;;12486:30:0;2586:226:1;12437:91:0;12538:35;12546:7;12563:1;12567:5;12538:7;:35::i;14131:443::-;14244:19;;;14240:91;;14287:32;;;;;14316:1;14287:32;;;2732:74:1;2705:18;;14287:32:0;2586:226:1;14240:91:0;14345:21;;;14341:92;;14390:31;;;;;14418:1;14390:31;;;2732:74:1;2705:18;;14390:31:0;2586:226:1;14341:92:0;14443:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;14489:78;;;;14540:7;14524:31;;14533:5;14524:31;;;14549:5;14524:31;;;;1365:25:1;;1353:2;1338:18;;1219:177;14524:31:0;;;;;;;;14131:443;;;;:::o;30714:151::-;30821:36;30841:4;30847:2;30851:5;17523:30;17537:4;17543:2;17547:5;17523:13;:30::i;:::-;17570:18;;;17566:236;;17605:17;17625:5;:3;:5::i;:::-;17605:25;;17645:14;17662:13;7175:12;;;7096:99;17662:13;17645:30;;17703:9;17694:6;:18;17690:101;;;17740:35;;;;;;;;8786:25:1;;;8827:18;;;8820:34;;;8759:18;;17740:35:0;8612:248:1;17690:101:0;17590:212;;17428:381;;;:::o;10353:1123::-;10443:18;;;10439:548;;10597:5;10581:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;10439:548:0;;-1:-1:-1;10439:548:0;;10657:15;;;10635:19;10657:15;;;;;;;;;;;10691:19;;;10687:117;;;10738:50;;;;;8057:42:1;8045:55;;10738:50:0;;;8027:74:1;8117:18;;;8110:34;;;8160:18;;;8153:34;;;8000:18;;10738:50:0;7825:368:1;10687:117:0;10923:15;;;:9;:15;;;;;;;;;;10941:19;;;;10923:37;;10439:548;11003:16;;;10999:427;;11165:12;:21;;;;;;;10999:427;;;11377:13;;;:9;:13;;;;;;;;;;:22;;;;;;10999:427;11458:2;11443:25;;11452:4;11443:25;;;11462:5;11443:25;;;;1365::1;;1353:2;1338:18;;1219:177;11443:25:0;;;;;;;;10353:1123;;;:::o;14:477:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;482:2;412:66;407:2;399:6;395:15;391:88;380:9;376:104;372:113;364:121;;;14:477;;;;:::o;496:154::-;582:42;575:5;571:54;564:5;561:65;551:93;;640:1;637;630:12;655:367;723:6;731;784:2;772:9;763:7;759:23;755:32;752:52;;;800:1;797;790:12;752:52;839:9;826:23;858:31;883:5;858:31;:::i;:::-;908:5;986:2;971:18;;;;958:32;;-1:-1:-1;;;655:367:1:o;1401:247::-;1460:6;1513:2;1501:9;1492:7;1488:23;1484:32;1481:52;;;1529:1;1526;1519:12;1481:52;1568:9;1555:23;1587:31;1612:5;1587:31;:::i;:::-;1637:5;1401:247;-1:-1:-1;;;1401:247:1:o;1653:508::-;1730:6;1738;1746;1799:2;1787:9;1778:7;1774:23;1770:32;1767:52;;;1815:1;1812;1805:12;1767:52;1854:9;1841:23;1873:31;1898:5;1873:31;:::i;:::-;1923:5;-1:-1:-1;1980:2:1;1965:18;;1952:32;1993:33;1952:32;1993:33;:::i;:::-;1653:508;;2045:7;;-1:-1:-1;;;2125:2:1;2110:18;;;;2097:32;;1653:508::o;2355:226::-;2414:6;2467:2;2455:9;2446:7;2442:23;2438:32;2435:52;;;2483:1;2480;2473:12;2435:52;-1:-1:-1;2528:23:1;;2355:226;-1:-1:-1;2355:226:1:o;2817:521::-;2907:6;2915;2923;2976:2;2964:9;2955:7;2951:23;2947:32;2944:52;;;2992:1;2989;2982:12;2944:52;3031:9;3018:23;3050:31;3075:5;3050:31;:::i;:::-;3100:5;-1:-1:-1;3178:2:1;3163:18;;3150:32;;-1:-1:-1;3260:2:1;3245:18;;3232:32;3273:33;3232:32;3273:33;:::i;:::-;3325:7;3315:17;;;2817:521;;;;;:::o;3343:388::-;3411:6;3419;3472:2;3460:9;3451:7;3447:23;3443:32;3440:52;;;3488:1;3485;3478:12;3440:52;3527:9;3514:23;3546:31;3571:5;3546:31;:::i;:::-;3596:5;-1:-1:-1;3653:2:1;3638:18;;3625:32;3666:33;3625:32;3666:33;:::i;:::-;3718:7;3708:17;;;3343:388;;;;;:::o;4060:437::-;4139:1;4135:12;;;;4182;;;4203:61;;4257:4;4249:6;4245:17;4235:27;;4203:61;4310:2;4302:6;4299:14;4279:18;4276:38;4273:218;;4347:77;4344:1;4337:88;4448:4;4445:1;4438:15;4476:4;4473:1;4466:15;4273:218;;4060:437;;;:::o;5211:184::-;5263:77;5260:1;5253:88;5360:4;5357:1;5350:15;5384:4;5381:1;5374:15;5400:125;5465:9;;;5486:10;;;5483:36;;;5499:18;;:::i;5530:128::-;5597:9;;;5618:11;;;5615:37;;;5632:18;;:::i;5663:168::-;5736:9;;;5767;;5784:15;;;5778:22;;5764:37;5754:71;;5805:18;;:::i;5836:277::-;5903:6;5956:2;5944:9;5935:7;5931:23;5927:32;5924:52;;;5972:1;5969;5962:12;5924:52;6004:9;5998:16;6057:5;6050:13;6043:21;6036:5;6033:32;6023:60;;6079:1;6076;6069:12
Swarm Source
ipfs://23b518954b6737edd915e8f07fc1912d338e02294ab8ed5dffa8d127e067d623
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.