POL Price: $0.616481 (-5.71%)
 

Overview

Max Total Supply

20,080,658.576567904439198791 GOON

Holders

179

Total Transfers

-

Market

Price

$0.00 @ 0.000000 POL

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

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xC406D91a...7B340cCF5
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
PolyGoonToken

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at polygonscan.com on 2021-07-11
*/

// File @openzeppelin/contracts/token/ERC20/[email protected]

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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


// File @openzeppelin/contracts/utils/[email protected]


pragma solidity ^0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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


// File @openzeppelin/contracts/token/ERC20/[email protected]


pragma solidity ^0.8.0;



/**
 * @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, IERC20Metadata {
    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

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

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += 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 virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}


// File @openzeppelin/contracts/access/[email protected]

pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

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


// File contracts/GoonToken.sol

pragma solidity ^0.8.0;


contract PolyGoonToken is ERC20("PolyGoon Token", "GOON"), Ownable {
  uint256 private constant preMinedSupply = 700000 * 1e18;
  uint256 public constant maxSupply = 42000000 * 1e18;   // Total Supply. Maximum token that can be minted.
  uint256 public totalMinted = 0;	// Keep track of all minted token, independently of burnt tokens

  event Burn(address indexed from, uint256 value);

  constructor() {
    mint(msg.sender, preMinedSupply);
  }

  function mint(address _to, uint256 _amount) public onlyOwner {
    require(_amount + totalMinted <= maxSupply, "GOON: maxSupply hit");
    totalMinted = totalMinted + _amount;
    _mint(_to, _amount);
    _moveDelegates(address(0), _delegates[_to], _amount);
  }


  function burn(uint256 _amount) public {
    _burn(msg.sender, _amount);
    _moveDelegates(address(0), _delegates[msg.sender], _amount);
    emit Burn(msg.sender, _amount);
  }

  // Copied and modified from YAM code:
  // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernanceStorage.sol
  // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernance.sol
  // Which is copied and modified from COMPOUND:
  // https://github.com/compound-finance/compound-protocol/blob/master/contracts/Governance/Comp.sol

  /// @dev A record of each accounts delegate
  mapping (address => address) internal _delegates;

  /// @dev A checkpoint for marking number of votes from a given block
  struct Checkpoint {
    uint32 fromBlock;
    uint256 votes;
  }

  /// @dev A record of votes checkpoints for each account, by index
  mapping (address => mapping (uint32 => Checkpoint)) public checkpoints;

  /// @dev The number of checkpoints for each account
  mapping (address => uint32) public numCheckpoints;

  /// @dev The EIP-712 typehash for the contract's domain
  bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");

  /// @dev The EIP-712 typehash for the delegation struct used by the contract
  bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");

  /// @dev A record of states for signing / validating signatures
  mapping (address => uint) public nonces;

  /// @dev An event thats emitted when an account changes its delegate
  event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

  /// @dev An event thats emitted when a delegate account's vote balance changes
  event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance);

  /**
   * @dev Delegate votes from `msg.sender` to `delegatee`
   * @param delegator The address to get delegatee for
   */
  function delegates(address delegator)
    external
    view
    returns (address)
  {
    return _delegates[delegator];
  }

   /**
  * @dev Delegate votes from `msg.sender` to `delegatee`
  * @param delegatee The address to delegate votes to
  */
  function delegate(address delegatee) external {
    return _delegate(msg.sender, delegatee);
  }

  /**
   * @dev Delegates votes from signatory to `delegatee`
   * @param delegatee The address to delegate votes to
   * @param nonce The contract state required to match the signature
   * @param expiry The time at which to expire the signature
   * @param v The recovery byte of the signature
   * @param r Half of the ECDSA signature pair
   * @param s Half of the ECDSA signature pair
   */
  function delegateBySig(
    address delegatee,
    uint nonce,
    uint expiry,
    uint8 v,
    bytes32 r,
    bytes32 s
  )
    external
  {
    bytes32 domainSeparator = keccak256(
      abi.encode(
        DOMAIN_TYPEHASH,
        keccak256(bytes(name())),
        getChainId(),
        address(this)
      )
    );

    bytes32 structHash = keccak256(
      abi.encode(
        DELEGATION_TYPEHASH,
        delegatee,
        nonce,
        expiry
      )
    );

    bytes32 digest = keccak256(
      abi.encodePacked(
        "\x19\x01",
        domainSeparator,
        structHash
      )
    );

    address signatory = ecrecover(digest, v, r, s);
    require(signatory != address(0), "GOON::delegateBySig: invalid signature");
    require(nonce == nonces[signatory]++, "GOON::delegateBySig: invalid nonce");
    require(block.timestamp <= expiry, "GOON::delegateBySig: signature expired");
    return _delegate(signatory, delegatee);
  }

  /**
   * @dev Gets the current votes balance for `account`
   * @param account The address to get votes balance
   * @return The number of current votes for `account`
   */
  function getCurrentVotes(address account)
    external
    view
    returns (uint256)
  {
    uint32 nCheckpoints = numCheckpoints[account];
    return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
  }

  /**
   * @dev Determine the prior number of votes for an account as of a block number
   * @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
   * @param account The address of the account to check
   * @param blockNumber The block number to get the vote balance at
   * @return The number of votes the account had as of the given block
   */
  function getPriorVotes(address account, uint blockNumber)
    external
    view
    returns (uint256)
  {
    require(blockNumber < block.number, "GOON::getPriorVotes: not yet determined");

    uint32 nCheckpoints = numCheckpoints[account];
    if (nCheckpoints == 0) {
      return 0;
    }

    // First check most recent balance
    if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
      return checkpoints[account][nCheckpoints - 1].votes;
    }

    // Next check implicit zero balance
    if (checkpoints[account][0].fromBlock > blockNumber) {
      return 0;
    }

    uint32 lower = 0;
    uint32 upper = nCheckpoints - 1;
    while (upper > lower) {
      uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
      Checkpoint memory cp = checkpoints[account][center];
      if (cp.fromBlock == blockNumber) {
        return cp.votes;
      } else if (cp.fromBlock < blockNumber) {
        lower = center;
      } else {
        upper = center - 1;
      }
    }
    return checkpoints[account][lower].votes;
  }

  function _delegate(address delegator, address delegatee)
    internal
  {
    address currentDelegate = _delegates[delegator];
    uint256 delegatorBalance = balanceOf(delegator); // balance of underlying EGGs (not scaled);
    _delegates[delegator] = delegatee;

    emit DelegateChanged(delegator, currentDelegate, delegatee);

    _moveDelegates(currentDelegate, delegatee, delegatorBalance);
  }

  function _moveDelegates(address srcRep, address dstRep, uint256 amount) internal {
    if (srcRep != dstRep && amount > 0) {
      if (srcRep != address(0)) {
        // decrease old representative
        uint32 srcRepNum = numCheckpoints[srcRep];
        uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
        uint256 srcRepNew = srcRepOld - amount;
        _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
      }

      if (dstRep != address(0)) {
        // increase new representative
        uint32 dstRepNum = numCheckpoints[dstRep];
        uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
        uint256 dstRepNew = dstRepOld + amount;
        _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
      }
    }
  }

  function _writeCheckpoint(
    address delegatee,
    uint32 nCheckpoints,
    uint256 oldVotes,
    uint256 newVotes
  )
    internal
  {
    uint32 blockNumber = safe32(block.number, "GOON::_writeCheckpoint: block number exceeds 32 bits");

    if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
      checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
    } else {
      checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
      numCheckpoints[delegatee] = nCheckpoints + 1;
    }

    emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
  }

  function safe32(uint n, string memory errorMessage) internal pure returns (uint32) {
    require(n < 2**32, errorMessage);
    return uint32(n);
  }

  function getChainId() internal view returns (uint) {
    uint256 chainId;
    assembly { chainId := chainid() }
    return chainId;
  }
}

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":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","type":"uint256"}],"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":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegator","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260006006553480156200001657600080fd5b50604080518082018252600e81526d2837b63ca3b7b7b7102a37b5b2b760911b60208083019182528351808501909452600484526323a7a7a760e11b90840152815191929162000069916003916200065a565b5080516200007f9060049060208401906200065a565b505050600062000094620000fe60201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620000f83369943b1377290cbd80000062000102565b62000833565b3390565b6005546001600160a01b03163314620001625760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6a22bdd88fed9efc6a000000600654826200017e919062000758565b1115620001ce5760405162461bcd60e51b815260206004820152601360248201527f474f4f4e3a206d6178537570706c792068697400000000000000000000000000604482015260640162000159565b80600654620001de919062000758565b600655620001ed828262000218565b6001600160a01b0380831660009081526007602052604081205462000214921683620002fd565b5050565b6001600160a01b038216620002705760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000159565b806002600082825462000284919062000758565b90915550506001600160a01b03821660009081526020819052604081208054839290620002b390849062000758565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b816001600160a01b0316836001600160a01b031614158015620003205750600081115b1562000474576001600160a01b03831615620003cd576001600160a01b03831660009081526009602052604081205463ffffffff16908162000364576000620003a9565b6001600160a01b0385166000908152600860205260408120906200038a600185620007b8565b63ffffffff1663ffffffff168152602001908152602001600020600101545b90506000620003b984836200079e565b9050620003c98684848462000479565b5050505b6001600160a01b0382161562000474576001600160a01b03821660009081526009602052604081205463ffffffff1690816200040b57600062000450565b6001600160a01b03841660009081526008602052604081209062000431600185620007b8565b63ffffffff1663ffffffff168152602001908152602001600020600101545b9050600062000460848362000758565b9050620004708584848462000479565b5050505b505050565b6000620004a0436040518060600160405280603481526020016200242c6034913962000627565b905060008463ffffffff16118015620004fd57506001600160a01b038516600090815260086020526040812063ffffffff831691620004e1600188620007b8565b63ffffffff908116825260208201929092526040016000205416145b156200054a576001600160a01b038516600090815260086020526040812083916200052a600188620007b8565b63ffffffff168152602081019190915260400160002060010155620005dc565b60408051808201825263ffffffff838116825260208083018681526001600160a01b038a166000908152600883528581208a851682529092529390209151825463ffffffff191691161781559051600191820155620005ab90859062000773565b6001600160a01b0386166000908152600960205260409020805463ffffffff191663ffffffff929092169190911790555b60408051848152602081018490526001600160a01b038716917fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724910160405180910390a25050505050565b6000816401000000008410620006525760405162461bcd60e51b815260040162000159919062000700565b509192915050565b8280546200066890620007e0565b90600052602060002090601f0160209004810192826200068c5760008555620006d7565b82601f10620006a757805160ff1916838001178555620006d7565b82800160010185558215620006d7579182015b82811115620006d7578251825591602001919060010190620006ba565b50620006e5929150620006e9565b5090565b5b80821115620006e55760008155600101620006ea565b600060208083528351808285015260005b818110156200072f5785810183015185820160400152820162000711565b8181111562000742576000604083870101525b50601f01601f1916929092016040019392505050565b600082198211156200076e576200076e6200081d565b500190565b600063ffffffff8083168185168083038211156200079557620007956200081d565b01949350505050565b600082821015620007b357620007b36200081d565b500390565b600063ffffffff83811690831681811015620007d857620007d86200081d565b039392505050565b600181811c90821680620007f557607f821691505b602082108114156200081757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b611be980620008436000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c8063782d6fe1116100f9578063b4b5ea5711610097578063dd62ed3e11610071578063dd62ed3e14610416578063e7a324dc1461044f578063f1127ed814610476578063f2fde38b146104cd57600080fd5b8063b4b5ea57146103de578063c3cda520146103f1578063d5abeb011461040457600080fd5b806395d89b41116100d357806395d89b41146103a7578063a2309ff8146103af578063a457c2d7146103b8578063a9059cbb146103cb57600080fd5b8063782d6fe1146103635780637ecebe00146103765780638da5cb5b1461039657600080fd5b806340c10f19116101665780635c19a95c116101405780635c19a95c146102e45780636fcfff45146102f757806370a0823114610332578063715018a61461035b57600080fd5b806340c10f191461027857806342966c681461028d578063587cde1e146102a057600080fd5b806320606b70116101a257806320606b701461021c57806323b872dd14610243578063313ce56714610256578063395093511461026557600080fd5b806306fdde03146101c9578063095ea7b3146101e757806318160ddd1461020a575b600080fd5b6101d16104e0565b6040516101de91906119dc565b60405180910390f35b6101fa6101f53660046118f9565b610572565b60405190151581526020016101de565b6002545b6040519081526020016101de565b61020e7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6101fa6102513660046118bd565b610589565b604051601281526020016101de565b6101fa6102733660046118f9565b61063f565b61028b6102863660046118f9565b610676565b005b61028b61029b3660046119c3565b610742565b6102cc6102ae36600461186f565b6001600160a01b039081166000908152600760205260409020541690565b6040516001600160a01b0390911681526020016101de565b61028b6102f236600461186f565b6107a8565b61031d61030536600461186f565b60096020526000908152604090205463ffffffff1681565b60405163ffffffff90911681526020016101de565b61020e61034036600461186f565b6001600160a01b031660009081526020819052604090205490565b61028b6107b5565b61020e6103713660046118f9565b610829565b61020e61038436600461186f565b600a6020526000908152604090205481565b6005546001600160a01b03166102cc565b6101d1610a8e565b61020e60065481565b6101fa6103c63660046118f9565b610a9d565b6101fa6103d93660046118f9565b610b38565b61020e6103ec36600461186f565b610b45565b61028b6103ff366004611923565b610bba565b61020e6a22bdd88fed9efc6a00000081565b61020e61042436600461188a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61020e7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b6104b1610484366004611983565b60086020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6040805163ffffffff90931683526020830191909152016101de565b61028b6104db36600461186f565b610e88565b6060600380546104ef90611b13565b80601f016020809104026020016040519081016040528092919081815260200182805461051b90611b13565b80156105685780601f1061053d57610100808354040283529160200191610568565b820191906000526020600020905b81548152906001019060200180831161054b57829003601f168201915b5050505050905090565b600061057f338484610f73565b5060015b92915050565b6000610596848484611098565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156106205760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610634853361062f8685611ad7565b610f73565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161057f91859061062f908690611a66565b6005546001600160a01b031633146106a05760405162461bcd60e51b815260040161061790611a31565b6a22bdd88fed9efc6a000000600654826106ba9190611a66565b11156106fe5760405162461bcd60e51b815260206004820152601360248201527211d3d3d38e881b585e14dd5c1c1b1e481a1a5d606a1b6044820152606401610617565b8060065461070c9190611a66565b6006556107198282611270565b6001600160a01b0380831660009081526007602052604081205461073e92168361134f565b5050565b61074c33826114b3565b3360009081526007602052604081205461077091906001600160a01b03168361134f565b60405181815233907fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59060200160405180910390a250565b6107b23382611602565b50565b6005546001600160a01b031633146107df5760405162461bcd60e51b815260040161061790611a31565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b600043821061088a5760405162461bcd60e51b815260206004820152602760248201527f474f4f4e3a3a6765745072696f72566f7465733a206e6f742079657420646574604482015266195c9b5a5b995960ca1b6064820152608401610617565b6001600160a01b03831660009081526009602052604090205463ffffffff16806108b8576000915050610583565b6001600160a01b038416600090815260086020526040812084916108dd600185611aee565b63ffffffff90811682526020820192909252604001600020541611610946576001600160a01b038416600090815260086020526040812090610920600184611aee565b63ffffffff1663ffffffff16815260200190815260200160002060010154915050610583565b6001600160a01b038416600090815260086020908152604080832083805290915290205463ffffffff16831015610981576000915050610583565b60008061098f600184611aee565b90505b8163ffffffff168163ffffffff161115610a5757600060026109b48484611aee565b6109be9190611aa6565b6109c89083611aee565b6001600160a01b038816600090815260086020908152604080832063ffffffff8086168552908352928190208151808301909252805490931680825260019093015491810191909152919250871415610a2b576020015194506105839350505050565b805163ffffffff16871115610a4257819350610a50565b610a4d600183611aee565b92505b5050610992565b506001600160a01b038516600090815260086020908152604080832063ffffffff9094168352929052206001015491505092915050565b6060600480546104ef90611b13565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610b1f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610617565b610b2e338561062f8685611ad7565b5060019392505050565b600061057f338484611098565b6001600160a01b03811660009081526009602052604081205463ffffffff1680610b70576000610bb3565b6001600160a01b038316600090815260086020526040812090610b94600184611aee565b63ffffffff1663ffffffff168152602001908152602001600020600101545b9392505050565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a866610be56104e0565b80519060200120610bf34690565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c08401526001600160a01b038b1660e084015261010083018a90526101208084018a90528251808503909101815261014084019092528151919093012061190160f01b610160830152610162820183905261018282018190529192506000906101a20160408051601f198184030181528282528051602091820120600080855291840180845281905260ff8a169284019290925260608301889052608083018790529092509060019060a0016020604051602081039080840390855afa158015610d1f573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610d915760405162461bcd60e51b815260206004820152602660248201527f474f4f4e3a3a64656c656761746542795369673a20696e76616c6964207369676044820152656e617475726560d01b6064820152608401610617565b6001600160a01b0381166000908152600a60205260408120805491610db583611b4e565b919050558914610e125760405162461bcd60e51b815260206004820152602260248201527f474f4f4e3a3a64656c656761746542795369673a20696e76616c6964206e6f6e604482015261636560f01b6064820152608401610617565b87421115610e715760405162461bcd60e51b815260206004820152602660248201527f474f4f4e3a3a64656c656761746542795369673a207369676e617475726520656044820152651e1c1a5c995960d21b6064820152608401610617565b610e7b818b611602565b505050505b505050505050565b6005546001600160a01b03163314610eb25760405162461bcd60e51b815260040161061790611a31565b6001600160a01b038116610f175760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610617565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610fd55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610617565b6001600160a01b0382166110365760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610617565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166110fc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610617565b6001600160a01b03821661115e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610617565b6001600160a01b038316600090815260208190526040902054818110156111d65760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610617565b6111e08282611ad7565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290611216908490611a66565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161126291815260200190565b60405180910390a350505050565b6001600160a01b0382166112c65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610617565b80600260008282546112d89190611a66565b90915550506001600160a01b03821660009081526020819052604081208054839290611305908490611a66565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b816001600160a01b0316836001600160a01b0316141580156113715750600081115b156114ae576001600160a01b03831615611414576001600160a01b03831660009081526009602052604081205463ffffffff1690816113b15760006113f4565b6001600160a01b0385166000908152600860205260408120906113d5600185611aee565b63ffffffff1663ffffffff168152602001908152602001600020600101545b905060006114028483611ad7565b905061141086848484611681565b5050505b6001600160a01b038216156114ae576001600160a01b03821660009081526009602052604081205463ffffffff16908161144f576000611492565b6001600160a01b038416600090815260086020526040812090611473600185611aee565b63ffffffff1663ffffffff168152602001908152602001600020600101545b905060006114a08483611a66565b9050610e8085848484611681565b505050565b6001600160a01b0382166115135760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610617565b6001600160a01b038216600090815260208190526040902054818110156115875760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610617565b6115918282611ad7565b6001600160a01b038416600090815260208190526040812091909155600280548492906115bf908490611ad7565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161108b565b6001600160a01b038281166000818152600760208181526040808420805485845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a461167b82848361134f565b50505050565b60006116a543604051806060016040528060348152602001611b8060349139611823565b905060008463ffffffff161180156116ff57506001600160a01b038516600090815260086020526040812063ffffffff8316916116e3600188611aee565b63ffffffff908116825260208201929092526040016000205416145b15611748576001600160a01b03851660009081526008602052604081208391611729600188611aee565b63ffffffff1681526020810191909152604001600020600101556117d8565b60408051808201825263ffffffff838116825260208083018681526001600160a01b038a166000908152600883528581208a851682529092529390209151825463ffffffff1916911617815590516001918201556117a7908590611a7e565b6001600160a01b0386166000908152600960205260409020805463ffffffff191663ffffffff929092169190911790555b60408051848152602081018490526001600160a01b038716917fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724910160405180910390a25050505050565b600081640100000000841061184b5760405162461bcd60e51b815260040161061791906119dc565b509192915050565b80356001600160a01b038116811461186a57600080fd5b919050565b60006020828403121561188157600080fd5b610bb382611853565b6000806040838503121561189d57600080fd5b6118a683611853565b91506118b460208401611853565b90509250929050565b6000806000606084860312156118d257600080fd5b6118db84611853565b92506118e960208501611853565b9150604084013590509250925092565b6000806040838503121561190c57600080fd5b61191583611853565b946020939093013593505050565b60008060008060008060c0878903121561193c57600080fd5b61194587611853565b95506020870135945060408701359350606087013560ff8116811461196957600080fd5b9598949750929560808101359460a0909101359350915050565b6000806040838503121561199657600080fd5b61199f83611853565b9150602083013563ffffffff811681146119b857600080fd5b809150509250929050565b6000602082840312156119d557600080fd5b5035919050565b600060208083528351808285015260005b81811015611a09578581018301518582016040015282016119ed565b81811115611a1b576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611a7957611a79611b69565b500190565b600063ffffffff808316818516808303821115611a9d57611a9d611b69565b01949350505050565b600063ffffffff80841680611acb57634e487b7160e01b600052601260045260246000fd5b92169190910492915050565b600082821015611ae957611ae9611b69565b500390565b600063ffffffff83811690831681811015611b0b57611b0b611b69565b039392505050565b600181811c90821680611b2757607f821691505b60208210811415611b4857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b6257611b62611b69565b5060010190565b634e487b7160e01b600052601160045260246000fdfe474f4f4e3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473a2646970667358221220c969ac324452191f5c0060c9c57e1874dfca74e04b4bd271b89d6875983cd34064736f6c63430008060033474f4f4e3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c8063782d6fe1116100f9578063b4b5ea5711610097578063dd62ed3e11610071578063dd62ed3e14610416578063e7a324dc1461044f578063f1127ed814610476578063f2fde38b146104cd57600080fd5b8063b4b5ea57146103de578063c3cda520146103f1578063d5abeb011461040457600080fd5b806395d89b41116100d357806395d89b41146103a7578063a2309ff8146103af578063a457c2d7146103b8578063a9059cbb146103cb57600080fd5b8063782d6fe1146103635780637ecebe00146103765780638da5cb5b1461039657600080fd5b806340c10f19116101665780635c19a95c116101405780635c19a95c146102e45780636fcfff45146102f757806370a0823114610332578063715018a61461035b57600080fd5b806340c10f191461027857806342966c681461028d578063587cde1e146102a057600080fd5b806320606b70116101a257806320606b701461021c57806323b872dd14610243578063313ce56714610256578063395093511461026557600080fd5b806306fdde03146101c9578063095ea7b3146101e757806318160ddd1461020a575b600080fd5b6101d16104e0565b6040516101de91906119dc565b60405180910390f35b6101fa6101f53660046118f9565b610572565b60405190151581526020016101de565b6002545b6040519081526020016101de565b61020e7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6101fa6102513660046118bd565b610589565b604051601281526020016101de565b6101fa6102733660046118f9565b61063f565b61028b6102863660046118f9565b610676565b005b61028b61029b3660046119c3565b610742565b6102cc6102ae36600461186f565b6001600160a01b039081166000908152600760205260409020541690565b6040516001600160a01b0390911681526020016101de565b61028b6102f236600461186f565b6107a8565b61031d61030536600461186f565b60096020526000908152604090205463ffffffff1681565b60405163ffffffff90911681526020016101de565b61020e61034036600461186f565b6001600160a01b031660009081526020819052604090205490565b61028b6107b5565b61020e6103713660046118f9565b610829565b61020e61038436600461186f565b600a6020526000908152604090205481565b6005546001600160a01b03166102cc565b6101d1610a8e565b61020e60065481565b6101fa6103c63660046118f9565b610a9d565b6101fa6103d93660046118f9565b610b38565b61020e6103ec36600461186f565b610b45565b61028b6103ff366004611923565b610bba565b61020e6a22bdd88fed9efc6a00000081565b61020e61042436600461188a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61020e7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b6104b1610484366004611983565b60086020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6040805163ffffffff90931683526020830191909152016101de565b61028b6104db36600461186f565b610e88565b6060600380546104ef90611b13565b80601f016020809104026020016040519081016040528092919081815260200182805461051b90611b13565b80156105685780601f1061053d57610100808354040283529160200191610568565b820191906000526020600020905b81548152906001019060200180831161054b57829003601f168201915b5050505050905090565b600061057f338484610f73565b5060015b92915050565b6000610596848484611098565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156106205760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610634853361062f8685611ad7565b610f73565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161057f91859061062f908690611a66565b6005546001600160a01b031633146106a05760405162461bcd60e51b815260040161061790611a31565b6a22bdd88fed9efc6a000000600654826106ba9190611a66565b11156106fe5760405162461bcd60e51b815260206004820152601360248201527211d3d3d38e881b585e14dd5c1c1b1e481a1a5d606a1b6044820152606401610617565b8060065461070c9190611a66565b6006556107198282611270565b6001600160a01b0380831660009081526007602052604081205461073e92168361134f565b5050565b61074c33826114b3565b3360009081526007602052604081205461077091906001600160a01b03168361134f565b60405181815233907fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59060200160405180910390a250565b6107b23382611602565b50565b6005546001600160a01b031633146107df5760405162461bcd60e51b815260040161061790611a31565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b600043821061088a5760405162461bcd60e51b815260206004820152602760248201527f474f4f4e3a3a6765745072696f72566f7465733a206e6f742079657420646574604482015266195c9b5a5b995960ca1b6064820152608401610617565b6001600160a01b03831660009081526009602052604090205463ffffffff16806108b8576000915050610583565b6001600160a01b038416600090815260086020526040812084916108dd600185611aee565b63ffffffff90811682526020820192909252604001600020541611610946576001600160a01b038416600090815260086020526040812090610920600184611aee565b63ffffffff1663ffffffff16815260200190815260200160002060010154915050610583565b6001600160a01b038416600090815260086020908152604080832083805290915290205463ffffffff16831015610981576000915050610583565b60008061098f600184611aee565b90505b8163ffffffff168163ffffffff161115610a5757600060026109b48484611aee565b6109be9190611aa6565b6109c89083611aee565b6001600160a01b038816600090815260086020908152604080832063ffffffff8086168552908352928190208151808301909252805490931680825260019093015491810191909152919250871415610a2b576020015194506105839350505050565b805163ffffffff16871115610a4257819350610a50565b610a4d600183611aee565b92505b5050610992565b506001600160a01b038516600090815260086020908152604080832063ffffffff9094168352929052206001015491505092915050565b6060600480546104ef90611b13565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610b1f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610617565b610b2e338561062f8685611ad7565b5060019392505050565b600061057f338484611098565b6001600160a01b03811660009081526009602052604081205463ffffffff1680610b70576000610bb3565b6001600160a01b038316600090815260086020526040812090610b94600184611aee565b63ffffffff1663ffffffff168152602001908152602001600020600101545b9392505050565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a866610be56104e0565b80519060200120610bf34690565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c08401526001600160a01b038b1660e084015261010083018a90526101208084018a90528251808503909101815261014084019092528151919093012061190160f01b610160830152610162820183905261018282018190529192506000906101a20160408051601f198184030181528282528051602091820120600080855291840180845281905260ff8a169284019290925260608301889052608083018790529092509060019060a0016020604051602081039080840390855afa158015610d1f573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610d915760405162461bcd60e51b815260206004820152602660248201527f474f4f4e3a3a64656c656761746542795369673a20696e76616c6964207369676044820152656e617475726560d01b6064820152608401610617565b6001600160a01b0381166000908152600a60205260408120805491610db583611b4e565b919050558914610e125760405162461bcd60e51b815260206004820152602260248201527f474f4f4e3a3a64656c656761746542795369673a20696e76616c6964206e6f6e604482015261636560f01b6064820152608401610617565b87421115610e715760405162461bcd60e51b815260206004820152602660248201527f474f4f4e3a3a64656c656761746542795369673a207369676e617475726520656044820152651e1c1a5c995960d21b6064820152608401610617565b610e7b818b611602565b505050505b505050505050565b6005546001600160a01b03163314610eb25760405162461bcd60e51b815260040161061790611a31565b6001600160a01b038116610f175760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610617565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610fd55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610617565b6001600160a01b0382166110365760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610617565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166110fc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610617565b6001600160a01b03821661115e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610617565b6001600160a01b038316600090815260208190526040902054818110156111d65760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610617565b6111e08282611ad7565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290611216908490611a66565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161126291815260200190565b60405180910390a350505050565b6001600160a01b0382166112c65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610617565b80600260008282546112d89190611a66565b90915550506001600160a01b03821660009081526020819052604081208054839290611305908490611a66565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b816001600160a01b0316836001600160a01b0316141580156113715750600081115b156114ae576001600160a01b03831615611414576001600160a01b03831660009081526009602052604081205463ffffffff1690816113b15760006113f4565b6001600160a01b0385166000908152600860205260408120906113d5600185611aee565b63ffffffff1663ffffffff168152602001908152602001600020600101545b905060006114028483611ad7565b905061141086848484611681565b5050505b6001600160a01b038216156114ae576001600160a01b03821660009081526009602052604081205463ffffffff16908161144f576000611492565b6001600160a01b038416600090815260086020526040812090611473600185611aee565b63ffffffff1663ffffffff168152602001908152602001600020600101545b905060006114a08483611a66565b9050610e8085848484611681565b505050565b6001600160a01b0382166115135760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610617565b6001600160a01b038216600090815260208190526040902054818110156115875760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610617565b6115918282611ad7565b6001600160a01b038416600090815260208190526040812091909155600280548492906115bf908490611ad7565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161108b565b6001600160a01b038281166000818152600760208181526040808420805485845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a461167b82848361134f565b50505050565b60006116a543604051806060016040528060348152602001611b8060349139611823565b905060008463ffffffff161180156116ff57506001600160a01b038516600090815260086020526040812063ffffffff8316916116e3600188611aee565b63ffffffff908116825260208201929092526040016000205416145b15611748576001600160a01b03851660009081526008602052604081208391611729600188611aee565b63ffffffff1681526020810191909152604001600020600101556117d8565b60408051808201825263ffffffff838116825260208083018681526001600160a01b038a166000908152600883528581208a851682529092529390209151825463ffffffff1916911617815590516001918201556117a7908590611a7e565b6001600160a01b0386166000908152600960205260409020805463ffffffff191663ffffffff929092169190911790555b60408051848152602081018490526001600160a01b038716917fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724910160405180910390a25050505050565b600081640100000000841061184b5760405162461bcd60e51b815260040161061791906119dc565b509192915050565b80356001600160a01b038116811461186a57600080fd5b919050565b60006020828403121561188157600080fd5b610bb382611853565b6000806040838503121561189d57600080fd5b6118a683611853565b91506118b460208401611853565b90509250929050565b6000806000606084860312156118d257600080fd5b6118db84611853565b92506118e960208501611853565b9150604084013590509250925092565b6000806040838503121561190c57600080fd5b61191583611853565b946020939093013593505050565b60008060008060008060c0878903121561193c57600080fd5b61194587611853565b95506020870135945060408701359350606087013560ff8116811461196957600080fd5b9598949750929560808101359460a0909101359350915050565b6000806040838503121561199657600080fd5b61199f83611853565b9150602083013563ffffffff811681146119b857600080fd5b809150509250929050565b6000602082840312156119d557600080fd5b5035919050565b600060208083528351808285015260005b81811015611a09578581018301518582016040015282016119ed565b81811115611a1b576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611a7957611a79611b69565b500190565b600063ffffffff808316818516808303821115611a9d57611a9d611b69565b01949350505050565b600063ffffffff80841680611acb57634e487b7160e01b600052601260045260246000fd5b92169190910492915050565b600082821015611ae957611ae9611b69565b500390565b600063ffffffff83811690831681811015611b0b57611b0b611b69565b039392505050565b600181811c90821680611b2757607f821691505b60208210811415611b4857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b6257611b62611b69565b5060010190565b634e487b7160e01b600052601160045260246000fdfe474f4f4e3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473a2646970667358221220c969ac324452191f5c0060c9c57e1874dfca74e04b4bd271b89d6875983cd34064736f6c63430008060033

