BNB Price: $697.02 (-1.82%)
Gas: 1 GWei
 

Overview

Max Total Supply

50,000,000AWC

Holders

115,580 ( -0.001%)

Market

Price

$0.1007 @ 0.000144 BNB

Onchain Market Cap

$5,033,700.00

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 8 Decimals)

Filtered by Token Holder
BscScan: Donate
Balance
4.66431249 AWC

Value
$0.47 ( ~0.000674301862605544 BNB) [0.0000%]
0x71c7656ec7ab88b098defb751b7401b5f6d8976f
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Atomic is a self-custodial wallet app to manage various cryptocurrencies in a single interface - Buy, Sell, Exchange and Stake. With access to WEB3 applications. AWC is a utility token for discounts, rewards, and others.

Market

Volume (24H):$70.26
Market Capitalization:$0.00
Circulating Supply:0.00 AWC
Market Data Source: Coinmarketcap


Update? Click here to update the token ICO / general information

Contract Source Code Verified (Exact Match)

Contract Name:
MainToken

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at BscScan.com on 2022-12-01
*/

/*
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */
pragma solidity ^0.4.23;


/**
 * @title BEP20Basic
 * @dev Simpler version of BEP20 interface
 */
contract BEP20Basic {
  function totalSupply() public view returns (uint256);
  function balanceOf(address who) public view returns (uint256);
  function transfer(address to, uint256 value) public returns (bool);
  event Transfer(address indexed from, address indexed to, uint256 value);
}



/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {

  /**
  * @dev Multiplies two numbers, throws on overflow.
  */
  function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {
    // Gas optimization: this is cheaper than asserting 'a' not being zero, but the
    // benefit is lost if 'b' is also tested.
    // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
    if (a == 0) {
      return 0;
    }

    c = a * b;
    assert(c / a == b);
    return c;
  }

  /**
  * @dev Integer division of two numbers, truncating the quotient.
  */
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    // assert(b > 0); // Solidity automatically throws when dividing by 0
    // uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold
    return a / b;
  }

  /**
  * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
  */
  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    assert(b <= a);
    return a - b;
  }

  /**
  * @dev Adds two numbers, throws on overflow.
  */
  function add(uint256 a, uint256 b) internal pure returns (uint256 c) {
    c = a + b;
    assert(c >= a);
    return c;
  }
}



/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract BasicToken is BEP20Basic {
  using SafeMath for uint256;

  mapping(address => uint256) balances;

  uint256 totalSupply_;

  /**
  * @dev total number of tokens in existence
  */
  function totalSupply() public view returns (uint256) {
    return totalSupply_;
  }

  /**
  * @dev transfer token for a specified address
  * @param _to The address to transfer to.
  * @param _value The amount to be transferred.
  */
  function transfer(address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances[msg.sender]);

    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    emit Transfer(msg.sender, _to, _value);
    return true;
  }

  /**
  * @dev Gets the balance of the specified address.
  * @param _owner The address to query the the balance of.
  * @return An uint256 representing the amount owned by the passed address.
  */
  function balanceOf(address _owner) public view returns (uint256) {
    return balances[_owner];
  }

}


/**
 * @title BEP20 interface
 */
contract BEP20 is BEP20Basic {
  function allowance(address owner, address spender)
    public view returns (uint256);

  function transferFrom(address from, address to, uint256 value)
    public returns (bool);

  function approve(address spender, uint256 value) public returns (bool);
  event Approval(
    address indexed owner,
    address indexed spender,
    uint256 value
  );
}


/**
 * @title Standard BEP20 token
 *
 * @dev Implementation of the basic standard token.
 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is BEP20, BasicToken {

  mapping (address => mapping (address => uint256)) internal allowed;


  /**
   * @dev Transfer tokens from one address to another
   * @param _from address The address which you want to send tokens from
   * @param _to address The address which you want to transfer to
   * @param _value uint256 the amount of tokens to be transferred
   */
  function transferFrom(
    address _from,
    address _to,
    uint256 _value
  )
    public
    returns (bool)
  {
    require(_to != address(0));
    require(_value <= balances[_from]);
    require(_value <= allowed[_from][msg.sender]);

    balances[_from] = balances[_from].sub(_value);
    balances[_to] = balances[_to].add(_value);
    allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
    emit Transfer(_from, _to, _value);
    return true;
  }

  /**
   * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
   *
   * 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:
   * @param _spender The address which will spend the funds.
   * @param _value The amount of tokens to be spent.
   */
  function approve(address _spender, uint256 _value) public returns (bool) {
    allowed[msg.sender][_spender] = _value;
    emit Approval(msg.sender, _spender, _value);
    return true;
  }

  /**
   * @dev Function to check the amount of tokens that an owner allowed to a spender.
   * @param _owner address The address which owns the funds.
   * @param _spender address The address which will spend the funds.
   * @return A uint256 specifying the amount of tokens still available for the spender.
   */
  function allowance(
    address _owner,
    address _spender
   )
    public
    view
    returns (uint256)
  {
    return allowed[_owner][_spender];
  }

  /**
   * @dev Increase the amount of tokens that an owner allowed to a spender.
   *
   * approve should be called when allowed[_spender] == 0. To increment
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param _spender The address which will spend the funds.
   * @param _addedValue The amount of tokens to increase the allowance by.
   */
  function increaseApproval(
    address _spender,
    uint _addedValue
  )
    public
    returns (bool)
  {
    allowed[msg.sender][_spender] = (
      allowed[msg.sender][_spender].add(_addedValue));
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

  /**
   * @dev Decrease the amount of tokens that an owner allowed to a spender.
   *
   * approve should be called when allowed[_spender] == 0. To decrement
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param _spender The address which will spend the funds.
   * @param _subtractedValue The amount of tokens to decrease the allowance by.
   */
  function decreaseApproval(
    address _spender,
    uint _subtractedValue
  )
    public
    returns (bool)
  {
    uint oldValue = allowed[msg.sender][_spender];
    if (_subtractedValue > oldValue) {
      allowed[msg.sender][_spender] = 0;
    } else {
      allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
    }
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

}



/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
  address public owner;


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


  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  constructor() public {
    owner = msg.sender;
  }

  /**
   * @dev Throws if called by any account other than the owner.
   */
  modifier onlyOwner() {
    require(msg.sender == owner);
    _;
  }

  /**
   * @dev Allows the current owner to relinquish control of the contract.
   */
  function renounceOwnership() public onlyOwner {
    emit OwnershipRenounced(owner);
    owner = address(0);
  }

  /**
   * @dev Allows the current owner to transfer control of the contract to a newOwner.
   * @param _newOwner The address to transfer ownership to.
   */
  function transferOwnership(address _newOwner) public onlyOwner {
    _transferOwnership(_newOwner);
  }

  /**
   * @dev Transfers control of the contract to a newOwner.
   * @param _newOwner The address to transfer ownership to.
   */
  function _transferOwnership(address _newOwner) internal {
    require(_newOwner != address(0));
    emit OwnershipTransferred(owner, _newOwner);
    owner = _newOwner;
  }
}


/**
 * @title Mintable token
 * @dev Simple BEP20 Token example, with mintable token creation
 * @dev Issue: * https://github.com/OpenZeppelin/openzeppelin-solidity/issues/120
 * Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol
 */
contract MintableToken is StandardToken, Ownable {
  event Mint(address indexed to, uint256 amount);
  event MintFinished();

  bool public mintingFinished = false;


  modifier canMint() {
    require(!mintingFinished);
    _;
  }

  modifier hasMintPermission() {
    require(msg.sender == owner);
    _;
  }

  /**
   * @dev Function to mint tokens
   * @param _to The address that will receive the minted tokens.
   * @param _amount The amount of tokens to mint.
   * @return A boolean that indicates if the operation was successful.
   */
  function mint(
    address _to,
    uint256 _amount
  )
    hasMintPermission
    canMint
    public
    returns (bool)
  {
    totalSupply_ = totalSupply_.add(_amount);
    balances[_to] = balances[_to].add(_amount);
    emit Mint(_to, _amount);
    emit Transfer(address(0), _to, _amount);
    return true;
  }

  /**
   * @dev Function to stop minting new tokens.
   * @return True if the operation was successful.
   */
  function finishMinting() onlyOwner canMint public returns (bool) {
    mintingFinished = true;
    emit MintFinished();
    return true;
  }
}


