ETH Price: $2,669.05 (+10.11%)
Gas: 1 Gwei

Token

Stabinol Token (STOL)
 

Overview

Max Total Supply

451,045.314739611815877749 STOL

Holders

252 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
56.682035833194159481 STOL

Value
$0.00
0xc2f394890de4c061e044202d0bf07712089a4fc0
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Ethereum cashback token that rewards users with STOL for qualifying ETH spends.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
StabinolToken

Compiler Version
v0.6.6+commit.6c089d02

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-02-19
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/GSN/Context.sol

pragma solidity ^0.6.0;

/*
 * 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.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

pragma solidity ^0.6.0;

/**
 * Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

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

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

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

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

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

    /**
     * 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/math/SafeMath.sol

pragma solidity ^0.6.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol

pragma solidity ^0.6.0;

/**
 * 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 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;
    address public claimerAddress = address(0);

    string private _name;
    string private _symbol;
    uint8 private _decimals;
    
    event ClaimerChanged(address indexed claimer);

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

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

    /**
     * Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }

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

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

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

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

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

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

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

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

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

        amount = _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);
    }

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

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }
    
    function _setClaimer(address newClaimer) internal virtual {
        require(newClaimer != address(0), "Claimer address must be set to something");
        claimerAddress = newClaimer;
        emit ClaimerChanged(claimerAddress);
    }

    /**
     * Tax `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 _tax(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: tax from the zero address");
        require(claimerAddress != address(0), "Claimer address must be set to something");

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _balances[claimerAddress] = _balances[claimerAddress].add(amount);
        emit Transfer(account, claimerAddress, amount);
    }

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

    /**
     * Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

    /**
     * Hook that is called before any transfer of tokens.
     *
     * 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:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual returns (uint256) { }
}

// File: @openzeppelin/contracts/access/Ownable.sol

pragma solidity ^0.6.0;

/**
 * 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 GovernanceTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit GovernanceTransferred(address(0), msgSender);
    }

    /**
     * Returns the address of the current owner.
     */
    function governance() public view returns (address) {
        return _owner;
    }

    /**
     * Throws if called by any account other than the owner.
     */
    modifier onlyGovernance() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function _transferGovernance(address newOwner) internal virtual onlyGovernance {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit GovernanceTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: contracts/StabinolToken.sol

pragma solidity =0.6.6;

// Stabilize Token with Governance.
contract StabinolToken is ERC20("Stabinol Token", "STOL"), Ownable {
    using SafeMath for uint256;

    // Variables
    uint256 constant DIVISION_FACTOR = 100000;
    uint256 constant TAX_EFFECTIVE = 500000e18; // The threshold at which the tax kicks in
    uint256 private effectiveMaxSupply = 1000000e18; // The default max supply of tokens
    uint256 public taxRate = 0; // Governance can update the tax rate as it gets closer to the max supply
    
    mapping (address => bool) public taxExemptAccounts; // Addresses that will not have a sender tax
    
    constructor() public {
        // We will mint 350,000 tokens to the deployer to use for the merkle airdrop, team and liquidity
        _mint(_msgSender(), 350000e18);
    }

    modifier onlyClaimer() {
        require(claimerAddress == _msgSender(), "Ownable: caller is not the claimer");
        _;
    }

    function getMaxSupply() external view returns (uint256) {
        return effectiveMaxSupply;
    }
    
    /// @notice Creates `_amount` token to `_to`. Must only be called by the claimer.
    function mint(address _to, uint256 _amount) external onlyClaimer returns (bool) {
        _mint(_to, _amount);
        require(totalSupply() <= effectiveMaxSupply, "Cannot mint any more tokens"); // After max supply is reached, claimer cannot claim anymore
        return true;
    }

    // This function will tax each non-exempt address the transfer fee
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override returns (uint256) {
        super._beforeTokenTransfer(from, to, amount); // Call parent hook
        if(taxExemptAccounts[from] == true){ return amount; } // No fee for certain accounts
        if(taxRate > 0 && totalSupply() > TAX_EFFECTIVE){
            // Tax is taken from sender balance. If sender balance not enough to cover transfer, tax taken from transferred amount
            // For contracts to calculate ideal fee when sending this token, use this equation: taxRate / (1 + taxRate) = withdrawFeeRate
            uint256 taxAmount = amount.mul(taxRate).div(DIVISION_FACTOR);
            if(taxAmount.add(amount) > balanceOf(from)){
                uint256 overage = taxAmount.add(amount).sub(balanceOf(from)); // The overage for the fee
                amount = amount.sub(overage);
            }
            _tax(from,taxAmount);
        }
        return amount;
    }
    
    // Now add some governance functions behind 24 hour timelock
    
    // Timelock variables
    // Timelock doesn't activate until claimer is set to a non-zero account
    
    uint256 private _timelockStart; // The start of the timelock to change governance variables
    uint256 private _timelockType; // The function that needs to be changed
    uint256 constant TIMELOCK_DURATION = 86400; // Timelock is 24 hours
    
    // Reusable timelock variables
    uint256 private _timelock_data;
    address private _timelock_address;
    
    modifier timelockConditionsMet(uint256 _type) {
        require(_timelockType == _type, "Timelock not acquired for this function");
        _timelockType = 0; // Reset the type once the timelock is used
        if(claimerAddress != address(0)){
            require(now >= _timelockStart + TIMELOCK_DURATION, "Timelock time not met");
        }
        _;
    }
    
    // Change the governance
    // --------------------
    function startChangeGovernance(address _address) external onlyGovernance {
        _timelockStart = now;
        _timelockType = 1;
        _timelock_address = _address;       
    }
    
    function finishChangeGovernance() external onlyGovernance timelockConditionsMet(1) {
        _transferGovernance(_timelock_address);
    }
    // --------------------
    
    // Used to change tax rate
    // --------------------
    function startChangeTaxRate(uint256 _percent) external onlyGovernance {
        _timelockStart = now;
        _timelockType = 2;
        _timelock_data = _percent;
    }
    
    function finishChangeTaxRate() external onlyGovernance timelockConditionsMet(2) {
        taxRate = _timelock_data;
    }
    // --------------------
    
    // Change the claimer address
    // --------------------
    function startChangeClaimer(address _address) external onlyGovernance {
        _timelockStart = now;
        _timelockType = 3;
        _timelock_address = _address;       
    }
    
    function finishChangeClaimer() external onlyGovernance timelockConditionsMet(3) {
        taxExemptAccounts[_timelock_address] = true;
        _setClaimer(_timelock_address);
    }
    // --------------------
    
    // Toggle whether an account is tax exempt or not
    // --------------------
    function startToggleTaxExempt(address _address) external onlyGovernance {
        _timelockStart = now;
        _timelockType = 4;
        _timelock_address = _address;       
    }
    
    function finishToggleTaxExempt() external onlyGovernance timelockConditionsMet(4) {
        if(taxExemptAccounts[_timelock_address] == true){
            taxExemptAccounts[_timelock_address] = false;
        }else{
            taxExemptAccounts[_timelock_address] = true;
        }
    }
    // --------------------
    
    // Used to change the effective max supply
    // --------------------
    function startChangeEffectiveSupply(uint256 _supply) external onlyGovernance {
        _timelockStart = now;
        _timelockType = 5;
        _timelock_data = _supply;
    }
    
    function finishChangeEffectiveSupply() external onlyGovernance timelockConditionsMet(5) {
        effectiveMaxSupply = _timelock_data;
    }
    // --------------------
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":"claimer","type":"address"}],"name":"ClaimerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"GovernanceTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"claimerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"finishChangeClaimer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"finishChangeEffectiveSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"finishChangeGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"finishChangeTaxRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"finishToggleTaxExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"governance","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"startChangeClaimer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"startChangeEffectiveSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"startChangeGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percent","type":"uint256"}],"name":"startChangeTaxRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"startToggleTaxExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"taxExemptAccounts","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"}]

