ETH Price: $2,938.97 (+0.30%)
Gas: 3 Gwei

Token

Identity (IDTT)
 

Overview

Max Total Supply

96,000,000 IDTT

Holders

384

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
IDTT

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-13
*/

pragma solidity 0.6.12;

/*
 * @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 GSN 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.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor() internal {}

    function _msgSender() internal view returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// 
/**
 * @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.
 */
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() internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view 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 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 onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), 'Ownable: new owner is the zero address');
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// 
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the token decimals.
     */
    function decimals() external view returns (uint8);

    /**
     * @dev Returns the token symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the token name.
     */
    function name() external view returns (string memory);

    /**
     * @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);
}

// 
/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, 'SafeMath: addition overflow');

        return c;
    }

    /**
     * @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 sub(a, b, 'SafeMath: subtraction overflow');
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @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) {
        // 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 0;
        }

        uint256 c = a * b;
        require(c / a == b, 'SafeMath: multiplication overflow');

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, 'SafeMath: division by zero');
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, 'SafeMath: modulo by zero');
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }

    function min(uint256 x, uint256 y) internal pure returns (uint256 z) {
        z = x < y ? x : y;
    }

    // babylonian method (https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method)
    function sqrt(uint256 y) internal pure returns (uint256 z) {
        if (y > 3) {
            z = y;
            uint256 x = y / 2 + 1;
            while (x < z) {
                z = x;
                x = (y / x + x) / 2;
            }
        } else if (y != 0) {
            z = 1;
        }
    }
}

// 
/**
 * @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) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            codehash := extcodehash(account)
        }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @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');
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(
        address target,
        bytes memory data,
        uint256 weiValue,
        string memory errorMessage
    ) private returns (bytes memory) {
        require(isContract(target), 'Address: call to non-contract');

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{value: weiValue}(data);
        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);
            }
        }
    }
}

contract LGEWhitelisted is Context {
    
    using SafeMath for uint256;
    
    struct WhitelistRound {
        uint256 duration;
        uint256 amountMax;
        mapping(address => bool) addresses;
        mapping(address => uint256) purchased;
    }
  
    WhitelistRound[] public _lgeWhitelistRounds;
    
    uint256 public _lgeTimestamp;
    address public _lgePairAddress;
    
    address public _whitelister;
    
    event WhitelisterTransferred(address indexed previousWhitelister, address indexed newWhitelister);
    
    constructor () internal {
        _whitelister = _msgSender();
    }
    
    modifier onlyWhitelister() {
        require(_whitelister == _msgSender(), "Caller is not the whitelister");
        _;
    }
    
    function renounceWhitelister() external onlyWhitelister {
        emit WhitelisterTransferred(_whitelister, address(0));
        _whitelister = address(0);
    }
    
    function transferWhitelister(address newWhitelister) external onlyWhitelister {
        _transferWhitelister(newWhitelister);
    }
    
    function _transferWhitelister(address newWhitelister) internal {
        require(newWhitelister != address(0), "New whitelister is the zero address");
        emit WhitelisterTransferred(_whitelister, newWhitelister);
        _whitelister = newWhitelister;
    }
    
    /*
     * createLGEWhitelist - Call this after initial Token Generation Event (TGE) 
     * 
     * pairAddress - address generated from createPair() event on DEX
     * durations - array of durations (seconds) for each whitelist rounds
     * amountsMax - array of max amounts (TOKEN decimals) for each whitelist round
     * 
     */
  
    function createLGEWhitelist(address pairAddress, uint256[] calldata durations, uint256[] calldata amountsMax) external onlyWhitelister() {
        require(durations.length == amountsMax.length, "Invalid whitelist(s)");
        
        _lgePairAddress = pairAddress;
        
        if(durations.length > 0) {
            
            delete _lgeWhitelistRounds;
        
            for (uint256 i = 0; i < durations.length; i++) {
                _lgeWhitelistRounds.push(WhitelistRound(durations[i], amountsMax[i]));
            }
        
        }
    }
    
    /*
     * modifyLGEWhitelistAddresses - Define what addresses are included/excluded from a whitelist round
     * 
     * index - 0-based index of round to modify whitelist
     * duration - period in seconds from LGE event or previous whitelist round
     * amountMax - max amount (TOKEN decimals) for each whitelist round
     * 
     */
    
    function modifyLGEWhitelist(uint256 index, uint256 duration, uint256 amountMax, address[] calldata addresses, bool enabled) external onlyWhitelister() {
        require(index < _lgeWhitelistRounds.length, "Invalid index");
        require(amountMax > 0, "Invalid amountMax");

        if(duration != _lgeWhitelistRounds[index].duration)
            _lgeWhitelistRounds[index].duration = duration;
        
        if(amountMax != _lgeWhitelistRounds[index].amountMax)  
            _lgeWhitelistRounds[index].amountMax = amountMax;
        
        for (uint256 i = 0; i < addresses.length; i++) {
            _lgeWhitelistRounds[index].addresses[addresses[i]] = enabled;
        }
    }
    
    /*
     *  getLGEWhitelistRound
     *
     *  returns:
     *
     *  1. whitelist round number ( 0 = no active round now )
     *  2. duration, in seconds, current whitelist round is active for
     *  3. timestamp current whitelist round closes at
     *  4. maximum amount a whitelister can purchase in this round
     *  5. is caller whitelisted
     *  6. how much caller has purchased in current whitelist round
     *
     */
    
    function getLGEWhitelistRound() public view returns (uint256, uint256, uint256, uint256, bool, uint256) {
        
        if(_lgeTimestamp > 0) {
            
            uint256 wlCloseTimestampLast = _lgeTimestamp;
        
            for (uint256 i = 0; i < _lgeWhitelistRounds.length; i++) {
                
                WhitelistRound storage wlRound = _lgeWhitelistRounds[i];
                
                wlCloseTimestampLast = wlCloseTimestampLast.add(wlRound.duration);
                if(now <= wlCloseTimestampLast)
                    return (i.add(1), wlRound.duration, wlCloseTimestampLast, wlRound.amountMax, wlRound.addresses[_msgSender()], wlRound.purchased[_msgSender()]);
            }
        
        }
        
        return (0, 0, 0, 0, false, 0);
    }
    
    /*
     * _applyLGEWhitelist - internal function to be called initially before any transfers
     * 
     */
    
    function _applyLGEWhitelist(address sender, address recipient, uint256 amount) internal {
        
        if(_lgePairAddress == address(0) || _lgeWhitelistRounds.length == 0)
            return;
        
        if(_lgeTimestamp == 0 && sender != _lgePairAddress && recipient == _lgePairAddress && amount > 0)
            _lgeTimestamp = now;
        
        if(sender == _lgePairAddress && recipient != _lgePairAddress) {
            //buying
            
            (uint256 wlRoundNumber,,,,,) = getLGEWhitelistRound();
        
            if(wlRoundNumber > 0) {
                
                WhitelistRound storage wlRound = _lgeWhitelistRounds[wlRoundNumber.sub(1)];
                
                require(wlRound.addresses[recipient], "LGE - Buyer is not whitelisted");
                
                uint256 amountRemaining = 0;
                
                if(wlRound.purchased[recipient] < wlRound.amountMax)
                    amountRemaining = wlRound.amountMax.sub(wlRound.purchased[recipient]);
    
                require(amount <= amountRemaining, "LGE - Amount exceeds whitelist maximum");
                wlRound.purchased[recipient] = wlRound.purchased[recipient].add(amount);
                
            }
            
        }
        
    }
    
}