Deployed Bytecode Sourcemap

17686:8706:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6546:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8713:169;;;;;;:::i;:::-;;:::i;:::-;;;3173:14:1;;3166:22;3148:41;;3136:2;3121:18;8713:169:0;3103:92:1;7666:108:0;7754:12;;7666:108;;;3346:25:1;;;3334:2;3319:18;7666:108:0;3301:76:1;19566:122:0;;19608:80;19566:122;;9364:422;;;;;;:::i;:::-;;:::i;7508:93::-;;;7591:2;13019:36:1;;13007:2;12992:18;7508:93:0;12974:87:1;10195:215:0;;;;;;:::i;:::-;;:::i;18148:267::-;;;;;;:::i;:::-;;:::i;:::-;;18423:180;;;;;;:::i;:::-;;:::i;20506:129::-;;;;;;:::i;:::-;-1:-1:-1;;;;;20608:21:0;;;20582:7;20608:21;;;:10;:21;;;;;;;;20506:129;;;;-1:-1:-1;;;;;2964:32:1;;;2946:51;;2934:2;2919:18;20506:129:0;2901:102:1;20768:98:0;;;;;;:::i;:::-;;:::i;19451:49::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12586:10:1;12574:23;;;12556:42;;12544:2;12529:18;19451:49:0;12511:93:1;7837:127:0;;;;;;:::i;:::-;-1:-1:-1;;;;;7938:18:0;7911:7;7938:18;;;;;;;;;;;;7837:127;17066:148;;;:::i;23094:1099::-;;;;;;:::i;:::-;;:::i;19966:39::-;;;;;;:::i;:::-;;;;;;;;;;;;;;16415:87;16488:6;;-1:-1:-1;;;;;16488:6:0;16415:87;;6765:104;;;:::i;17927:30::-;;;;;;10913:377;;;;;;:::i;:::-;;:::i;8177:175::-;;;;;;:::i;:::-;;:::i;22451:231::-;;;;;;:::i;:::-;;:::i;21277:988::-;;;;;;:::i;:::-;;:::i;17818:51::-;;17854:15;17818:51;;8415:151;;;;;;:::i;:::-;-1:-1:-1;;;;;8531:18:0;;;8504:7;8531:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8415:151;19775:117;;19821:71;19775:117;;19319:70;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12811:10:1;12799:23;;;12781:42;;12854:2;12839:18;;12832:34;;;;12754:18;19319:70:0;12736:136:1;17369:244:0;;;;;;:::i;:::-;;:::i;6546:100::-;6600:13;6633:5;6626:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6546:100;:::o;8713:169::-;8796:4;8813:39;4209:10;8836:7;8845:6;8813:8;:39::i;:::-;-1:-1:-1;8870:4:0;8713:169;;;;;:::o;9364:422::-;9470:4;9487:36;9497:6;9505:9;9516:6;9487:9;:36::i;:::-;-1:-1:-1;;;;;9563:19:0;;9536:24;9563:19;;;:11;:19;;;;;;;;4209:10;9563:33;;;;;;;;9615:26;;;;9607:79;;;;-1:-1:-1;;;9607:79:0;;8619:2:1;9607:79:0;;;8601:21:1;8658:2;8638:18;;;8631:30;8697:34;8677:18;;;8670:62;-1:-1:-1;;;8748:18:1;;;8741:38;8796:19;;9607:79:0;;;;;;;;;9697:57;9706:6;4209:10;9728:25;9747:6;9728:16;:25;:::i;:::-;9697:8;:57::i;:::-;-1:-1:-1;9774:4:0;;9364:422;-1:-1:-1;;;;9364:422:0:o;10195:215::-;4209:10;10283:4;10332:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10332:34:0;;;;;;;;;;10283:4;;10300:80;;10323:7;;10332:47;;10369:10;;10332:47;:::i;18148:267::-;16488:6;;-1:-1:-1;;;;;16488:6:0;4209:10;16635:23;16627:68;;;;-1:-1:-1;;;16627:68:0;;;;;;;:::i;:::-;17854:15:::1;18234:11;;18224:7;:21;;;;:::i;:::-;:34;;18216:66;;;::::0;-1:-1:-1;;;18216:66:0;;7864:2:1;18216:66:0::1;::::0;::::1;7846:21:1::0;7903:2;7883:18;;;7876:30;-1:-1:-1;;;7922:18:1;;;7915:49;7981:18;;18216:66:0::1;7836:169:1::0;18216:66:0::1;18317:7;18303:11;;:21;;;;:::i;:::-;18289:11;:35:::0;18331:19:::1;18337:3:::0;18342:7;18331:5:::1;:19::i;:::-;-1:-1:-1::0;;;;;18384:15:0;;::::1;18380:1;18384:15:::0;;;:10:::1;:15;::::0;;;;;18357:52:::1;::::0;18384:15:::1;18401:7:::0;18357:14:::1;:52::i;:::-;18148:267:::0;;:::o;18423:180::-;18468:26;18474:10;18486:7;18468:5;:26::i;:::-;18539:10;18524:1;18528:22;;;:10;:22;;;;;;18501:59;;18524:1;-1:-1:-1;;;;;18528:22:0;18552:7;18501:14;:59::i;:::-;18572:25;;3346::1;;;18577:10:0;;18572:25;;3334:2:1;3319:18;18572:25:0;;;;;;;18423:180;:::o;20768:98::-;20828:32;20838:10;20850:9;20828;:32::i;:::-;20768:98;:::o;17066:148::-;16488:6;;-1:-1:-1;;;;;16488:6:0;4209:10;16635:23;16627:68;;;;-1:-1:-1;;;16627:68:0;;;;;;;:::i;:::-;17157:6:::1;::::0;17136:40:::1;::::0;17173:1:::1;::::0;-1:-1:-1;;;;;17157:6:0::1;::::0;17136:40:::1;::::0;17173:1;;17136:40:::1;17187:6;:19:::0;;-1:-1:-1;;;;;;17187:19:0::1;::::0;;17066:148::o;23094:1099::-;23190:7;23231:12;23217:11;:26;23209:78;;;;-1:-1:-1;;;23209:78:0;;9389:2:1;23209:78:0;;;9371:21:1;9428:2;9408:18;;;9401:30;9467:34;9447:18;;;9440:62;-1:-1:-1;;;9518:18:1;;;9511:37;9565:19;;23209:78:0;9361:229:1;23209:78:0;-1:-1:-1;;;;;23318:23:0;;23296:19;23318:23;;;:14;:23;;;;;;;;23352:17;23348:48;;23387:1;23380:8;;;;;23348:48;-1:-1:-1;;;;;23448:20:0;;;;;;:11;:20;;;;;23500:11;;23469:16;23484:1;23469:12;:16;:::i;:::-;23448:38;;;;;;;;;;;;;;;-1:-1:-1;23448:38:0;:48;;:63;23444:137;;-1:-1:-1;;;;;23529:20:0;;;;;;:11;:20;;;;;;23550:16;23565:1;23550:12;:16;:::i;:::-;23529:38;;;;;;;;;;;;;;;:44;;;23522:51;;;;;23444:137;-1:-1:-1;;;;;23634:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;23630:78:0;;;23699:1;23692:8;;;;;23630:78;23716:12;;23754:16;23769:1;23754:12;:16;:::i;:::-;23739:31;;23777:364;23792:5;23784:13;;:5;:13;;;23777:364;;;23808:13;23850:1;23833:13;23841:5;23833;:13;:::i;:::-;23832:19;;;;:::i;:::-;23824:27;;:5;:27;:::i;:::-;-1:-1:-1;;;;;23910:20:0;;23887;23910;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;23887:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;23808:43;;-1:-1:-1;23951:27:0;;23947:187;;;23998:8;;;;-1:-1:-1;23991:15:0;;-1:-1:-1;;;;23991:15:0;23947:187;24026:12;;:26;;;-1:-1:-1;24022:112:0;;;24073:6;24065:14;;24022:112;;;24114:10;24123:1;24114:6;:10;:::i;:::-;24106:18;;24022:112;23799:342;;23777:364;;;-1:-1:-1;;;;;;24154:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;-1:-1:-1;;23094:1099:0;;;;:::o;6765:104::-;6821:13;6854:7;6847:14;;;;;:::i;10913:377::-;4209:10;11006:4;11050:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11050:34:0;;;;;;;;;;11103:35;;;;11095:85;;;;-1:-1:-1;;;11095:85:0;;11413:2:1;11095:85:0;;;11395:21:1;11452:2;11432:18;;;11425:30;11491:34;11471:18;;;11464:62;-1:-1:-1;;;11542:18:1;;;11535:35;11587:19;;11095:85:0;11385:227:1;11095:85:0;11191:67;4209:10;11214:7;11223:34;11242:15;11223:16;:34;:::i;11191:67::-;-1:-1:-1;11278:4:0;;10913:377;-1:-1:-1;;;10913:377:0:o;8177:175::-;8263:4;8280:42;4209:10;8304:9;8315:6;8280:9;:42::i;22451:231::-;-1:-1:-1;;;;;22572:23:0;;22531:7;22572:23;;;:14;:23;;;;;;;;22609:16;:67;;22675:1;22609:67;;;-1:-1:-1;;;;;22628:20:0;;;;;;:11;:20;;;;;;22649:16;22664:1;22649:12;:16;:::i;:::-;22628:38;;;;;;;;;;;;;;;:44;;;22609:67;22602:74;22451:231;-1:-1:-1;;;22451:231:0:o;21277:988::-;21434:23;19608:80;21541:6;:4;:6::i;:::-;21525:24;;;;;;21560:12;26352:9;;26250:139;21560:12;21478:127;;;;;;;4035:25:1;;;;4076:18;;;4069:34;;;;4119:18;;;4112:34;;;;21591:4:0;4162:18:1;;;;4155:60;;;;21478:127:0;;;;;;;;;;4007:19:1;;;21478:127:0;;21460:152;;;;;;19821:71;21660:102;;;3613:25:1;-1:-1:-1;;;;;3674:32:1;;3654:18;;;3647:60;3723:18;;;3716:34;;;3766:18;;;;3759:34;;;21660:102:0;;;;;;;;;;3585:19:1;;;21660:102:0;;;21642:127;;;;;;;-1:-1:-1;;;21813:93:0;;;2661:27:1;2704:11;;;2697:27;;;2740:12;;;2733:28;;;21460:152:0;;-1:-1:-1;;;2777:12:1;;21813:93:0;;;-1:-1:-1;;21813:93:0;;;;;;;;;21795:118;;21813:93;21795:118;;;;21922:17;21942:26;;;;;;;;;4453:25:1;;;4526:4;4514:17;;4494:18;;;4487:45;;;;4548:18;;;4541:34;;;4591:18;;;4584:34;;;21795:118:0;;-1:-1:-1;21922:17:0;21942:26;;4425:19:1;;21942:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;21942:26:0;;-1:-1:-1;;21942:26:0;;;-1:-1:-1;;;;;;;21983:23:0;;21975:74;;;;-1:-1:-1;;;21975:74:0;;7050:2:1;21975:74:0;;;7032:21:1;7089:2;7069:18;;;7062:30;7128:34;7108:18;;;7101:62;-1:-1:-1;;;7179:18:1;;;7172:36;7225:19;;21975:74:0;7022:228:1;21975:74:0;-1:-1:-1;;;;;22073:17:0;;;;;;:6;:17;;;;;:19;;;;;;:::i;:::-;;;;;22064:5;:28;22056:75;;;;-1:-1:-1;;;22056:75:0;;10199:2:1;22056:75:0;;;10181:21:1;10238:2;10218:18;;;10211:30;10277:34;10257:18;;;10250:62;-1:-1:-1;;;10328:18:1;;;10321:32;10370:19;;22056:75:0;10171:224:1;22056:75:0;22165:6;22146:15;:25;;22138:76;;;;-1:-1:-1;;;22138:76:0;;8212:2:1;22138:76:0;;;8194:21:1;8251:2;8231:18;;;8224:30;8290:34;8270:18;;;8263:62;-1:-1:-1;;;8341:18:1;;;8334:36;8387:19;;22138:76:0;8184:228:1;22138:76:0;22228:31;22238:9;22249;22228;:31::i;:::-;22221:38;;;;21277:988;;;;;;;:::o;17369:244::-;16488:6;;-1:-1:-1;;;;;16488:6:0;4209:10;16635:23;16627:68;;;;-1:-1:-1;;;16627:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17458:22:0;::::1;17450:73;;;::::0;-1:-1:-1;;;17450:73:0;;6240:2:1;17450:73:0::1;::::0;::::1;6222:21:1::0;6279:2;6259:18;;;6252:30;6318:34;6298:18;;;6291:62;-1:-1:-1;;;6369:18:1;;;6362:36;6415:19;;17450:73:0::1;6212:228:1::0;17450:73:0::1;17560:6;::::0;17539:38:::1;::::0;-1:-1:-1;;;;;17539:38:0;;::::1;::::0;17560:6:::1;::::0;17539:38:::1;::::0;17560:6:::1;::::0;17539:38:::1;17588:6;:17:::0;;-1:-1:-1;;;;;;17588:17:0::1;-1:-1:-1::0;;;;;17588:17:0;;;::::1;::::0;;;::::1;::::0;;17369:244::o;14269:346::-;-1:-1:-1;;;;;14371:19:0;;14363:68;;;;-1:-1:-1;;;14363:68:0;;11008:2:1;14363:68:0;;;10990:21:1;11047:2;11027:18;;;11020:30;11086:34;11066:18;;;11059:62;-1:-1:-1;;;11137:18:1;;;11130:34;11181:19;;14363:68:0;10980:226:1;14363:68:0;-1:-1:-1;;;;;14450:21:0;;14442:68;;;;-1:-1:-1;;;14442:68:0;;6647:2:1;14442:68:0;;;6629:21:1;6686:2;6666:18;;;6659:30;6725:34;6705:18;;;6698:62;-1:-1:-1;;;6776:18:1;;;6769:32;6818:19;;14442:68:0;6619:224:1;14442:68:0;-1:-1:-1;;;;;14523:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14575:32;;3346:25:1;;;14575:32:0;;3319:18:1;14575:32:0;;;;;;;;14269:346;;;:::o;11780:604::-;-1:-1:-1;;;;;11886:20:0;;11878:70;;;;-1:-1:-1;;;11878:70:0;;10602:2:1;11878:70:0;;;10584:21:1;10641:2;10621:18;;;10614:30;10680:34;10660:18;;;10653:62;-1:-1:-1;;;10731:18:1;;;10724:35;10776:19;;11878:70:0;10574:227:1;11878:70:0;-1:-1:-1;;;;;11967:23:0;;11959:71;;;;-1:-1:-1;;;11959:71:0;;5433:2:1;11959:71:0;;;5415:21:1;5472:2;5452:18;;;5445:30;5511:34;5491:18;;;5484:62;-1:-1:-1;;;5562:18:1;;;5555:33;5605:19;;11959:71:0;5405:225:1;11959:71:0;-1:-1:-1;;;;;12127:17:0;;12103:21;12127:17;;;;;;;;;;;12163:23;;;;12155:74;;;;-1:-1:-1;;;12155:74:0;;7457:2:1;12155:74:0;;;7439:21:1;7496:2;7476:18;;;7469:30;7535:34;7515:18;;;7508:62;-1:-1:-1;;;7586:18:1;;;7579:36;7632:19;;12155:74:0;7429:228:1;12155:74:0;12260:22;12276:6;12260:13;:22;:::i;:::-;-1:-1:-1;;;;;12240:17:0;;;:9;:17;;;;;;;;;;;:42;;;;12293:20;;;;;;;;:30;;12317:6;;12240:9;12293:30;;12317:6;;12293:30;:::i;:::-;;;;;;;;12358:9;-1:-1:-1;;;;;12341:35:0;12350:6;-1:-1:-1;;;;;12341:35:0;;12369:6;12341:35;;;;3346:25:1;;3334:2;3319:18;;3301:76;12341:35:0;;;;;;;;11867:517;11780:604;;;:::o;12666:338::-;-1:-1:-1;;;;;12750:21:0;;12742:65;;;;-1:-1:-1;;;12742:65:0;;11819:2:1;12742:65:0;;;11801:21:1;11858:2;11838:18;;;11831:30;11897:33;11877:18;;;11870:61;11948:18;;12742:65:0;11791:181:1;12742:65:0;12898:6;12882:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;12915:18:0;;:9;:18;;;;;;;;;;:28;;12937:6;;12915:9;:28;;12937:6;;12915:28;:::i;:::-;;;;-1:-1:-1;;12959:37:0;;3346:25:1;;;-1:-1:-1;;;;;12959:37:0;;;12976:1;;12959:37;;3334:2:1;3319:18;12959:37:0;;;;;;;12666:338;;:::o;24614:827::-;24716:6;-1:-1:-1;;;;;24706:16:0;:6;-1:-1:-1;;;;;24706:16:0;;;:30;;;;;24735:1;24726:6;:10;24706:30;24702:734;;;-1:-1:-1;;;;;24751:20:0;;;24747:336;;-1:-1:-1;;;;;24843:22:0;;24824:16;24843:22;;;:14;:22;;;;;;;;;24896:13;:60;;24955:1;24896:60;;;-1:-1:-1;;;;;24912:19:0;;;;;;:11;:19;;;;;;24932:13;24944:1;24932:9;:13;:::i;:::-;24912:34;;;;;;;;;;;;;;;:40;;;24896:60;24876:80;-1:-1:-1;24967:17:0;24987:18;24999:6;24876:80;24987:18;:::i;:::-;24967:38;;25016:57;25033:6;25041:9;25052;25063;25016:16;:57::i;:::-;24773:310;;;24747:336;-1:-1:-1;;;;;25097:20:0;;;25093:336;;-1:-1:-1;;;;;25189:22:0;;25170:16;25189:22;;;:14;:22;;;;;;;;;25242:13;:60;;25301:1;25242:60;;;-1:-1:-1;;;;;25258:19:0;;;;;;:11;:19;;;;;;25278:13;25290:1;25278:9;:13;:::i;:::-;25258:34;;;;;;;;;;;;;;;:40;;;25242:60;25222:80;-1:-1:-1;25313:17:0;25333:18;25345:6;25222:80;25333:18;:::i;:::-;25313:38;;25362:57;25379:6;25387:9;25398;25409;25362:16;:57::i;25093:336::-;24614:827;;;:::o;13337:494::-;-1:-1:-1;;;;;13421:21:0;;13413:67;;;;-1:-1:-1;;;13413:67:0;;9797:2:1;13413:67:0;;;9779:21:1;9836:2;9816:18;;;9809:30;9875:34;9855:18;;;9848:62;-1:-1:-1;;;9926:18:1;;;9919:31;9967:19;;13413:67:0;9769:223:1;13413:67:0;-1:-1:-1;;;;;13580:18:0;;13555:22;13580:18;;;;;;;;;;;13617:24;;;;13609:71;;;;-1:-1:-1;;;13609:71:0;;5837:2:1;13609:71:0;;;5819:21:1;5876:2;5856:18;;;5849:30;5915:34;5895:18;;;5888:62;-1:-1:-1;;;5966:18:1;;;5959:32;6008:19;;13609:71:0;5809:224:1;13609:71:0;13712:23;13729:6;13712:14;:23;:::i;:::-;-1:-1:-1;;;;;13691:18:0;;:9;:18;;;;;;;;;;:44;;;;13746:12;:22;;13762:6;;13691:9;13746:22;;13762:6;;13746:22;:::i;:::-;;;;-1:-1:-1;;13786:37:0;;3346:25:1;;;13812:1:0;;-1:-1:-1;;;;;13786:37:0;;;;;3334:2:1;3319:18;13786:37:0;3301:76:1;24199:409:0;-1:-1:-1;;;;;24306:21:0;;;24280:23;24306:21;;;:10;:21;;;;;;;;;;7938:18;;;;;;;24432:21;;;;:33;;;-1:-1:-1;;;;;;24432:33:0;;;;;;;24479:54;;24306:21;;;;;7938:18;;24432:33;;24306:21;;;24479:54;;24280:23;24479:54;24542:60;24557:15;24574:9;24585:16;24542:14;:60::i;:::-;24273:335;;24199:409;;:::o;25447:640::-;25598:18;25619:76;25626:12;25619:76;;;;;;;;;;;;;;;;;:6;:76::i;:::-;25598:97;;25723:1;25708:12;:16;;;:85;;;;-1:-1:-1;;;;;;25728:22:0;;;;;;:11;:22;;;;;:65;;;;25751:16;25766:1;25751:12;:16;:::i;:::-;25728:40;;;;;;;;;;;;;;;-1:-1:-1;25728:40:0;:50;;:65;25708:85;25704:313;;;-1:-1:-1;;;;;25804:22:0;;;;;;:11;:22;;;;;25853:8;;25827:16;25842:1;25827:12;:16;:::i;:::-;25804:40;;;;;;;;;;;;;-1:-1:-1;25804:40:0;:46;;:57;25704:313;;;25923:33;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25884:22:0;;-1:-1:-1;25884:22:0;;;:11;:22;;;;;:36;;;;;;;;;;;:72;;;;-1:-1:-1;;25884:72:0;;;;;;;;-1:-1:-1;25884:72:0;;;;25993:16;;25884:36;;25993:16;:::i;:::-;-1:-1:-1;;;;;25965:25:0;;;;;;:14;:25;;;;;:44;;-1:-1:-1;;25965:44:0;;;;;;;;;;;;25704:313;26030:51;;;12333:25:1;;;12389:2;12374:18;;12367:34;;;-1:-1:-1;;;;;26030:51:0;;;;;12306:18:1;26030:51:0;;;;;;;25591:496;25447:640;;;;:::o;26093:151::-;26168:6;26202:12;26195:5;26191:9;;26183:32;;;;-1:-1:-1;;;26183:32:0;;;;;;;;:::i;:::-;-1:-1:-1;26236:1:0;;26093:151;-1:-1:-1;;26093:151:0:o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;320:1;317;310:12;272:2;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:2;;;528:1;525;518:12;480:2;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;470:173;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:2;;;810:1;807;800:12;762:2;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;752:224;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:2;;;1126:1;1123;1116:12;1078:2;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;1068:167:1:o;1240:618::-;1342:6;1350;1358;1366;1374;1382;1435:3;1423:9;1414:7;1410:23;1406:33;1403:2;;;1452:1;1449;1442:12;1403:2;1475:29;1494:9;1475:29;:::i;:::-;1465:39;;1551:2;1540:9;1536:18;1523:32;1513:42;;1602:2;1591:9;1587:18;1574:32;1564:42;;1656:2;1645:9;1641:18;1628:32;1700:4;1693:5;1689:16;1682:5;1679:27;1669:2;;1720:1;1717;1710:12;1669:2;1393:465;;;;-1:-1:-1;1393:465:1;;1795:3;1780:19;;1767:33;;1847:3;1832:19;;;1819:33;;-1:-1:-1;1393:465:1;-1:-1:-1;;1393:465:1:o;1863:350::-;1930:6;1938;1991:2;1979:9;1970:7;1966:23;1962:32;1959:2;;;2007:1;2004;1997:12;1959:2;2030:29;2049:9;2030:29;:::i;:::-;2020:39;;2109:2;2098:9;2094:18;2081:32;2153:10;2146:5;2142:22;2135:5;2132:33;2122:2;;2179:1;2176;2169:12;2122:2;2202:5;2192:15;;;1949:264;;;;;:::o;2218:180::-;2277:6;2330:2;2318:9;2309:7;2305:23;2301:32;2298:2;;;2346:1;2343;2336:12;2298:2;-1:-1:-1;2369:23:1;;2288:110;-1:-1:-1;2288:110:1:o;4629:597::-;4741:4;4770:2;4799;4788:9;4781:21;4831:6;4825:13;4874:6;4869:2;4858:9;4854:18;4847:34;4899:1;4909:140;4923:6;4920:1;4917:13;4909:140;;;5018:14;;;5014:23;;5008:30;4984:17;;;5003:2;4980:26;4973:66;4938:10;;4909:140;;;5067:6;5064:1;5061:13;5058:2;;;5137:1;5132:2;5123:6;5112:9;5108:22;5104:31;5097:42;5058:2;-1:-1:-1;5210:2:1;5189:15;-1:-1:-1;;5185:29:1;5170:45;;;;5217:2;5166:54;;4750:476;-1:-1:-1;;;4750:476:1:o;8826:356::-;9028:2;9010:21;;;9047:18;;;9040:30;9106:34;9101:2;9086:18;;9079:62;9173:2;9158:18;;9000:182::o;13066:128::-;13106:3;13137:1;13133:6;13130:1;13127:13;13124:2;;;13143:18;;:::i;:::-;-1:-1:-1;13179:9:1;;13114:80::o;13199:228::-;13238:3;13266:10;13303:2;13300:1;13296:10;13333:2;13330:1;13326:10;13364:3;13360:2;13356:12;13351:3;13348:21;13345:2;;;13372:18;;:::i;:::-;13408:13;;13246:181;-1:-1:-1;;;;13246:181:1:o;13432:288::-;13471:1;13497:10;13534:2;13531:1;13527:10;13556:3;13546:2;;13602:10;13597:3;13593:20;13590:1;13583:31;13637:4;13634:1;13627:15;13665:4;13662:1;13655:15;13546:2;13698:10;;13694:20;;;;;13477:243;-1:-1:-1;;13477:243:1:o;13725:125::-;13765:4;13793:1;13790;13787:8;13784:2;;;13798:18;;:::i;:::-;-1:-1:-1;13835:9:1;;13774:76::o;13855:221::-;13894:4;13923:10;13983;;;;13953;;14005:12;;;14002:2;;;14020:18;;:::i;:::-;14057:13;;13903:173;-1:-1:-1;;;13903:173:1:o;14081:380::-;14160:1;14156:12;;;;14203;;;14224:2;;14278:4;14270:6;14266:17;14256:27;;14224:2;14331;14323:6;14320:14;14300:18;14297:38;14294:2;;;14377:10;14372:3;14368:20;14365:1;14358:31;14412:4;14409:1;14402:15;14440:4;14437:1;14430:15;14294:2;;14136:325;;;:::o;14466:135::-;14505:3;-1:-1:-1;;14526:17:1;;14523:2;;;14546:18;;:::i;:::-;-1:-1:-1;14593:1:1;14582:13;;14513:88::o;14606:127::-;14667:10;14662:3;14658:20;14655:1;14648:31;14698:4;14695:1;14688:15;14722:4;14719:1;14712:15

Swarm Source

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