6080604052600380546001600160a01b031916905569d3c21bcecceda100000060075560006008553480156200003457600080fd5b506040518060400160405280600e81526020016d29ba30b134b737b6102a37b5b2b760911b8152506040518060400160405280600481526020016314d513d360e21b815250816004908051906020019062000091929190620002c1565b508051620000a7906005906020840190620002c1565b50506006805460ff19166012179055506000620000cc6001600160e01b036200015916565b60068054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f5f56bee8cffbe9a78652a74a60705edede02af10b0bbb888ca44b79a0d42ce80908290a35062000153620001396001600160e01b036200015916565b694a1d89bb94865ec000006001600160e01b036200015e16565b62000363565b335b90565b6001600160a01b038216620001ba576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620001d6816002546200025f60201b620015261790919060201c565b6002556001600160a01b0382166000908152602081815260409091205462000209918390620015266200025f821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600082820183811015620002ba576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200030457805160ff191683800117855562000334565b8280016001018555821562000334579182015b828111156200033457825182559160200191906001019062000317565b506200034292915062000346565b5090565b6200015b91905b808211156200034257600081556001016200034d565b611d8a80620003736000396000f3fe608060405234801561001057600080fd5b50600436106101b95760003560e01c80635aa6e675116100f95780637c57166511610097578063a457c2d711610071578063a457c2d71461049f578063a9059cbb146104cb578063dd62ed3e146104f7578063ec096c5414610525576101b9565b80637c5716651461046957806394a3469a1461048f57806395d89b4114610497576101b9565b806370a08231116100d357806370a082311461040d578063771a3a1d146104335780637b1ba8b61461043b5780637bc4042614610443576101b9565b80635aa6e675146103bb57806365b768fa146103df5780636fecae2e146103e7576101b9565b80632f07eec91161016657806340c10f191161014057806340c10f191461034457806348d02328146103705780634c0f38c21461038d5780635a7f3cb614610395576101b9565b80632f07eec9146102f2578063313ce567146102fa5780633950935114610318576101b9565b80630e8cbb4b116101975780630e8cbb4b1461029a57806318160ddd146102a257806323b872dd146102bc576101b9565b806306fdde03146101be578063095ea7b31461023b5780630a48eb8c1461027b575b600080fd5b6101c661052d565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102005781810151838201526020016101e8565b50505050905090810190601f16801561022d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102676004803603604081101561025157600080fd5b506001600160a01b0381351690602001356105c3565b604080519115158252519081900360200190f35b6102986004803603602081101561029157600080fd5b50356105e1565b005b61029861064c565b6102aa61078c565b60408051918252519081900360200190f35b610267600480360360608110156102d257600080fd5b506001600160a01b03813581169160208101359091169060400135610792565b610298610820565b610302610932565b6040805160ff9092168252519081900360200190f35b6102676004803603604081101561032e57600080fd5b506001600160a01b03813516906020013561093b565b6102676004803603604081101561035a57600080fd5b506001600160a01b03813516906020013561098f565b6102986004803603602081101561038657600080fd5b5035610a4d565b6102aa610ab8565b610298600480360360208110156103ab57600080fd5b50356001600160a01b0316610abe565b6103c3610b53565b604080516001600160a01b039092168252519081900360200190f35b6103c3610b67565b610298600480360360208110156103fd57600080fd5b50356001600160a01b0316610b76565b6102aa6004803603602081101561042357600080fd5b50356001600160a01b0316610c0b565b6102aa610c26565b610298610c2c565b6102676004803603602081101561045957600080fd5b50356001600160a01b0316610dac565b6102986004803603602081101561047f57600080fd5b50356001600160a01b0316610dc1565b610298610e56565b6101c6610f68565b610267600480360360408110156104b557600080fd5b506001600160a01b038135169060200135610fc9565b610267600480360360408110156104e157600080fd5b506001600160a01b038135169060200135611037565b6102aa6004803603604081101561050d57600080fd5b506001600160a01b038135811691602001351661104b565b610298611076565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105b95780601f1061058e576101008083540402835291602001916105b9565b820191906000526020600020905b81548152906001019060200180831161059c57829003601f168201915b5050505050905090565b60006105d76105d0611194565b8484611198565b5060015b92915050565b6105e9611194565b60065461010090046001600160a01b0390811691161461063e576040805162461bcd60e51b81526020600482018190526024820152600080516020611cc7833981519152604482015290519081900360640190fd5b42600a556002600b55600c55565b610654611194565b60065461010090046001600160a01b039081169116146106a9576040805162461bcd60e51b81526020600482018190526024820152600080516020611cc7833981519152604482015290519081900360640190fd5b600380600b54146106eb5760405162461bcd60e51b8152600401808060200182810382526027815260200180611c576027913960400191505060405180910390fd5b6000600b556003546001600160a01b0316156107555762015180600a5401421015610755576040805162461bcd60e51b8152602060048201526015602482015274151a5b595b1bd8dac81d1a5b59481b9bdd081b595d605a1b604482015290519081900360640190fd5b600d80546001600160a01b039081166000908152600960205260409020805460ff1916600117905590546107899116611284565b50565b60025490565b600061079f848484611326565b610815846107ab611194565b61081085604051806060016040528060288152602001611c9f602891396001600160a01b038a166000908152600160205260408120906107e9611194565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61148f16565b611198565b5060015b9392505050565b610828611194565b60065461010090046001600160a01b0390811691161461087d576040805162461bcd60e51b81526020600482018190526024820152600080516020611cc7833981519152604482015290519081900360640190fd5b600580600b54146108bf5760405162461bcd60e51b8152600401808060200182810382526027815260200180611c576027913960400191505060405180910390fd5b6000600b556003546001600160a01b0316156109295762015180600a5401421015610929576040805162461bcd60e51b8152602060048201526015602482015274151a5b595b1bd8dac81d1a5b59481b9bdd081b595d605a1b604482015290519081900360640190fd5b50600c54600755565b60065460ff1690565b60006105d7610948611194565b846108108560016000610959611194565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61152616565b6000610999611194565b6003546001600160a01b039081169116146109e55760405162461bcd60e51b8152600401808060200182810382526022815260200180611b9f6022913960400191505060405180910390fd5b6109ef8383611580565b6007546109fa61078c565b11156105d7576040805162461bcd60e51b815260206004820152601b60248201527f43616e6e6f74206d696e7420616e79206d6f726520746f6b656e730000000000604482015290519081900360640190fd5b610a55611194565b60065461010090046001600160a01b03908116911614610aaa576040805162461bcd60e51b81526020600482018190526024820152600080516020611cc7833981519152604482015290519081900360640190fd5b42600a556005600b55600c55565b60075490565b610ac6611194565b60065461010090046001600160a01b03908116911614610b1b576040805162461bcd60e51b81526020600482018190526024820152600080516020611cc7833981519152604482015290519081900360640190fd5b42600a556001600b55600d805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b60065461010090046001600160a01b031690565b6003546001600160a01b031681565b610b7e611194565b60065461010090046001600160a01b03908116911614610bd3576040805162461bcd60e51b81526020600482018190526024820152600080516020611cc7833981519152604482015290519081900360640190fd5b42600a556003600b55600d805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6001600160a01b031660009081526020819052604090205490565b60085481565b610c34611194565b60065461010090046001600160a01b03908116911614610c89576040805162461bcd60e51b81526020600482018190526024820152600080516020611cc7833981519152604482015290519081900360640190fd5b600480600b5414610ccb5760405162461bcd60e51b8152600401808060200182810382526027815260200180611c576027913960400191505060405180910390fd5b6000600b556003546001600160a01b031615610d355762015180600a5401421015610d35576040805162461bcd60e51b8152602060048201526015602482015274151a5b595b1bd8dac81d1a5b59481b9bdd081b595d605a1b604482015290519081900360640190fd5b600d546001600160a01b031660009081526009602052604090205460ff16151560011415610d8457600d546001600160a01b03166000908152600960205260409020805460ff19169055610789565b600d546001600160a01b03166000908152600960205260409020805460ff1916600117905550565b60096020526000908152604090205460ff1681565b610dc9611194565b60065461010090046001600160a01b03908116911614610e1e576040805162461bcd60e51b81526020600482018190526024820152600080516020611cc7833981519152604482015290519081900360640190fd5b42600a556004600b55600d805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b610e5e611194565b60065461010090046001600160a01b03908116911614610eb3576040805162461bcd60e51b81526020600482018190526024820152600080516020611cc7833981519152604482015290519081900360640190fd5b600280600b5414610ef55760405162461bcd60e51b8152600401808060200182810382526027815260200180611c576027913960400191505060405180910390fd5b6000600b556003546001600160a01b031615610f5f5762015180600a5401421015610f5f576040805162461bcd60e51b8152602060048201526015602482015274151a5b595b1bd8dac81d1a5b59481b9bdd081b595d605a1b604482015290519081900360640190fd5b50600c54600855565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105b95780601f1061058e576101008083540402835291602001916105b9565b60006105d7610fd6611194565b8461081085604051806060016040528060258152602001611d306025913960016000611000611194565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61148f16565b60006105d7611044611194565b8484611326565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61107e611194565b60065461010090046001600160a01b039081169116146110d3576040805162461bcd60e51b81526020600482018190526024820152600080516020611cc7833981519152604482015290519081900360640190fd5b600180600b54146111155760405162461bcd60e51b8152600401808060200182810382526027815260200180611c576027913960400191505060405180910390fd5b6000600b556003546001600160a01b03161561117f5762015180600a540142101561117f576040805162461bcd60e51b8152602060048201526015602482015274151a5b595b1bd8dac81d1a5b59481b9bdd081b595d605a1b604482015290519081900360640190fd5b600d54610789906001600160a01b0316611670565b3390565b6001600160a01b0383166111dd5760405162461bcd60e51b8152600401808060200182810382526024815260200180611d0c6024913960400191505060405180910390fd5b6001600160a01b0382166112225760405162461bcd60e51b8152600401808060200182810382526022815260200180611be76022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0381166112c95760405162461bcd60e51b8152600401808060200182810382526028815260200180611c2f6028913960400191505060405180910390fd5b6003805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383811691909117918290556040519116907f70e1f29a97aa858ce785e48a42e40cd51020a45c8a2e4520272a6303585916a990600090a250565b6001600160a01b03831661136b5760405162461bcd60e51b8152600401808060200182810382526025815260200180611ce76025913960400191505060405180910390fd5b6001600160a01b0382166113b05760405162461bcd60e51b8152600401808060200182810382526023815260200180611b5a6023913960400191505060405180910390fd5b6113bb838383611790565b905061140081604051806060016040528060268152602001611c09602691396001600160a01b038616600090815260208190526040902054919063ffffffff61148f16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611435908263ffffffff61152616565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000818484111561151e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156114e35781810151838201526020016114cb565b50505050905090810190601f1680156115105780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610819576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0382166115db576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6002546115ee908263ffffffff61152616565b6002556001600160a01b03821660009081526020819052604090205461161a908263ffffffff61152616565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b611678611194565b60065461010090046001600160a01b039081169116146116cd576040805162461bcd60e51b81526020600482018190526024820152600080516020611cc7833981519152604482015290519081900360640190fd5b6001600160a01b0381166117125760405162461bcd60e51b8152600401808060200182810382526026815260200180611bc16026913960400191505060405180910390fd5b6006546040516001600160a01b0380841692610100900416907f5f56bee8cffbe9a78652a74a60705edede02af10b0bbb888ca44b79a0d42ce8090600090a3600680546001600160a01b03909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b600061179d848484611890565b506001600160a01b03841660009081526009602052604090205460ff161515600114156117cb575080610819565b60006008541180156117ed57506969e10de76676d08000006117eb61078c565b115b1561188957600061181c620186a06118106008548661189990919063ffffffff16565b9063ffffffff6118f216565b905061182785610c0b565b611837828563ffffffff61152616565b111561187d57600061186761184b87610c0b565b61185b848763ffffffff61152616565b9063ffffffff61193416565b9050611879848263ffffffff61193416565b9350505b6118878582611976565b505b5092915050565b60009392505050565b6000826118a8575060006105db565b828202828482816118b557fe5b04146108195760405162461bcd60e51b8152600401808060200182810382526021815260200180611c7e6021913960400191505060405180910390fd5b600061081983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611af4565b600061081983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061148f565b6001600160a01b0382166119d1576040805162461bcd60e51b815260206004820181905260248201527f45524332303a207461782066726f6d20746865207a65726f2061646472657373604482015290519081900360640190fd5b6003546001600160a01b0316611a185760405162461bcd60e51b8152600401808060200182810382526028815260200180611c2f6028913960400191505060405180910390fd5b611a5b81604051806060016040528060228152602001611b7d602291396001600160a01b038516600090815260208190526040902054919063ffffffff61148f16565b6001600160a01b038084166000908152602081905260408082209390935560035490911681522054611a93908263ffffffff61152616565b600380546001600160a01b03908116600090815260208181526040918290209490945591548251858152925190821693918616927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92908290030190a35050565b60008183611b435760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156114e35781810151838201526020016114cb565b506000838581611b4f57fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a2063616c6c6572206973206e6f742074686520636c61696d65724f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365436c61696d65722061646472657373206d7573742062652073657420746f20736f6d657468696e6754696d656c6f636b206e6f7420616371756972656420666f7220746869732066756e6374696f6e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c45d48b51cfbf51fb293d5c47f5e8b99ffa6f029553cb64286cfacba9b4afc9464736f6c63430006060033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101b95760003560e01c80635aa6e675116100f95780637c57166511610097578063a457c2d711610071578063a457c2d71461049f578063a9059cbb146104cb578063dd62ed3e146104f7578063ec096c5414610525576101b9565b80637c5716651461046957806394a3469a1461048f57806395d89b4114610497576101b9565b806370a08231116100d357806370a082311461040d578063771a3a1d146104335780637b1ba8b61461043b5780637bc4042614610443576101b9565b80635aa6e675146103bb57806365b768fa146103df5780636fecae2e146103e7576101b9565b80632f07eec91161016657806340c10f191161014057806340c10f191461034457806348d02328146103705780634c0f38c21461038d5780635a7f3cb614610395576101b9565b80632f07eec9146102f2578063313ce567146102fa5780633950935114610318576101b9565b80630e8cbb4b116101975780630e8cbb4b1461029a57806318160ddd146102a257806323b872dd146102bc576101b9565b806306fdde03146101be578063095ea7b31461023b5780630a48eb8c1461027b575b600080fd5b6101c661052d565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102005781810151838201526020016101e8565b50505050905090810190601f16801561022d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102676004803603604081101561025157600080fd5b506001600160a01b0381351690602001356105c3565b604080519115158252519081900360200190f35b6102986004803603602081101561029157600080fd5b50356105e1565b005b61029861064c565b6102aa61078c565b60408051918252519081900360200190f35b610267600480360360608110156102d257600080fd5b506001600160a01b03813581169160208101359091169060400135610792565b610298610820565b610302610932565b6040805160ff9092168252519081900360200190f35b6102676004803603604081101561032e57600080fd5b506001600160a01b03813516906020013561093b565b6102676004803603604081101561035a57600080fd5b506001600160a01b03813516906020013561098f565b6102986004803603602081101561038657600080fd5b5035610a4d565b6102aa610ab8565b610298600480360360208110156103ab57600080fd5b50356001600160a01b0316610abe565b6103c3610b53565b604080516001600160a01b039092168252519081900360200190f35b6103c3610b67565b610298600480360360208110156103fd57600080fd5b50356001600160a01b0316610b76565b6102aa6004803603602081101561042357600080fd5b50356001600160a01b0316610c0b565b6102aa610c26565b610298610c2c565b6102676004803603602081101561045957600080fd5b50356001600160a01b0316610dac565b6102986004803603602081101561047f57600080fd5b50356001600160a01b0316610dc1565b610298610e56565b6101c6610f68565b610267600480360360408110156104b557600080fd5b506001600160a01b038135169060200135610fc9565b610267600480360360408110156104e157600080fd5b506001600160a01b038135169060200135611037565b6102aa6004803603604081101561050d57600080fd5b506001600160a01b038135811691602001351661104b565b610298611076565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105b95780601f1061058e576101008083540402835291602001916105b9565b820191906000526020600020905b81548152906001019060200180831161059c57829003601f168201915b5050505050905090565b60006105d76105d0611194565b8484611198565b5060015b92915050565b6105e9611194565b60065461010090046001600160a01b0390811691161461063e576040805162461bcd60e51b81526020600482018190526024820152600080516020611cc7833981519152604482015290519081900360640190fd5b42600a556002600b55600c55565b610654611194565b60065461010090046001600160a01b039081169116146106a9576040805162461bcd60e51b81526020600482018190526024820152600080516020611cc7833981519152604482015290519081900360640190fd5b600380600b54146106eb5760405162461bcd60e51b8152600401808060200182810382526027815260200180611c576027913960400191505060405180910390fd5b6000600b556003546001600160a01b0316156107555762015180600a5401421015610755576040805162461bcd60e51b8152602060048201526015602482015274151a5b595b1bd8dac81d1a5b59481b9bdd081b595d605a1b604482015290519081900360640190fd5b600d80546001600160a01b039081166000908152600960205260409020805460ff1916600117905590546107899116611284565b50565b60025490565b600061079f848484611326565b610815846107ab611194565b61081085604051806060016040528060288152602001611c9f602891396001600160a01b038a166000908152600160205260408120906107e9611194565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61148f16565b611198565b5060015b9392505050565b610828611194565b60065461010090046001600160a01b0390811691161461087d576040805162461bcd60e51b81526020600482018190526024820152600080516020611cc7833981519152604482015290519081900360640190fd5b600580600b54146108bf5760405162461bcd60e51b8152600401808060200182810382526027815260200180611c576027913960400191505060405180910390fd5b6000600b556003546001600160a01b0316156109295762015180600a5401421015610929576040805162461bcd60e51b8152602060048201526015602482015274151a5b595b1bd8dac81d1a5b59481b9bdd081b595d605a1b604482015290519081900360640190fd5b50600c54600755565b60065460ff1690565b60006105d7610948611194565b846108108560016000610959611194565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61152616565b6000610999611194565b6003546001600160a01b039081169116146109e55760405162461bcd60e51b8152600401808060200182810382526022815260200180611b9f6022913960400191505060405180910390fd5b6109ef8383611580565b6007546109fa61078c565b11156105d7576040805162461bcd60e51b815260206004820152601b60248201527f43616e6e6f74206d696e7420616e79206d6f726520746f6b656e730000000000604482015290519081900360640190fd5b610a55611194565b60065461010090046001600160a01b03908116911614610aaa576040805162461bcd60e51b81526020600482018190526024820152600080516020611cc7833981519152604482015290519081900360640190fd5b42600a556005600b55600c55565b60075490565b610ac6611194565b60065461010090046001600160a01b03908116911614610b1b576040805162461bcd60e51b81526020600482018190526024820152600080516020611cc7833981519152604482015290519081900360640190fd5b42600a556001600b55600d805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b60065461010090046001600160a01b031690565b6003546001600160a01b031681565b610b7e611194565b60065461010090046001600160a01b03908116911614610bd3576040805162461bcd60e51b81526020600482018190526024820152600080516020611cc7833981519152604482015290519081900360640190fd5b42600a556003600b55600d805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6001600160a01b031660009081526020819052604090205490565b60085481565b610c34611194565b60065461010090046001600160a01b03908116911614610c89576040805162461bcd60e51b81526020600482018190526024820152600080516020611cc7833981519152604482015290519081900360640190fd5b600480600b5414610ccb5760405162461bcd60e51b8152600401808060200182810382526027815260200180611c576027913960400191505060405180910390fd5b6000600b556003546001600160a01b031615610d355762015180600a5401421015610d35576040805162461bcd60e51b8152602060048201526015602482015274151a5b595b1bd8dac81d1a5b59481b9bdd081b595d605a1b604482015290519081900360640190fd5b600d546001600160a01b031660009081526009602052604090205460ff16151560011415610d8457600d546001600160a01b03166000908152600960205260409020805460ff19169055610789565b600d546001600160a01b03166000908152600960205260409020805460ff1916600117905550565b60096020526000908152604090205460ff1681565b610dc9611194565b60065461010090046001600160a01b03908116911614610e1e576040805162461bcd60e51b81526020600482018190526024820152600080516020611cc7833981519152604482015290519081900360640190fd5b42600a556004600b55600d805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b610e5e611194565b60065461010090046001600160a01b03908116911614610eb3576040805162461bcd60e51b81526020600482018190526024820152600080516020611cc7833981519152604482015290519081900360640190fd5b600280600b5414610ef55760405162461bcd60e51b8152600401808060200182810382526027815260200180611c576027913960400191505060405180910390fd5b6000600b556003546001600160a01b031615610f5f5762015180600a5401421015610f5f576040805162461bcd60e51b8152602060048201526015602482015274151a5b595b1bd8dac81d1a5b59481b9bdd081b595d605a1b604482015290519081900360640190fd5b50600c54600855565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105b95780601f1061058e576101008083540402835291602001916105b9565b60006105d7610fd6611194565b8461081085604051806060016040528060258152602001611d306025913960016000611000611194565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61148f16565b60006105d7611044611194565b8484611326565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61107e611194565b60065461010090046001600160a01b039081169116146110d3576040805162461bcd60e51b81526020600482018190526024820152600080516020611cc7833981519152604482015290519081900360640190fd5b600180600b54146111155760405162461bcd60e51b8152600401808060200182810382526027815260200180611c576027913960400191505060405180910390fd5b6000600b556003546001600160a01b03161561117f5762015180600a540142101561117f576040805162461bcd60e51b8152602060048201526015602482015274151a5b595b1bd8dac81d1a5b59481b9bdd081b595d605a1b604482015290519081900360640190fd5b600d54610789906001600160a01b0316611670565b3390565b6001600160a01b0383166111dd5760405162461bcd60e51b8152600401808060200182810382526024815260200180611d0c6024913960400191505060405180910390fd5b6001600160a01b0382166112225760405162461bcd60e51b8152600401808060200182810382526022815260200180611be76022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0381166112c95760405162461bcd60e51b8152600401808060200182810382526028815260200180611c2f6028913960400191505060405180910390fd5b6003805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383811691909117918290556040519116907f70e1f29a97aa858ce785e48a42e40cd51020a45c8a2e4520272a6303585916a990600090a250565b6001600160a01b03831661136b5760405162461bcd60e51b8152600401808060200182810382526025815260200180611ce76025913960400191505060405180910390fd5b6001600160a01b0382166113b05760405162461bcd60e51b8152600401808060200182810382526023815260200180611b5a6023913960400191505060405180910390fd5b6113bb838383611790565b905061140081604051806060016040528060268152602001611c09602691396001600160a01b038616600090815260208190526040902054919063ffffffff61148f16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611435908263ffffffff61152616565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000818484111561151e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156114e35781810151838201526020016114cb565b50505050905090810190601f1680156115105780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610819576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0382166115db576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6002546115ee908263ffffffff61152616565b6002556001600160a01b03821660009081526020819052604090205461161a908263ffffffff61152616565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b611678611194565b60065461010090046001600160a01b039081169116146116cd576040805162461bcd60e51b81526020600482018190526024820152600080516020611cc7833981519152604482015290519081900360640190fd5b6001600160a01b0381166117125760405162461bcd60e51b8152600401808060200182810382526026815260200180611bc16026913960400191505060405180910390fd5b6006546040516001600160a01b0380841692610100900416907f5f56bee8cffbe9a78652a74a60705edede02af10b0bbb888ca44b79a0d42ce8090600090a3600680546001600160a01b03909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b600061179d848484611890565b506001600160a01b03841660009081526009602052604090205460ff161515600114156117cb575080610819565b60006008541180156117ed57506969e10de76676d08000006117eb61078c565b115b1561188957600061181c620186a06118106008548661189990919063ffffffff16565b9063ffffffff6118f216565b905061182785610c0b565b611837828563ffffffff61152616565b111561187d57600061186761184b87610c0b565b61185b848763ffffffff61152616565b9063ffffffff61193416565b9050611879848263ffffffff61193416565b9350505b6118878582611976565b505b5092915050565b60009392505050565b6000826118a8575060006105db565b828202828482816118b557fe5b04146108195760405162461bcd60e51b8152600401808060200182810382526021815260200180611c7e6021913960400191505060405180910390fd5b600061081983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611af4565b600061081983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061148f565b6001600160a01b0382166119d1576040805162461bcd60e51b815260206004820181905260248201527f45524332303a207461782066726f6d20746865207a65726f2061646472657373604482015290519081900360640190fd5b6003546001600160a01b0316611a185760405162461bcd60e51b8152600401808060200182810382526028815260200180611c2f6028913960400191505060405180910390fd5b611a5b81604051806060016040528060228152602001611b7d602291396001600160a01b038516600090815260208190526040902054919063ffffffff61148f16565b6001600160a01b038084166000908152602081905260408082209390935560035490911681522054611a93908263ffffffff61152616565b600380546001600160a01b03908116600090815260208181526040918290209490945591548251858152925190821693918616927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92908290030190a35050565b60008183611b435760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156114e35781810151838201526020016114cb565b506000838581611b4f57fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a2063616c6c6572206973206e6f742074686520636c61696d65724f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365436c61696d65722061646472657373206d7573742062652073657420746f20736f6d657468696e6754696d656c6f636b206e6f7420616371756972656420666f7220746869732066756e6374696f6e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c45d48b51cfbf51fb293d5c47f5e8b99ffa6f029553cb64286cfacba9b4afc9464736f6c63430006060033