contract FreezableToken is StandardToken {
    // freezing chains
    mapping (bytes32 => uint64) internal chains;
    // freezing amounts for each chain
    mapping (bytes32 => uint) internal freezings;
    // total freezing balance per address
    mapping (address => uint) internal freezingBalance;

    event Freezed(address indexed to, uint64 release, uint amount);
    event Released(address indexed owner, uint amount);

    /**
     * @dev Gets the balance of the specified address include freezing tokens.
     * @param _owner The address to query the the balance of.
     * @return An uint256 representing the amount owned by the passed address.
     */
    function balanceOf(address _owner) public view returns (uint256 balance) {
        return super.balanceOf(_owner) + freezingBalance[_owner];
    }

    /**
     * @dev Gets the balance of the specified address without freezing tokens.
     * @param _owner The address to query the the balance of.
     * @return An uint256 representing the amount owned by the passed address.
     */
    function actualBalanceOf(address _owner) public view returns (uint256 balance) {
        return super.balanceOf(_owner);
    }

    function freezingBalanceOf(address _owner) public view returns (uint256 balance) {
        return freezingBalance[_owner];
    }

    /**
     * @dev gets freezing count
     * @param _addr Address of freeze tokens owner.
     */
    function freezingCount(address _addr) public view returns (uint count) {
        uint64 release = chains[toKey(_addr, 0)];
        while (release != 0) {
            count++;
            release = chains[toKey(_addr, release)];
        }
    }

    /**
     * @dev gets freezing end date and freezing balance for the freezing portion specified by index.
     * @param _addr Address of freeze tokens owner.
     * @param _index Freezing portion index. It ordered by release date descending.
     */
    function getFreezing(address _addr, uint _index) public view returns (uint64 _release, uint _balance) {
        for (uint i = 0; i < _index + 1; i++) {
            _release = chains[toKey(_addr, _release)];
            if (_release == 0) {
                return;
            }
        }
        _balance = freezings[toKey(_addr, _release)];
    }

    /**
     * @dev freeze your tokens to the specified address.
     *      Be careful, gas usage is not deterministic,
     *      and depends on how many freezes _to address already has.
     * @param _to Address to which token will be freeze.
     * @param _amount Amount of token to freeze.
     * @param _until Release date, must be in future.
     */
    function freezeTo(address _to, uint _amount, uint64 _until) public {
        require(_to != address(0));
        require(_amount <= balances[msg.sender]);

        balances[msg.sender] = balances[msg.sender].sub(_amount);

        bytes32 currentKey = toKey(_to, _until);
        freezings[currentKey] = freezings[currentKey].add(_amount);
        freezingBalance[_to] = freezingBalance[_to].add(_amount);

        freeze(_to, _until);
        emit Transfer(msg.sender, _to, _amount);
        emit Freezed(_to, _until, _amount);
    }

    /**
     * @dev release first available freezing tokens.
     */
    function releaseOnce() public {
        bytes32 headKey = toKey(msg.sender, 0);
        uint64 head = chains[headKey];
        require(head != 0);
        require(uint64(block.timestamp) > head);
        bytes32 currentKey = toKey(msg.sender, head);

        uint64 next = chains[currentKey];

        uint amount = freezings[currentKey];
        delete freezings[currentKey];

        balances[msg.sender] = balances[msg.sender].add(amount);
        freezingBalance[msg.sender] = freezingBalance[msg.sender].sub(amount);

        if (next == 0) {
            delete chains[headKey];
        } else {
            chains[headKey] = next;
            delete chains[currentKey];
        }
        emit Released(msg.sender, amount);
    }

    /**
     * @dev release all available for release freezing tokens. Gas usage is not deterministic!
     * @return how many tokens was released
     */
    function releaseAll() public returns (uint tokens) {
        uint release;
        uint balance;
        (release, balance) = getFreezing(msg.sender, 0);
        while (release != 0 && block.timestamp > release) {
            releaseOnce();
            tokens += balance;
            (release, balance) = getFreezing(msg.sender, 0);
        }
    }

    function toKey(address _addr, uint _release) internal pure returns (bytes32 result) {
        // WISH masc to increase entropy
        result = 0x5749534800000000000000000000000000000000000000000000000000000000;
        assembly {
            result := or(result, mul(_addr, 0x10000000000000000))
            result := or(result, and(_release, 0xffffffffffffffff))
        }
    }

    function freeze(address _to, uint64 _until) internal {
        require(_until > block.timestamp);
        bytes32 key = toKey(_to, _until);
        bytes32 parentKey = toKey(_to, uint64(0));
        uint64 next = chains[parentKey];

        if (next == 0) {
            chains[parentKey] = _until;
            return;
        }

        bytes32 nextKey = toKey(_to, next);
        uint parent;

        while (next != 0 && _until > next) {
            parent = next;
            parentKey = nextKey;

            next = chains[nextKey];
            nextKey = toKey(_to, next);
        }

        if (_until == next) {
            return;
        }

        if (next != 0) {
            chains[key] = next;
        }

        chains[parentKey] = _until;
    }
}


/**
 * @title Burnable Token
 * @dev Token that can be irreversibly burned (destroyed).
 */
contract BurnableToken is BasicToken {

  event Burn(address indexed burner, uint256 value);

  /**
   * @dev Burns a specific amount of tokens.
   * @param _value The amount of token to be burned.
   */
  function burn(uint256 _value) public {
    _burn(msg.sender, _value);
  }

  function _burn(address _who, uint256 _value) internal {
    require(_value <= balances[_who]);
    // no need to require value <= totalSupply, since that would imply the
    // sender's balance is greater than the totalSupply, which *should* be an assertion failure

    balances[_who] = balances[_who].sub(_value);
    totalSupply_ = totalSupply_.sub(_value);
    emit Burn(_who, _value);
    emit Transfer(_who, address(0), _value);
  }
}



/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is Ownable {
  event Pause();
  event Unpause();

  bool public paused = false;


  /**
   * @dev Modifier to make a function callable only when the contract is not paused.
   */
  modifier whenNotPaused() {
    require(!paused);
    _;
  }

  /**
   * @dev Modifier to make a function callable only when the contract is paused.
   */
  modifier whenPaused() {
    require(paused);
    _;
  }

  /**
   * @dev called by the owner to pause, triggers stopped state
   */
  function pause() onlyOwner whenNotPaused public {
    paused = true;
    emit Pause();
  }

  /**
   * @dev called by the owner to unpause, returns to normal state
   */
  function unpause() onlyOwner whenPaused public {
    paused = false;
    emit Unpause();
  }
}


contract FreezableMintableToken is FreezableToken, MintableToken {
    /**
     * @dev Mint the specified amount of token to the specified address and freeze it until the specified date.
     *      Be careful, gas usage is not deterministic,
     *      and depends on how many freezes _to address already has.
     * @param _to Address to which token will be freeze.
     * @param _amount Amount of token to mint and freeze.
     * @param _until Release date, must be in future.
     * @return A boolean that indicates if the operation was successful.
     */
    function mintAndFreeze(address _to, uint _amount, uint64 _until) public onlyOwner canMint returns (bool) {
        totalSupply_ = totalSupply_.add(_amount);

        bytes32 currentKey = toKey(_to, _until);
        freezings[currentKey] = freezings[currentKey].add(_amount);
        freezingBalance[_to] = freezingBalance[_to].add(_amount);

        freeze(_to, _until);
        emit Mint(_to, _amount);
        emit Freezed(_to, _until, _amount);
        emit Transfer(msg.sender, _to, _amount);
        return true;
    }
}



