Overview
Max Total Supply
52,544,639.492717074728224974 IRON
Holders
52,783 (0.00%)
Market
Price
$0.00 @ 0.000000 MATIC
Onchain Market Cap
$0.00
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
2 IRONValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
Dollar
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2021-06-09 */ // Sources flattened with hardhat v2.2.1 https://hardhat.org // SPDX-License-Identifier: MIT // File @openzeppelin/contracts-upgradeable/proxy/utils/[email protected] // solhint-disable-next-line compiler-version 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/Share.sol pragma solidity 0.8.4; pragma experimental ABIEncoderV2; contract Share is ERC20Custom, Ownable, Initializable { /* ========== STATE VARIABLES ========== */ // ERC20 - Token string public symbol; string public name; uint8 public constant decimals = 18; uint256 public constant genesis_supply = 1000 ether; // 1000 will be mited at genesis for liq pool seeding // CONTRACTS address public treasury; // DISTRIBUTION uint256 public constant COMMUNITY_REWARD_ALLOCATION = 70_000_0000 ether; // 80M uint256 public constant TREASURY_FUND_ALLOCATION = 30_000_0000 ether; // 30M uint256 public constant TREASURY_FUND_VESTING_DURATION = 730 days; // 24 months uint256 public startTime; // Start time of vesting duration uint256 public endTime; // End of vesting duration address public treasuryFund; uint256 public treasuryFundLastClaimed; uint256 public treasuryFundEmissionRate = TREASURY_FUND_ALLOCATION / TREASURY_FUND_VESTING_DURATION; address public communityRewardController; // Holding SHARE tokens to distribute into Liquiditiy Mining Pools uint256 public communityRewardClaimed; /* ========== MODIFIERS ========== */ modifier onlyPools() { require(ITreasury(treasury).hasPool(msg.sender), "!pools"); _; } modifier onlyTreasuryFund { require(msg.sender == treasuryFund, "Only treasury fund address can trigger"); _; } /* ========== CONSTRUCTOR ========== */ function initialize( string memory _name, string memory _symbol, address _treasury, address _treasuryFund, address _communityRewardController, uint256 _startTime ) external initializer onlyOwner { name = _name; symbol = _symbol; treasury = _treasury; treasuryFund = _treasuryFund; communityRewardController = _communityRewardController; startTime = _startTime; endTime = _startTime + TREASURY_FUND_VESTING_DURATION; treasuryFundLastClaimed = _startTime; _mint(msg.sender, genesis_supply); } function claimCommunityRewards(uint256 amount) external onlyOwner { require(amount > 0, "invalidAmount"); require(communityRewardController != address(0), "!rewardController"); uint256 _remainingRewards = COMMUNITY_REWARD_ALLOCATION - communityRewardClaimed; require(amount <= _remainingRewards, "exceedRewards"); communityRewardClaimed = communityRewardClaimed + amount; _mint(communityRewardController, amount); } /* ========== RESTRICTED FUNCTIONS ========== */ function setTreasuryAddress(address _treasury) external onlyOwner { require(_treasury != address(0), "Invalid address"); treasury = _treasury; emit TreasuryChanged(_treasury); } function setTreasuryFund(address _treasuryFund) external onlyTreasuryFund { require(_treasuryFund != address(0), "zero"); treasuryFund = _treasuryFund; } // This function is what other Pools will call to mint new SHARE function poolMint(address m_address, uint256 m_amount) external onlyPools { super._mint(m_address, m_amount); emit ShareMinted(address(this), m_address, m_amount); } // This function is what other pools will call to burn SHARE function poolBurnFrom(address b_address, uint256 b_amount) external onlyPools { super._burnFrom(b_address, b_amount); emit ShareBurned(b_address, address(this), b_amount); } function unclaimedTreasuryFund() public view returns (uint256 _pending) { uint256 _now = block.timestamp; if (_now > endTime) _now = endTime; if (treasuryFundLastClaimed >= _now) return 0; _pending = (_now - treasuryFundLastClaimed) * treasuryFundEmissionRate; } function claimTreasuryFundRewards() external onlyTreasuryFund { uint256 _pending = unclaimedTreasuryFund(); if (_pending > 0 && treasuryFund != address(0)) { _mint(treasuryFund, _pending); treasuryFundLastClaimed = block.timestamp; } } /* ========== EVENTS ========== */ event TreasuryChanged(address indexed newTreasury); event ShareBurned(address indexed from, address indexed to, uint256 amount); event ShareMinted(address indexed from, address indexed to, uint256 amount); } // 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 treasury; /* ========== MODIFIERS ========== */ modifier onlyPools() { require(ITreasury(treasury).hasPool(msg.sender), "!pools"); _; } function initialize( string memory _name, string memory _symbol, address _treasury ) external initializer onlyOwner { name = _name; symbol = _symbol; treasury = _treasury; _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); } /* ========== RESTRICTED FUNCTIONS ========== */ function setTreasuryAddress(address _treasury) public onlyOwner { require(_treasury != address(0), "Invalid address"); treasury = _treasury; emit TreasuryChanged(_treasury); } /* ========== EVENTS ========== */ event TreasuryChanged(address indexed newTreasury); 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":"newTreasury","type":"address"}],"name":"TreasuryChanged","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"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"},{"internalType":"address","name":"_treasury","type":"address"}],"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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasury","type":"address"}],"name":"setTreasuryAddress","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":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50600380546001600160a01b0319163390811790915560405181906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35061147b806100636000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806361d027b3116100b85780638da5cb5b1161007c5780638da5cb5b146102bb57806395d89b41146102cc578063a457c2d7146102d4578063a9059cbb146102e7578063dd62ed3e146102fa578063f2fde38b1461033357600080fd5b806361d027b3146102395780636605bfda1461026457806370a0823114610277578063715018a6146102a057806379cc6790146102a857600080fd5b806318160ddd1161010a57806318160ddd146101c357806323b872dd146101d5578063313ce567146101e8578063395093511461020257806342966c681461021557806351e238e31461022857600080fd5b806306fdde0314610147578063077f224a14610165578063095ea7b31461017a5780630a0c165a1461019d5780630c407d56146101b0575b600080fd5b61014f610346565b60405161015c919061126e565b60405180910390f35b6101786101733660046111e5565b6103d4565b005b61018d61018836600461119c565b610523565b604051901515815260200161015c565b6101786101ab36600461119c565b610539565b6101786101be36600461119c565b610638565b6002545b60405190815260200161015c565b61018d6101e3366004611161565b61072f565b6101f0601281565b60405160ff909116815260200161015c565b61018d61021036600461119c565b6107a9565b610178610223366004611256565b6107df565b6101c769010f0cf064dd5920000081565b60065461024c906001600160a01b031681565b6040516001600160a01b03909116815260200161015c565b610178610272366004611115565b6107ec565b6101c7610285366004611115565b6001600160a01b031660009081526020819052604090205490565b6101786108a8565b6101786102b636600461119c565b61091c565b6003546001600160a01b031661024c565b61014f610968565b61018d6102e236600461119c565b610975565b61018d6102f536600461119c565b6109c4565b6101c761030836600461112f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610178610341366004611115565b6109d1565b6005805461035390611325565b80601f016020809104026020016040519081016040528092919081815260200182805461037f90611325565b80156103cc5780601f106103a1576101008083540402835291602001916103cc565b820191906000526020600020905b8154815290600101906020018083116103af57829003601f168201915b505050505081565b600354600160a81b900460ff16806103f65750600354600160a01b900460ff16155b61045e5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084015b60405180910390fd5b600354600160a81b900460ff16158015610488576003805461ffff60a01b191661010160a01b1790555b6003546001600160a01b031633146104b25760405162461bcd60e51b8152600401610455906112c1565b83516104c5906005906020870190610fd9565b5082516104d9906004906020860190610fd9565b50600680546001600160a01b0319166001600160a01b0384161790556105093369010f0cf064dd59200000610abc565b801561051d576003805460ff60a81b191690555b50505050565b6000610530338484610b93565b50600192915050565b600654604051631246dbf560e01b81523360048201526001600160a01b0390911690631246dbf59060240160206040518083038186803b15801561057c57600080fd5b505afa158015610590573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105b491906111c5565b6105e95760405162461bcd60e51b815260206004820152600660248201526521706f6f6c7360d01b6044820152606401610455565b6105f38282610cb8565b60405181815233906001600160a01b038416907fb53a8a5aa66e96b4627a60632ff728cd6991e142988ea8f28215fae565fe8ad0906020015b60405180910390a35050565b600654604051631246dbf560e01b81523360048201526001600160a01b0390911690631246dbf59060240160206040518083038186803b15801561067b57600080fd5b505afa15801561068f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106b391906111c5565b6106e85760405162461bcd60e51b815260206004820152600660248201526521706f6f6c7360d01b6044820152606401610455565b6106f28282610abc565b6040518181526001600160a01b0383169033907f0c0f5df55f02a0601bce877b4f87152a1e95aa77aa55a08f16a8852fcf1f2bf99060200161062c565b600061073c848484610d07565b61079f843361079a856040518060600160405280602881526020016113d5602891396001600160a01b038a16600090815260016020526040812090335b6001600160a01b031681526020810191909152604001600020549190610e8a565b610b93565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161053091859061079a9086610eb6565b6107e93382610ec9565b50565b6003546001600160a01b031633146108165760405162461bcd60e51b8152600401610455906112c1565b6001600160a01b03811661085e5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610455565b600680546001600160a01b0319166001600160a01b0383169081179091556040517fc714d22a2f08b695f81e7c707058db484aa5b4d6b4c9fd64beb10fe85832f60890600090a250565b6003546001600160a01b031633146108d25760405162461bcd60e51b8152600401610455906112c1565b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b600061094c826040518060600160405280602481526020016113fd602491396109458633610308565b9190610e8a565b9050610959833383610b93565b6109638383610ec9565b505050565b6004805461035390611325565b6000610530338461079a85604051806060016040528060258152602001611421602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190610e8a565b6000610530338484610d07565b6003546001600160a01b031633146109fb5760405162461bcd60e51b8152600401610455906112c1565b6001600160a01b038116610a605760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610455565b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038216610b125760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610455565b600254610b1f9082610eb6565b6002556001600160a01b038216600090815260208190526040902054610b459082610eb6565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161062c565b6001600160a01b038316610bf55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610455565b6001600160a01b038216610c565760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610455565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b610cc28282610ec9565b610d03823361079a846040518060600160405280602481526020016113fd602491396001600160a01b03881660009081526001602052604081209033610779565b5050565b6001600160a01b038316610d6b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610455565b6001600160a01b038216610dcd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610455565b610e0a816040518060600160405280602681526020016113af602691396001600160a01b0386166000908152602081905260409020549190610e8a565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610e399082610eb6565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610cab565b60008184841115610eae5760405162461bcd60e51b8152600401610455919061126e565b505050900390565b6000610ec282846112f6565b9392505050565b6001600160a01b038216610f295760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610455565b610f668160405180606001604052806022815260200161138d602291396001600160a01b0385166000908152602081905260409020549190610e8a565b6001600160a01b038316600090815260208190526040902055600254610f8c9082610fcd565b6002556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161062c565b6000610ec2828461130e565b828054610fe590611325565b90600052602060002090601f016020900481019282611007576000855561104d565b82601f1061102057805160ff191683800117855561104d565b8280016001018555821561104d579182015b8281111561104d578251825591602001919060010190611032565b5061105992915061105d565b5090565b5b80821115611059576000815560010161105e565b80356001600160a01b038116811461108957600080fd5b919050565b600082601f83011261109e578081fd5b813567ffffffffffffffff808211156110b9576110b9611376565b604051601f8301601f19908116603f011681019082821181831017156110e1576110e1611376565b816040528381528660208588010111156110f9578485fd5b8360208701602083013792830160200193909352509392505050565b600060208284031215611126578081fd5b610ec282611072565b60008060408385031215611141578081fd5b61114a83611072565b915061115860208401611072565b90509250929050565b600080600060608486031215611175578081fd5b61117e84611072565b925061118c60208501611072565b9150604084013590509250925092565b600080604083850312156111ae578182fd5b6111b783611072565b946020939093013593505050565b6000602082840312156111d6578081fd5b81518015158114610ec2578182fd5b6000806000606084860312156111f9578283fd5b833567ffffffffffffffff80821115611210578485fd5b61121c8783880161108e565b94506020860135915080821115611231578384fd5b5061123e8682870161108e565b92505061124d60408501611072565b90509250925092565b600060208284031215611267578081fd5b5035919050565b6000602080835283518082850152825b8181101561129a5785810183015185820160400152820161127e565b818111156112ab5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561130957611309611360565b500190565b60008282101561132057611320611360565b500390565b600181811c9082168061133957607f821691505b6020821081141561135a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122011ede4ecec19fe78ae128a03ba6ca4143d9c73434b28e454424e3986d1fd420464736f6c63430008040033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101425760003560e01c806361d027b3116100b85780638da5cb5b1161007c5780638da5cb5b146102bb57806395d89b41146102cc578063a457c2d7146102d4578063a9059cbb146102e7578063dd62ed3e146102fa578063f2fde38b1461033357600080fd5b806361d027b3146102395780636605bfda1461026457806370a0823114610277578063715018a6146102a057806379cc6790146102a857600080fd5b806318160ddd1161010a57806318160ddd146101c357806323b872dd146101d5578063313ce567146101e8578063395093511461020257806342966c681461021557806351e238e31461022857600080fd5b806306fdde0314610147578063077f224a14610165578063095ea7b31461017a5780630a0c165a1461019d5780630c407d56146101b0575b600080fd5b61014f610346565b60405161015c919061126e565b60405180910390f35b6101786101733660046111e5565b6103d4565b005b61018d61018836600461119c565b610523565b604051901515815260200161015c565b6101786101ab36600461119c565b610539565b6101786101be36600461119c565b610638565b6002545b60405190815260200161015c565b61018d6101e3366004611161565b61072f565b6101f0601281565b60405160ff909116815260200161015c565b61018d61021036600461119c565b6107a9565b610178610223366004611256565b6107df565b6101c769010f0cf064dd5920000081565b60065461024c906001600160a01b031681565b6040516001600160a01b03909116815260200161015c565b610178610272366004611115565b6107ec565b6101c7610285366004611115565b6001600160a01b031660009081526020819052604090205490565b6101786108a8565b6101786102b636600461119c565b61091c565b6003546001600160a01b031661024c565b61014f610968565b61018d6102e236600461119c565b610975565b61018d6102f536600461119c565b6109c4565b6101c761030836600461112f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610178610341366004611115565b6109d1565b6005805461035390611325565b80601f016020809104026020016040519081016040528092919081815260200182805461037f90611325565b80156103cc5780601f106103a1576101008083540402835291602001916103cc565b820191906000526020600020905b8154815290600101906020018083116103af57829003601f168201915b505050505081565b600354600160a81b900460ff16806103f65750600354600160a01b900460ff16155b61045e5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084015b60405180910390fd5b600354600160a81b900460ff16158015610488576003805461ffff60a01b191661010160a01b1790555b6003546001600160a01b031633146104b25760405162461bcd60e51b8152600401610455906112c1565b83516104c5906005906020870190610fd9565b5082516104d9906004906020860190610fd9565b50600680546001600160a01b0319166001600160a01b0384161790556105093369010f0cf064dd59200000610abc565b801561051d576003805460ff60a81b191690555b50505050565b6000610530338484610b93565b50600192915050565b600654604051631246dbf560e01b81523360048201526001600160a01b0390911690631246dbf59060240160206040518083038186803b15801561057c57600080fd5b505afa158015610590573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105b491906111c5565b6105e95760405162461bcd60e51b815260206004820152600660248201526521706f6f6c7360d01b6044820152606401610455565b6105f38282610cb8565b60405181815233906001600160a01b038416907fb53a8a5aa66e96b4627a60632ff728cd6991e142988ea8f28215fae565fe8ad0906020015b60405180910390a35050565b600654604051631246dbf560e01b81523360048201526001600160a01b0390911690631246dbf59060240160206040518083038186803b15801561067b57600080fd5b505afa15801561068f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106b391906111c5565b6106e85760405162461bcd60e51b815260206004820152600660248201526521706f6f6c7360d01b6044820152606401610455565b6106f28282610abc565b6040518181526001600160a01b0383169033907f0c0f5df55f02a0601bce877b4f87152a1e95aa77aa55a08f16a8852fcf1f2bf99060200161062c565b600061073c848484610d07565b61079f843361079a856040518060600160405280602881526020016113d5602891396001600160a01b038a16600090815260016020526040812090335b6001600160a01b031681526020810191909152604001600020549190610e8a565b610b93565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161053091859061079a9086610eb6565b6107e93382610ec9565b50565b6003546001600160a01b031633146108165760405162461bcd60e51b8152600401610455906112c1565b6001600160a01b03811661085e5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610455565b600680546001600160a01b0319166001600160a01b0383169081179091556040517fc714d22a2f08b695f81e7c707058db484aa5b4d6b4c9fd64beb10fe85832f60890600090a250565b6003546001600160a01b031633146108d25760405162461bcd60e51b8152600401610455906112c1565b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b600061094c826040518060600160405280602481526020016113fd602491396109458633610308565b9190610e8a565b9050610959833383610b93565b6109638383610ec9565b505050565b6004805461035390611325565b6000610530338461079a85604051806060016040528060258152602001611421602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190610e8a565b6000610530338484610d07565b6003546001600160a01b031633146109fb5760405162461bcd60e51b8152600401610455906112c1565b6001600160a01b038116610a605760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610455565b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038216610b125760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610455565b600254610b1f9082610eb6565b6002556001600160a01b038216600090815260208190526040902054610b459082610eb6565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161062c565b6001600160a01b038316610bf55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610455565b6001600160a01b038216610c565760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610455565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b610cc28282610ec9565b610d03823361079a846040518060600160405280602481526020016113fd602491396001600160a01b03881660009081526001602052604081209033610779565b5050565b6001600160a01b038316610d6b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610455565b6001600160a01b038216610dcd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610455565b610e0a816040518060600160405280602681526020016113af602691396001600160a01b0386166000908152602081905260409020549190610e8a565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610e399082610eb6565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610cab565b60008184841115610eae5760405162461bcd60e51b8152600401610455919061126e565b505050900390565b6000610ec282846112f6565b9392505050565b6001600160a01b038216610f295760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610455565b610f668160405180606001604052806022815260200161138d602291396001600160a01b0385166000908152602081905260409020549190610e8a565b6001600160a01b038316600090815260208190526040902055600254610f8c9082610fcd565b6002556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161062c565b6000610ec2828461130e565b828054610fe590611325565b90600052602060002090601f016020900481019282611007576000855561104d565b82601f1061102057805160ff191683800117855561104d565b8280016001018555821561104d579182015b8281111561104d578251825591602001919060010190611032565b5061105992915061105d565b5090565b5b80821115611059576000815560010161105e565b80356001600160a01b038116811461108957600080fd5b919050565b600082601f83011261109e578081fd5b813567ffffffffffffffff808211156110b9576110b9611376565b604051601f8301601f19908116603f011681019082821181831017156110e1576110e1611376565b816040528381528660208588010111156110f9578485fd5b8360208701602083013792830160200193909352509392505050565b600060208284031215611126578081fd5b610ec282611072565b60008060408385031215611141578081fd5b61114a83611072565b915061115860208401611072565b90509250929050565b600080600060608486031215611175578081fd5b61117e84611072565b925061118c60208501611072565b9150604084013590509250925092565b600080604083850312156111ae578182fd5b6111b783611072565b946020939093013593505050565b6000602082840312156111d6578081fd5b81518015158114610ec2578182fd5b6000806000606084860312156111f9578283fd5b833567ffffffffffffffff80821115611210578485fd5b61121c8783880161108e565b94506020860135915080821115611231578384fd5b5061123e8682870161108e565b92505061124d60408501611072565b90509250925092565b600060208284031215611267578081fd5b5035919050565b6000602080835283518082850152825b8181101561129a5785810183015185820160400152820161127e565b818111156112ab5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561130957611309611360565b500190565b60008282101561132057611320611360565b500390565b600181811c9082168061133957607f821691505b6020821081141561135a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122011ede4ecec19fe78ae128a03ba6ca4143d9c73434b28e454424e3986d1fd420464736f6c63430008040033
Deployed Bytecode Sourcemap
39942:1730:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40054:18;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40448:281;;;;;;:::i;:::-;;:::i;:::-;;26358:169;;;;;;:::i;:::-;;:::i;:::-;;;3546:14:1;;3539:22;3521:41;;3509:2;3494:18;26358:169:0;3476:92:1;40737:197:0;;;;;;:::i;:::-;;:::i;40942:189::-;;;;;;:::i;:::-;;:::i;25237:100::-;25317:12;;25237:100;;;8568:25:1;;;8556:2;8541:18;25237:100:0;8523:76:1;26999:454:0;;;;;;:::i;:::-;;:::i;40079:35::-;;40112:2;40079:35;;;;;8776:4:1;8764:17;;;8746:36;;8734:2;8719:18;40079:35:0;8701:87:1;27862:218:0;;;;;;:::i;:::-;;:::i;30821:91::-;;;;;;:::i;:::-;;:::i;40121:51::-;;40162:10;40121:51;;40253:23;;;;;-1:-1:-1;;;;;40253:23:0;;;;;;-1:-1:-1;;;;;3337:32:1;;;3319:51;;3307:2;3292:18;40253:23:0;3274:102:1;41195:207:0;;;;;;:::i;:::-;;:::i;25400:119::-;;;;;;:::i;:::-;-1:-1:-1;;;;;25493:18:0;25466:7;25493:18;;;;;;;;;;;;25400:119;4701:148;;;:::i;31229:308::-;;;;;;:::i;:::-;;:::i;4050:87::-;4123:6;;-1:-1:-1;;;;;4123:6:0;4050:87;;40027:20;;;:::i;28583:400::-;;;;;;:::i;:::-;;:::i;25732:175::-;;;;;;:::i;:::-;;:::i;25970:201::-;;;;;;:::i;:::-;-1:-1:-1;;;;;26136:18:0;;;26104:7;26136:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;25970:201;5004:244;;;;;;:::i;:::-;;:::i;40054:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40448:281::-;1631:13;;-1:-1:-1;;;1631:13:0;;;;;:30;;-1:-1:-1;1649:12:0;;-1:-1:-1;;;1649:12:0;;;;1648:13;1631:30;1623:89;;;;-1:-1:-1;;;1623:89:0;;5941:2:1;1623:89:0;;;5923:21:1;5980:2;5960:18;;;5953:30;6019:34;5999:18;;;5992:62;-1:-1:-1;;;6070:18:1;;;6063:44;6124:19;;1623:89:0;;;;;;;;;1748:13;;-1:-1:-1;;;1748:13:0;;;;1747:14;1772:101;;;;1807:13;:20;;-1:-1:-1;;;;1842:19:0;-1:-1:-1;;;1842:19:0;;;1772:101;4123:6;;-1:-1:-1;;;;;4123:6:0;2687:10;4270:23:::1;4262:68;;;;-1:-1:-1::0;;;4262:68:0::1;;;;;;;:::i;:::-;40607:12:::0;;::::2;::::0;:4:::2;::::0;:12:::2;::::0;::::2;::::0;::::2;:::i;:::-;-1:-1:-1::0;40630:16:0;;::::2;::::0;:6:::2;::::0;:16:::2;::::0;::::2;::::0;::::2;:::i;:::-;-1:-1:-1::0;40657:8:0::2;:20:::0;;-1:-1:-1;;;;;;40657:20:0::2;-1:-1:-1::0;;;;;40657:20:0;::::2;;::::0;;40688:33:::2;40694:10;40162;40688:5;:33::i;:::-;1903:14:::0;1899:68;;;1934:13;:21;;-1:-1:-1;;;;1934:21:0;;;1899:68;40448:281;;;;:::o;26358:169::-;26441:4;26458:39;2687:10;26481:7;26490:6;26458:8;:39::i;:::-;-1:-1:-1;26515:4:0;26358:169;;;;:::o;40737:197::-;40380:8;;40370:39;;-1:-1:-1;;;40370:39:0;;40398:10;40370:39;;;3319:51:1;-1:-1:-1;;;;;40380:8:0;;;;40370:27;;3292:18:1;;40370:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40362:58;;;;-1:-1:-1;;;40362:58:0;;7930:2:1;40362:58:0;;;7912:21:1;7969:1;7949:18;;;7942:29;-1:-1:-1;;;7987:18:1;;;7980:36;8033:18;;40362:58:0;7902:155:1;40362:58:0;40833:34:::1;40849:8;40859:7;40833:15;:34::i;:::-;40883:43;::::0;8568:25:1;;;40906:10:0::1;::::0;-1:-1:-1;;;;;40883:43:0;::::1;::::0;::::1;::::0;8556:2:1;8541:18;40883:43:0::1;;;;;;;;40737:197:::0;;:::o;40942:189::-;40380:8;;40370:39;;-1:-1:-1;;;40370:39:0;;40398:10;40370:39;;;3319:51:1;-1:-1:-1;;;;;40380:8:0;;;;40370:27;;3292:18:1;;40370:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40362:58;;;;-1:-1:-1;;;40362:58:0;;7930:2:1;40362:58:0;;;7912:21:1;7969:1;7949:18;;;7942:29;-1:-1:-1;;;7987:18:1;;;7980:36;8033:18;;40362:58:0;7902:155:1;40362:58:0;41034:30:::1;41046:8;41056:7;41034:11;:30::i;:::-;41080:43;::::0;8568:25:1;;;-1:-1:-1;;;;;41080:43:0;::::1;::::0;41093:10:::1;::::0;41080:43:::1;::::0;8556:2:1;8541:18;41080:43:0::1;8523:76:1::0;26999:454:0;27139:4;27156:36;27166:6;27174:9;27185:6;27156:9;:36::i;:::-;27203:220;27226:6;2687:10;27274:138;27330:6;27274:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27274:19:0;;;;;;:11;:19;;;;;;2687:10;27294:12;-1:-1:-1;;;;;27274:33:0;;;;;;;;;;;;-1:-1:-1;27274:33:0;;;:138;:37;:138::i;:::-;27203:8;:220::i;:::-;-1:-1:-1;27441:4:0;26999:454;;;;;:::o;27862:218::-;2687:10;27950:4;27999:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;27999:34:0;;;;;;;;;;27950:4;;27967:83;;27990:7;;27999:50;;28038:10;27999:38;:50::i;30821:91::-;30877:27;2687:10;30897:6;30877:5;:27::i;:::-;30821:91;:::o;41195:207::-;4123:6;;-1:-1:-1;;;;;4123:6:0;2687:10;4270:23;4262:68;;;;-1:-1:-1;;;4262:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41278:23:0;::::1;41270:51;;;::::0;-1:-1:-1;;;41270:51:0;;4787:2:1;41270:51:0::1;::::0;::::1;4769:21:1::0;4826:2;4806:18;;;4799:30;-1:-1:-1;;;4845:18:1;;;4838:45;4900:18;;41270:51:0::1;4759:165:1::0;41270:51:0::1;41332:8;:20:::0;;-1:-1:-1;;;;;;41332:20:0::1;-1:-1:-1::0;;;;;41332:20:0;::::1;::::0;;::::1;::::0;;;41368:26:::1;::::0;::::1;::::0;-1:-1:-1;;41368:26:0::1;41195:207:::0;:::o;4701:148::-;4123:6;;-1:-1:-1;;;;;4123:6:0;2687:10;4270:23;4262:68;;;;-1:-1:-1;;;4262:68:0;;;;;;;:::i;:::-;4792:6:::1;::::0;4771:40:::1;::::0;4808:1:::1;::::0;-1:-1:-1;;;;;4792:6:0::1;::::0;4771:40:::1;::::0;4808:1;;4771:40:::1;4822:6;:19:::0;;-1:-1:-1;;;;;;4822:19:0::1;::::0;;4701:148::o;31229:308::-;31306:26;31348:84;31385:6;31348:84;;;;;;;;;;;;;;;;;:32;31358:7;2687:10;25970:201;:::i;31348:32::-;:36;:84;:36;:84::i;:::-;31306:126;-1:-1:-1;31445:51:0;31454:7;2687:10;31477:18;31445:8;:51::i;:::-;31507:22;31513:7;31522:6;31507:5;:22::i;:::-;31229:308;;;:::o;40027:20::-;;;;;;;:::i;28583:400::-;28703:4;28725:228;2687:10;28775:7;28797:145;28854:15;28797:145;;;;;;;;;;;;;;;;;2687:10;28797:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;28797:34:0;;;;;;;;;;;;:38;:145::i;25732:175::-;25818:4;25835:42;2687:10;25859:9;25870:6;25835:9;:42::i;5004:244::-;4123:6;;-1:-1:-1;;;;;4123:6:0;2687:10;4270:23;4262:68;;;;-1:-1:-1;;;4262:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5093:22:0;::::1;5085:73;;;::::0;-1:-1:-1;;;5085:73:0;;5131:2:1;5085:73:0::1;::::0;::::1;5113:21:1::0;5170:2;5150:18;;;5143:30;5209:34;5189:18;;;5182:62;-1:-1:-1;;;5260:18:1;;;5253:36;5306:19;;5085:73:0::1;5103:228:1::0;5085:73:0::1;5195:6;::::0;5174:38:::1;::::0;-1:-1:-1;;;;;5174:38:0;;::::1;::::0;5195:6:::1;::::0;5174:38:::1;::::0;5195:6:::1;::::0;5174:38:::1;5223:6;:17:::0;;-1:-1:-1;;;;;;5223:17:0::1;-1:-1:-1::0;;;;;5223:17:0;;;::::1;::::0;;;::::1;::::0;;5004:244::o;30327:378::-;-1:-1:-1;;;;;30411:21:0;;30403:65;;;;-1:-1:-1;;;30403:65:0;;8264:2:1;30403:65:0;;;8246:21:1;8303:2;8283:18;;;8276:30;8342:33;8322:18;;;8315:61;8393:18;;30403:65:0;8236:181:1;30403:65:0;30558:12;;:24;;30575:6;30558:16;:24::i;:::-;30543:12;:39;-1:-1:-1;;;;;30614:18:0;;:9;:18;;;;;;;;;;;:30;;30637:6;30614:22;:30::i;:::-;-1:-1:-1;;;;;30593:18:0;;:9;:18;;;;;;;;;;;:51;;;;30660:37;;8568:25:1;;;30593:18:0;;:9;;30660:37;;8541:18:1;30660:37:0;8523:76:1;32727:380:0;-1:-1:-1;;;;;32863:19:0;;32855:68;;;;-1:-1:-1;;;32855:68:0;;7525:2:1;32855:68:0;;;7507:21:1;7564:2;7544:18;;;7537:30;7603:34;7583:18;;;7576:62;-1:-1:-1;;;7654:18:1;;;7647:34;7698:19;;32855:68:0;7497:226:1;32855:68:0;-1:-1:-1;;;;;32942:21:0;;32934:68;;;;-1:-1:-1;;;32934:68:0;;5538:2:1;32934:68:0;;;5520:21:1;5577:2;5557:18;;;5550:30;5616:34;5596:18;;;5589:62;-1:-1:-1;;;5667:18:1;;;5660:32;5709:19;;32934:68:0;5510:224:1;32934:68:0;-1:-1:-1;;;;;33015:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;33067:32;;8568:25:1;;;33067:32:0;;8541:18:1;33067:32:0;;;;;;;;32727:380;;;:::o;33293:290::-;33373:22;33379:7;33388:6;33373:5;:22::i;:::-;33406:169;33429:7;2687:10;33478:86;33517:6;33478:86;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33478:20:0;;;;;;:11;:20;;;;;;2687:10;33499:12;2607:98;33406:169;33293:290;;:::o;29473:573::-;-1:-1:-1;;;;;29613:20:0;;29605:70;;;;-1:-1:-1;;;29605:70:0;;7119:2:1;29605:70:0;;;7101:21:1;7158:2;7138:18;;;7131:30;7197:34;7177:18;;;7170:62;-1:-1:-1;;;7248:18:1;;;7241:35;7293:19;;29605:70:0;7091:227:1;29605:70:0;-1:-1:-1;;;;;29694:23:0;;29686:71;;;;-1:-1:-1;;;29686:71:0;;4383:2:1;29686:71:0;;;4365:21:1;4422:2;4402:18;;;4395:30;4461:34;4441:18;;;4434:62;-1:-1:-1;;;4512:18:1;;;4505:33;4555:19;;29686:71:0;4355:225:1;29686:71:0;29850;29872:6;29850:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29850:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;29830:17:0;;;:9;:17;;;;;;;;;;;:91;;;;29955:20;;;;;;;:32;;29980:6;29955:24;:32::i;:::-;-1:-1:-1;;;;;29932:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;30003:35;8568:25:1;;;29932:20:0;;30003:35;;;;;;8541:18:1;30003:35:0;8523:76:1;13167:240:0;13287:7;13348:12;13340:6;;;;13332:29;;;;-1:-1:-1;;;13332:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;13383:5:0;;;13167:240::o;10888:98::-;10946:7;10973:5;10977:1;10973;:5;:::i;:::-;10966:12;10888:98;-1:-1:-1;;;10888:98:0:o;31869:418::-;-1:-1:-1;;;;;31953:21:0;;31945:67;;;;-1:-1:-1;;;31945:67:0;;6717:2:1;31945:67:0;;;6699:21:1;6756:2;6736:18;;;6729:30;6795:34;6775:18;;;6768:62;-1:-1:-1;;;6846:18:1;;;6839:31;6887:19;;31945:67:0;6689:223:1;31945:67:0;32108:68;32131:6;32108:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32108:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;32087:18:0;;:9;:18;;;;;;;;;;:89;32202:12;;:24;;32219:6;32202:16;:24::i;:::-;32187:12;:39;32242:37;;8568:25:1;;;32268:1:0;;-1:-1:-1;;;;;32242:37:0;;;;;8556:2:1;8541:18;32242:37:0;8523:76:1;11269:98:0;11327:7;11354:5;11358:1;11354;: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:647;2423:6;2431;2439;2492:2;2480:9;2471:7;2467:23;2463:32;2460:2;;;2513:6;2505;2498:22;2460:2;2558:9;2545:23;2587:18;2628:2;2620:6;2617:14;2614:2;;;2649:6;2641;2634:22;2614:2;2677:50;2719:7;2710:6;2699:9;2695:22;2677:50;:::i;:::-;2667:60;;2780:2;2769:9;2765:18;2752:32;2736:48;;2809:2;2799:8;2796:16;2793:2;;;2830:6;2822;2815:22;2793:2;;2858:52;2902:7;2891:8;2880:9;2876:24;2858:52;:::i;:::-;2848:62;;;2929:38;2963:2;2952:9;2948:18;2929:38;:::i;:::-;2919:48;;2450:523;;;;;:::o;2978:190::-;3037:6;3090:2;3078:9;3069:7;3065:23;3061:32;3058:2;;;3111:6;3103;3096:22;3058:2;-1:-1:-1;3139:23:1;;3048:120;-1:-1:-1;3048:120:1:o;3573:603::-;3685:4;3714:2;3743;3732:9;3725:21;3775:6;3769:13;3818:6;3813:2;3802:9;3798:18;3791:34;3843:4;3856:140;3870:6;3867:1;3864:13;3856:140;;;3965:14;;;3961:23;;3955:30;3931:17;;;3950:2;3927:26;3920:66;3885:10;;3856:140;;;4014:6;4011:1;4008:13;4005:2;;;4084:4;4079:2;4070:6;4059:9;4055:22;4051:31;4044:45;4005:2;-1:-1:-1;4160:2:1;4139:15;-1:-1:-1;;4135:29:1;4120:45;;;;4167:2;4116:54;;3694:482;-1:-1:-1;;;3694:482:1:o;6154:356::-;6356:2;6338:21;;;6375:18;;;6368:30;6434:34;6429:2;6414:18;;6407:62;6501:2;6486:18;;6328:182::o;8793:128::-;8833:3;8864:1;8860:6;8857:1;8854:13;8851:2;;;8870:18;;:::i;:::-;-1:-1:-1;8906:9:1;;8841:80::o;8926:125::-;8966:4;8994:1;8991;8988:8;8985:2;;;8999:18;;:::i;:::-;-1:-1:-1;9036:9:1;;8975:76::o;9056:380::-;9135:1;9131:12;;;;9178;;;9199:2;;9253:4;9245:6;9241:17;9231:27;;9199:2;9306;9298:6;9295:14;9275:18;9272:38;9269:2;;;9352:10;9347:3;9343:20;9340:1;9333:31;9387:4;9384:1;9377:15;9415:4;9412:1;9405:15;9269:2;;9111:325;;;:::o;9441:127::-;9502:10;9497:3;9493:20;9490:1;9483:31;9533:4;9530:1;9523:15;9557:4;9554:1;9547:15;9573:127;9634:10;9629:3;9625:20;9622:1;9615:31;9665:4;9662:1;9655:15;9689:4;9686:1;9679:15
Swarm Source
ipfs://11ede4ecec19fe78ae128a03ba6ca4143d9c73434b28e454424e3986d1fd4204
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.