Deployed Bytecode Sourcemap

22182:5794:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;22182:5794:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;11332:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;11332:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13403:169;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;13403:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;26087:173;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;26087:173:0;;:::i;:::-;;26695:183;;;:::i;12392:100::-;;;:::i;:::-;;;;;;;;;;;;;;;;14041:321;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;14041:321:0;;;;;;;;;;;;;;;;;:::i;27802:142::-;;;:::i;12249:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14766:218;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;14766:218:0;;;;;;;;:::i;23282:287::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;23282:287:0;;;;;;;;:::i;27611:179::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;27611:179:0;;:::i;23083:100::-;;;:::i;25647:186::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;25647:186:0;-1:-1:-1;;;;;25647:186:0;;:::i;21371:84::-;;;:::i;:::-;;;;-1:-1:-1;;;;;21371:84:0;;;;;;;;;;;;;;10605:42;;;:::i;26500:183::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;26500:183:0;-1:-1:-1;;;;;26500:183:0;;:::i;12550:119::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;12550:119:0;-1:-1:-1;;;;;12550:119:0;;:::i;22539:26::-;;;:::i;27200:293::-;;;:::i;22652:50::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;22652:50:0;-1:-1:-1;;;;;22652:50:0;;:::i;27003:185::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;27003:185:0;-1:-1:-1;;;;;27003:185:0;;:::i;26272:123::-;;;:::i;11529:87::-;;;:::i;15482:269::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;15482:269:0;;;;;;;;:::i;12877:175::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;12877:175:0;;;;;;;;:::i;13110:151::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;13110:151:0;;;;;;;;;;:::i;25845:140::-;;;:::i;11332:83::-;11402:5;11395:12;;;;;;;;-1:-1:-1;;11395:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11369:13;;11395:12;;11402:5;;11395:12;;11402:5;11395:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11332:83;:::o;13403:169::-;13486:4;13503:39;13512:12;:10;:12::i;:::-;13526:7;13535:6;13503:8;:39::i;:::-;-1:-1:-1;13560:4:0;13403:169;;;;;:::o;26087:173::-;21598:12;:10;:12::i;:::-;21588:6;;;;;-1:-1:-1;;;;;21588:6:0;;;:22;;;21580:67;;;;;-1:-1:-1;;;21580:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21580:67:0;;;;;;;;;;;;;;;26185:3:::1;26168:14;:20:::0;26215:1:::1;26199:13;:17:::0;26227:14:::1;:25:::0;26087:173::o;26695:183::-;21598:12;:10;:12::i;:::-;21588:6;;;;;-1:-1:-1;;;;;21588:6:0;;;:22;;;21580:67;;;;;-1:-1:-1;;;21580:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21580:67:0;;;;;;;;;;;;;;;26772:1:::1;25291:5;25274:13;;:22;25266:74;;;;-1:-1:-1::0;;;25266:74:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25367:1;25351:13;:17:::0;25426:14:::1;::::0;-1:-1:-1;;;;;25426:14:0::1;:28:::0;25423:134:::1;;25048:5;25485:14;;:34;25478:3;:41;;25470:75;;;::::0;;-1:-1:-1;;;25470:75:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;25470:75:0;;;;;;;;;;;;;::::1;;26804:17:::2;::::0;;-1:-1:-1;;;;;26804:17:0;;::::2;26786:36;::::0;;;:17:::2;:36;::::0;;;;:43;;-1:-1:-1;;26786:43:0::2;26825:4;26786:43;::::0;;26852:17;;26840:30:::2;::::0;26852:17:::2;26840:11;:30::i;:::-;21658:1:::1;26695:183::o:0;12392:100::-;12472:12;;12392:100;:::o;14041:321::-;14147:4;14164:36;14174:6;14182:9;14193:6;14164:9;:36::i;:::-;14211:121;14220:6;14228:12;:10;:12::i;:::-;14242:89;14280:6;14242:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14242:19:0;;;;;;:11;:19;;;;;;14262:12;:10;:12::i;:::-;-1:-1:-1;;;;;14242:33:0;;;;;;;;;;;;-1:-1:-1;14242:33:0;;;:89;;:37;:89;:::i;:::-;14211:8;:121::i;:::-;-1:-1:-1;14350:4:0;14041:321;;;;;;:::o;27802:142::-;21598:12;:10;:12::i;:::-;21588:6;;;;;-1:-1:-1;;;;;21588:6:0;;;:22;;;21580:67;;;;;-1:-1:-1;;;21580:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21580:67:0;;;;;;;;;;;;;;;27887:1:::1;25291:5;25274:13;;:22;25266:74;;;;-1:-1:-1::0;;;25266:74:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25367:1;25351:13;:17:::0;25426:14:::1;::::0;-1:-1:-1;;;;;25426:14:0::1;:28:::0;25423:134:::1;;25048:5;25485:14;;:34;25478:3;:41;;25470:75;;;::::0;;-1:-1:-1;;;25470:75:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;25470:75:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;27922:14:0::2;::::0;27901:18:::2;:35:::0;27802:142::o;12249:83::-;12315:9;;;;12249:83;:::o;14766:218::-;14854:4;14871:83;14880:12;:10;:12::i;:::-;14894:7;14903:50;14942:10;14903:11;:25;14915:12;:10;:12::i;:::-;-1:-1:-1;;;;;14903:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;14903:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;23282:287::-;23356:4;23004:12;:10;:12::i;:::-;22986:14;;-1:-1:-1;;;;;22986:14:0;;;:30;;;22978:77;;;;-1:-1:-1;;;22978:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23373:19:::1;23379:3;23384:7;23373:5;:19::i;:::-;23428:18;;23411:13;:11;:13::i;:::-;:35;;23403:75;;;::::0;;-1:-1:-1;;;23403:75:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;27611:179:::0;21598:12;:10;:12::i;:::-;21588:6;;;;;-1:-1:-1;;;;;21588:6:0;;;:22;;;21580:67;;;;;-1:-1:-1;;;21580:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21580:67:0;;;;;;;;;;;;;;;27716:3:::1;27699:14;:20:::0;27746:1:::1;27730:13;:17:::0;27758:14:::1;:24:::0;27611:179::o;23083:100::-;23157:18;;23083:100;:::o;25647:186::-;21598:12;:10;:12::i;:::-;21588:6;;;;;-1:-1:-1;;;;;21588:6:0;;;:22;;;21580:67;;;;;-1:-1:-1;;;21580:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21580:67:0;;;;;;;;;;;;;;;25748:3:::1;25731:14;:20:::0;25778:1:::1;25762:13;:17:::0;25790::::1;:28:::0;;-1:-1:-1;;25790:28:0::1;-1:-1:-1::0;;;;;25790:28:0;;;::::1;::::0;;;::::1;::::0;;25647:186::o;21371:84::-;21441:6;;;;;-1:-1:-1;;;;;21441:6:0;;21371:84::o;10605:42::-;;;-1:-1:-1;;;;;10605:42:0;;:::o;26500:183::-;21598:12;:10;:12::i;:::-;21588:6;;;;;-1:-1:-1;;;;;21588:6:0;;;:22;;;21580:67;;;;;-1:-1:-1;;;21580:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21580:67:0;;;;;;;;;;;;;;;26598:3:::1;26581:14;:20:::0;26628:1:::1;26612:13;:17:::0;26640::::1;:28:::0;;-1:-1:-1;;26640:28:0::1;-1:-1:-1::0;;;;;26640:28:0;;;::::1;::::0;;;::::1;::::0;;26500:183::o;12550:119::-;-1:-1:-1;;;;;12643:18:0;12616:7;12643:18;;;;;;;;;;;;12550:119::o;22539:26::-;;;;:::o;27200:293::-;21598:12;:10;:12::i;:::-;21588:6;;;;;-1:-1:-1;;;;;21588:6:0;;;:22;;;21580:67;;;;;-1:-1:-1;;;21580:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21580:67:0;;;;;;;;;;;;;;;27279:1:::1;25291:5;25274:13;;:22;25266:74;;;;-1:-1:-1::0;;;25266:74:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25367:1;25351:13;:17:::0;25426:14:::1;::::0;-1:-1:-1;;;;;25426:14:0::1;:28:::0;25423:134:::1;;25048:5;25485:14;;:34;25478:3;:41;;25470:75;;;::::0;;-1:-1:-1;;;25470:75:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;25470:75:0;;;;;;;;;;;;;::::1;;27314:17:::2;::::0;-1:-1:-1;;;;;27314:17:0::2;27296:36;::::0;;;:17:::2;:36;::::0;;;;;::::2;;:44;;27314:17:::0;27296:44:::2;27293:193;;;27374:17;::::0;-1:-1:-1;;;;;27374:17:0::2;27395:5;27356:36:::0;;;:17:::2;:36;::::0;;;;:44;;-1:-1:-1;;27356:44:0::2;::::0;;27293:193:::2;;;27449:17;::::0;-1:-1:-1;;;;;27449:17:0::2;27431:36;::::0;;;:17:::2;:36;::::0;;;;:43;;-1:-1:-1;;27431:43:0::2;27470:4;27431:43;::::0;;21658:1:::1;27200:293::o:0;22652:50::-;;;;;;;;;;;;;;;:::o;27003:185::-;21598:12;:10;:12::i;:::-;21588:6;;;;;-1:-1:-1;;;;;21588:6:0;;;:22;;;21580:67;;;;;-1:-1:-1;;;21580:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21580:67:0;;;;;;;;;;;;;;;27103:3:::1;27086:14;:20:::0;27133:1:::1;27117:13;:17:::0;27145::::1;:28:::0;;-1:-1:-1;;27145:28:0::1;-1:-1:-1::0;;;;;27145:28:0;;;::::1;::::0;;;::::1;::::0;;27003:185::o;26272:123::-;21598:12;:10;:12::i;:::-;21588:6;;;;;-1:-1:-1;;;;;21588:6:0;;;:22;;;21580:67;;;;;-1:-1:-1;;;21580:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21580:67:0;;;;;;;;;;;;;;;26349:1:::1;25291:5;25274:13;;:22;25266:74;;;;-1:-1:-1::0;;;25266:74:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25367:1;25351:13;:17:::0;25426:14:::1;::::0;-1:-1:-1;;;;;25426:14:0::1;:28:::0;25423:134:::1;;25048:5;25485:14;;:34;25478:3;:41;;25470:75;;;::::0;;-1:-1:-1;;;25470:75:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;25470:75:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;26373:14:0::2;::::0;26363:7:::2;:24:::0;26272:123::o;11529:87::-;11601:7;11594:14;;;;;;;;-1:-1:-1;;11594:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11568:13;;11594:14;;11601:7;;11594:14;;11601:7;11594:14;;;;;;;;;;;;;;;;;;;;;;;;15482:269;15575:4;15592:129;15601:12;:10;:12::i;:::-;15615:7;15624:96;15663:15;15624:96;;;;;;;;;;;;;;;;;:11;:25;15636:12;:10;:12::i;:::-;-1:-1:-1;;;;;15624:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15624:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;12877:175::-;12963:4;12980:42;12990:12;:10;:12::i;:::-;13004:9;13015:6;12980:9;:42::i;13110:151::-;-1:-1:-1;;;;;13226:18:0;;;13199:7;13226:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13110:151::o;25845:140::-;21598:12;:10;:12::i;:::-;21588:6;;;;;-1:-1:-1;;;;;21588:6:0;;;:22;;;21580:67;;;;;-1:-1:-1;;;21580:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21580:67:0;;;;;;;;;;;;;;;25925:1:::1;25291:5;25274:13;;:22;25266:74;;;;-1:-1:-1::0;;;25266:74:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25367:1;25351:13;:17:::0;25426:14:::1;::::0;-1:-1:-1;;;;;25426:14:0::1;:28:::0;25423:134:::1;;25048:5;25485:14;;:34;25478:3;:41;;25470:75;;;::::0;;-1:-1:-1;;;25470:75:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;25470:75:0;;;;;;;;;;;;;::::1;;25959:17:::2;::::0;25939:38:::2;::::0;-1:-1:-1;;;;;25959:17:0::2;25939:19;:38::i;650:106::-:0;738:10;650:106;:::o;18859:346::-;-1:-1:-1;;;;;18961:19:0;;18953:68;;;;-1:-1:-1;;;18953:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19040:21:0;;19032:68;;;;-1:-1:-1;;;19032:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19113:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19165:32;;;;;;;;;;;;;;;;;18859:346;;;:::o;17388:238::-;-1:-1:-1;;;;;17465:24:0;;17457:77;;;;-1:-1:-1;;;17457:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17545:14;:27;;-1:-1:-1;;17545:27:0;-1:-1:-1;;;;;17545:27:0;;;;;;;;;;;17588:30;;17603:14;;;17588:30;;-1:-1:-1;;17588:30:0;17388:238;:::o;16236:548::-;-1:-1:-1;;;;;16342:20:0;;16334:70;;;;-1:-1:-1;;;16334:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16423:23:0;;16415:71;;;;-1:-1:-1;;;16415:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16508:47;16529:6;16537:9;16548:6;16508:20;:47::i;:::-;16499:56;;16588:71;16610:6;16588:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16588:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;16568:17:0;;;:9;:17;;;;;;;;;;;:91;;;;16693:20;;;;;;;:32;;16718:6;16693:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;16670:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;16741:35;;;;;;;16670:20;;16741:35;;;;;;;;;;;;;16236:548;;;:::o;5562:192::-;5648:7;5684:12;5676:6;;;;5668:29;;;;-1:-1:-1;;;5668:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;5668:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5720:5:0;;;5562:192::o;4669:181::-;4727:7;4759:5;;;4783:6;;;;4775:46;;;;;-1:-1:-1;;;4775:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;17060:316;-1:-1:-1;;;;;17144:21:0;;17136:65;;;;;-1:-1:-1;;;17136:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17229:12;;:24;;17246:6;17229:24;:16;:24;:::i;:::-;17214:12;:39;-1:-1:-1;;;;;17285:18:0;;:9;:18;;;;;;;;;;;:30;;17308:6;17285:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;17264:18:0;;:9;:18;;;;;;;;;;;:51;;;;17331:37;;;;;;;17264:18;;:9;;17331:37;;;;;;;;;;17060:316;;:::o;21817:254::-;21598:12;:10;:12::i;:::-;21588:6;;;;;-1:-1:-1;;;;;21588:6:0;;;:22;;;21580:67;;;;;-1:-1:-1;;;21580:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21580:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;21915:22:0;::::1;21907:73;;;;-1:-1:-1::0;;;21907:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22018:6;::::0;21996:39:::1;::::0;-1:-1:-1;;;;;21996:39:0;;::::1;::::0;22018:6:::1;::::0;::::1;;::::0;21996:39:::1;::::0;;;::::1;22046:6;:17:::0;;-1:-1:-1;;;;;22046:17:0;;::::1;;;::::0;;;::::1;::::0;;;::::1;::::0;;21817:254::o;23649:994::-;23756:7;23776:44;23803:4;23809:2;23813:6;23776:26;:44::i;:::-;-1:-1:-1;;;;;;23854:23:0;;;;;;:17;:23;;;;;;;;:31;;:23;:31;23851:53;;;-1:-1:-1;23895:6:0;23888:13;;23851:53;23958:1;23948:7;;:11;:44;;;;;22390:9;23963:13;:11;:13::i;:::-;:29;23948:44;23945:667;;;24279:17;24299:40;22344:6;24299:19;24310:7;;24299:6;:10;;:19;;;;:::i;:::-;:23;:40;:23;:40;:::i;:::-;24279:60;;24381:15;24391:4;24381:9;:15::i;:::-;24357:21;:9;24371:6;24357:21;:13;:21;:::i;:::-;:39;24354:212;;;24416:15;24434:42;24460:15;24470:4;24460:9;:15::i;:::-;24434:21;:9;24448:6;24434:21;:13;:21;:::i;:::-;:25;:42;:25;:42;:::i;:::-;24416:60;-1:-1:-1;24531:19:0;:6;24416:60;24531:19;:10;:19;:::i;:::-;24522:28;;24354:212;;24580:20;24585:4;24590:9;24580:4;:20::i;:::-;23945:667;;-1:-1:-1;24629:6:0;23649:994;-1:-1:-1;;23649:994:0:o;20177:110::-;20275:7;20177:110;;;;;:::o;6008:471::-;6066:7;6311:6;6307:47;;-1:-1:-1;6341:1:0;6334:8;;6307:47;6378:5;;;6382:1;6378;:5;:1;6402:5;;;;;:10;6394:56;;;;-1:-1:-1;;;6394:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6950:132;7008:7;7035:39;7039:1;7042;7035:39;;;;;;;;;;;;;;;;;:3;:39::i;5128:136::-;5186:7;5213:43;5217:1;5220;5213:43;;;;;;;;;;;;;;;;;:3;:43::i;17948:476::-;-1:-1:-1;;;;;18031:21:0;;18023:66;;;;;-1:-1:-1;;;18023:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18108:14;;-1:-1:-1;;;;;18108:14:0;18100:81;;;;-1:-1:-1;;;18100:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18215:68;18238:6;18215:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18215:18:0;;:9;:18;;;;;;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;18194:18:0;;;:9;:18;;;;;;;;;;;:89;;;;18332:14;;;;;18322:25;;;;:37;;18352:6;18322:37;:29;:37;:::i;:::-;18304:14;;;-1:-1:-1;;;;;18304:14:0;;;18294:9;:25;;;;;;;;;;;;:65;;;;18393:14;;18375:41;;;;;;;18393:14;;;;18375:41;;;;;;;;;;;;;17948:476;;:::o;7573:278::-;7659:7;7694:12;7687:5;7679:28;;;;-1:-1:-1;;;7679:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;7679:28:0;;7718:9;7734:1;7730;:5;;;;;;;7573:278;-1:-1:-1;;;;;7573:278:0:o

Swarm Source

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