contract Consts {
    uint public constant TOKEN_DECIMALS = 8;
    uint8 public constant TOKEN_DECIMALS_UINT8 = 8;
    uint public constant TOKEN_DECIMAL_MULTIPLIER = 10 ** TOKEN_DECIMALS;

    string public constant TOKEN_NAME = "Atomic Wallet Token";
    string public constant TOKEN_SYMBOL = "AWC";
    bool public constant PAUSED = false;
    address public constant TARGET_USER = 0xCf300663C9567Cc811b2Cf725cAF8876B35ef234;
    
    bool public constant CONTINUE_MINTING = true;
}




contract MainToken is Consts, FreezableMintableToken, BurnableToken, Pausable
    
{
    
    event Initialized();
    bool public initialized = false;

    constructor() public {
        init();
        transferOwnership(TARGET_USER);
    }
    

    function name() public pure returns (string _name) {
        return TOKEN_NAME;
    }

    function symbol() public pure returns (string _symbol) {
        return TOKEN_SYMBOL;
    }

    function decimals() public pure returns (uint8 _decimals) {
        return TOKEN_DECIMALS_UINT8;
    }

    function transferFrom(address _from, address _to, uint256 _value) public returns (bool _success) {
        require(!paused);
        return super.transferFrom(_from, _to, _value);
    }

    function transfer(address _to, uint256 _value) public returns (bool _success) {
        require(!paused);
        return super.transfer(_to, _value);
    }

    
    function init() private {
        require(!initialized);
        initialized = true;

        if (PAUSED) {
            pause();
        }

        

        if (!CONTINUE_MINTING) {
            finishMinting();
        }

        emit Initialized();
    }
    
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"CONTINUE_MINTING","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"},{"name":"_index","type":"uint256"}],"name":"getFreezing","outputs":[{"name":"_release","type":"uint64"},{"name":"_balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"_name","type":"string"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_until","type":"uint64"}],"name":"mintAndFreeze","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"initialized","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"actualBalanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_NAME","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"_success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_SYMBOL","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"_decimals","type":"uint8"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_until","type":"uint64"}],"name":"freezeTo","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_DECIMAL_MULTIPLIER","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_DECIMALS","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"releaseAll","outputs":[{"name":"tokens","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"releaseOnce","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TARGET_USER","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"_symbol","type":"string"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"_success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"PAUSED","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"freezingCount","outputs":[{"name":"count","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_DECIMALS_UINT8","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"freezingBalanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"release","type":"uint64"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Freezed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Released","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]

60806040526006805460a060020a62ffffff02191690553480156200002357600080fd5b5060068054600160a060020a031916331790556200004964010000000062000077810204565b6200007173cf300663c9567cc811b2cf725caf8876b35ef234640100000000620000f6810204565b62000197565b600654760100000000000000000000000000000000000000000000900460ff1615620000a257600080fd5b6006805460b060020a60ff0219167601000000000000000000000000000000000000000000001790556040517f5daa87a0e9463431830481fd4b6e3403442dfb9a12b9c07597e9f61d50b633c890600090a1565b600654600160a060020a031633146200010e57600080fd5b620001228164010000000062000125810204565b50565b600160a060020a03811615156200013b57600080fd5b600654604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a360068054600160a060020a031916600160a060020a0392909216919091179055565b611a4d80620001a76000396000f3006080604052600436106101d65763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416623fd35a81146101db57806302d6f7301461020457806305d2035b1461024c57806306fdde0314610261578063095ea7b3146102eb5780630bb2cd6b1461030f578063158ef93e1461034057806317a950ac1461035557806318160ddd14610388578063188214001461039d57806323b872dd146103b25780632a905318146103dc578063313ce567146103f15780633be1e9521461041c5780633f4ba83a1461044f57806340c10f191461046457806342966c681461048857806356780085146104a05780635b7f415c146104b55780635be7fde8146104ca5780635c975abb146104df57806366188463146104f457806366a92cda1461051857806370a082311461052d578063715018a61461054e578063726a431a146105635780637d64bcb4146105945780638456cb59146105a95780638da5cb5b146105be57806395d89b41146105d3578063a9059cbb146105e8578063a9aad58c1461060c578063ca63b5b814610621578063cf3b196714610642578063d73dd62314610657578063d8aeedf51461067b578063dd62ed3e1461069c578063f2fde38b146106c3575b600080fd5b3480156101e757600080fd5b506101f06106e4565b604080519115158252519081900360200190f35b34801561021057600080fd5b50610228600160a060020a03600435166024356106e9565b6040805167ffffffffffffffff909316835260208301919091528051918290030190f35b34801561025857600080fd5b506101f0610776565b34801561026d57600080fd5b50610276610786565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102b0578181015183820152602001610298565b50505050905090810190601f1680156102dd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102f757600080fd5b506101f0600160a060020a03600435166024356107bd565b34801561031b57600080fd5b506101f0600160a060020a036004351660243567ffffffffffffffff60443516610823565b34801561034c57600080fd5b506101f06109c1565b34801561036157600080fd5b50610376600160a060020a03600435166109e4565b60408051918252519081900360200190f35b34801561039457600080fd5b506103766109f5565b3480156103a957600080fd5b506102766109fb565b3480156103be57600080fd5b506101f0600160a060020a0360043581169060243516604435610a32565b3480156103e857600080fd5b50610276610a5f565b3480156103fd57600080fd5b50610406610a96565b6040805160ff9092168252519081900360200190f35b34801561042857600080fd5b5061044d600160a060020a036004351660243567ffffffffffffffff60443516610a9b565b005b34801561045b57600080fd5b5061044d610c0f565b34801561047057600080fd5b506101f0600160a060020a0360043516602435610c88565b34801561049457600080fd5b5061044d600435610d80565b3480156104ac57600080fd5b50610376610d8d565b3480156104c157600080fd5b50610376610d95565b3480156104d657600080fd5b50610376610d9a565b3480156104eb57600080fd5b506101f0610dff565b34801561050057600080fd5b506101f0600160a060020a0360043516602435610e0f565b34801561052457600080fd5b5061044d610eff565b34801561053957600080fd5b50610376600160a060020a03600435166110a2565b34801561055a57600080fd5b5061044d6110cb565b34801561056f57600080fd5b50610578611139565b60408051600160a060020a039092168252519081900360200190f35b3480156105a057600080fd5b506101f0611151565b3480156105b557600080fd5b5061044d6111d5565b3480156105ca57600080fd5b50610578611253565b3480156105df57600080fd5b50610276611262565b3480156105f457600080fd5b506101f0600160a060020a0360043516602435611299565b34801561061857600080fd5b506101f06112c4565b34801561062d57600080fd5b50610376600160a060020a03600435166112c9565b34801561064e57600080fd5b50610406610d95565b34801561066357600080fd5b506101f0600160a060020a036004351660243561134f565b34801561068757600080fd5b50610376600160a060020a03600435166113e8565b3480156106a857600080fd5b50610376600160a060020a0360043581169060243516611403565b3480156106cf57600080fd5b5061044d600160a060020a036004351661142e565b600181565b600080805b836001018110156107425760036000610711878667ffffffffffffffff1661144e565b815260208101919091526040016000205467ffffffffffffffff16925082151561073a5761076e565b6001016106ee565b6004600061075a878667ffffffffffffffff1661144e565b815260208101919091526040016000205491505b509250929050565b60065460a060020a900460ff1681565b60408051808201909152601381527f41746f6d69632057616c6c657420546f6b656e00000000000000000000000000602082015290565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6006546000908190600160a060020a0316331461083f57600080fd5b60065460a060020a900460ff161561085657600080fd5b600154610869908563ffffffff61148c16565b6001556108808567ffffffffffffffff851661144e565b6000818152600460205260409020549091506108a2908563ffffffff61148c16565b600082815260046020908152604080832093909355600160a060020a03881682526005905220546108d9908563ffffffff61148c16565b600160a060020a0386166000908152600560205260409020556108fc8584611499565b604080518581529051600160a060020a038716917f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885919081900360200190a26040805167ffffffffffffffff85168152602081018690528151600160a060020a038816927f2ecd071e4d10ed2221b04636ed0724cce66a873aa98c1a31b4bb0e6846d3aab4928290030190a2604080518581529051600160a060020a038716913391600080516020611a028339815191529181900360200190a3506001949350505050565b600654760100000000000000000000000000000000000000000000900460ff1681565b60006109ef82611633565b92915050565b60015490565b60408051808201909152601381527f41746f6d69632057616c6c657420546f6b656e00000000000000000000000000602082015281565b60065460009060a860020a900460ff1615610a4c57600080fd5b610a5784848461164e565b949350505050565b60408051808201909152600381527f4157430000000000000000000000000000000000000000000000000000000000602082015281565b600890565b6000600160a060020a0384161515610ab257600080fd5b33600090815260208190526040902054831115610ace57600080fd5b33600090815260208190526040902054610aee908463ffffffff6117b316565b33600090815260208190526040902055610b128467ffffffffffffffff841661144e565b600081815260046020526040902054909150610b34908463ffffffff61148c16565b600082815260046020908152604080832093909355600160a060020a0387168252600590522054610b6b908463ffffffff61148c16565b600160a060020a038516600090815260056020526040902055610b8e8483611499565b604080518481529051600160a060020a038616913391600080516020611a028339815191529181900360200190a36040805167ffffffffffffffff84168152602081018590528151600160a060020a038716927f2ecd071e4d10ed2221b04636ed0724cce66a873aa98c1a31b4bb0e6846d3aab4928290030190a250505050565b600654600160a060020a03163314610c2657600080fd5b60065460a860020a900460ff161515610c3e57600080fd5b6006805475ff000000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600654600090600160a060020a03163314610ca257600080fd5b60065460a060020a900460ff1615610cb957600080fd5b600154610ccc908363ffffffff61148c16565b600155600160a060020a038316600090815260208190526040902054610cf8908363ffffffff61148c16565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a03851691600091600080516020611a028339815191529181900360200190a350600192915050565b610d8a33826117c5565b50565b6305f5e10081565b600881565b6000806000610daa3360006106e9565b67ffffffffffffffff909116925090505b8115801590610dc957508142115b15610dfa57610dd6610eff565b91820191610de53360006106e9565b67ffffffffffffffff90911692509050610dbb565b505090565b60065460a860020a900460ff1681565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610e6457336000908152600260209081526040808320600160a060020a0388168452909152812055610e99565b610e74818463ffffffff6117b316565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000806000806000610f1233600061144e565b60008181526003602052604090205490955067ffffffffffffffff169350831515610f3c57600080fd5b8367ffffffffffffffff164267ffffffffffffffff16111515610f5e57600080fd5b610f72338567ffffffffffffffff1661144e565b600081815260036020908152604080832054600483528184208054908590553385529284905292205492955067ffffffffffffffff90911693509150610fbe908263ffffffff61148c16565b3360009081526020818152604080832093909355600590522054610fe8908263ffffffff6117b316565b3360009081526005602052604090205567ffffffffffffffff8216151561102b576000858152600360205260409020805467ffffffffffffffff19169055611065565b600085815260036020526040808220805467ffffffffffffffff861667ffffffffffffffff19918216179091558583529120805490911690555b60408051828152905133917fb21fb52d5749b80f3182f8c6992236b5e5576681880914484d7f4c9b062e619e919081900360200190a25050505050565b600160a060020a0381166000908152600560205260408120546110c483611633565b0192915050565b600654600160a060020a031633146110e257600080fd5b600654604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26006805473ffffffffffffffffffffffffffffffffffffffff19169055565b73cf300663c9567cc811b2cf725caf8876b35ef23481565b600654600090600160a060020a0316331461116b57600080fd5b60065460a060020a900460ff161561118257600080fd5b6006805474ff0000000000000000000000000000000000000000191660a060020a1790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600654600160a060020a031633146111ec57600080fd5b60065460a860020a900460ff161561120357600080fd5b6006805475ff000000000000000000000000000000000000000000191660a860020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600654600160a060020a031681565b60408051808201909152600381527f4157430000000000000000000000000000000000000000000000000000000000602082015290565b60065460009060a860020a900460ff16156112b357600080fd5b6112bd83836118b4565b9392505050565b600081565b600080600360006112db85600061144e565b815260208101919091526040016000205467ffffffffffffffff1690505b67ffffffffffffffff81161561134957600190910190600360006113278567ffffffffffffffff851661144e565b815260208101919091526040016000205467ffffffffffffffff1690506112f9565b50919050565b336000908152600260209081526040808320600160a060020a0386168452909152812054611383908363ffffffff61148c16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a031660009081526005602052604090205490565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600654600160a060020a0316331461144557600080fd5b610d8a81611983565b67ffffffffffffffff166801000000000000000091909102177f57495348000000000000000000000000000000000000000000000000000000001790565b818101828110156109ef57fe5b6000808080804267ffffffffffffffff8716116114b557600080fd5b6114c9878767ffffffffffffffff1661144e565b94506114d687600061144e565b60008181526003602052604090205490945067ffffffffffffffff169250821515611529576000848152600360205260409020805467ffffffffffffffff191667ffffffffffffffff881617905561162a565b61153d878467ffffffffffffffff1661144e565b91505b67ffffffffffffffff83161580159061156c57508267ffffffffffffffff168667ffffffffffffffff16115b156115a5575060008181526003602052604090205490925067ffffffffffffffff9081169183911661159e878461144e565b9150611540565b8267ffffffffffffffff168667ffffffffffffffff1614156115c65761162a565b67ffffffffffffffff831615611600576000858152600360205260409020805467ffffffffffffffff191667ffffffffffffffff85161790555b6000848152600360205260409020805467ffffffffffffffff191667ffffffffffffffff88161790555b50505050505050565b600160a060020a031660009081526020819052604090205490565b6000600160a060020a038316151561166557600080fd5b600160a060020a03841660009081526020819052604090205482111561168a57600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156116ba57600080fd5b600160a060020a0384166000908152602081905260409020546116e3908363ffffffff6117b316565b600160a060020a038086166000908152602081905260408082209390935590851681522054611718908363ffffffff61148c16565b600160a060020a0380851660009081526020818152604080832094909455918716815260028252828120338252909152205461175a908363ffffffff6117b316565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020611a02833981519152929181900390910190a35060019392505050565b6000828211156117bf57fe5b50900390565b600160a060020a0382166000908152602081905260409020548111156117ea57600080fd5b600160a060020a038216600090815260208190526040902054611813908263ffffffff6117b316565b600160a060020a03831660009081526020819052604090205560015461183f908263ffffffff6117b316565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a03851691600080516020611a028339815191529181900360200190a35050565b6000600160a060020a03831615156118cb57600080fd5b336000908152602081905260409020548211156118e757600080fd5b33600090815260208190526040902054611907908363ffffffff6117b316565b3360009081526020819052604080822092909255600160a060020a03851681522054611939908363ffffffff61148c16565b600160a060020a03841660008181526020818152604091829020939093558051858152905191923392600080516020611a028339815191529281900390910190a350600192915050565b600160a060020a038116151561199857600080fd5b600654604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820f98b1ab354a5f49a84d2898348bdce00f526e8220555747efcb573abead22fe30029

Deployed Bytecode

0x6080604052600436106101d65763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416623fd35a81146101db57806302d6f7301461020457806305d2035b1461024c57806306fdde0314610261578063095ea7b3146102eb5780630bb2cd6b1461030f578063158ef93e1461034057806317a950ac1461035557806318160ddd14610388578063188214001461039d57806323b872dd146103b25780632a905318146103dc578063313ce567146103f15780633be1e9521461041c5780633f4ba83a1461044f57806340c10f191461046457806342966c681461048857806356780085146104a05780635b7f415c146104b55780635be7fde8146104ca5780635c975abb146104df57806366188463146104f457806366a92cda1461051857806370a082311461052d578063715018a61461054e578063726a431a146105635780637d64bcb4146105945780638456cb59146105a95780638da5cb5b146105be57806395d89b41146105d3578063a9059cbb146105e8578063a9aad58c1461060c578063ca63b5b814610621578063cf3b196714610642578063d73dd62314610657578063d8aeedf51461067b578063dd62ed3e1461069c578063f2fde38b146106c3575b600080fd5b3480156101e757600080fd5b506101f06106e4565b604080519115158252519081900360200190f35b34801561021057600080fd5b50610228600160a060020a03600435166024356106e9565b6040805167ffffffffffffffff909316835260208301919091528051918290030190f35b34801561025857600080fd5b506101f0610776565b34801561026d57600080fd5b50610276610786565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102b0578181015183820152602001610298565b50505050905090810190601f1680156102dd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102f757600080fd5b506101f0600160a060020a03600435166024356107bd565b34801561031b57600080fd5b506101f0600160a060020a036004351660243567ffffffffffffffff60443516610823565b34801561034c57600080fd5b506101f06109c1565b34801561036157600080fd5b50610376600160a060020a03600435166109e4565b60408051918252519081900360200190f35b34801561039457600080fd5b506103766109f5565b3480156103a957600080fd5b506102766109fb565b3480156103be57600080fd5b506101f0600160a060020a0360043581169060243516604435610a32565b3480156103e857600080fd5b50610276610a5f565b3480156103fd57600080fd5b50610406610a96565b6040805160ff9092168252519081900360200190f35b34801561042857600080fd5b5061044d600160a060020a036004351660243567ffffffffffffffff60443516610a9b565b005b34801561045b57600080fd5b5061044d610c0f565b34801561047057600080fd5b506101f0600160a060020a0360043516602435610c88565b34801561049457600080fd5b5061044d600435610d80565b3480156104ac57600080fd5b50610376610d8d565b3480156104c157600080fd5b50610376610d95565b3480156104d657600080fd5b50610376610d9a565b3480156104eb57600080fd5b506101f0610dff565b34801561050057600080fd5b506101f0600160a060020a0360043516602435610e0f565b34801561052457600080fd5b5061044d610eff565b34801561053957600080fd5b50610376600160a060020a03600435166110a2565b34801561055a57600080fd5b5061044d6110cb565b34801561056f57600080fd5b50610578611139565b60408051600160a060020a039092168252519081900360200190f35b3480156105a057600080fd5b506101f0611151565b3480156105b557600080fd5b5061044d6111d5565b3480156105ca57600080fd5b50610578611253565b3480156105df57600080fd5b50610276611262565b3480156105f457600080fd5b506101f0600160a060020a0360043516602435611299565b34801561061857600080fd5b506101f06112c4565b34801561062d57600080fd5b50610376600160a060020a03600435166112c9565b34801561064e57600080fd5b50610406610d95565b34801561066357600080fd5b506101f0600160a060020a036004351660243561134f565b34801561068757600080fd5b50610376600160a060020a03600435166113e8565b3480156106a857600080fd5b50610376600160a060020a0360043581169060243516611403565b3480156106cf57600080fd5b5061044d600160a060020a036004351661142e565b600181565b600080805b836001018110156107425760036000610711878667ffffffffffffffff1661144e565b815260208101919091526040016000205467ffffffffffffffff16925082151561073a5761076e565b6001016106ee565b6004600061075a878667ffffffffffffffff1661144e565b815260208101919091526040016000205491505b509250929050565b60065460a060020a900460ff1681565b60408051808201909152601381527f41746f6d69632057616c6c657420546f6b656e00000000000000000000000000602082015290565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6006546000908190600160a060020a0316331461083f57600080fd5b60065460a060020a900460ff161561085657600080fd5b600154610869908563ffffffff61148c16565b6001556108808567ffffffffffffffff851661144e565b6000818152600460205260409020549091506108a2908563ffffffff61148c16565b600082815260046020908152604080832093909355600160a060020a03881682526005905220546108d9908563ffffffff61148c16565b600160a060020a0386166000908152600560205260409020556108fc8584611499565b604080518581529051600160a060020a038716917f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885919081900360200190a26040805167ffffffffffffffff85168152602081018690528151600160a060020a038816927f2ecd071e4d10ed2221b04636ed0724cce66a873aa98c1a31b4bb0e6846d3aab4928290030190a2604080518581529051600160a060020a038716913391600080516020611a028339815191529181900360200190a3506001949350505050565b600654760100000000000000000000000000000000000000000000900460ff1681565b60006109ef82611633565b92915050565b60015490565b60408051808201909152601381527f41746f6d69632057616c6c657420546f6b656e00000000000000000000000000602082015281565b60065460009060a860020a900460ff1615610a4c57600080fd5b610a5784848461164e565b949350505050565b60408051808201909152600381527f4157430000000000000000000000000000000000000000000000000000000000602082015281565b600890565b6000600160a060020a0384161515610ab257600080fd5b33600090815260208190526040902054831115610ace57600080fd5b33600090815260208190526040902054610aee908463ffffffff6117b316565b33600090815260208190526040902055610b128467ffffffffffffffff841661144e565b600081815260046020526040902054909150610b34908463ffffffff61148c16565b600082815260046020908152604080832093909355600160a060020a0387168252600590522054610b6b908463ffffffff61148c16565b600160a060020a038516600090815260056020526040902055610b8e8483611499565b604080518481529051600160a060020a038616913391600080516020611a028339815191529181900360200190a36040805167ffffffffffffffff84168152602081018590528151600160a060020a038716927f2ecd071e4d10ed2221b04636ed0724cce66a873aa98c1a31b4bb0e6846d3aab4928290030190a250505050565b600654600160a060020a03163314610c2657600080fd5b60065460a860020a900460ff161515610c3e57600080fd5b6006805475ff000000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600654600090600160a060020a03163314610ca257600080fd5b60065460a060020a900460ff1615610cb957600080fd5b600154610ccc908363ffffffff61148c16565b600155600160a060020a038316600090815260208190526040902054610cf8908363ffffffff61148c16565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a03851691600091600080516020611a028339815191529181900360200190a350600192915050565b610d8a33826117c5565b50565b6305f5e10081565b600881565b6000806000610daa3360006106e9565b67ffffffffffffffff909116925090505b8115801590610dc957508142115b15610dfa57610dd6610eff565b91820191610de53360006106e9565b67ffffffffffffffff90911692509050610dbb565b505090565b60065460a860020a900460ff1681565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610e6457336000908152600260209081526040808320600160a060020a0388168452909152812055610e99565b610e74818463ffffffff6117b316565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000806000806000610f1233600061144e565b60008181526003602052604090205490955067ffffffffffffffff169350831515610f3c57600080fd5b8367ffffffffffffffff164267ffffffffffffffff16111515610f5e57600080fd5b610f72338567ffffffffffffffff1661144e565b600081815260036020908152604080832054600483528184208054908590553385529284905292205492955067ffffffffffffffff90911693509150610fbe908263ffffffff61148c16565b3360009081526020818152604080832093909355600590522054610fe8908263ffffffff6117b316565b3360009081526005602052604090205567ffffffffffffffff8216151561102b576000858152600360205260409020805467ffffffffffffffff19169055611065565b600085815260036020526040808220805467ffffffffffffffff861667ffffffffffffffff19918216179091558583529120805490911690555b60408051828152905133917fb21fb52d5749b80f3182f8c6992236b5e5576681880914484d7f4c9b062e619e919081900360200190a25050505050565b600160a060020a0381166000908152600560205260408120546110c483611633565b0192915050565b600654600160a060020a031633146110e257600080fd5b600654604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26006805473ffffffffffffffffffffffffffffffffffffffff19169055565b73cf300663c9567cc811b2cf725caf8876b35ef23481565b600654600090600160a060020a0316331461116b57600080fd5b60065460a060020a900460ff161561118257600080fd5b6006805474ff0000000000000000000000000000000000000000191660a060020a1790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600654600160a060020a031633146111ec57600080fd5b60065460a860020a900460ff161561120357600080fd5b6006805475ff000000000000000000000000000000000000000000191660a860020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600654600160a060020a031681565b60408051808201909152600381527f4157430000000000000000000000000000000000000000000000000000000000602082015290565b60065460009060a860020a900460ff16156112b357600080fd5b6112bd83836118b4565b9392505050565b600081565b600080600360006112db85600061144e565b815260208101919091526040016000205467ffffffffffffffff1690505b67ffffffffffffffff81161561134957600190910190600360006113278567ffffffffffffffff851661144e565b815260208101919091526040016000205467ffffffffffffffff1690506112f9565b50919050565b336000908152600260209081526040808320600160a060020a0386168452909152812054611383908363ffffffff61148c16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a031660009081526005602052604090205490565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600654600160a060020a0316331461144557600080fd5b610d8a81611983565b67ffffffffffffffff166801000000000000000091909102177f57495348000000000000000000000000000000000000000000000000000000001790565b818101828110156109ef57fe5b6000808080804267ffffffffffffffff8716116114b557600080fd5b6114c9878767ffffffffffffffff1661144e565b94506114d687600061144e565b60008181526003602052604090205490945067ffffffffffffffff169250821515611529576000848152600360205260409020805467ffffffffffffffff191667ffffffffffffffff881617905561162a565b61153d878467ffffffffffffffff1661144e565b91505b67ffffffffffffffff83161580159061156c57508267ffffffffffffffff168667ffffffffffffffff16115b156115a5575060008181526003602052604090205490925067ffffffffffffffff9081169183911661159e878461144e565b9150611540565b8267ffffffffffffffff168667ffffffffffffffff1614156115c65761162a565b67ffffffffffffffff831615611600576000858152600360205260409020805467ffffffffffffffff191667ffffffffffffffff85161790555b6000848152600360205260409020805467ffffffffffffffff191667ffffffffffffffff88161790555b50505050505050565b600160a060020a031660009081526020819052604090205490565b6000600160a060020a038316151561166557600080fd5b600160a060020a03841660009081526020819052604090205482111561168a57600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156116ba57600080fd5b600160a060020a0384166000908152602081905260409020546116e3908363ffffffff6117b316565b600160a060020a038086166000908152602081905260408082209390935590851681522054611718908363ffffffff61148c16565b600160a060020a0380851660009081526020818152604080832094909455918716815260028252828120338252909152205461175a908363ffffffff6117b316565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020611a02833981519152929181900390910190a35060019392505050565b6000828211156117bf57fe5b50900390565b600160a060020a0382166000908152602081905260409020548111156117ea57600080fd5b600160a060020a038216600090815260208190526040902054611813908263ffffffff6117b316565b600160a060020a03831660009081526020819052604090205560015461183f908263ffffffff6117b316565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a03851691600080516020611a028339815191529181900360200190a35050565b6000600160a060020a03831615156118cb57600080fd5b336000908152602081905260409020548211156118e757600080fd5b33600090815260208190526040902054611907908363ffffffff6117b316565b3360009081526020819052604080822092909255600160a060020a03851681522054611939908363ffffffff61148c16565b600160a060020a03841660008181526020818152604091829020939093558051858152905191923392600080516020611a028339815191529281900390910190a350600192915050565b600160a060020a038116151561199857600080fd5b600654604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820f98b1ab354a5f49a84d2898348bdce00f526e8220555747efcb573abead22fe30029

Deployed Bytecode Sourcemap

20369:1221:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20311:44;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20311:44:0;;;;;;;;;;;;;;;;;;;;;;13139:355;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13139:355:0;-1:-1:-1;;;;;13139:355:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10129:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10129:35:0;;;;20634:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20634:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;20634:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5769:192;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5769:192:0;-1:-1:-1;;;;;5769:192:0;;;;;;;19317:535;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;19317:535:0;-1:-1:-1;;;;;19317:535:0;;;;;;;;;;;20493:31;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20493:31:0;;;;12246:128;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12246:128:0;-1:-1:-1;;;;;12246:128:0;;;;;;;;;;;;;;;;;;;;;2757:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2757:85:0;;;;20062:57;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20062:57:0;;;;20942:188;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;20942:188:0;-1:-1:-1;;;;;20942:188:0;;;;;;;;;;;;20126:43;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20126:43:0;;;;20830:104;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20830:104:0;;;;;;;;;;;;;;;;;;;;;;;13868:547;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13868:547:0;-1:-1:-1;;;;;13868:547:0;;;;;;;;;;;;;18637:95;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18637:95:0;;;;10566:326;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10566:326:0;-1:-1:-1;;;;;10566:326:0;;;;;;;17286:75;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;17286:75:0;;;;;19985:68;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19985:68:0;;;;19886:39;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19886:39:0;;;;15418:357;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15418:357:0;;;;18016:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18016:26:0;;;;7697:440;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7697:440:0;-1:-1:-1;;;;;7697:440:0;;;;;;;14495:756;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14495:756:0;;;;11849:148;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11849:148:0;-1:-1:-1;;;;;11849:148:0;;;;;8985:114;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8985:114:0;;;;20218:80;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20218:80:0;;;;;;;;-1:-1:-1;;;;;20218:80:0;;;;;;;;;;;;;;11012:144;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11012:144:0;;;;18457:93;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18457:93:0;;;;8367:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8367:20:0;;;;20729:93;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20729:93:0;;;;21138:158;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;21138:158:0;-1:-1:-1;;;;;21138:158:0;;;;;;;20176:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20176:35:0;;;;12624:249;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12624:249:0;-1:-1:-1;;;;;12624:249:0;;;;;19932:46;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19932:46:0;;;;6919:304;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6919:304:0;-1:-1:-1;;;;;6919:304:0;;;;;;;12382:130;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12382:130:0;-1:-1:-1;;;;;12382:130:0;;;;;6288:162;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6288:162:0;-1:-1:-1;;;;;6288:162:0;;;;;;;;;;9267:105;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9267:105:0;-1:-1:-1;;;;;9267:105:0;;;;;20311:44;20351:4;20311:44;:::o;13139:355::-;13209:15;;;13252:180;13273:6;13282:1;13273:10;13269:1;:14;13252:180;;;13316:6;:30;13323:22;13329:5;13336:8;13323:22;;:5;:22::i;:::-;13316:30;;;;;;;;;;;;;;;;;-1:-1:-1;13365:13:0;;13361:60;;;13399:7;;13361:60;13285:3;;13252:180;;;13453:9;:33;13463:22;13469:5;13476:8;13463:22;;:5;:22::i;:::-;13453:33;;;;;;;;;;;;;;;-1:-1:-1;13139:355:0;;;;;;;:::o;10129:35::-;;;-1:-1:-1;;;10129:35:0;;;;;:::o;20634:87::-;20703:10;;;;;;;;;;;;;;;;;20634:87;:::o;5769:192::-;5857:10;5836:4;5849:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;5849:29:0;;;;;;;;;;;:38;;;5899;;;;;;;5836:4;;5849:29;;5857:10;;5899:38;;;;;;;;-1:-1:-1;5951:4:0;5769:192;;;;:::o;19317:535::-;8870:5;;19416:4;;;;-1:-1:-1;;;;;8870:5:0;8856:10;:19;8848:28;;;;;;10208:15;;-1:-1:-1;;;10208:15:0;;;;10207:16;10199:25;;;;;;19448:12;;:25;;19465:7;19448:25;:16;:25;:::i;:::-;19433:12;:40;19507:18;19513:3;19507:18;;;:5;:18::i;:::-;19560:21;;;;:9;:21;;;;;;19486:39;;-1:-1:-1;19560:34:0;;19586:7;19560:34;:25;:34;:::i;:::-;19536:21;;;;:9;:21;;;;;;;;:58;;;;-1:-1:-1;;;;;19628:20:0;;;;:15;:20;;;;:33;;19653:7;19628:33;:24;:33;:::i;:::-;-1:-1:-1;;;;;19605:20:0;;;;;;:15;:20;;;;;:56;19674:19;19621:3;19686:6;19674;:19::i;:::-;19709:18;;;;;;;;-1:-1:-1;;;;;19709:18:0;;;;;;;;;;;;;19743:29;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19743:29:0;;;;;;;;;;;19788:34;;;;;;;;-1:-1:-1;;;;;19788:34:0;;;19797:10;;-1:-1:-1;;;;;;;;;;;19788:34:0;;;;;;;;-1:-1:-1;19840:4:0;;19317:535;-1:-1:-1;;;;19317:535:0:o;20493:31::-;;;;;;;;;:::o;12246:128::-;12308:15;12343:23;12359:6;12343:15;:23::i;:::-;12336:30;12246:128;-1:-1:-1;;12246:128:0:o;2757:85::-;2824:12;;2757:85;:::o;20062:57::-;;;;;;;;;;;;;;;;;;;:::o;20942:188::-;21059:6;;21024:13;;-1:-1:-1;;;21059:6:0;;;;21058:7;21050:16;;;;;;21084:38;21103:5;21110:3;21115:6;21084:18;:38::i;:::-;21077:45;20942:188;-1:-1:-1;;;;20942:188:0:o;20126:43::-;;;;;;;;;;;;;;;;;;;:::o;20830:104::-;19977:1;20830:104;:::o;13868:547::-;14105:18;-1:-1:-1;;;;;13954:17:0;;;;13946:26;;;;;;14011:10;14002:8;:20;;;;;;;;;;;13991:31;;;13983:40;;;;;;14068:10;14059:8;:20;;;;;;;;;;;:33;;14084:7;14059:33;:24;:33;:::i;:::-;14045:10;14036:8;:20;;;;;;;;;;:56;14126:18;14132:3;14126:18;;;:5;:18::i;:::-;14179:21;;;;:9;:21;;;;;;14105:39;;-1:-1:-1;14179:34:0;;14205:7;14179:34;:25;:34;:::i;:::-;14155:21;;;;:9;:21;;;;;;;;:58;;;;-1:-1:-1;;;;;14247:20:0;;;;:15;:20;;;;:33;;14272:7;14247:33;:24;:33;:::i;:::-;-1:-1:-1;;;;;14224:20:0;;;;;;:15;:20;;;;;:56;14293:19;14240:3;14305:6;14293;:19::i;:::-;14328:34;;;;;;;;-1:-1:-1;;;;;14328:34:0;;;14337:10;;-1:-1:-1;;;;;;;;;;;14328:34:0;;;;;;;;14378:29;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14378:29:0;;;;;;;;;;;13868:547;;;;:::o;18637:95::-;8870:5;;-1:-1:-1;;;;;8870:5:0;8856:10;:19;8848:28;;;;;;18352:6;;-1:-1:-1;;;18352:6:0;;;;18344:15;;;;;;;;18691:6;:14;;-1:-1:-1;;18691:14:0;;;18717:9;;;;18700:5;;18717:9;18637:95::o;10566:326::-;10302:5;;10687:4;;-1:-1:-1;;;;;10302:5:0;10288:10;:19;10280:28;;;;;;10208:15;;-1:-1:-1;;;10208:15:0;;;;10207:16;10199:25;;;;;;10718:12;;:25;;10735:7;10718:25;:16;:25;:::i;:::-;10703:12;:40;-1:-1:-1;;;;;10766:13:0;;:8;:13;;;;;;;;;;;:26;;10784:7;10766:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;10750:13:0;;:8;:13;;;;;;;;;;;;:42;;;;10804:18;;;;;;;10750:13;;10804:18;;;;;;;;;10834:34;;;;;;;;-1:-1:-1;;;;;10834:34:0;;;10851:1;;-1:-1:-1;;;;;;;;;;;10834:34:0;;;;;;;;-1:-1:-1;10882:4:0;10566:326;;;;:::o;17286:75::-;17330:25;17336:10;17348:6;17330:5;:25::i;:::-;17286:75;:::o;19985:68::-;20033:20;19985:68;:::o;19886:39::-;19924:1;19886:39;:::o;15418:357::-;15456:11;15480:12;15503;15547:26;15559:10;15571:1;15547:11;:26::i;:::-;15526:47;;;;;-1:-1:-1;15526:47:0;-1:-1:-1;15584:184:0;15591:12;;;;;:41;;;15625:7;15607:15;:25;15591:41;15584:184;;;15649:13;:11;:13::i;:::-;15677:17;;;;15730:26;15742:10;15754:1;15730:11;:26::i;:::-;15709:47;;;;;-1:-1:-1;15709:47:0;-1:-1:-1;15584:184:0;;;15418:357;;;:::o;18016:26::-;;;-1:-1:-1;;;18016:26:0;;;;;:::o;7697:440::-;7845:10;7805:4;7837:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7837:29:0;;;;;;;;;;7877:27;;;7873:168;;;7923:10;7947:1;7915:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7915:29:0;;;;;;;;;:33;7873:168;;;8003:30;:8;8016:16;8003:30;:12;:30;:::i;:::-;7979:10;7971:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7971:29:0;;;;;;;;;:62;7873:168;8061:10;8083:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8052:61:0;;8083:29;;;;;;;;;;;8052:61;;;;;;;;;8061:10;8052:61;;;;;;;;;;;-1:-1:-1;8127:4:0;;7697:440;-1:-1:-1;;;7697:440:0:o;14495:756::-;14536:15;14585:11;14704:18;14761:11;14806;14554:20;14560:10;14572:1;14554:5;:20::i;:::-;14599:15;;;;:6;:15;;;;;;14536:38;;-1:-1:-1;14599:15:0;;;-1:-1:-1;14633:9:0;;;14625:18;;;;;;14688:4;14662:30;;14669:15;14662:30;;;14654:39;;;;;;;;14725:23;14731:10;14743:4;14725:23;;:5;:23::i;:::-;14775:18;;;;:6;:18;;;;;;;;;14820:9;:21;;;;;;;14852:28;;;;14925:10;14916:20;;;;;;;;;14704:44;;-1:-1:-1;14775:18:0;;;;;-1:-1:-1;14820:21:0;-1:-1:-1;14916:32:0;;14820:21;14916:32;:24;:32;:::i;:::-;14902:10;14893:8;:20;;;;;;;;;;;:55;;;;14989:15;:27;;;;:39;;15021:6;14989:39;:31;:39;:::i;:::-;14975:10;14959:27;;;;:15;:27;;;;;:69;15045:9;;;;15041:159;;;15078:15;;;;:6;:15;;;;;15071:22;;-1:-1:-1;;15071:22:0;;;15041:159;;;15126:15;;;;:6;:15;;;;;;:22;;;;;-1:-1:-1;;15126:22:0;;;;;;;15170:18;;;;;15163:25;;;;;;;15041:159;15215:28;;;;;;;;15224:10;;15215:28;;;;;;;;;;14495:756;;;;;:::o;11849:148::-;-1:-1:-1;;;;;11966:23:0;;11905:15;11966:23;;;:15;:23;;;;;;11940;11982:6;11940:15;:23::i;:::-;:49;;11849:148;-1:-1:-1;;11849:148:0:o;8985:114::-;8870:5;;-1:-1:-1;;;;;8870:5:0;8856:10;:19;8848:28;;;;;;9062:5;;9043:25;;-1:-1:-1;;;;;9062:5:0;;;;9043:25;;9062:5;;9043:25;9075:5;:18;;-1:-1:-1;;9075:18:0;;;8985:114::o;20218:80::-;20256:42;20218:80;:::o;11012:144::-;8870:5;;11071:4;;-1:-1:-1;;;;;8870:5:0;8856:10;:19;8848:28;;;;;;10208:15;;-1:-1:-1;;;10208:15:0;;;;10207:16;10199:25;;;;;;11084:15;:22;;-1:-1:-1;;11084:22:0;-1:-1:-1;;;11084:22:0;;;11118:14;;;;11084:22;;11118:14;-1:-1:-1;11146:4:0;11012:144;:::o;18457:93::-;8870:5;;-1:-1:-1;;;;;8870:5:0;8856:10;:19;8848:28;;;;;;18192:6;;-1:-1:-1;;;18192:6:0;;;;18191:7;18183:16;;;;;;18512:6;:13;;-1:-1:-1;;18512:13:0;-1:-1:-1;;;18512:13:0;;;18537:7;;;;18512:13;;18537:7;18457:93::o;8367:20::-;;;-1:-1:-1;;;;;8367:20:0;;:::o;20729:93::-;20802:12;;;;;;;;;;;;;;;;;20729:93;:::o;21138:158::-;21236:6;;21201:13;;-1:-1:-1;;;21236:6:0;;;;21235:7;21227:16;;;;;;21261:27;21276:3;21281:6;21261:14;:27::i;:::-;21254:34;21138:158;-1:-1:-1;;;21138:158:0:o;20176:35::-;20206:5;20176:35;:::o;12624:249::-;12683:10;12706:14;12723:6;:23;12730:15;12736:5;12743:1;12730:5;:15::i;:::-;12723:23;;;;;;;;;;;;;;;;;-1:-1:-1;12757:109:0;12764:12;;;;12757:109;;12793:7;;;;;12825:6;:29;12832:21;12838:5;12832:21;;;:5;:21::i;:::-;12825:29;;;;;;;;;;;;;;;;;-1:-1:-1;12757:109:0;;;12624:249;;;;:::o;6919:304::-;7087:10;7022:4;7079:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7079:29:0;;;;;;;;;;:46;;7113:11;7079:46;:33;:46;:::i;:::-;7046:10;7038:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7038:29:0;;;;;;;;;;;;:88;;;7138:61;;;;;;7038:29;;7138:61;;;;;;;;;;;-1:-1:-1;7213:4:0;6919:304;;;;:::o;12382:130::-;-1:-1:-1;;;;;12481:23:0;12446:15;12481:23;;;:15;:23;;;;;;;12382:130::o;6288:162::-;-1:-1:-1;;;;;6419:15:0;;;6393:7;6419:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;6288:162::o;9267:105::-;8870:5;;-1:-1:-1;;;;;8870:5:0;8856:10;:19;8848:28;;;;;;9337:29;9356:9;9337:18;:29::i;15783:387::-;16132:18;16118:33;16062:19;16051:31;;;;16107:45;15929:66;16107:45;;16015:148::o;2324:127::-;2404:5;;;2423:6;;;;2416:14;;;16178:789;16286:11;;;;;16259:15;16250:24;;;;16242:33;;;;;;16300:18;16306:3;16311:6;16300:18;;:5;:18::i;:::-;16286:32;-1:-1:-1;16349:21:0;16355:3;16367:1;16349:5;:21::i;:::-;16395:17;;;;:6;:17;;;;;;16329:41;;-1:-1:-1;16395:17:0;;;-1:-1:-1;16429:9:0;;16425:89;;;16455:17;;;;:6;:17;;;;;:26;;-1:-1:-1;;16455:26:0;;;;;;;16496:7;;16425:89;16544:16;16550:3;16555:4;16544:16;;:5;:16::i;:::-;16526:34;;16595:189;16602:9;;;;;;;:26;;;16624:4;16615:13;;:6;:13;;;16602:26;16595:189;;;-1:-1:-1;16716:15:0;;;;:6;:15;;;;;;16685:7;;-1:-1:-1;16645:13:0;16716:15;;;;16685:7;;16645:13;16756:16;16762:3;16716:15;16756:5;:16::i;:::-;16746:26;;16595:189;;;16810:4;16800:14;;:6;:14;;;16796:53;;;16831:7;;16796:53;16865:9;;;;16861:60;;16891:11;;;;:6;:11;;;;;:18;;-1:-1:-1;;16891:18:0;;;;;;;16861:60;16933:17;;;;:6;:17;;;;;:26;;-1:-1:-1;;16933:26:0;;;;;;;16178:789;;;;;;;;:::o;3541:101::-;-1:-1:-1;;;;;3620:16:0;3597:7;3620:16;;;;;;;;;;;;3541:101::o;4719:487::-;4831:4;-1:-1:-1;;;;;4855:17:0;;;;4847:26;;;;;;-1:-1:-1;;;;;4898:15:0;;:8;:15;;;;;;;;;;;4888:25;;;4880:34;;;;;;-1:-1:-1;;;;;4939:14:0;;;;;;:7;:14;;;;;;;;4954:10;4939:26;;;;;;;;4929:36;;;4921:45;;;;;;-1:-1:-1;;;;;4993:15:0;;:8;:15;;;;;;;;;;;:27;;5013:6;4993:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;4975:15:0;;;:8;:15;;;;;;;;;;;:45;;;;5043:13;;;;;;;:25;;5061:6;5043:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;5027:13:0;;;:8;:13;;;;;;;;;;;:41;;;;5104:14;;;;;:7;:14;;;;;5119:10;5104:26;;;;;;;:38;;5135:6;5104:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;5075:14:0;;;;;;;:7;:14;;;;;;;;5090:10;5075:26;;;;;;;;:67;;;;5154:28;;;;;;;;;;;5075:14;;-1:-1:-1;;;;;;;;;;;5154:28:0;;;;;;;;;;-1:-1:-1;5196:4:0;4719:487;;;;;:::o;2144:113::-;2202:7;2225:6;;;;2218:14;;;;-1:-1:-1;2246:5:0;;;2144:113::o;17367:447::-;-1:-1:-1;;;;;17446:14:0;;:8;:14;;;;;;;;;;;17436:24;;;17428:33;;;;;;-1:-1:-1;;;;;17660:14:0;;:8;:14;;;;;;;;;;;:26;;17679:6;17660:26;:18;:26;:::i;:::-;-1:-1:-1;;;;;17643:14:0;;:8;:14;;;;;;;;;;:43;17708:12;;:24;;17725:6;17708:24;:16;:24;:::i;:::-;17693:12;:39;17744:18;;;;;;;;-1:-1:-1;;;;;17744:18:0;;;;;;;;;;;;;17774:34;;;;;;;;17797:1;;-1:-1:-1;;;;;17774:34:0;;;-1:-1:-1;;;;;;;;;;;17774:34:0;;;;;;;;17367:447;;:::o;3003:329::-;3066:4;-1:-1:-1;;;;;3087:17:0;;;;3079:26;;;;;;3139:10;3130:8;:20;;;;;;;;;;;3120:30;;;3112:39;;;;;;3192:10;3183:8;:20;;;;;;;;;;;:32;;3208:6;3183:32;:24;:32;:::i;:::-;3169:10;3160:8;:20;;;;;;;;;;;:55;;;;-1:-1:-1;;;;;3238:13:0;;;;;;:25;;3256:6;3238:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;3222:13:0;;:8;:13;;;;;;;;;;;;:41;;;;3275:33;;;;;;;3222:13;;3284:10;;-1:-1:-1;;;;;;;;;;;3275:33:0;;;;;;;;;-1:-1:-1;3322:4:0;3003:329;;;;:::o;9513:175::-;-1:-1:-1;;;;;9584:23:0;;;;9576:32;;;;;;9641:5;;9620:38;;-1:-1:-1;;;;;9620:38:0;;;;9641:5;;9620:38;;9641:5;;9620:38;9665:5;:17;;-1:-1:-1;;9665:17:0;-1:-1:-1;;;;;9665:17:0;;;;;;;;;;9513:175::o

Swarm Source

bzzr://f98b1ab354a5f49a84d2898348bdce00f526e8220555747efcb573abead22fe3
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.