// 
/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-ERC20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin 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 ERC20 is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
    }

    /**
     * @dev Returns the token name.
     */
    function name() public override view returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token decimals.
     */
    function decimals() public override view returns (uint8) {
        return _decimals;
    }

    /**
     * @dev Returns the token symbol.
     */
    function symbol() public override view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {ERC20-totalSupply}.
     */
    function totalSupply() public override view returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {ERC20-balanceOf}.
     */
    function balanceOf(address account) public override view returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {ERC20-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 override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {ERC20-allowance}.
     */
    function allowance(address owner, address spender) public override view returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {ERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {ERC20-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 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 {ERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public 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 {ERC20-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 returns (bool) {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(subtractedValue, 'ERC20: decreased allowance below zero')
        );
        return true;
    }

    /**
     * @dev Creates `amount` tokens and assigns them to `msg.sender`, increasing
     * the total supply.
     *
     * Requirements
     *
     * - `msg.sender` must be the token owner
     */
    function mint(uint256 amount) public onlyOwner returns (bool) {
        _mint(_msgSender(), amount);
        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 {
        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 {
        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 `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 {
        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 {
        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 {
        _burn(account, amount);
        _approve(
            account,
            _msgSender(),
            _allowances[account][_msgSender()].sub(amount, 'ERC20: burn amount exceeds allowance')
        );
    }
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}


contract IDTT is ERC20('Identity', 'IDTT'), LGEWhitelisted {

    uint256 private _cap = 1000000000e18;
    
    function cap() public view returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - minted tokens must not cause the total supply to go over the cap.
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        
        LGEWhitelisted._applyLGEWhitelist(from, to, amount);
        super._beforeTokenTransfer(from, to, amount);

        if (from == address(0)) { // When minting tokens
            require(totalSupply() + amount <= _cap, "ERC20Capped: cap exceeded");
        }
    }

    function mint(address _to, uint256 _amount) public onlyOwner {
        _mint(_to, _amount);
    }

}

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"previousWhitelister","type":"address"},{"indexed":true,"internalType":"address","name":"newWhitelister","type":"address"}],"name":"WhitelisterTransferred","type":"event"},{"inputs":[],"name":"_lgePairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_lgeTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_lgeWhitelistRounds","outputs":[{"internalType":"uint256","name":"duration","type":"uint256"},{"internalType":"uint256","name":"amountMax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_whitelister","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pairAddress","type":"address"},{"internalType":"uint256[]","name":"durations","type":"uint256[]"},{"internalType":"uint256[]","name":"amountsMax","type":"uint256[]"}],"name":"createLGEWhitelist","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":"getLGEWhitelistRound","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bool","name":"","type":"bool"},{"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":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"duration","type":"uint256"},{"internalType":"uint256","name":"amountMax","type":"uint256"},{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"bool","name":"enabled","type":"bool"}],"name":"modifyLGEWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceWhitelister","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":"newWhitelister","type":"address"}],"name":"transferWhitelister","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526b033b2e3c9fd0803ce8000000600b553480156200002157600080fd5b50604051806040016040528060088152602001674964656e7469747960c01b815250604051806040016040528060048152602001631251151560e21b8152506000620000726200012760201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508151620000d19060049060208501906200012b565b508051620000e79060059060208401906200012b565b50506006805460ff19166012179055506200010162000127565b600a80546001600160a01b0319166001600160a01b0392909216919091179055620001c7565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200016e57805160ff19168380011785556200019e565b828001600101855582156200019e579182015b828111156200019e57825182559160200191906001019062000181565b50620001ac929150620001b0565b5090565b5b80821115620001ac5760008155600101620001b1565b611b3680620001d76000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c806370a08231116100de578063a457c2d711610097578063d5215d1111610071578063d5215d11146105ef578063da91b76e146105f7578063dd62ed3e146105ff578063f2fde38b1461062d5761018e565b8063a457c2d714610561578063a77cac7a1461058d578063a9059cbb146105c35761018e565b806370a08231146104fe578063715018a6146105245780638da5cb5b1461052c57806395d89b41146105345780639ad3a7ba1461053c578063a0712d68146105445761018e565b8063313ce5671161014b57806340c10f191161012557806340c10f191461035757806344ade3c5146103835780634944889814610408578063532f1fed1461042c5761018e565b8063313ce56714610305578063355274ea14610323578063395093511461032b5761018e565b806306fdde0314610193578063095ea7b31461021057806318160ddd146102505780631b29b0cd1461026a57806323b872dd146102a75780632e15e5c7146102dd575b600080fd5b61019b610653565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d55781810151838201526020016101bd565b50505050905090810190601f1680156102025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61023c6004803603604081101561022657600080fd5b506001600160a01b0381351690602001356106e9565b604080519115158252519081900360200190f35b610258610706565b60408051918252519081900360200190f35b61027261070c565b6040805196875260208701959095528585019390935260608501919091521515608084015260a0830152519081900360c00190f35b61023c600480360360608110156102bd57600080fd5b506001600160a01b0381358116916020810135909116906040013561081a565b610303600480360360208110156102f357600080fd5b50356001600160a01b03166108a1565b005b61030d610905565b6040805160ff9092168252519081900360200190f35b61025861090e565b61023c6004803603604081101561034157600080fd5b506001600160a01b038135169060200135610914565b6103036004803603604081101561036d57600080fd5b506001600160a01b038135169060200135610962565b610303600480360360a081101561039957600080fd5b813591602081013591604082013591908101906080810160608201356401000000008111156103c757600080fd5b8201836020820111156103d957600080fd5b803590602001918460208302840111640100000000831117156103fb57600080fd5b91935091503515156109c8565b610410610bb7565b604080516001600160a01b039092168252519081900360200190f35b6103036004803603606081101561044257600080fd5b6001600160a01b03823516919081019060408101602082013564010000000081111561046d57600080fd5b82018360208201111561047f57600080fd5b803590602001918460208302840111640100000000831117156104a157600080fd5b9193909290916020810190356401000000008111156104bf57600080fd5b8201836020820111156104d157600080fd5b803590602001918460208302840111640100000000831117156104f357600080fd5b509092509050610bc6565b6102586004803603602081101561051457600080fd5b50356001600160a01b0316610d16565b610303610d31565b610410610dd3565b61019b610de2565b610303610e43565b61023c6004803603602081101561055a57600080fd5b5035610ee5565b61023c6004803603604081101561057757600080fd5b506001600160a01b038135169060200135610f58565b6105aa600480360360208110156105a357600080fd5b5035610fc0565b6040805192835260208301919091528051918290030190f35b61023c600480360360408110156105d957600080fd5b506001600160a01b038135169060200135610feb565b610410610fff565b61025861100e565b6102586004803603604081101561061557600080fd5b506001600160a01b0381358116916020013516611014565b6103036004803603602081101561064357600080fd5b50356001600160a01b031661103f565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106df5780601f106106b4576101008083540402835291602001916106df565b820191906000526020600020905b8154815290600101906020018083116106c257829003601f168201915b5050505050905090565b60006106fd6106f66110a0565b84846110a4565b50600192915050565b60035490565b600080600080600080600060085411156107ff5760085460005b6007548110156107fc5760006007828154811061073f57fe5b9060005260206000209060040201905061076681600001548461119090919063ffffffff16565b92508242116107f35761077a826001611190565b8154600183015485906002850160006107916110a0565b6001600160a01b03168152602081019190915260400160009081205460ff169060038701906107be6110a0565b6001600160a01b03166001600160a01b0316815260200190815260200160002054985098509850985098509850505050610812565b50600101610726565b50505b5060009450849350839250829150819050805b909192939495565b60006108278484846111f1565b610897846108336110a0565b61089285604051806060016040528060288152602001611a28602891396001600160a01b038a166000908152600260205260408120906108716110a0565b6001600160a01b03168152602081019190915260400160002054919061134e565b6110a4565b5060019392505050565b6108a96110a0565b600a546001600160a01b039081169116146108f9576040805162461bcd60e51b815260206004820152601d60248201526000805160206119e2833981519152604482015290519081900360640190fd5b610902816113e5565b50565b60065460ff1690565b600b5490565b60006106fd6109216110a0565b8461089285600260006109326110a0565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611190565b61096a6110a0565b6000546001600160a01b039081169116146109ba576040805162461bcd60e51b81526020600482018190526024820152600080516020611a50833981519152604482015290519081900360640190fd5b6109c48282611486565b5050565b6109d06110a0565b600a546001600160a01b03908116911614610a20576040805162461bcd60e51b815260206004820152601d60248201526000805160206119e2833981519152604482015290519081900360640190fd5b6007548610610a66576040805162461bcd60e51b815260206004820152600d60248201526c092dcecc2d8d2c840d2dcc8caf609b1b604482015290519081900360640190fd5b60008411610aaf576040805162461bcd60e51b8152602060048201526011602482015270092dcecc2d8d2c840c2dadeeadce89ac2f607b1b604482015290519081900360640190fd5b60078681548110610abc57fe5b9060005260206000209060040201600001548514610af4578460078781548110610ae257fe5b60009182526020909120600490910201555b60078681548110610b0157fe5b9060005260206000209060040201600101548414610b3d578360078781548110610b2757fe5b9060005260206000209060040201600101819055505b60005b82811015610bae578160078881548110610b5657fe5b90600052602060002090600402016002016000868685818110610b7557fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff1916911515919091179055600101610b40565b50505050505050565b6009546001600160a01b031681565b610bce6110a0565b600a546001600160a01b03908116911614610c1e576040805162461bcd60e51b815260206004820152601d60248201526000805160206119e2833981519152604482015290519081900360640190fd5b828114610c69576040805162461bcd60e51b8152602060048201526014602482015273496e76616c69642077686974656c69737428732960601b604482015290519081900360640190fd5b600980546001600160a01b0319166001600160a01b0387161790558215610d0f57610c9660076000611915565b60005b83811015610d0d5760076040518060400160405280878785818110610cba57fe5b905060200201358152602001858585818110610cd257fe5b602090810292909201359092528354600181810186556000958652948290208451600490920201908155920151918301919091555001610c99565b505b5050505050565b6001600160a01b031660009081526001602052604090205490565b610d396110a0565b6000546001600160a01b03908116911614610d89576040805162461bcd60e51b81526020600482018190526024820152600080516020611a50833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106df5780601f106106b4576101008083540402835291602001916106df565b610e4b6110a0565b600a546001600160a01b03908116911614610e9b576040805162461bcd60e51b815260206004820152601d60248201526000805160206119e2833981519152604482015290519081900360640190fd5b600a546040516000916001600160a01b0316907f4e78506f3260e366dc9440ee0b4eca2d03aa91536b7605deb90e873d3fc4e5b4908390a3600a80546001600160a01b0319169055565b6000610eef6110a0565b6000546001600160a01b03908116911614610f3f576040805162461bcd60e51b81526020600482018190526024820152600080516020611a50833981519152604482015290519081900360640190fd5b610f50610f4a6110a0565b83611486565b506001919050565b60006106fd610f656110a0565b8461089285604051806060016040528060258152602001611adc6025913960026000610f8f6110a0565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061134e565b60078181548110610fcd57fe5b60009182526020909120600490910201805460019091015490915082565b60006106fd610ff86110a0565b84846111f1565b600a546001600160a01b031681565b60085481565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6110476110a0565b6000546001600160a01b03908116911614611097576040805162461bcd60e51b81526020600482018190526024820152600080516020611a50833981519152604482015290519081900360640190fd5b61090281611578565b3390565b6001600160a01b0383166110e95760405162461bcd60e51b8152600401808060200182810382526024815260200180611ab86024913960400191505060405180910390fd5b6001600160a01b03821661112e5760405162461bcd60e51b815260040180806020018281038252602281526020018061199a6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000828201838110156111ea576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b0383166112365760405162461bcd60e51b8152600401808060200182810382526025815260200180611a706025913960400191505060405180910390fd5b6001600160a01b03821661127b5760405162461bcd60e51b81526004018080602001828103825260238152602001806119516023913960400191505060405180910390fd5b611286838383611618565b6112c3816040518060600160405280602681526020016119bc602691396001600160a01b038616600090815260016020526040902054919061134e565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546112f29082611190565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156113dd5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156113a257818101518382015260200161138a565b50505050905090810190601f1680156113cf5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b03811661142a5760405162461bcd60e51b8152600401808060200182810382526023815260200180611a956023913960400191505060405180910390fd5b600a546040516001600160a01b038084169216907f4e78506f3260e366dc9440ee0b4eca2d03aa91536b7605deb90e873d3fc4e5b490600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0382166114e1576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6114ed60008383611618565b6003546114fa9082611190565b6003556001600160a01b0382166000908152600160205260409020546115209082611190565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b0381166115bd5760405162461bcd60e51b81526004018080602001828103825260268152602001806119746026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6116238383836116a1565b61162e83838361169c565b6001600160a01b03831661169c57600b5481611648610706565b01111561169c576040805162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b505050565b6009546001600160a01b031615806116b95750600754155b156116c35761169c565b6008541580156116e157506009546001600160a01b03848116911614155b80156116fa57506009546001600160a01b038381169116145b80156117065750600081115b1561171057426008555b6009546001600160a01b03848116911614801561173b57506009546001600160a01b03838116911614155b1561169c57600061174a61070c565b5050505050905060008111156118cd57600060076117698360016118d3565b8154811061177357fe5b600091825260208083206001600160a01b03881684526002600490930201918201905260409091205490915060ff166117f3576040805162461bcd60e51b815260206004820152601e60248201527f4c4745202d204275796572206973206e6f742077686974656c69737465640000604482015290519081900360640190fd5b60018101546001600160a01b038516600090815260038301602052604081205490911115611847576001600160a01b03851660009081526003830160205260409020546001830154611844916118d3565b90505b808411156118865760405162461bcd60e51b8152600401808060200182810382526026815260200180611a026026913960400191505060405180910390fd5b6001600160a01b03851660009081526003830160205260409020546118ab9085611190565b6001600160a01b03861660009081526003909301602052604090922091909155505b50505050565b60006111ea83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061134e565b508054600082556004029060005260206000209081019061090291905b8082111561194c5760008082556001820155600401611932565b509056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636543616c6c6572206973206e6f74207468652077686974656c69737465720000004c4745202d20416d6f756e7420657863656564732077686974656c697374206d6178696d756d45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734e65772077686974656c697374657220697320746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b7ffda33bce6139ebd3d0222f63280b9901683f7050eb3f814e607e5ebb30c5a64736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c806370a08231116100de578063a457c2d711610097578063d5215d1111610071578063d5215d11146105ef578063da91b76e146105f7578063dd62ed3e146105ff578063f2fde38b1461062d5761018e565b8063a457c2d714610561578063a77cac7a1461058d578063a9059cbb146105c35761018e565b806370a08231146104fe578063715018a6146105245780638da5cb5b1461052c57806395d89b41146105345780639ad3a7ba1461053c578063a0712d68146105445761018e565b8063313ce5671161014b57806340c10f191161012557806340c10f191461035757806344ade3c5146103835780634944889814610408578063532f1fed1461042c5761018e565b8063313ce56714610305578063355274ea14610323578063395093511461032b5761018e565b806306fdde0314610193578063095ea7b31461021057806318160ddd146102505780631b29b0cd1461026a57806323b872dd146102a75780632e15e5c7146102dd575b600080fd5b61019b610653565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d55781810151838201526020016101bd565b50505050905090810190601f1680156102025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61023c6004803603604081101561022657600080fd5b506001600160a01b0381351690602001356106e9565b604080519115158252519081900360200190f35b610258610706565b60408051918252519081900360200190f35b61027261070c565b6040805196875260208701959095528585019390935260608501919091521515608084015260a0830152519081900360c00190f35b61023c600480360360608110156102bd57600080fd5b506001600160a01b0381358116916020810135909116906040013561081a565b610303600480360360208110156102f357600080fd5b50356001600160a01b03166108a1565b005b61030d610905565b6040805160ff9092168252519081900360200190f35b61025861090e565b61023c6004803603604081101561034157600080fd5b506001600160a01b038135169060200135610914565b6103036004803603604081101561036d57600080fd5b506001600160a01b038135169060200135610962565b610303600480360360a081101561039957600080fd5b813591602081013591604082013591908101906080810160608201356401000000008111156103c757600080fd5b8201836020820111156103d957600080fd5b803590602001918460208302840111640100000000831117156103fb57600080fd5b91935091503515156109c8565b610410610bb7565b604080516001600160a01b039092168252519081900360200190f35b6103036004803603606081101561044257600080fd5b6001600160a01b03823516919081019060408101602082013564010000000081111561046d57600080fd5b82018360208201111561047f57600080fd5b803590602001918460208302840111640100000000831117156104a157600080fd5b9193909290916020810190356401000000008111156104bf57600080fd5b8201836020820111156104d157600080fd5b803590602001918460208302840111640100000000831117156104f357600080fd5b509092509050610bc6565b6102586004803603602081101561051457600080fd5b50356001600160a01b0316610d16565b610303610d31565b610410610dd3565b61019b610de2565b610303610e43565b61023c6004803603602081101561055a57600080fd5b5035610ee5565b61023c6004803603604081101561057757600080fd5b506001600160a01b038135169060200135610f58565b6105aa600480360360208110156105a357600080fd5b5035610fc0565b6040805192835260208301919091528051918290030190f35b61023c600480360360408110156105d957600080fd5b506001600160a01b038135169060200135610feb565b610410610fff565b61025861100e565b6102586004803603604081101561061557600080fd5b506001600160a01b0381358116916020013516611014565b6103036004803603602081101561064357600080fd5b50356001600160a01b031661103f565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106df5780601f106106b4576101008083540402835291602001916106df565b820191906000526020600020905b8154815290600101906020018083116106c257829003601f168201915b5050505050905090565b60006106fd6106f66110a0565b84846110a4565b50600192915050565b60035490565b600080600080600080600060085411156107ff5760085460005b6007548110156107fc5760006007828154811061073f57fe5b9060005260206000209060040201905061076681600001548461119090919063ffffffff16565b92508242116107f35761077a826001611190565b8154600183015485906002850160006107916110a0565b6001600160a01b03168152602081019190915260400160009081205460ff169060038701906107be6110a0565b6001600160a01b03166001600160a01b0316815260200190815260200160002054985098509850985098509850505050610812565b50600101610726565b50505b5060009450849350839250829150819050805b909192939495565b60006108278484846111f1565b610897846108336110a0565b61089285604051806060016040528060288152602001611a28602891396001600160a01b038a166000908152600260205260408120906108716110a0565b6001600160a01b03168152602081019190915260400160002054919061134e565b6110a4565b5060019392505050565b6108a96110a0565b600a546001600160a01b039081169116146108f9576040805162461bcd60e51b815260206004820152601d60248201526000805160206119e2833981519152604482015290519081900360640190fd5b610902816113e5565b50565b60065460ff1690565b600b5490565b60006106fd6109216110a0565b8461089285600260006109326110a0565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611190565b61096a6110a0565b6000546001600160a01b039081169116146109ba576040805162461bcd60e51b81526020600482018190526024820152600080516020611a50833981519152604482015290519081900360640190fd5b6109c48282611486565b5050565b6109d06110a0565b600a546001600160a01b03908116911614610a20576040805162461bcd60e51b815260206004820152601d60248201526000805160206119e2833981519152604482015290519081900360640190fd5b6007548610610a66576040805162461bcd60e51b815260206004820152600d60248201526c092dcecc2d8d2c840d2dcc8caf609b1b604482015290519081900360640190fd5b60008411610aaf576040805162461bcd60e51b8152602060048201526011602482015270092dcecc2d8d2c840c2dadeeadce89ac2f607b1b604482015290519081900360640190fd5b60078681548110610abc57fe5b9060005260206000209060040201600001548514610af4578460078781548110610ae257fe5b60009182526020909120600490910201555b60078681548110610b0157fe5b9060005260206000209060040201600101548414610b3d578360078781548110610b2757fe5b9060005260206000209060040201600101819055505b60005b82811015610bae578160078881548110610b5657fe5b90600052602060002090600402016002016000868685818110610b7557fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff1916911515919091179055600101610b40565b50505050505050565b6009546001600160a01b031681565b610bce6110a0565b600a546001600160a01b03908116911614610c1e576040805162461bcd60e51b815260206004820152601d60248201526000805160206119e2833981519152604482015290519081900360640190fd5b828114610c69576040805162461bcd60e51b8152602060048201526014602482015273496e76616c69642077686974656c69737428732960601b604482015290519081900360640190fd5b600980546001600160a01b0319166001600160a01b0387161790558215610d0f57610c9660076000611915565b60005b83811015610d0d5760076040518060400160405280878785818110610cba57fe5b905060200201358152602001858585818110610cd257fe5b602090810292909201359092528354600181810186556000958652948290208451600490920201908155920151918301919091555001610c99565b505b5050505050565b6001600160a01b031660009081526001602052604090205490565b610d396110a0565b6000546001600160a01b03908116911614610d89576040805162461bcd60e51b81526020600482018190526024820152600080516020611a50833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106df5780601f106106b4576101008083540402835291602001916106df565b610e4b6110a0565b600a546001600160a01b03908116911614610e9b576040805162461bcd60e51b815260206004820152601d60248201526000805160206119e2833981519152604482015290519081900360640190fd5b600a546040516000916001600160a01b0316907f4e78506f3260e366dc9440ee0b4eca2d03aa91536b7605deb90e873d3fc4e5b4908390a3600a80546001600160a01b0319169055565b6000610eef6110a0565b6000546001600160a01b03908116911614610f3f576040805162461bcd60e51b81526020600482018190526024820152600080516020611a50833981519152604482015290519081900360640190fd5b610f50610f4a6110a0565b83611486565b506001919050565b60006106fd610f656110a0565b8461089285604051806060016040528060258152602001611adc6025913960026000610f8f6110a0565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061134e565b60078181548110610fcd57fe5b60009182526020909120600490910201805460019091015490915082565b60006106fd610ff86110a0565b84846111f1565b600a546001600160a01b031681565b60085481565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6110476110a0565b6000546001600160a01b03908116911614611097576040805162461bcd60e51b81526020600482018190526024820152600080516020611a50833981519152604482015290519081900360640190fd5b61090281611578565b3390565b6001600160a01b0383166110e95760405162461bcd60e51b8152600401808060200182810382526024815260200180611ab86024913960400191505060405180910390fd5b6001600160a01b03821661112e5760405162461bcd60e51b815260040180806020018281038252602281526020018061199a6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000828201838110156111ea576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b0383166112365760405162461bcd60e51b8152600401808060200182810382526025815260200180611a706025913960400191505060405180910390fd5b6001600160a01b03821661127b5760405162461bcd60e51b81526004018080602001828103825260238152602001806119516023913960400191505060405180910390fd5b611286838383611618565b6112c3816040518060600160405280602681526020016119bc602691396001600160a01b038616600090815260016020526040902054919061134e565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546112f29082611190565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156113dd5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156113a257818101518382015260200161138a565b50505050905090810190601f1680156113cf5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b03811661142a5760405162461bcd60e51b8152600401808060200182810382526023815260200180611a956023913960400191505060405180910390fd5b600a546040516001600160a01b038084169216907f4e78506f3260e366dc9440ee0b4eca2d03aa91536b7605deb90e873d3fc4e5b490600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0382166114e1576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6114ed60008383611618565b6003546114fa9082611190565b6003556001600160a01b0382166000908152600160205260409020546115209082611190565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b0381166115bd5760405162461bcd60e51b81526004018080602001828103825260268152602001806119746026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6116238383836116a1565b61162e83838361169c565b6001600160a01b03831661169c57600b5481611648610706565b01111561169c576040805162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b505050565b6009546001600160a01b031615806116b95750600754155b156116c35761169c565b6008541580156116e157506009546001600160a01b03848116911614155b80156116fa57506009546001600160a01b038381169116145b80156117065750600081115b1561171057426008555b6009546001600160a01b03848116911614801561173b57506009546001600160a01b03838116911614155b1561169c57600061174a61070c565b5050505050905060008111156118cd57600060076117698360016118d3565b8154811061177357fe5b600091825260208083206001600160a01b03881684526002600490930201918201905260409091205490915060ff166117f3576040805162461bcd60e51b815260206004820152601e60248201527f4c4745202d204275796572206973206e6f742077686974656c69737465640000604482015290519081900360640190fd5b60018101546001600160a01b038516600090815260038301602052604081205490911115611847576001600160a01b03851660009081526003830160205260409020546001830154611844916118d3565b90505b808411156118865760405162461bcd60e51b8152600401808060200182810382526026815260200180611a026026913960400191505060405180910390fd5b6001600160a01b03851660009081526003830160205260409020546118ab9085611190565b6001600160a01b03861660009081526003909301602052604090922091909155505b50505050565b60006111ea83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061134e565b508054600082556004029060005260206000209081019061090291905b8082111561194c5760008082556001820155600401611932565b509056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636543616c6c6572206973206e6f74207468652077686974656c69737465720000004c4745202d20416d6f756e7420657863656564732077686974656c697374206d6178696d756d45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734e65772077686974656c697374657220697320746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b7ffda33bce6139ebd3d0222f63280b9901683f7050eb3f814e607e5ebb30c5a64736f6c634300060c0033

Deployed Bytecode Sourcemap

35155:878:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27014:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28501:161;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28501:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;27490:100;;;:::i;:::-;;;;;;;;;;;;;;;;22654:804;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29133:397;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29133:397:0;;;;;;;;;;;;;;;;;:::i;19767:133::-;;;;;;;;;;;;;;;;-1:-1:-1;19767:133:0;-1:-1:-1;;;;;19767:133:0;;:::i;:::-;;27173:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35272:75;;;:::i;29938:210::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29938:210:0;;;;;;;;:::i;35929:99::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35929:99:0;;;;;;;;:::i;21485:700::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21485:700:0;-1:-1:-1;21485:700:0;;;;:::i;19176:30::-;;;:::i;:::-;;;;-1:-1:-1;;;;;19176:30:0;;;;;;;;;;;;;;20542:573;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20542:573:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20542:573:0;;-1:-1:-1;20542:573:0;-1:-1:-1;20542:573:0;:::i;27652:119::-;;;;;;;;;;;;;;;;-1:-1:-1;27652:119:0;-1:-1:-1;;;;;27652:119:0;;:::i;2742:140::-;;;:::i;2100:79::-;;;:::i;27330:96::-;;;:::i;19591:164::-;;;:::i;31179:130::-;;;;;;;;;;;;;;;;-1:-1:-1;31179:130:0;;:::i;30650:311::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30650:311:0;;;;;;;;:::i;19085:43::-;;;;;;;;;;;;;;;;-1:-1:-1;19085:43:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;27983:167;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27983:167:0;;;;;;;;:::i;19219:27::-;;;:::i;19141:28::-;;;:::i;28212:143::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28212:143:0;;;;;;;;;;:::i;3037:109::-;;;;;;;;;;;;;;;;-1:-1:-1;3037:109:0;-1:-1:-1;;;;;3037:109:0;;:::i;27014:92::-;27093:5;27086:12;;;;;;;;-1:-1:-1;;27086:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27060:13;;27086:12;;27093:5;;27086:12;;27093:5;27086:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27014:92;:::o;28501:161::-;28576:4;28593:39;28602:12;:10;:12::i;:::-;28616:7;28625:6;28593:8;:39::i;:::-;-1:-1:-1;28650:4:0;28501:161;;;;:::o;27490:100::-;27570:12;;27490:100;:::o;22654:804::-;22707:7;22716;22725;22734;22743:4;22749:7;22798:1;22782:13;;:17;22779:622;;;22861:13;;22830:28;22899:481;22923:19;:26;22919:30;;22899:481;;;22993:30;23026:19;23046:1;23026:22;;;;;;;;;;;;;;;;;;22993:55;;23108:42;23133:7;:16;;;23108:20;:24;;:42;;;;:::i;:::-;23085:65;;23179:20;23172:3;:27;23169:195;;23230:8;:1;23236;23230:5;:8::i;:::-;23240:16;;23280:17;;;;23258:20;;23299:17;;;23240:16;23317:12;:10;:12::i;:::-;-1:-1:-1;;;;;23299:31:0;;;;;;;;;;;;-1:-1:-1;23299:31:0;;;;;;;23332:17;;;;23350:12;:10;:12::i;:::-;-1:-1:-1;;;;;23332:31:0;-1:-1:-1;;;;;23332:31:0;;;;;;;;;;;;;23222:142;;;;;;;;;;;;;;;;;23169:195;-1:-1:-1;22951:3:0;;22899:481;;;;22779:622;;-1:-1:-1;23429:1:0;;-1:-1:-1;23429:1:0;;-1:-1:-1;23429:1:0;;-1:-1:-1;23429:1:0;;-1:-1:-1;23429:1:0;;-1:-1:-1;23429:1:0;22654:804;;;;;;;:::o;29133:397::-;29265:4;29282:36;29292:6;29300:9;29311:6;29282:9;:36::i;:::-;29329:171;29352:6;29373:12;:10;:12::i;:::-;29400:89;29438:6;29400:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29400:19:0;;;;;;:11;:19;;;;;;29420:12;:10;:12::i;:::-;-1:-1:-1;;;;;29400:33:0;;;;;;;;;;;;-1:-1:-1;29400:33:0;;;:89;:37;:89::i;:::-;29329:8;:171::i;:::-;-1:-1:-1;29518:4:0;29133:397;;;;;:::o;19767:133::-;19513:12;:10;:12::i;:::-;19497;;-1:-1:-1;;;;;19497:12:0;;;:28;;;19489:70;;;;;-1:-1:-1;;;19489:70:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19489:70:0;;;;;;;;;;;;;;;19856:36:::1;19877:14;19856:20;:36::i;:::-;19767:133:::0;:::o;27173:92::-;27248:9;;;;27173:92;:::o;35272:75::-;35335:4;;35272:75;:::o;29938:210::-;30018:4;30035:83;30044:12;:10;:12::i;:::-;30058:7;30067:50;30106:10;30067:11;:25;30079:12;:10;:12::i;:::-;-1:-1:-1;;;;;30067:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30067:25:0;;;:34;;;;;;;;;;;:38;:50::i;35929:99::-;2322:12;:10;:12::i;:::-;2312:6;;-1:-1:-1;;;;;2312:6:0;;;:22;;;2304:67;;;;;-1:-1:-1;;;2304:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2304:67:0;;;;;;;;;;;;;;;36001:19:::1;36007:3;36012:7;36001:5;:19::i;:::-;35929:99:::0;;:::o;21485:700::-;19513:12;:10;:12::i;:::-;19497;;-1:-1:-1;;;;;19497:12:0;;;:28;;;19489:70;;;;;-1:-1:-1;;;19489:70:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19489:70:0;;;;;;;;;;;;;;;21663:19:::1;:26:::0;21655:34;::::1;21647:60;;;::::0;;-1:-1:-1;;;21647:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;21647:60:0;;;;;;;;;;;;;::::1;;21738:1;21726:9;:13;21718:43;;;::::0;;-1:-1:-1;;;21718:43:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;21718:43:0;;;;;;;;;;;;;::::1;;21789:19;21809:5;21789:26;;;;;;;;;;;;;;;;;;:35;;;21777:8;:47;21774:111;;21877:8;21839:19;21859:5;21839:26;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;;:46:::0;21774:111:::1;21922:19;21942:5;21922:26;;;;;;;;;;;;;;;;;;:36;;;21909:9;:49;21906:117;;22014:9;21975:19;21995:5;21975:26;;;;;;;;;;;;;;;;;;:36;;:48;;;;21906:117;22049:9;22044:134;22064:20:::0;;::::1;22044:134;;;22159:7;22106:19;22126:5;22106:26;;;;;;;;;;;;;;;;;;:36;;:50;22143:9;;22153:1;22143:12;;;;;;;;::::0;;::::1;::::0;;;::::1;;-1:-1:-1::0;;;;;22143:12:0::1;22106:50:::0;;-1:-1:-1;22106:50:0;::::1;::::0;;;;;;-1:-1:-1;22106:50:0;:60;;-1:-1:-1;;22106:60:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;22086:3:0::1;22044:134;;;;21485:700:::0;;;;;;:::o;19176:30::-;;;-1:-1:-1;;;;;19176:30:0;;:::o;20542:573::-;19513:12;:10;:12::i;:::-;19497;;-1:-1:-1;;;;;19497:12:0;;;:28;;;19489:70;;;;;-1:-1:-1;;;19489:70:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19489:70:0;;;;;;;;;;;;;;;20698:37;;::::1;20690:70;;;::::0;;-1:-1:-1;;;20690:70:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;20690:70:0;;;;;;;;;;;;;::::1;;20781:15;:29:::0;;-1:-1:-1;;;;;;20781:29:0::1;-1:-1:-1::0;;;;;20781:29:0;::::1;;::::0;;20834:20;;20831:277:::1;;20885:26;20892:19;;20885:26;:::i;:::-;20941:9;20936:151;20956:20:::0;;::::1;20936:151;;;21002:19;21027:43;;;;;;;;21042:9;;21052:1;21042:12;;;;;;;;;;;;;21027:43;;;;21056:10;;21067:1;21056:13;;;;;;;;::::0;;::::1;::::0;;;::::1;;21027:43:::0;;;21002:69;;::::1;::::0;;::::1;::::0;;-1:-1:-1;21002:69:0;;;;;;;;;::::1;::::0;;::::1;;::::0;;;;::::1;::::0;;;::::1;::::0;;;;-1:-1:-1;20978:3:0::1;20936:151;;;;20831:277;20542:573:::0;;;;;:::o;27652:119::-;-1:-1:-1;;;;;27745:18:0;27718:7;27745:18;;;:9;:18;;;;;;;27652:119::o;2742:140::-;2322:12;:10;:12::i;:::-;2312:6;;-1:-1:-1;;;;;2312:6:0;;;:22;;;2304:67;;;;;-1:-1:-1;;;2304:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2304:67:0;;;;;;;;;;;;;;;2841:1:::1;2825:6:::0;;2804:40:::1;::::0;-1:-1:-1;;;;;2825:6:0;;::::1;::::0;2804:40:::1;::::0;2841:1;;2804:40:::1;2872:1;2855:19:::0;;-1:-1:-1;;;;;;2855:19:0::1;::::0;;2742:140::o;2100:79::-;2138:7;2165:6;-1:-1:-1;;;;;2165:6:0;2100:79;:::o;27330:96::-;27411:7;27404:14;;;;;;;;-1:-1:-1;;27404:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27378:13;;27404:14;;27411:7;;27404:14;;27411:7;27404:14;;;;;;;;;;;;;;;;;;;;;;;;19591:164;19513:12;:10;:12::i;:::-;19497;;-1:-1:-1;;;;;19497:12:0;;;:28;;;19489:70;;;;;-1:-1:-1;;;19489:70:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19489:70:0;;;;;;;;;;;;;;;19686:12:::1;::::0;19663:48:::1;::::0;19708:1:::1;::::0;-1:-1:-1;;;;;19686:12:0::1;::::0;19663:48:::1;::::0;19708:1;;19663:48:::1;19722:12;:25:::0;;-1:-1:-1;;;;;;19722:25:0::1;::::0;;19591:164::o;31179:130::-;31235:4;2322:12;:10;:12::i;:::-;2312:6;;-1:-1:-1;;;;;2312:6:0;;;:22;;;2304:67;;;;;-1:-1:-1;;;2304:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2304:67:0;;;;;;;;;;;;;;;31252:27:::1;31258:12;:10;:12::i;:::-;31272:6;31252:5;:27::i;:::-;-1:-1:-1::0;31297:4:0::1;31179:130:::0;;;:::o;30650:311::-;30735:4;30752:179;30775:12;:10;:12::i;:::-;30802:7;30824:96;30863:15;30824:96;;;;;;;;;;;;;;;;;:11;:25;30836:12;:10;:12::i;:::-;-1:-1:-1;;;;;30824:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30824:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;19085:43::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19085:43:0;:::o;27983:167::-;28061:4;28078:42;28088:12;:10;:12::i;:::-;28102:9;28113:6;28078:9;:42::i;19219:27::-;;;-1:-1:-1;;;;;19219:27:0;;:::o;19141:28::-;;;;:::o;28212:143::-;-1:-1:-1;;;;;28320:18:0;;;28293:7;28320:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;28212:143::o;3037:109::-;2322:12;:10;:12::i;:::-;2312:6;;-1:-1:-1;;;;;2312:6:0;;;:22;;;2304:67;;;;;-1:-1:-1;;;2304:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2304:67:0;;;;;;;;;;;;;;;3110:28:::1;3129:8;3110:18;:28::i;750:98::-:0;830:10;750:98;:::o;34208:372::-;-1:-1:-1;;;;;34336:19:0;;34328:68;;;;-1:-1:-1;;;34328:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34415:21:0;;34407:68;;;;-1:-1:-1;;;34407:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34488:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;34540:32;;;;;;;;;;;;;;;;;34208:372;;;:::o;7367:181::-;7425:7;7457:5;;;7481:6;;;;7473:46;;;;;-1:-1:-1;;;7473:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;7539:1;7367:181;-1:-1:-1;;;7367:181:0:o;31799:567::-;-1:-1:-1;;;;;31931:20:0;;31923:70;;;;-1:-1:-1;;;31923:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32012:23:0;;32004:71;;;;-1:-1:-1;;;32004:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32088:47;32109:6;32117:9;32128:6;32088:20;:47::i;:::-;32170:71;32192:6;32170:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32170:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;32150:17:0;;;;;;;:9;:17;;;;;;:91;;;;32275:20;;;;;;;:32;;32300:6;32275:24;:32::i;:::-;-1:-1:-1;;;;;32252:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;32323:35;;;;;;;32252:20;;32323:35;;;;;;;;;;;;;31799:567;;;:::o;8270:226::-;8390:7;8426:12;8418:6;;;;8410:29;;;;-1:-1:-1;;;8410:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;8462:5:0;;;8270:226::o;19912:266::-;-1:-1:-1;;;;;19994:28:0;;19986:76;;;;-1:-1:-1;;;19986:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20101:12;;20078:52;;-1:-1:-1;;;;;20078:52:0;;;;20101:12;;20078:52;;20101:12;;20078:52;20141:12;:29;;-1:-1:-1;;;;;;20141:29:0;-1:-1:-1;;;;;20141:29:0;;;;;;;;;;19912:266::o;32647:371::-;-1:-1:-1;;;;;32723:21:0;;32715:65;;;;;-1:-1:-1;;;32715:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;32793:49;32822:1;32826:7;32835:6;32793:20;:49::i;:::-;32871:12;;:24;;32888:6;32871:16;:24::i;:::-;32856:12;:39;-1:-1:-1;;;;;32927:18:0;;;;;;:9;:18;;;;;;:30;;32950:6;32927:22;:30::i;:::-;-1:-1:-1;;;;;32906:18:0;;;;;;:9;:18;;;;;;;;:51;;;;32973:37;;;;;;;32906:18;;;;32973:37;;;;;;;;;;32647:371;;:::o;3252:229::-;-1:-1:-1;;;;;3326:22:0;;3318:73;;;;-1:-1:-1;;;3318:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3428:6;;;3407:38;;-1:-1:-1;;;;;3407:38:0;;;;3428:6;;;3407:38;;;3456:6;:17;;-1:-1:-1;;;;;;3456:17:0;-1:-1:-1;;;;;3456:17:0;;;;;;;;;;3252:229::o;35534:387::-;35653:51;35687:4;35693:2;35697:6;35653:33;:51::i;:::-;35715:44;35742:4;35748:2;35752:6;35715:26;:44::i;:::-;-1:-1:-1;;;;;35776:18:0;;35772:142;;35868:4;;35858:6;35842:13;:11;:13::i;:::-;:22;:30;;35834:68;;;;;-1:-1:-1;;;35834:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;35534:387;;;:::o;23593:1312::-;23705:15;;-1:-1:-1;;;;;23705:15:0;:29;;:64;;-1:-1:-1;23738:19:0;:26;:31;23705:64;23702:89;;;23784:7;;23702:89;23814:13;;:18;:47;;;;-1:-1:-1;23846:15:0;;-1:-1:-1;;;;;23836:25:0;;;23846:15;;23836:25;;23814:47;:79;;;;-1:-1:-1;23878:15:0;;-1:-1:-1;;;;;23865:28:0;;;23878:15;;23865:28;23814:79;:93;;;;;23906:1;23897:6;:10;23814:93;23811:130;;;23938:3;23922:13;:19;23811:130;23975:15;;-1:-1:-1;;;;;23965:25:0;;;23975:15;;23965:25;:57;;;;-1:-1:-1;24007:15:0;;-1:-1:-1;;;;;23994:28:0;;;24007:15;;23994:28;;23965:57;23962:926;;;24076:21;24106:22;:20;:22::i;:::-;24075:53;;;;;;;24172:1;24156:13;:17;24153:710;;;24212:30;24245:19;24265:20;:13;24283:1;24265:17;:20::i;:::-;24245:41;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24331:28:0;;;;:17;24245:41;;;;;24331:17;;;:28;;;;;;;24245:41;;-1:-1:-1;24331:28:0;;24323:71;;;;;-1:-1:-1;;;24323:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;24529:17;;;;-1:-1:-1;;;;;24498:28:0;;24431:23;24498:28;;;:17;;;:28;;;;;;24431:23;;-1:-1:-1;24495:143:0;;;-1:-1:-1;;;;;24609:28:0;;;;;;:17;;;:28;;;;;;24587:17;;;;:51;;:21;:51::i;:::-;24569:69;;24495:143;24681:15;24671:6;:25;;24663:76;;;;-1:-1:-1;;;24663:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24789:28:0;;;;;;:17;;;:28;;;;;;:40;;24822:6;24789:32;:40::i;:::-;-1:-1:-1;;;;;24758:28:0;;;;;;:17;;;;:28;;;;;;:71;;;;-1:-1:-1;24153:710:0;23962:926;23593:1312;;;:::o;7831:136::-;7889:7;7916:43;7920:1;7923;7916:43;;;;;;;;;;;;;;;;;:3;:43::i;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

ipfs://b7ffda33bce6139ebd3d0222f63280b9901683f7050eb3f814e607e5ebb30c5a
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.