ERC-20
Overview
Max Total Supply
968,672,575.934148111032877652 CHAOS
Holders
7
Market
Price
$0.00 @ 0.000000 S
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
546,748,791.316108168198900717 CHAOSValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
ChaosEmerald
Compiler Version
v0.8.28+commit.7893614a
Contract Source Code (Solidity)
/** *Submitted for verification at SonicScan.org on 2025-02-09 */ // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC-20 standard as defined in the ERC. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @dev Interface for the optional metadata functions from the ERC-20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC-20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC-721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC-1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v5.2.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC-20 * applications. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * 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); } } } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; /** * @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); } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == _ENTERED; } } // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: .deps/npm/@openzeppelin/contracts/token/ERC20/CHAOS.sol pragma solidity ^0.8.19; contract ChaosEmerald is ERC20, Ownable, ReentrancyGuard { using SafeMath for uint256; uint256 public constant MAX_SUPPLY = 1_000_000_000 * 10**18; // 1 Billion CHAOS uint256 public burnRate = 100; // 1% burn uint256 public liquidityRate = 100; // 1% liquidity fee address public burnAddress = 0x000000000000000000000000000000000000dEaD; address public liquidityWallet; event Burn(address indexed from, uint256 amount); event LiquidityAccumulated(address indexed from, uint256 amount); event LiquidityAdded(uint256 tokenAmount); // Call Ownable constructor with an explicit owner address constructor() ERC20("CHAOS EMERALD", "CHAOS") Ownable(_msgSender()) { _mint(msg.sender, MAX_SUPPLY); liquidityWallet = address(this); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transferWithFees(msg.sender, recipient, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { uint256 currentAllowance = allowance(sender, _msgSender()); require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - amount); _transferWithFees(sender, recipient, amount); return true; } function _transferWithFees(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "Invalid sender"); require(recipient != address(0), "Invalid recipient"); require(balanceOf(sender) >= amount, "Insufficient balance"); uint256 burnAmount = amount.mul(burnRate).div(10000); uint256 liquidityAmount = amount.mul(liquidityRate).div(10000); uint256 transferAmount = amount.sub(burnAmount).sub(liquidityAmount); _burn(sender, burnAmount); _transfer(sender, recipient, transferAmount); _transfer(sender, liquidityWallet, liquidityAmount); emit Burn(sender, burnAmount); emit LiquidityAccumulated(sender, liquidityAmount); } function addLiquidityManually(address dexRouter, uint256 tokenAmount) external onlyOwner nonReentrant { require(balanceOf(liquidityWallet) >= tokenAmount, "Not enough liquidity tokens"); _transfer(liquidityWallet, dexRouter, tokenAmount); emit LiquidityAdded(tokenAmount); } receive() external payable {} // Allow contract to receive ETH }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":"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":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"LiquidityAccumulated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"LiquidityAdded","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"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"dexRouter","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"addLiquidityManually","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":[],"name":"burnAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnRate","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":"liquidityRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526064600755606460085561dead60095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555034801561005b575f5ffd5b5061006a6101e160201b60201c565b6040518060400160405280600d81526020017f4348414f5320454d4552414c44000000000000000000000000000000000000008152506040518060400160405280600581526020017f4348414f5300000000000000000000000000000000000000000000000000000081525081600390816100e59190610786565b5080600490816100f59190610786565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610168575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161015f9190610894565b60405180910390fd5b610177816101e860201b60201c565b50600160068190555061019c336b033b2e3c9fd0803ce80000006102ab60201b60201c565b30600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061096a565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361031b575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016103129190610894565b60405180910390fd5b61032c5f838361033060201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610380578060025f82825461037491906108da565b9250508190555061044e565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610409578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016104009392919061091c565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610495578060025f82825403925050819055506104df565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161053c9190610951565b60405180910390a3505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806105c457607f821691505b6020821081036105d7576105d6610580565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026106397fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826105fe565b61064386836105fe565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61068761068261067d8461065b565b610664565b61065b565b9050919050565b5f819050919050565b6106a08361066d565b6106b46106ac8261068e565b84845461060a565b825550505050565b5f5f905090565b6106cb6106bc565b6106d6818484610697565b505050565b5b818110156106f9576106ee5f826106c3565b6001810190506106dc565b5050565b601f82111561073e5761070f816105dd565b610718846105ef565b81016020851015610727578190505b61073b610733856105ef565b8301826106db565b50505b505050565b5f82821c905092915050565b5f61075e5f1984600802610743565b1980831691505092915050565b5f610776838361074f565b9150826002028217905092915050565b61078f82610549565b67ffffffffffffffff8111156107a8576107a7610553565b5b6107b282546105ad565b6107bd8282856106fd565b5f60209050601f8311600181146107ee575f84156107dc578287015190505b6107e6858261076b565b86555061084d565b601f1984166107fc866105dd565b5f5b82811015610823578489015182556001820191506020850194506020810190506107fe565b86831015610840578489015161083c601f89168261074f565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61087e82610855565b9050919050565b61088e81610874565b82525050565b5f6020820190506108a75f830184610885565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6108e48261065b565b91506108ef8361065b565b9250828201905080821115610907576109066108ad565b5b92915050565b6109168161065b565b82525050565b5f60608201905061092f5f830186610885565b61093c602083018561090d565b610949604083018461090d565b949350505050565b5f6020820190506109645f83018461090d565b92915050565b611a55806109775f395ff3fe60806040526004361061010c575f3560e01c8063715018a611610094578063ab30306a11610063578063ab30306a1461036d578063bed9985014610395578063d4698016146103bf578063dd62ed3e146103e9578063f2fde38b1461042557610113565b8063715018a6146102c75780638da5cb5b146102dd57806395d89b4114610307578063a9059cbb1461033157610113565b8063313ce567116100db578063313ce567146101e357806332cb6b0c1461020d578063548cbeb01461023757806370a082311461026157806370d5ae051461029d57610113565b806306fdde0314610117578063095ea7b31461014157806318160ddd1461017d57806323b872dd146101a757610113565b3661011357005b5f5ffd5b348015610122575f5ffd5b5061012b61044d565b6040516101389190611367565b60405180910390f35b34801561014c575f5ffd5b5061016760048036038101906101629190611418565b6104dd565b6040516101749190611470565b60405180910390f35b348015610188575f5ffd5b506101916104ff565b60405161019e9190611498565b60405180910390f35b3480156101b2575f5ffd5b506101cd60048036038101906101c891906114b1565b610508565b6040516101da9190611470565b60405180910390f35b3480156101ee575f5ffd5b506101f7610594565b604051610204919061151c565b60405180910390f35b348015610218575f5ffd5b5061022161059c565b60405161022e9190611498565b60405180910390f35b348015610242575f5ffd5b5061024b6105ac565b6040516102589190611498565b60405180910390f35b34801561026c575f5ffd5b5061028760048036038101906102829190611535565b6105b2565b6040516102949190611498565b60405180910390f35b3480156102a8575f5ffd5b506102b16105f7565b6040516102be919061156f565b60405180910390f35b3480156102d2575f5ffd5b506102db61061c565b005b3480156102e8575f5ffd5b506102f161062f565b6040516102fe919061156f565b60405180910390f35b348015610312575f5ffd5b5061031b610657565b6040516103289190611367565b60405180910390f35b34801561033c575f5ffd5b5061035760048036038101906103529190611418565b6106e7565b6040516103649190611470565b60405180910390f35b348015610378575f5ffd5b50610393600480360381019061038e9190611418565b6106fd565b005b3480156103a0575f5ffd5b506103a96107e8565b6040516103b69190611498565b60405180910390f35b3480156103ca575f5ffd5b506103d36107ee565b6040516103e0919061156f565b60405180910390f35b3480156103f4575f5ffd5b5061040f600480360381019061040a9190611588565b610813565b60405161041c9190611498565b60405180910390f35b348015610430575f5ffd5b5061044b60048036038101906104469190611535565b610895565b005b60606003805461045c906115f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610488906115f3565b80156104d35780601f106104aa576101008083540402835291602001916104d3565b820191905f5260205f20905b8154815290600101906020018083116104b657829003601f168201915b5050505050905090565b5f5f6104e7610919565b90506104f4818585610920565b600191505092915050565b5f600254905090565b5f5f61051b85610516610919565b610813565b905082811015610560576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055790611693565b60405180910390fd5b61057d8561056c610919565b858461057891906116de565b610920565b610588858585610932565b60019150509392505050565b5f6012905090565b6b033b2e3c9fd0803ce800000081565b60085481565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610624610bbe565b61062d5f610c45565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610666906115f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610692906115f3565b80156106dd5780601f106106b4576101008083540402835291602001916106dd565b820191905f5260205f20905b8154815290600101906020018083116106c057829003601f168201915b5050505050905090565b5f6106f3338484610932565b6001905092915050565b610705610bbe565b61070d610d08565b80610738600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166105b2565b1015610779576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107709061175b565b60405180910390fd5b6107a5600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168383610d57565b7ffdb748c915e4e67b4bb23287bf4295a4595ce48b50343214369f72ccfb974cfa816040516107d49190611498565b60405180910390a16107e4610e47565b5050565b60075481565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61089d610bbe565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361090d575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610904919061156f565b60405180910390fd5b61091681610c45565b50565b5f33905090565b61092d8383836001610e51565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610997906117c3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a059061182b565b60405180910390fd5b80610a18846105b2565b1015610a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5090611893565b60405180910390fd5b5f610a83612710610a756007548561102090919063ffffffff16565b61103590919063ffffffff16565b90505f610aaf612710610aa16008548661102090919063ffffffff16565b61103590919063ffffffff16565b90505f610ad782610ac9858761104a90919063ffffffff16565b61104a90919063ffffffff16565b9050610ae3868461105f565b610aee868683610d57565b610b1a86600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610d57565b8573ffffffffffffffffffffffffffffffffffffffff167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca584604051610b609190611498565b60405180910390a28573ffffffffffffffffffffffffffffffffffffffff167fdac660594548b7f4362445f2766af395fbd464be541b93b37e65a37a6aab6b5783604051610bae9190611498565b60405180910390a2505050505050565b610bc6610919565b73ffffffffffffffffffffffffffffffffffffffff16610be461062f565b73ffffffffffffffffffffffffffffffffffffffff1614610c4357610c07610919565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610c3a919061156f565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600260065403610d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d44906118fb565b60405180910390fd5b6002600681905550565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dc7575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610dbe919061156f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e37575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610e2e919061156f565b60405180910390fd5b610e428383836110de565b505050565b6001600681905550565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610ec1575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610eb8919061156f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f31575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610f28919061156f565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561101a578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516110119190611498565b60405180910390a35b50505050565b5f818361102d9190611919565b905092915050565b5f81836110429190611987565b905092915050565b5f818361105791906116de565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110cf575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016110c6919061156f565b60405180910390fd5b6110da825f836110de565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361112e578060025f82825461112291906119b7565b925050819055506111fc565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156111b7578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016111ae939291906119ea565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611243578060025f828254039250508190555061128d565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112ea9190611498565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611339826112f7565b6113438185611301565b9350611353818560208601611311565b61135c8161131f565b840191505092915050565b5f6020820190508181035f83015261137f818461132f565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6113b48261138b565b9050919050565b6113c4816113aa565b81146113ce575f5ffd5b50565b5f813590506113df816113bb565b92915050565b5f819050919050565b6113f7816113e5565b8114611401575f5ffd5b50565b5f81359050611412816113ee565b92915050565b5f5f6040838503121561142e5761142d611387565b5b5f61143b858286016113d1565b925050602061144c85828601611404565b9150509250929050565b5f8115159050919050565b61146a81611456565b82525050565b5f6020820190506114835f830184611461565b92915050565b611492816113e5565b82525050565b5f6020820190506114ab5f830184611489565b92915050565b5f5f5f606084860312156114c8576114c7611387565b5b5f6114d5868287016113d1565b93505060206114e6868287016113d1565b92505060406114f786828701611404565b9150509250925092565b5f60ff82169050919050565b61151681611501565b82525050565b5f60208201905061152f5f83018461150d565b92915050565b5f6020828403121561154a57611549611387565b5b5f611557848285016113d1565b91505092915050565b611569816113aa565b82525050565b5f6020820190506115825f830184611560565b92915050565b5f5f6040838503121561159e5761159d611387565b5b5f6115ab858286016113d1565b92505060206115bc858286016113d1565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061160a57607f821691505b60208210810361161d5761161c6115c6565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f61167d602883611301565b915061168882611623565b604082019050919050565b5f6020820190508181035f8301526116aa81611671565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6116e8826113e5565b91506116f3836113e5565b925082820390508181111561170b5761170a6116b1565b5b92915050565b7f4e6f7420656e6f756768206c697175696469747920746f6b656e7300000000005f82015250565b5f611745601b83611301565b915061175082611711565b602082019050919050565b5f6020820190508181035f83015261177281611739565b9050919050565b7f496e76616c69642073656e6465720000000000000000000000000000000000005f82015250565b5f6117ad600e83611301565b91506117b882611779565b602082019050919050565b5f6020820190508181035f8301526117da816117a1565b9050919050565b7f496e76616c696420726563697069656e740000000000000000000000000000005f82015250565b5f611815601183611301565b9150611820826117e1565b602082019050919050565b5f6020820190508181035f83015261184281611809565b9050919050565b7f496e73756666696369656e742062616c616e63650000000000000000000000005f82015250565b5f61187d601483611301565b915061188882611849565b602082019050919050565b5f6020820190508181035f8301526118aa81611871565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f6118e5601f83611301565b91506118f0826118b1565b602082019050919050565b5f6020820190508181035f830152611912816118d9565b9050919050565b5f611923826113e5565b915061192e836113e5565b925082820261193c816113e5565b91508282048414831517611953576119526116b1565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611991826113e5565b915061199c836113e5565b9250826119ac576119ab61195a565b5b828204905092915050565b5f6119c1826113e5565b91506119cc836113e5565b92508282019050808211156119e4576119e36116b1565b5b92915050565b5f6060820190506119fd5f830186611560565b611a0a6020830185611489565b611a176040830184611489565b94935050505056fea2646970667358221220f6e3eeba8999dcec19387327da0d9988178bf4b6a5608510cb2965f14c524f7964736f6c634300081c0033
Deployed Bytecode
0x60806040526004361061010c575f3560e01c8063715018a611610094578063ab30306a11610063578063ab30306a1461036d578063bed9985014610395578063d4698016146103bf578063dd62ed3e146103e9578063f2fde38b1461042557610113565b8063715018a6146102c75780638da5cb5b146102dd57806395d89b4114610307578063a9059cbb1461033157610113565b8063313ce567116100db578063313ce567146101e357806332cb6b0c1461020d578063548cbeb01461023757806370a082311461026157806370d5ae051461029d57610113565b806306fdde0314610117578063095ea7b31461014157806318160ddd1461017d57806323b872dd146101a757610113565b3661011357005b5f5ffd5b348015610122575f5ffd5b5061012b61044d565b6040516101389190611367565b60405180910390f35b34801561014c575f5ffd5b5061016760048036038101906101629190611418565b6104dd565b6040516101749190611470565b60405180910390f35b348015610188575f5ffd5b506101916104ff565b60405161019e9190611498565b60405180910390f35b3480156101b2575f5ffd5b506101cd60048036038101906101c891906114b1565b610508565b6040516101da9190611470565b60405180910390f35b3480156101ee575f5ffd5b506101f7610594565b604051610204919061151c565b60405180910390f35b348015610218575f5ffd5b5061022161059c565b60405161022e9190611498565b60405180910390f35b348015610242575f5ffd5b5061024b6105ac565b6040516102589190611498565b60405180910390f35b34801561026c575f5ffd5b5061028760048036038101906102829190611535565b6105b2565b6040516102949190611498565b60405180910390f35b3480156102a8575f5ffd5b506102b16105f7565b6040516102be919061156f565b60405180910390f35b3480156102d2575f5ffd5b506102db61061c565b005b3480156102e8575f5ffd5b506102f161062f565b6040516102fe919061156f565b60405180910390f35b348015610312575f5ffd5b5061031b610657565b6040516103289190611367565b60405180910390f35b34801561033c575f5ffd5b5061035760048036038101906103529190611418565b6106e7565b6040516103649190611470565b60405180910390f35b348015610378575f5ffd5b50610393600480360381019061038e9190611418565b6106fd565b005b3480156103a0575f5ffd5b506103a96107e8565b6040516103b69190611498565b60405180910390f35b3480156103ca575f5ffd5b506103d36107ee565b6040516103e0919061156f565b60405180910390f35b3480156103f4575f5ffd5b5061040f600480360381019061040a9190611588565b610813565b60405161041c9190611498565b60405180910390f35b348015610430575f5ffd5b5061044b60048036038101906104469190611535565b610895565b005b60606003805461045c906115f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610488906115f3565b80156104d35780601f106104aa576101008083540402835291602001916104d3565b820191905f5260205f20905b8154815290600101906020018083116104b657829003601f168201915b5050505050905090565b5f5f6104e7610919565b90506104f4818585610920565b600191505092915050565b5f600254905090565b5f5f61051b85610516610919565b610813565b905082811015610560576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055790611693565b60405180910390fd5b61057d8561056c610919565b858461057891906116de565b610920565b610588858585610932565b60019150509392505050565b5f6012905090565b6b033b2e3c9fd0803ce800000081565b60085481565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610624610bbe565b61062d5f610c45565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610666906115f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610692906115f3565b80156106dd5780601f106106b4576101008083540402835291602001916106dd565b820191905f5260205f20905b8154815290600101906020018083116106c057829003601f168201915b5050505050905090565b5f6106f3338484610932565b6001905092915050565b610705610bbe565b61070d610d08565b80610738600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166105b2565b1015610779576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107709061175b565b60405180910390fd5b6107a5600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168383610d57565b7ffdb748c915e4e67b4bb23287bf4295a4595ce48b50343214369f72ccfb974cfa816040516107d49190611498565b60405180910390a16107e4610e47565b5050565b60075481565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61089d610bbe565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361090d575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610904919061156f565b60405180910390fd5b61091681610c45565b50565b5f33905090565b61092d8383836001610e51565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610997906117c3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a059061182b565b60405180910390fd5b80610a18846105b2565b1015610a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5090611893565b60405180910390fd5b5f610a83612710610a756007548561102090919063ffffffff16565b61103590919063ffffffff16565b90505f610aaf612710610aa16008548661102090919063ffffffff16565b61103590919063ffffffff16565b90505f610ad782610ac9858761104a90919063ffffffff16565b61104a90919063ffffffff16565b9050610ae3868461105f565b610aee868683610d57565b610b1a86600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610d57565b8573ffffffffffffffffffffffffffffffffffffffff167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca584604051610b609190611498565b60405180910390a28573ffffffffffffffffffffffffffffffffffffffff167fdac660594548b7f4362445f2766af395fbd464be541b93b37e65a37a6aab6b5783604051610bae9190611498565b60405180910390a2505050505050565b610bc6610919565b73ffffffffffffffffffffffffffffffffffffffff16610be461062f565b73ffffffffffffffffffffffffffffffffffffffff1614610c4357610c07610919565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610c3a919061156f565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600260065403610d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d44906118fb565b60405180910390fd5b6002600681905550565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dc7575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610dbe919061156f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e37575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610e2e919061156f565b60405180910390fd5b610e428383836110de565b505050565b6001600681905550565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610ec1575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610eb8919061156f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f31575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610f28919061156f565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561101a578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516110119190611498565b60405180910390a35b50505050565b5f818361102d9190611919565b905092915050565b5f81836110429190611987565b905092915050565b5f818361105791906116de565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110cf575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016110c6919061156f565b60405180910390fd5b6110da825f836110de565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361112e578060025f82825461112291906119b7565b925050819055506111fc565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156111b7578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016111ae939291906119ea565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611243578060025f828254039250508190555061128d565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112ea9190611498565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611339826112f7565b6113438185611301565b9350611353818560208601611311565b61135c8161131f565b840191505092915050565b5f6020820190508181035f83015261137f818461132f565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6113b48261138b565b9050919050565b6113c4816113aa565b81146113ce575f5ffd5b50565b5f813590506113df816113bb565b92915050565b5f819050919050565b6113f7816113e5565b8114611401575f5ffd5b50565b5f81359050611412816113ee565b92915050565b5f5f6040838503121561142e5761142d611387565b5b5f61143b858286016113d1565b925050602061144c85828601611404565b9150509250929050565b5f8115159050919050565b61146a81611456565b82525050565b5f6020820190506114835f830184611461565b92915050565b611492816113e5565b82525050565b5f6020820190506114ab5f830184611489565b92915050565b5f5f5f606084860312156114c8576114c7611387565b5b5f6114d5868287016113d1565b93505060206114e6868287016113d1565b92505060406114f786828701611404565b9150509250925092565b5f60ff82169050919050565b61151681611501565b82525050565b5f60208201905061152f5f83018461150d565b92915050565b5f6020828403121561154a57611549611387565b5b5f611557848285016113d1565b91505092915050565b611569816113aa565b82525050565b5f6020820190506115825f830184611560565b92915050565b5f5f6040838503121561159e5761159d611387565b5b5f6115ab858286016113d1565b92505060206115bc858286016113d1565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061160a57607f821691505b60208210810361161d5761161c6115c6565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f61167d602883611301565b915061168882611623565b604082019050919050565b5f6020820190508181035f8301526116aa81611671565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6116e8826113e5565b91506116f3836113e5565b925082820390508181111561170b5761170a6116b1565b5b92915050565b7f4e6f7420656e6f756768206c697175696469747920746f6b656e7300000000005f82015250565b5f611745601b83611301565b915061175082611711565b602082019050919050565b5f6020820190508181035f83015261177281611739565b9050919050565b7f496e76616c69642073656e6465720000000000000000000000000000000000005f82015250565b5f6117ad600e83611301565b91506117b882611779565b602082019050919050565b5f6020820190508181035f8301526117da816117a1565b9050919050565b7f496e76616c696420726563697069656e740000000000000000000000000000005f82015250565b5f611815601183611301565b9150611820826117e1565b602082019050919050565b5f6020820190508181035f83015261184281611809565b9050919050565b7f496e73756666696369656e742062616c616e63650000000000000000000000005f82015250565b5f61187d601483611301565b915061188882611849565b602082019050919050565b5f6020820190508181035f8301526118aa81611871565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f6118e5601f83611301565b91506118f0826118b1565b602082019050919050565b5f6020820190508181035f830152611912816118d9565b9050919050565b5f611923826113e5565b915061192e836113e5565b925082820261193c816113e5565b91508282048414831517611953576119526116b1565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611991826113e5565b915061199c836113e5565b9250826119ac576119ab61195a565b5b828204905092915050565b5f6119c1826113e5565b91506119cc836113e5565b92508282019050808211156119e4576119e36116b1565b5b92915050565b5f6060820190506119fd5f830186611560565b611a0a6020830185611489565b611a176040830184611489565b94935050505056fea2646970667358221220f6e3eeba8999dcec19387327da0d9988178bf4b6a5608510cb2965f14c524f7964736f6c634300081c0033
Deployed Bytecode Sourcemap
35848:2574:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13005:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15298:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14107:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36846:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13958:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35947:59;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36079:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14269:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36140:71;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24727:103;;;;;;;;;;;;;:::i;:::-;;24052:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13215:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36665:173;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38041:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36032:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36220:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14837:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24985:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13005:91;13050:13;13083:5;13076:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13005:91;:::o;15298:190::-;15371:4;15388:13;15404:12;:10;:12::i;:::-;15388:28;;15427:31;15436:5;15443:7;15452:5;15427:8;:31::i;:::-;15476:4;15469:11;;;15298:190;;;;:::o;14107:99::-;14159:7;14186:12;;14179:19;;14107:99;:::o;36846:416::-;36944:4;36961:24;36988:31;36998:6;37006:12;:10;:12::i;:::-;36988:9;:31::i;:::-;36961:58;;37058:6;37038:16;:26;;37030:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;37120:57;37129:6;37137:12;:10;:12::i;:::-;37170:6;37151:16;:25;;;;:::i;:::-;37120:8;:57::i;:::-;37188:44;37206:6;37214:9;37225:6;37188:17;:44::i;:::-;37250:4;37243:11;;;36846:416;;;;;:::o;13958:84::-;14007:5;14032:2;14025:9;;13958:84;:::o;35947:59::-;35984:22;35947:59;:::o;36079:34::-;;;;:::o;14269:118::-;14334:7;14361:9;:18;14371:7;14361:18;;;;;;;;;;;;;;;;14354:25;;14269:118;;;:::o;36140:71::-;;;;;;;;;;;;;:::o;24727:103::-;23938:13;:11;:13::i;:::-;24792:30:::1;24819:1;24792:18;:30::i;:::-;24727:103::o:0;24052:87::-;24098:7;24125:6;;;;;;;;;;;24118:13;;24052:87;:::o;13215:95::-;13262:13;13295:7;13288:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13215:95;:::o;36665:173::-;36743:4;36760:48;36778:10;36790:9;36801:6;36760:17;:48::i;:::-;36826:4;36819:11;;36665:173;;;;:::o;38041:308::-;23938:13;:11;:13::i;:::-;27908:21:::1;:19;:21::i;:::-;38192:11:::2;38162:26;38172:15;;;;;;;;;;;38162:9;:26::i;:::-;:41;;38154:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;38248:50;38258:15;;;;;;;;;;;38275:9;38286:11;38248:9;:50::i;:::-;38314:27;38329:11;38314:27;;;;;;:::i;:::-;;;;;;;;27952:20:::1;:18;:20::i;:::-;38041:308:::0;;:::o;36032:29::-;;;;:::o;36220:30::-;;;;;;;;;;;;;:::o;14837:142::-;14917:7;14944:11;:18;14956:5;14944:18;;;;;;;;;;;;;;;:27;14963:7;14944:27;;;;;;;;;;;;;;;;14937:34;;14837:142;;;;:::o;24985:220::-;23938:13;:11;:13::i;:::-;25090:1:::1;25070:22;;:8;:22;;::::0;25066:93:::1;;25144:1;25116:31;;;;;;;;;;;:::i;:::-;;;;;;;;25066:93;25169:28;25188:8;25169:18;:28::i;:::-;24985:220:::0;:::o;4304:98::-;4357:7;4384:10;4377:17;;4304:98;:::o;20157:130::-;20242:37;20251:5;20258:7;20267:5;20274:4;20242:8;:37::i;:::-;20157:130;;;:::o;37270:763::-;37394:1;37376:20;;:6;:20;;;37368:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;37455:1;37434:23;;:9;:23;;;37426:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;37519:6;37498:17;37508:6;37498:9;:17::i;:::-;:27;;37490:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;37563:18;37584:31;37609:5;37584:20;37595:8;;37584:6;:10;;:20;;;;:::i;:::-;:24;;:31;;;;:::i;:::-;37563:52;;37626:23;37652:36;37682:5;37652:25;37663:13;;37652:6;:10;;:25;;;;:::i;:::-;:29;;:36;;;;:::i;:::-;37626:62;;37699:22;37724:43;37751:15;37724:22;37735:10;37724:6;:10;;:22;;;;:::i;:::-;:26;;:43;;;;:::i;:::-;37699:68;;37780:25;37786:6;37794:10;37780:5;:25::i;:::-;37816:44;37826:6;37834:9;37845:14;37816:9;:44::i;:::-;37871:51;37881:6;37889:15;;;;;;;;;;;37906;37871:9;:51::i;:::-;37945:6;37940:24;;;37953:10;37940:24;;;;;;:::i;:::-;;;;;;;;38001:6;37980:45;;;38009:15;37980:45;;;;;;:::i;:::-;;;;;;;;37357:676;;;37270:763;;;:::o;24217:166::-;24288:12;:10;:12::i;:::-;24277:23;;:7;:5;:7::i;:::-;:23;;;24273:103;;24351:12;:10;:12::i;:::-;24324:40;;;;;;;;;;;:::i;:::-;;;;;;;;24273:103;24217:166::o;25365:191::-;25439:16;25458:6;;;;;;;;;;;25439:25;;25484:8;25475:6;;:17;;;;;;;;;;;;;;;;;;25539:8;25508:40;;25529:8;25508:40;;;;;;;;;;;;25428:128;25365:191;:::o;27988:293::-;27390:1;28122:7;;:19;28114:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;27390:1;28255:7;:18;;;;27988:293::o;16732:308::-;16832:1;16816:18;;:4;:18;;;16812:88;;16885:1;16858:30;;;;;;;;;;;:::i;:::-;;;;;;;;16812:88;16928:1;16914:16;;:2;:16;;;16910:88;;16983:1;16954:32;;;;;;;;;;;:::i;:::-;;;;;;;;16910:88;17008:24;17016:4;17022:2;17026:5;17008:7;:24::i;:::-;16732:308;;;:::o;28289:213::-;27346:1;28472:7;:22;;;;28289:213::o;21154:443::-;21284:1;21267:19;;:5;:19;;;21263:91;;21339:1;21310:32;;;;;;;;;;;:::i;:::-;;;;;;;;21263:91;21387:1;21368:21;;:7;:21;;;21364:92;;21441:1;21413:31;;;;;;;;;;;:::i;:::-;;;;;;;;21364:92;21496:5;21466:11;:18;21478:5;21466:18;;;;;;;;;;;;;;;:27;21485:7;21466:27;;;;;;;;;;;;;;;:35;;;;21516:9;21512:78;;;21563:7;21547:31;;21556:5;21547:31;;;21572:5;21547:31;;;;;;:::i;:::-;;;;;;;;21512:78;21154:443;;;;:::o;32417:98::-;32475:7;32506:1;32502;:5;;;;:::i;:::-;32495:12;;32417:98;;;;:::o;32816:::-;32874:7;32905:1;32901;:5;;;;:::i;:::-;32894:12;;32816:98;;;;:::o;32060:::-;32118:7;32149:1;32145;:5;;;;:::i;:::-;32138:12;;32060:98;;;;:::o;19393:211::-;19483:1;19464:21;;:7;:21;;;19460:91;;19536:1;19509:30;;;;;;;;;;;:::i;:::-;;;;;;;;19460:91;19561:35;19569:7;19586:1;19590:5;19561:7;:35::i;:::-;19393:211;;:::o;17364:1135::-;17470:1;17454:18;;:4;:18;;;17450:552;;17608:5;17592:12;;:21;;;;;;;:::i;:::-;;;;;;;;17450:552;;;17646:19;17668:9;:15;17678:4;17668:15;;;;;;;;;;;;;;;;17646:37;;17716:5;17702:11;:19;17698:117;;;17774:4;17780:11;17793:5;17749:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;17698:117;17970:5;17956:11;:19;17938:9;:15;17948:4;17938:15;;;;;;;;;;;;;;;:37;;;;17631:371;17450:552;18032:1;18018:16;;:2;:16;;;18014:435;;18200:5;18184:12;;:21;;;;;;;;;;;18014:435;;;18417:5;18400:9;:13;18410:2;18400:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;18014:435;18481:2;18466:25;;18475:4;18466:25;;;18485:5;18466:25;;;;;;:::i;:::-;;;;;;;;17364:1135;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:86::-;4351:7;4391:4;4384:5;4380:16;4369:27;;4316:86;;;:::o;4408:112::-;4491:22;4507:5;4491:22;:::i;:::-;4486:3;4479:35;4408:112;;:::o;4526:214::-;4615:4;4653:2;4642:9;4638:18;4630:26;;4666:67;4730:1;4719:9;4715:17;4706:6;4666:67;:::i;:::-;4526:214;;;;:::o;4746:329::-;4805:6;4854:2;4842:9;4833:7;4829:23;4825:32;4822:119;;;4860:79;;:::i;:::-;4822:119;4980:1;5005:53;5050:7;5041:6;5030:9;5026:22;5005:53;:::i;:::-;4995:63;;4951:117;4746:329;;;;:::o;5081:118::-;5168:24;5186:5;5168:24;:::i;:::-;5163:3;5156:37;5081:118;;:::o;5205:222::-;5298:4;5336:2;5325:9;5321:18;5313:26;;5349:71;5417:1;5406:9;5402:17;5393:6;5349:71;:::i;:::-;5205:222;;;;:::o;5433:474::-;5501:6;5509;5558:2;5546:9;5537:7;5533:23;5529:32;5526:119;;;5564:79;;:::i;:::-;5526:119;5684:1;5709:53;5754:7;5745:6;5734:9;5730:22;5709:53;:::i;:::-;5699:63;;5655:117;5811:2;5837:53;5882:7;5873:6;5862:9;5858:22;5837:53;:::i;:::-;5827:63;;5782:118;5433:474;;;;;:::o;5913:180::-;5961:77;5958:1;5951:88;6058:4;6055:1;6048:15;6082:4;6079:1;6072:15;6099:320;6143:6;6180:1;6174:4;6170:12;6160:22;;6227:1;6221:4;6217:12;6248:18;6238:81;;6304:4;6296:6;6292:17;6282:27;;6238:81;6366:2;6358:6;6355:14;6335:18;6332:38;6329:84;;6385:18;;:::i;:::-;6329:84;6150:269;6099:320;;;:::o;6425:227::-;6565:34;6561:1;6553:6;6549:14;6542:58;6634:10;6629:2;6621:6;6617:15;6610:35;6425:227;:::o;6658:366::-;6800:3;6821:67;6885:2;6880:3;6821:67;:::i;:::-;6814:74;;6897:93;6986:3;6897:93;:::i;:::-;7015:2;7010:3;7006:12;6999:19;;6658:366;;;:::o;7030:419::-;7196:4;7234:2;7223:9;7219:18;7211:26;;7283:9;7277:4;7273:20;7269:1;7258:9;7254:17;7247:47;7311:131;7437:4;7311:131;:::i;:::-;7303:139;;7030:419;;;:::o;7455:180::-;7503:77;7500:1;7493:88;7600:4;7597:1;7590:15;7624:4;7621:1;7614:15;7641:194;7681:4;7701:20;7719:1;7701:20;:::i;:::-;7696:25;;7735:20;7753:1;7735:20;:::i;:::-;7730:25;;7779:1;7776;7772:9;7764:17;;7803:1;7797:4;7794:11;7791:37;;;7808:18;;:::i;:::-;7791:37;7641:194;;;;:::o;7841:177::-;7981:29;7977:1;7969:6;7965:14;7958:53;7841:177;:::o;8024:366::-;8166:3;8187:67;8251:2;8246:3;8187:67;:::i;:::-;8180:74;;8263:93;8352:3;8263:93;:::i;:::-;8381:2;8376:3;8372:12;8365:19;;8024:366;;;:::o;8396:419::-;8562:4;8600:2;8589:9;8585:18;8577:26;;8649:9;8643:4;8639:20;8635:1;8624:9;8620:17;8613:47;8677:131;8803:4;8677:131;:::i;:::-;8669:139;;8396:419;;;:::o;8821:164::-;8961:16;8957:1;8949:6;8945:14;8938:40;8821:164;:::o;8991:366::-;9133:3;9154:67;9218:2;9213:3;9154:67;:::i;:::-;9147:74;;9230:93;9319:3;9230:93;:::i;:::-;9348:2;9343:3;9339:12;9332:19;;8991:366;;;:::o;9363:419::-;9529:4;9567:2;9556:9;9552:18;9544:26;;9616:9;9610:4;9606:20;9602:1;9591:9;9587:17;9580:47;9644:131;9770:4;9644:131;:::i;:::-;9636:139;;9363:419;;;:::o;9788:167::-;9928:19;9924:1;9916:6;9912:14;9905:43;9788:167;:::o;9961:366::-;10103:3;10124:67;10188:2;10183:3;10124:67;:::i;:::-;10117:74;;10200:93;10289:3;10200:93;:::i;:::-;10318:2;10313:3;10309:12;10302:19;;9961:366;;;:::o;10333:419::-;10499:4;10537:2;10526:9;10522:18;10514:26;;10586:9;10580:4;10576:20;10572:1;10561:9;10557:17;10550:47;10614:131;10740:4;10614:131;:::i;:::-;10606:139;;10333:419;;;:::o;10758:170::-;10898:22;10894:1;10886:6;10882:14;10875:46;10758:170;:::o;10934:366::-;11076:3;11097:67;11161:2;11156:3;11097:67;:::i;:::-;11090:74;;11173:93;11262:3;11173:93;:::i;:::-;11291:2;11286:3;11282:12;11275:19;;10934:366;;;:::o;11306:419::-;11472:4;11510:2;11499:9;11495:18;11487:26;;11559:9;11553:4;11549:20;11545:1;11534:9;11530:17;11523:47;11587:131;11713:4;11587:131;:::i;:::-;11579:139;;11306:419;;;:::o;11731:181::-;11871:33;11867:1;11859:6;11855:14;11848:57;11731:181;:::o;11918:366::-;12060:3;12081:67;12145:2;12140:3;12081:67;:::i;:::-;12074:74;;12157:93;12246:3;12157:93;:::i;:::-;12275:2;12270:3;12266:12;12259:19;;11918:366;;;:::o;12290:419::-;12456:4;12494:2;12483:9;12479:18;12471:26;;12543:9;12537:4;12533:20;12529:1;12518:9;12514:17;12507:47;12571:131;12697:4;12571:131;:::i;:::-;12563:139;;12290:419;;;:::o;12715:410::-;12755:7;12778:20;12796:1;12778:20;:::i;:::-;12773:25;;12812:20;12830:1;12812:20;:::i;:::-;12807:25;;12867:1;12864;12860:9;12889:30;12907:11;12889:30;:::i;:::-;12878:41;;13068:1;13059:7;13055:15;13052:1;13049:22;13029:1;13022:9;13002:83;12979:139;;13098:18;;:::i;:::-;12979:139;12763:362;12715:410;;;;:::o;13131:180::-;13179:77;13176:1;13169:88;13276:4;13273:1;13266:15;13300:4;13297:1;13290:15;13317:185;13357:1;13374:20;13392:1;13374:20;:::i;:::-;13369:25;;13408:20;13426:1;13408:20;:::i;:::-;13403:25;;13447:1;13437:35;;13452:18;;:::i;:::-;13437:35;13494:1;13491;13487:9;13482:14;;13317:185;;;;:::o;13508:191::-;13548:3;13567:20;13585:1;13567:20;:::i;:::-;13562:25;;13601:20;13619:1;13601:20;:::i;:::-;13596:25;;13644:1;13641;13637:9;13630:16;;13665:3;13662:1;13659:10;13656:36;;;13672:18;;:::i;:::-;13656:36;13508:191;;;;:::o;13705:442::-;13854:4;13892:2;13881:9;13877:18;13869:26;;13905:71;13973:1;13962:9;13958:17;13949:6;13905:71;:::i;:::-;13986:72;14054:2;14043:9;14039:18;14030:6;13986:72;:::i;:::-;14068;14136:2;14125:9;14121:18;14112:6;14068:72;:::i;:::-;13705:442;;;;;;:::o
Swarm Source
ipfs://f6e3eeba8999dcec19387327da0d9988178bf4b6a5608510cb2965f14c524f79
[ 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.