ERC-20
Overview
Max Total Supply
2,004,898.202240481351607322 iUSDS
Holders
13
Total Transfers
-
Market
Fully Diluted Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Dollar
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-05 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { require(_initializing || !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File @openzeppelin/contracts/access/[email protected] pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File @openzeppelin/contracts/token/ERC20/[email protected] pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File @openzeppelin/contracts/utils/math/[email protected] 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 no longer needed starting with Solidity 0.8. 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 substraction 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. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * 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 @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{value: value}(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File contracts/ERC20/ERC20Custom.sol pragma solidity 0.8.4; // Due to compiling issues, _name, _symbol, and _decimals were removed /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20Mintable}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20Custom is Context, IERC20 { using SafeMath for uint256; mapping(address => uint256) internal _balances; mapping(address => mapping(address => uint256)) internal _allowances; uint256 private _totalSupply; /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address.approve(address spender, uint256 amount) */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].sub( subtractedValue, "ERC20: decreased allowance below zero" ) ); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` 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 * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), decreasedAllowance); _burn(account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Destroys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See {_burn} and {_approve}. */ function _burnFrom(address account, uint256 amount) internal virtual { _burn(account, amount); _approve( account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance") ); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of `from`'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of `from`'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:using-hooks.adoc[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File contracts/interfaces/ITreasury.sol pragma solidity 0.8.4; interface ITreasury { function hasPool(address _address) external view returns (bool); function collateralReserve() external view returns (address); function globalCollateralBalance() external view returns (uint256); function globalCollateralValue() external view returns (uint256); function requestTransfer( address token, address receiver, uint256 amount ) external; function info() external view returns ( uint256, uint256, uint256, uint256, uint256, uint256, uint256, uint256 ); } // File contracts/interfaces/IDollar.sol pragma solidity 0.8.4; interface IDollar { function poolBurnFrom(address _address, uint256 _amount) external; function poolMint(address _address, uint256 m_amount) external; } // File contracts/Dollar.sol pragma solidity 0.8.4; contract Dollar is ERC20Custom, IDollar, Ownable, Initializable { // ERC20 string public symbol; string public name; uint8 public constant decimals = 18; uint256 public constant genesis_supply = 5000 ether; // 5000 will be mited at genesis for liq pool seeding // CONTRACTS address[] public treasuries_array; mapping(address => bool) public treasuries; address public controller; /* ========== MODIFIERS ========== */ modifier onlyPools() { bool isFound = false; for (uint256 i = 0; i < treasuries_array.length; i++) { if (treasuries_array[i] != address(0) && ITreasury(treasuries_array[i]).hasPool(msg.sender)) { isFound = true; break; } } require(isFound, "!pools"); _; } modifier onlyController() { require(address(msg.sender) == controller, "!controller"); _; } function initialize( string memory _name, string memory _symbol ) external initializer onlyOwner { name = _name; symbol = _symbol; _mint(msg.sender, genesis_supply); } function poolBurnFrom(address _address, uint256 _amount) external override onlyPools { super._burnFrom(_address, _amount); emit DollarBurned(_address, msg.sender, _amount); } function poolMint(address _address, uint256 _amount) external override onlyPools { super._mint(_address, _amount); emit DollarMinted(msg.sender, _address, _amount); } function controllerBurnFrom(address _address, uint256 _amount) external onlyController { super._burnFrom(_address, _amount); emit DollarBurned(_address, msg.sender, _amount); } function controllerMint(address _address, uint256 _amount) external onlyController { super._mint(_address, _amount); emit DollarMinted(msg.sender, _address, _amount); } /* ========== RESTRICTED FUNCTIONS ========== */ function addTreasury(address treasury_address) public onlyOwner { require(treasuries[treasury_address] == false, "treasuryExisted"); treasuries[treasury_address] = true; treasuries_array.push(treasury_address); emit TreasuryAdded(treasury_address); } function removeTreasury(address treasury_address) public onlyOwner { require(treasuries[treasury_address] == true, "!treasury"); // Delete from the mapping delete treasuries[treasury_address]; // 'Delete' from the array by setting the address to 0x0 for (uint256 i = 0; i < treasuries_array.length; i++) { if (treasuries_array[i] == treasury_address) { treasuries_array[i] = address(0); // This will leave a null in the array and keep the indices the same break; } } emit TreasuryRemoved(treasury_address); } function setController(address _controller) public onlyOwner { require(_controller != address(0), "Invalid address"); controller = _controller; } /* ========== EVENTS ========== */ event TreasuryAdded(address indexed treasury); event TreasuryRemoved(address indexed treasury); event DollarBurned(address indexed from, address indexed to, uint256 amount); event DollarMinted(address indexed from, address indexed to, uint256 amount); }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"DollarBurned","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":"amount","type":"uint256"}],"name":"DollarMinted","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":"treasury","type":"address"}],"name":"TreasuryAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"treasury","type":"address"}],"name":"TreasuryRemoved","type":"event"},{"inputs":[{"internalType":"address","name":"treasury_address","type":"address"}],"name":"addTreasury","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":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"controller","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"controllerBurnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"controllerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"genesis_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"poolBurnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"poolMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"treasury_address","type":"address"}],"name":"removeTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_controller","type":"address"}],"name":"setController","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"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"treasuries","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"treasuries_array","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50600380546001600160a01b0319163390811790915560405181906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350611a72806100636000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c8063715018a6116100f9578063a9059cbb11610097578063dd62ed3e11610071578063dd62ed3e146103d4578063e7f388621461040d578063f2fde38b14610420578063f77c47911461043357600080fd5b8063a9059cbb1461039b578063b35ee931146103ae578063c8cb3834146103c157600080fd5b80638da5cb5b116100d35780638da5cb5b1461034857806392eefe9b1461036d57806395d89b4114610380578063a457c2d71461038857600080fd5b8063715018a61461031a57806379cc679014610322578063816cadab1461033557600080fd5b8063313ce567116101665780634cd88b76116101405780634cd88b76146102ba57806351e238e3146102cd5780635d7b0758146102de57806370a08231146102f157600080fd5b8063313ce5671461027a578063395093511461029457806342966c68146102a757600080fd5b80630a0c165a116101a25780630a0c165a1461022d5780630c407d561461024257806318160ddd1461025557806323b872dd1461026757600080fd5b806306fdde03146101c95780630849b234146101e7578063095ea7b31461021a575b600080fd5b6101d1610446565b6040516101de919061184a565b60405180910390f35b61020a6101f5366004611701565b60076020526000908152604090205460ff1681565b60405190151581526020016101de565b61020a610228366004611788565b6104d4565b61024061023b366004611788565b6104ea565b005b610240610250366004611788565b610693565b6002545b6040519081526020016101de565b61020a61027536600461174d565b61082e565b610282601281565b60405160ff90911681526020016101de565b61020a6102a2366004611788565b6108a8565b6102406102b5366004611832565b6108de565b6102406102c83660046117d1565b6108eb565b61025969010f0cf064dd5920000081565b6102406102ec366004611788565b610a19565b6102596102ff366004611701565b6001600160a01b031660009081526020819052604090205490565b610240610ab0565b610240610330366004611788565b610b24565b610240610343366004611788565b610b6b565b6003546001600160a01b03165b6040516001600160a01b0390911681526020016101de565b61024061037b366004611701565b610bfa565b6101d1610c8e565b61020a610396366004611788565b610c9b565b61020a6103a9366004611788565b610cea565b6102406103bc366004611701565b610cf7565b6102406103cf366004611701565b610e8b565b6102596103e236600461171b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61035561041b366004611832565b610f9c565b61024061042e366004611701565b610fc6565b600854610355906001600160a01b031681565b6005805461045390611901565b80601f016020809104026020016040519081016040528092919081815260200182805461047f90611901565b80156104cc5780601f106104a1576101008083540402835291602001916104cc565b820191906000526020600020905b8154815290600101906020018083116104af57829003601f168201915b505050505081565b60006104e13384846110b1565b50600192915050565b6000805b6006548110156106075760006001600160a01b03166006828154811061052457634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316148015906105e757506006818154811061056357634e487b7160e01b600052603260045260246000fd5b600091825260209091200154604051631246dbf560e01b81523360048201526001600160a01b0390911690631246dbf59060240160206040518083038186803b1580156105af57600080fd5b505afa1580156105c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105e791906117b1565b156105f55760019150610607565b806105ff8161193c565b9150506104ee565b50806106435760405162461bcd60e51b815260206004820152600660248201526521706f6f6c7360d01b60448201526064015b60405180910390fd5b61064d83836111cd565b60405182815233906001600160a01b038516907fb53a8a5aa66e96b4627a60632ff728cd6991e142988ea8f28215fae565fe8ad0906020015b60405180910390a3505050565b6000805b6006548110156107b05760006001600160a01b0316600682815481106106cd57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161480159061079057506006818154811061070c57634e487b7160e01b600052603260045260246000fd5b600091825260209091200154604051631246dbf560e01b81523360048201526001600160a01b0390911690631246dbf59060240160206040518083038186803b15801561075857600080fd5b505afa15801561076c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061079091906117b1565b1561079e57600191506107b0565b806107a88161193c565b915050610697565b50806107e75760405162461bcd60e51b815260206004820152600660248201526521706f6f6c7360d01b604482015260640161063a565b6107f1838361121c565b6040518281526001600160a01b0384169033907f0c0f5df55f02a0601bce877b4f87152a1e95aa77aa55a08f16a8852fcf1f2bf990602001610686565b600061083b8484846112f3565b61089e8433610899856040518060600160405280602881526020016119cc602891396001600160a01b038a16600090815260016020526040812090335b6001600160a01b031681526020810191909152604001600020549190611476565b6110b1565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916104e191859061089990866114a2565b6108e833826114b5565b50565b600354600160a81b900460ff168061090d5750600354600160a01b900460ff16155b6109705760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b606482015260840161063a565b600354600160a81b900460ff1615801561099a576003805461ffff60a01b191661010160a01b1790555b6003546001600160a01b031633146109c45760405162461bcd60e51b815260040161063a9061189d565b82516109d79060059060208601906115c5565b5081516109eb9060049060208501906115c5565b50610a003369010f0cf064dd5920000061121c565b8015610a14576003805460ff60a81b191690555b505050565b6008546001600160a01b03163314610a615760405162461bcd60e51b815260206004820152600b60248201526a10b1b7b73a3937b63632b960a91b604482015260640161063a565b610a6b828261121c565b6040518181526001600160a01b0383169033907f0c0f5df55f02a0601bce877b4f87152a1e95aa77aa55a08f16a8852fcf1f2bf9906020015b60405180910390a35050565b6003546001600160a01b03163314610ada5760405162461bcd60e51b815260040161063a9061189d565b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b6000610b54826040518060600160405280602481526020016119f460249139610b4d86336103e2565b9190611476565b9050610b618333836110b1565b610a1483836114b5565b6008546001600160a01b03163314610bb35760405162461bcd60e51b815260206004820152600b60248201526a10b1b7b73a3937b63632b960a91b604482015260640161063a565b610bbd82826111cd565b60405181815233906001600160a01b038416907fb53a8a5aa66e96b4627a60632ff728cd6991e142988ea8f28215fae565fe8ad090602001610aa4565b6003546001600160a01b03163314610c245760405162461bcd60e51b815260040161063a9061189d565b6001600160a01b038116610c6c5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b604482015260640161063a565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6004805461045390611901565b60006104e1338461089985604051806060016040528060258152602001611a18602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611476565b60006104e13384846112f3565b6003546001600160a01b03163314610d215760405162461bcd60e51b815260040161063a9061189d565b6001600160a01b03811660009081526007602052604090205460ff161515600114610d7a5760405162461bcd60e51b815260206004820152600960248201526821747265617375727960b81b604482015260640161063a565b6001600160a01b0381166000908152600760205260408120805460ff191690555b600654811015610e5357816001600160a01b031660068281548110610dd057634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610e4157600060068281548110610e0e57634e487b7160e01b600052603260045260246000fd5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550610e53565b80610e4b8161193c565b915050610d9b565b506040516001600160a01b038216907f0820ed7a122a6fc9da8baebd1b26fd87a75060c4d45f69af14c3bfc5f697a4ae90600090a250565b6003546001600160a01b03163314610eb55760405162461bcd60e51b815260040161063a9061189d565b6001600160a01b03811660009081526007602052604090205460ff1615610f105760405162461bcd60e51b815260206004820152600f60248201526e1d1c99585cdd5c9e515e1a5cdd1959608a1b604482015260640161063a565b6001600160a01b038116600081815260076020526040808220805460ff1916600190811790915560068054918201815583527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b03191684179055517fedfa2f73691730ba0803543209339afdd054637240c6ff0a7ae0dad3c191648c9190a250565b60068181548110610fac57600080fd5b6000918252602090912001546001600160a01b0316905081565b6003546001600160a01b03163314610ff05760405162461bcd60e51b815260040161063a9061189d565b6001600160a01b0381166110555760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161063a565b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166111135760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161063a565b6001600160a01b0382166111745760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161063a565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259101610686565b6111d782826114b5565b6112188233610899846040518060600160405280602481526020016119f4602491396001600160a01b03881660009081526001602052604081209033610878565b5050565b6001600160a01b0382166112725760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161063a565b60025461127f90826114a2565b6002556001600160a01b0382166000908152602081905260409020546112a590826114a2565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610aa4565b6001600160a01b0383166113575760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161063a565b6001600160a01b0382166113b95760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161063a565b6113f6816040518060600160405280602681526020016119a6602691396001600160a01b0386166000908152602081905260409020549190611476565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461142590826114a2565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610686565b6000818484111561149a5760405162461bcd60e51b815260040161063a919061184a565b505050900390565b60006114ae82846118d2565b9392505050565b6001600160a01b0382166115155760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161063a565b61155281604051806060016040528060228152602001611984602291396001600160a01b0385166000908152602081905260409020549190611476565b6001600160a01b03831660009081526020819052604090205560025461157890826115b9565b6002556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610aa4565b60006114ae82846118ea565b8280546115d190611901565b90600052602060002090601f0160209004810192826115f35760008555611639565b82601f1061160c57805160ff1916838001178555611639565b82800160010185558215611639579182015b8281111561163957825182559160200191906001019061161e565b50611645929150611649565b5090565b5b80821115611645576000815560010161164a565b80356001600160a01b038116811461167557600080fd5b919050565b600082601f83011261168a578081fd5b813567ffffffffffffffff808211156116a5576116a561196d565b604051601f8301601f19908116603f011681019082821181831017156116cd576116cd61196d565b816040528381528660208588010111156116e5578485fd5b8360208701602083013792830160200193909352509392505050565b600060208284031215611712578081fd5b6114ae8261165e565b6000806040838503121561172d578081fd5b6117368361165e565b91506117446020840161165e565b90509250929050565b600080600060608486031215611761578081fd5b61176a8461165e565b92506117786020850161165e565b9150604084013590509250925092565b6000806040838503121561179a578182fd5b6117a38361165e565b946020939093013593505050565b6000602082840312156117c2578081fd5b815180151581146114ae578182fd5b600080604083850312156117e3578182fd5b823567ffffffffffffffff808211156117fa578384fd5b6118068683870161167a565b9350602085013591508082111561181b578283fd5b506118288582860161167a565b9150509250929050565b600060208284031215611843578081fd5b5035919050565b6000602080835283518082850152825b818110156118765785810183015185820160400152820161185a565b818111156118875783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156118e5576118e5611957565b500190565b6000828210156118fc576118fc611957565b500390565b600181811c9082168061191557607f821691505b6020821081141561193657634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561195057611950611957565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b3a39a7cda4ff98bba9e981d1e1b1a9176170c388a8d16d13ab821eb8705dad364736f6c63430008040033
Deployed ByteCode Sourcemap
35171:3506:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35283:18;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35522:42;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3472:14:1;;3465:22;3447:41;;3435:2;3420:18;35522:42:0;3402:92:1;26165:169:0;;;;;;:::i;:::-;;:::i;36377:197::-;;;;;;:::i;:::-;;:::i;:::-;;36582:189;;;;;;:::i;:::-;;:::i;25044:100::-;25124:12;;25044:100;;;9515:25:1;;;9503:2;9488:18;25044:100:0;9470:76:1;26806:454:0;;;;;;:::i;:::-;;:::i;35308:35::-;;35341:2;35308:35;;;;;9723:4:1;9711:17;;;9693:36;;9681:2;9666:18;35308:35:0;9648:87:1;27669:218:0;;;;;;:::i;:::-;;:::i;30628:91::-;;;;;;:::i;:::-;;:::i;36147:222::-;;;;;;:::i;:::-;;:::i;35350:51::-;;35391:10;35350:51;;36986:191;;;;;;:::i;:::-;;:::i;25207:119::-;;;;;;:::i;:::-;-1:-1:-1;;;;;25300:18:0;25273:7;25300:18;;;;;;;;;;;;25207:119;4508:148;;;:::i;31036:308::-;;;;;;:::i;:::-;;:::i;36779:199::-;;;;;;:::i;:::-;;:::i;3857:87::-;3930:6;;-1:-1:-1;;;;;3930:6:0;3857:87;;;-1:-1:-1;;;;;3263:32:1;;;3245:51;;3233:2;3218:18;3857:87:0;3200:102:1;38184:168:0;;;;;;:::i;:::-;;:::i;35256:20::-;;;:::i;28390:400::-;;;;;;:::i;:::-;;:::i;25539:175::-;;;;;;:::i;:::-;;:::i;37540:636::-;;;;;;:::i;:::-;;:::i;37241:291::-;;;;;;:::i;:::-;;:::i;25777:201::-;;;;;;:::i;:::-;-1:-1:-1;;;;;25943:18:0;;;25911:7;25943:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;25777:201;35482:33;;;;;;:::i;:::-;;:::i;4811:244::-;;;;;;:::i;:::-;;:::i;35573:25::-;;;;;-1:-1:-1;;;;;35573:25:0;;;35283:18;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26165:169::-;26248:4;26265:39;2494:10;26288:7;26297:6;26265:8;:39::i;:::-;-1:-1:-1;26322:4:0;26165:169;;;;:::o;36377:197::-;35684:12;35720:9;35715:246;35739:16;:23;35735:27;;35715:246;;;35819:1;-1:-1:-1;;;;;35788:33:0;:16;35805:1;35788:19;;;;;;-1:-1:-1;;;35788:19:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35788:19:0;:33;;;;:87;;;35835:16;35852:1;35835:19;;;;;;-1:-1:-1;;;35835:19:0;;;;;;;;;;;;;;;;;;;35825:50;;-1:-1:-1;;;35825:50:0;;35864:10;35825:50;;;3245:51:1;-1:-1:-1;;;;;35835:19:0;;;;35825:38;;3218:18:1;;35825:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35784:166;;;35906:4;35896:14;;35929:5;;35784:166;35764:3;;;;:::i;:::-;;;;35715:246;;;;35979:7;35971:26;;;;-1:-1:-1;;;35971:26:0;;8877:2:1;35971:26:0;;;8859:21:1;8916:1;8896:18;;;8889:29;-1:-1:-1;;;8934:18:1;;;8927:36;8980:18;;35971:26:0;;;;;;;;;36473:34:::1;36489:8;36499:7;36473:15;:34::i;:::-;36523:43;::::0;9515:25:1;;;36546:10:0::1;::::0;-1:-1:-1;;;;;36523:43:0;::::1;::::0;::::1;::::0;9503:2:1;9488:18;36523:43:0::1;;;;;;;;36377:197:::0;;;:::o;36582:189::-;35684:12;35720:9;35715:246;35739:16;:23;35735:27;;35715:246;;;35819:1;-1:-1:-1;;;;;35788:33:0;:16;35805:1;35788:19;;;;;;-1:-1:-1;;;35788:19:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35788:19:0;:33;;;;:87;;;35835:16;35852:1;35835:19;;;;;;-1:-1:-1;;;35835:19:0;;;;;;;;;;;;;;;;;;;35825:50;;-1:-1:-1;;;35825:50:0;;35864:10;35825:50;;;3245:51:1;-1:-1:-1;;;;;35835:19:0;;;;35825:38;;3218:18:1;;35825:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35784:166;;;35906:4;35896:14;;35929:5;;35784:166;35764:3;;;;:::i;:::-;;;;35715:246;;;;35979:7;35971:26;;;;-1:-1:-1;;;35971:26:0;;8877:2:1;35971:26:0;;;8859:21:1;8916:1;8896:18;;;8889:29;-1:-1:-1;;;8934:18:1;;;8927:36;8980:18;;35971:26:0;8849:155:1;35971:26:0;36674:30:::1;36686:8;36696:7;36674:11;:30::i;:::-;36720:43;::::0;9515:25:1;;;-1:-1:-1;;;;;36720:43:0;::::1;::::0;36733:10:::1;::::0;36720:43:::1;::::0;9503:2:1;9488:18;36720:43:0::1;9470:76:1::0;26806:454:0;26946:4;26963:36;26973:6;26981:9;26992:6;26963:9;:36::i;:::-;27010:220;27033:6;2494:10;27081:138;27137:6;27081:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27081:19:0;;;;;;:11;:19;;;;;;2494:10;27101:12;-1:-1:-1;;;;;27081:33:0;;;;;;;;;;;;-1:-1:-1;27081:33:0;;;:138;:37;:138::i;:::-;27010:8;:220::i;:::-;-1:-1:-1;27248:4:0;26806:454;;;;;:::o;27669:218::-;2494:10;27757:4;27806:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;27806:34:0;;;;;;;;;;27757:4;;27774:83;;27797:7;;27806:50;;27845:10;27806:38;:50::i;30628:91::-;30684:27;2494:10;30704:6;30684:5;:27::i;:::-;30628:91;:::o;36147:222::-;1438:13;;-1:-1:-1;;;1438:13:0;;;;;:30;;-1:-1:-1;1456:12:0;;-1:-1:-1;;;1456:12:0;;;;1455:13;1438:30;1430:89;;;;-1:-1:-1;;;1430:89:0;;6207:2:1;1430:89:0;;;6189:21:1;6246:2;6226:18;;;6219:30;6285:34;6265:18;;;6258:62;-1:-1:-1;;;6336:18:1;;;6329:44;6390:19;;1430:89:0;6179:236:1;1430:89:0;1555:13;;-1:-1:-1;;;1555:13:0;;;;1554:14;1579:101;;;;1614:13;:20;;-1:-1:-1;;;;1649:19:0;-1:-1:-1;;;1649:19:0;;;1579:101;3930:6;;-1:-1:-1;;;;;3930:6:0;2494:10;4077:23:::1;4069:68;;;;-1:-1:-1::0;;;4069:68:0::1;;;;;;;:::i;:::-;36278:12:::0;;::::2;::::0;:4:::2;::::0;:12:::2;::::0;::::2;::::0;::::2;:::i;:::-;-1:-1:-1::0;36301:16:0;;::::2;::::0;:6:::2;::::0;:16:::2;::::0;::::2;::::0;::::2;:::i;:::-;;36328:33;36334:10;35391;36328:5;:33::i;:::-;1710:14:::0;1706:68;;;1741:13;:21;;-1:-1:-1;;;;1741:21:0;;;1706:68;36147:222;;;:::o;36986:191::-;36093:10;;-1:-1:-1;;;;;36093:10:0;36078;36070:33;36062:57;;;;-1:-1:-1;;;36062:57:0;;5867:2:1;36062:57:0;;;5849:21:1;5906:2;5886:18;;;5879:30;-1:-1:-1;;;5925:18:1;;;5918:41;5976:18;;36062:57:0;5839:161:1;36062:57:0;37080:30:::1;37092:8;37102:7;37080:11;:30::i;:::-;37126:43;::::0;9515:25:1;;;-1:-1:-1;;;;;37126:43:0;::::1;::::0;37139:10:::1;::::0;37126:43:::1;::::0;9503:2:1;9488:18;37126:43:0::1;;;;;;;;36986:191:::0;;:::o;4508:148::-;3930:6;;-1:-1:-1;;;;;3930:6:0;2494:10;4077:23;4069:68;;;;-1:-1:-1;;;4069:68:0;;;;;;;:::i;:::-;4599:6:::1;::::0;4578:40:::1;::::0;4615:1:::1;::::0;-1:-1:-1;;;;;4599:6:0::1;::::0;4578:40:::1;::::0;4615:1;;4578:40:::1;4629:6;:19:::0;;-1:-1:-1;;;;;;4629:19:0::1;::::0;;4508:148::o;31036:308::-;31113:26;31155:84;31192:6;31155:84;;;;;;;;;;;;;;;;;:32;31165:7;2494:10;25777:201;:::i;31155:32::-;:36;:84;:36;:84::i;:::-;31113:126;-1:-1:-1;31252:51:0;31261:7;2494:10;31284:18;31252:8;:51::i;:::-;31314:22;31320:7;31329:6;31314:5;:22::i;36779:199::-;36093:10;;-1:-1:-1;;;;;36093:10:0;36078;36070:33;36062:57;;;;-1:-1:-1;;;36062:57:0;;5867:2:1;36062:57:0;;;5849:21:1;5906:2;5886:18;;;5879:30;-1:-1:-1;;;5925:18:1;;;5918:41;5976:18;;36062:57:0;5839:161:1;36062:57:0;36877:34:::1;36893:8;36903:7;36877:15;:34::i;:::-;36927:43;::::0;9515:25:1;;;36950:10:0::1;::::0;-1:-1:-1;;;;;36927:43:0;::::1;::::0;::::1;::::0;9503:2:1;9488:18;36927:43:0::1;9470:76:1::0;38184:168:0;3930:6;;-1:-1:-1;;;;;3930:6:0;2494:10;4077:23;4069:68;;;;-1:-1:-1;;;4069:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38264:25:0;::::1;38256:53;;;::::0;-1:-1:-1;;;38256:53:0;;4713:2:1;38256:53:0::1;::::0;::::1;4695:21:1::0;4752:2;4732:18;;;4725:30;-1:-1:-1;;;4771:18:1;;;4764:45;4826:18;;38256:53:0::1;4685:165:1::0;38256:53:0::1;38320:10;:24:::0;;-1:-1:-1;;;;;;38320:24:0::1;-1:-1:-1::0;;;;;38320:24:0;;;::::1;::::0;;;::::1;::::0;;38184:168::o;35256:20::-;;;;;;;:::i;28390:400::-;28510:4;28532:228;2494:10;28582:7;28604:145;28661:15;28604:145;;;;;;;;;;;;;;;;;2494:10;28604:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;28604:34:0;;;;;;;;;;;;:38;:145::i;25539:175::-;25625:4;25642:42;2494:10;25666:9;25677:6;25642:9;:42::i;37540:636::-;3930:6;;-1:-1:-1;;;;;3930:6:0;2494:10;4077:23;4069:68;;;;-1:-1:-1;;;4069:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37626:28:0;::::1;;::::0;;;:10:::1;:28;::::0;;;;;::::1;;:36;;:28:::0;:36:::1;37618:58;;;::::0;-1:-1:-1;;;37618:58:0;;8135:2:1;37618:58:0::1;::::0;::::1;8117:21:1::0;8174:1;8154:18;;;8147:29;-1:-1:-1;;;8192:18:1;;;8185:39;8241:18;;37618:58:0::1;8107:158:1::0;37618:58:0::1;-1:-1:-1::0;;;;;37730:28:0;::::1;;::::0;;;:10:::1;:28;::::0;;;;37723:35;;-1:-1:-1;;37723:35:0::1;::::0;;37835:285:::1;37859:16;:23:::0;37855:27;::::1;37835:285;;;37931:16;-1:-1:-1::0;;;;;37908:39:0::1;:16;37925:1;37908:19;;;;;;-1:-1:-1::0;;;37908:19:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;37908:19:0::1;:39;37904:205;;;37998:1;37968:16;37985:1;37968:19;;;;;;-1:-1:-1::0;;;37968:19:0::1;;;;;;;;;;;;;;;;;:32;;;;;-1:-1:-1::0;;;;;37968:32:0::1;;;;;-1:-1:-1::0;;;;;37968:32:0::1;;;;;;38088:5;;37904:205;37884:3:::0;::::1;::::0;::::1;:::i;:::-;;;;37835:285;;;-1:-1:-1::0;38135:33:0::1;::::0;-1:-1:-1;;;;;38135:33:0;::::1;::::0;::::1;::::0;;;::::1;37540:636:::0;:::o;37241:291::-;3930:6;;-1:-1:-1;;;;;3930:6:0;2494:10;4077:23;4069:68;;;;-1:-1:-1;;;4069:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37324:28:0;::::1;;::::0;;;:10:::1;:28;::::0;;;;;::::1;;:37;37316:65;;;::::0;-1:-1:-1;;;37316:65:0;;6983:2:1;37316:65:0::1;::::0;::::1;6965:21:1::0;7022:2;7002:18;;;6995:30;-1:-1:-1;;;7041:18:1;;;7034:45;7096:18;;37316:65:0::1;6955:165:1::0;37316:65:0::1;-1:-1:-1::0;;;;;37392:28:0;::::1;;::::0;;;:10:::1;:28;::::0;;;;;:35;;-1:-1:-1;;37392:35:0::1;37423:4;37392:35:::0;;::::1;::::0;;;37438:16:::1;:39:::0;;;;::::1;::::0;;;;;::::1;::::0;;-1:-1:-1;;;;;;37438:39:0::1;::::0;::::1;::::0;;37493:31;::::1;::::0;37392:28;37493:31:::1;37241:291:::0;:::o;35482:33::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35482:33:0;;-1:-1:-1;35482:33:0;:::o;4811:244::-;3930:6;;-1:-1:-1;;;;;3930:6:0;2494:10;4077:23;4069:68;;;;-1:-1:-1;;;4069:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4900:22:0;::::1;4892:73;;;::::0;-1:-1:-1;;;4892:73:0;;5057:2:1;4892:73:0::1;::::0;::::1;5039:21:1::0;5096:2;5076:18;;;5069:30;5135:34;5115:18;;;5108:62;-1:-1:-1;;;5186:18:1;;;5179:36;5232:19;;4892:73:0::1;5029:228:1::0;4892:73:0::1;5002:6;::::0;4981:38:::1;::::0;-1:-1:-1;;;;;4981:38:0;;::::1;::::0;5002:6:::1;::::0;4981:38:::1;::::0;5002:6:::1;::::0;4981:38:::1;5030:6;:17:::0;;-1:-1:-1;;;;;;5030:17:0::1;-1:-1:-1::0;;;;;5030:17:0;;;::::1;::::0;;;::::1;::::0;;4811:244::o;32534:380::-;-1:-1:-1;;;;;32670:19:0;;32662:68;;;;-1:-1:-1;;;32662:68:0;;8472:2:1;32662:68:0;;;8454:21:1;8511:2;8491:18;;;8484:30;8550:34;8530:18;;;8523:62;-1:-1:-1;;;8601:18:1;;;8594:34;8645:19;;32662:68:0;8444:226:1;32662:68:0;-1:-1:-1;;;;;32749:21:0;;32741:68;;;;-1:-1:-1;;;32741:68:0;;5464:2:1;32741:68:0;;;5446:21:1;5503:2;5483:18;;;5476:30;5542:34;5522:18;;;5515:62;-1:-1:-1;;;5593:18:1;;;5586:32;5635:19;;32741:68:0;5436:224:1;32741:68:0;-1:-1:-1;;;;;32822:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;32874:32;;9515:25:1;;;32874:32:0;;9488:18:1;32874:32:0;9470:76:1;33100:290:0;33180:22;33186:7;33195:6;33180:5;:22::i;:::-;33213:169;33236:7;2494:10;33285:86;33324:6;33285:86;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33285:20:0;;;;;;:11;:20;;;;;;2494:10;33306:12;2414:98;33213:169;33100:290;;:::o;30134:378::-;-1:-1:-1;;;;;30218:21:0;;30210:65;;;;-1:-1:-1;;;30210:65:0;;9211:2:1;30210:65:0;;;9193:21:1;9250:2;9230:18;;;9223:30;9289:33;9269:18;;;9262:61;9340:18;;30210:65:0;9183:181:1;30210:65:0;30365:12;;:24;;30382:6;30365:16;:24::i;:::-;30350:12;:39;-1:-1:-1;;;;;30421:18:0;;:9;:18;;;;;;;;;;;:30;;30444:6;30421:22;:30::i;:::-;-1:-1:-1;;;;;30400:18:0;;:9;:18;;;;;;;;;;;:51;;;;30467:37;;9515:25:1;;;30400:18:0;;:9;;30467:37;;9488:18:1;30467:37:0;9470:76:1;29280:573:0;-1:-1:-1;;;;;29420:20:0;;29412:70;;;;-1:-1:-1;;;29412:70:0;;7729:2:1;29412:70:0;;;7711:21:1;7768:2;7748:18;;;7741:30;7807:34;7787:18;;;7780:62;-1:-1:-1;;;7858:18:1;;;7851:35;7903:19;;29412:70:0;7701:227:1;29412:70:0;-1:-1:-1;;;;;29501:23:0;;29493:71;;;;-1:-1:-1;;;29493:71:0;;4309:2:1;29493:71:0;;;4291:21:1;4348:2;4328:18;;;4321:30;4387:34;4367:18;;;4360:62;-1:-1:-1;;;4438:18:1;;;4431:33;4481:19;;29493:71:0;4281:225:1;29493:71:0;29657;29679:6;29657:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29657:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;29637:17:0;;;:9;:17;;;;;;;;;;;:91;;;;29762:20;;;;;;;:32;;29787:6;29762:24;:32::i;:::-;-1:-1:-1;;;;;29739:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;29810:35;9515:25:1;;;29739:20:0;;29810:35;;;;;;9488:18:1;29810:35:0;9470:76:1;12974:240:0;13094:7;13155:12;13147:6;;;;13139:29;;;;-1:-1:-1;;;13139:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;13190:5:0;;;12974:240::o;10695:98::-;10753:7;10780:5;10784:1;10780;:5;:::i;:::-;10773:12;10695:98;-1:-1:-1;;;10695:98:0:o;31676:418::-;-1:-1:-1;;;;;31760:21:0;;31752:67;;;;-1:-1:-1;;;31752:67:0;;7327:2:1;31752:67:0;;;7309:21:1;7366:2;7346:18;;;7339:30;7405:34;7385:18;;;7378:62;-1:-1:-1;;;7456:18:1;;;7449:31;7497:19;;31752:67:0;7299:223:1;31752:67:0;31915:68;31938:6;31915:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31915:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;31894:18:0;;:9;:18;;;;;;;;;;:89;32009:12;;:24;;32026:6;32009:16;:24::i;:::-;31994:12;:39;32049:37;;9515:25:1;;;32075:1:0;;-1:-1:-1;;;;;32049:37:0;;;;;9503:2:1;9488:18;32049:37:0;9470:76:1;11076:98:0;11134:7;11161:5;11165:1;11161;:5;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:739::-;235:5;288:3;281:4;273:6;269:17;265:27;255:2;;310:5;303;296:20;255:2;350:6;337:20;376:18;413:2;409;406:10;403:2;;;419:18;;:::i;:::-;494:2;488:9;462:2;548:13;;-1:-1:-1;;544:22:1;;;568:2;540:31;536:40;524:53;;;592:18;;;612:22;;;589:46;586:2;;;638:18;;:::i;:::-;678:10;674:2;667:22;713:2;705:6;698:18;759:3;752:4;747:2;739:6;735:15;731:26;728:35;725:2;;;780:5;773;766:20;725:2;848;841:4;833:6;829:17;822:4;814:6;810:17;797:54;871:15;;;888:4;867:26;860:41;;;;-1:-1:-1;875:6:1;245:686;-1:-1:-1;;;245:686:1:o;936:196::-;995:6;1048:2;1036:9;1027:7;1023:23;1019:32;1016:2;;;1069:6;1061;1054:22;1016:2;1097:29;1116:9;1097:29;:::i;1137:270::-;1205:6;1213;1266:2;1254:9;1245:7;1241:23;1237:32;1234:2;;;1287:6;1279;1272:22;1234:2;1315:29;1334:9;1315:29;:::i;:::-;1305:39;;1363:38;1397:2;1386:9;1382:18;1363:38;:::i;:::-;1353:48;;1224:183;;;;;:::o;1412:338::-;1489:6;1497;1505;1558:2;1546:9;1537:7;1533:23;1529:32;1526:2;;;1579:6;1571;1564:22;1526:2;1607:29;1626:9;1607:29;:::i;:::-;1597:39;;1655:38;1689:2;1678:9;1674:18;1655:38;:::i;:::-;1645:48;;1740:2;1729:9;1725:18;1712:32;1702:42;;1516:234;;;;;:::o;1755:264::-;1823:6;1831;1884:2;1872:9;1863:7;1859:23;1855:32;1852:2;;;1905:6;1897;1890:22;1852:2;1933:29;1952:9;1933:29;:::i;:::-;1923:39;2009:2;1994:18;;;;1981:32;;-1:-1:-1;;;1842:177:1:o;2024:297::-;2091:6;2144:2;2132:9;2123:7;2119:23;2115:32;2112:2;;;2165:6;2157;2150:22;2112:2;2202:9;2196:16;2255:5;2248:13;2241:21;2234:5;2231:32;2221:2;;2282:6;2274;2267:22;2326:573;2414:6;2422;2475:2;2463:9;2454:7;2450:23;2446:32;2443:2;;;2496:6;2488;2481:22;2443:2;2541:9;2528:23;2570:18;2611:2;2603:6;2600:14;2597:2;;;2632:6;2624;2617:22;2597:2;2660:50;2702:7;2693:6;2682:9;2678:22;2660:50;:::i;:::-;2650:60;;2763:2;2752:9;2748:18;2735:32;2719:48;;2792:2;2782:8;2779:16;2776:2;;;2813:6;2805;2798:22;2776:2;;2841:52;2885:7;2874:8;2863:9;2859:24;2841:52;:::i;:::-;2831:62;;;2433:466;;;;;:::o;2904:190::-;2963:6;3016:2;3004:9;2995:7;2991:23;2987:32;2984:2;;;3037:6;3029;3022:22;2984:2;-1:-1:-1;3065:23:1;;2974:120;-1:-1:-1;2974:120:1:o;3499:603::-;3611:4;3640:2;3669;3658:9;3651:21;3701:6;3695:13;3744:6;3739:2;3728:9;3724:18;3717:34;3769:4;3782:140;3796:6;3793:1;3790:13;3782:140;;;3891:14;;;3887:23;;3881:30;3857:17;;;3876:2;3853:26;3846:66;3811:10;;3782:140;;;3940:6;3937:1;3934:13;3931:2;;;4010:4;4005:2;3996:6;3985:9;3981:22;3977:31;3970:45;3931:2;-1:-1:-1;4086:2:1;4065:15;-1:-1:-1;;4061:29:1;4046:45;;;;4093:2;4042:54;;3620:482;-1:-1:-1;;;3620:482:1:o;6420:356::-;6622:2;6604:21;;;6641:18;;;6634:30;6700:34;6695:2;6680:18;;6673:62;6767:2;6752:18;;6594:182::o;9740:128::-;9780:3;9811:1;9807:6;9804:1;9801:13;9798:2;;;9817:18;;:::i;:::-;-1:-1:-1;9853:9:1;;9788:80::o;9873:125::-;9913:4;9941:1;9938;9935:8;9932:2;;;9946:18;;:::i;:::-;-1:-1:-1;9983:9:1;;9922:76::o;10003:380::-;10082:1;10078:12;;;;10125;;;10146:2;;10200:4;10192:6;10188:17;10178:27;;10146:2;10253;10245:6;10242:14;10222:18;10219:38;10216:2;;;10299:10;10294:3;10290:20;10287:1;10280:31;10334:4;10331:1;10324:15;10362:4;10359:1;10352:15;10216:2;;10058:325;;;:::o;10388:135::-;10427:3;-1:-1:-1;;10448:17:1;;10445:2;;;10468:18;;:::i;:::-;-1:-1:-1;10515:1:1;10504:13;;10435:88::o;10528:127::-;10589:10;10584:3;10580:20;10577:1;10570:31;10620:4;10617:1;10610:15;10644:4;10641:1;10634:15;10660:127;10721:10;10716:3;10712:20;10709:1;10702:31;10752:4;10749:1;10742:15;10776:4;10773:1;10766:15
Swarm Source
ipfs://b3a39a7cda4ff98bba9e981d1e1b1a9176170c388a8d16d13ab821eb8705dad3
Loading...
Loading
[ 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.