ETH Price: $3,026.47 (+3.25%)
Gas: 1 Gwei

Token

APEcoin (APE)
 

Overview

Max Total Supply

10,000,000 APE

Holders

685

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
5 APE

Value
$0.00
0x7926ed26f751e17bedd0207a87cdfc12a8fd9fb6
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

APEcoin is a new token that is known as a Meme Coin. APEcoin is meant to be fun and not taken seriously while navigating the possibilities of blockchain technology. The APEcoin developers are working on a fun browser game, for community members to play while burning and earning APEcoin

# Exchange Pair Price  24H Volume % Volume

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 Etherscan.io on 2020-08-09
*/

/*

 * This file was generated by MyWish Platform (https://mywish.io/)

 * The complete code could be found at https://github.com/MyWishPlatform/

 * Copyright (C) 2020 MyWish

 *

 * 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.24;





/**

 * @title ERC20Basic

 * @dev Simpler version of ERC20 interface

 * @dev see https://github.com/ethereum/EIPs/issues/179

 */

contract ERC20Basic {

  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 ERC20Basic {

  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 ERC20 interface

 * @dev see https://github.com/ethereum/EIPs/issues/20

 */

contract ERC20 is ERC20Basic {

  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 ERC20 token

 *

 * @dev Implementation of the basic standard token.

 * @dev https://github.com/ethereum/EIPs/issues/20

 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol

 */

contract StandardToken is ERC20, 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:

   * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729

   * @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 ERC20 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, _release)

        }

    }



    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 = 18;

    uint8 public constant TOKEN_DECIMALS_UINT8 = 18;

    uint public constant TOKEN_DECIMAL_MULTIPLIER = 10 ** TOKEN_DECIMALS;



    string public constant TOKEN_NAME = "APEcoin";

    string public constant TOKEN_SYMBOL = "APE";

    bool public constant PAUSED = false;

    address public constant TARGET_USER = 0x1456887aFF1DBf8Cc3a4022D79712c887bD8AAdb;

    

    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"}]

60806040526006805460a060020a62ffffff02191690553480156200002357600080fd5b5060068054600160a060020a031916331790556200004964010000000062000077810204565b62000071731456887aff1dbf8cc3a4022d79712c887bd8aadb640100000000620000f6810204565b62000197565b600654760100000000000000000000000000000000000000000000900460ff1615620000a257600080fd5b6006805460b060020a60ff0219167601000000000000000000000000000000000000000000001790556040517f5daa87a0e9463431830481fd4b6e3403442dfb9a12b9c07597e9f61d50b633c890600090a1565b600654600160a060020a031633146200010e57600080fd5b620001228164010000000062000125810204565b50565b600160a060020a03811615156200013b57600080fd5b600654604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a360068054600160a060020a031916600160a060020a0392909216919091179055565b611a4780620001a76000396000f3006080604052600436106101d65763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416623fd35a81146101db57806302d6f7301461020457806305d2035b1461024c57806306fdde0314610261578063095ea7b3146102eb5780630bb2cd6b1461030f578063158ef93e1461034057806317a950ac1461035557806318160ddd14610388578063188214001461039d57806323b872dd146103b25780632a905318146103dc578063313ce567146103f15780633be1e9521461041c5780633f4ba83a1461044f57806340c10f191461046457806342966c681461048857806356780085146104a05780635b7f415c146104b55780635be7fde8146104ca5780635c975abb146104df57806366188463146104f457806366a92cda1461051857806370a082311461052d578063715018a61461054e578063726a431a146105635780637d64bcb4146105945780638456cb59146105a95780638da5cb5b146105be57806395d89b41146105d3578063a9059cbb146105e8578063a9aad58c1461060c578063ca63b5b814610621578063cf3b196714610642578063d73dd62314610657578063d8aeedf51461067b578063dd62ed3e1461069c578063f2fde38b146106c3575b600080fd5b3480156101e757600080fd5b506101f06106e4565b604080519115158252519081900360200190f35b34801561021057600080fd5b50610228600160a060020a03600435166024356106e9565b6040805167ffffffffffffffff909316835260208301919091528051918290030190f35b34801561025857600080fd5b506101f0610776565b34801561026d57600080fd5b50610276610786565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102b0578181015183820152602001610298565b50505050905090810190601f1680156102dd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102f757600080fd5b506101f0600160a060020a03600435166024356107bd565b34801561031b57600080fd5b506101f0600160a060020a036004351660243567ffffffffffffffff60443516610823565b34801561034c57600080fd5b506101f06109c1565b34801561036157600080fd5b50610376600160a060020a03600435166109e4565b60408051918252519081900360200190f35b34801561039457600080fd5b506103766109f5565b3480156103a957600080fd5b506102766109fb565b3480156103be57600080fd5b506101f0600160a060020a0360043581169060243516604435610a32565b3480156103e857600080fd5b50610276610a5f565b3480156103fd57600080fd5b50610406610a96565b6040805160ff9092168252519081900360200190f35b34801561042857600080fd5b5061044d600160a060020a036004351660243567ffffffffffffffff60443516610a9b565b005b34801561045b57600080fd5b5061044d610c0f565b34801561047057600080fd5b506101f0600160a060020a0360043516602435610c88565b34801561049457600080fd5b5061044d600435610d80565b3480156104ac57600080fd5b50610376610d8d565b3480156104c157600080fd5b50610376610d99565b3480156104d657600080fd5b50610376610d9e565b3480156104eb57600080fd5b506101f0610e03565b34801561050057600080fd5b506101f0600160a060020a0360043516602435610e13565b34801561052457600080fd5b5061044d610f03565b34801561053957600080fd5b50610376600160a060020a03600435166110a6565b34801561055a57600080fd5b5061044d6110cf565b34801561056f57600080fd5b5061057861113d565b60408051600160a060020a039092168252519081900360200190f35b3480156105a057600080fd5b506101f0611155565b3480156105b557600080fd5b5061044d6111d9565b3480156105ca57600080fd5b50610578611257565b3480156105df57600080fd5b50610276611266565b3480156105f457600080fd5b506101f0600160a060020a036004351660243561129d565b34801561061857600080fd5b506101f06112c8565b34801561062d57600080fd5b50610376600160a060020a03600435166112cd565b34801561064e57600080fd5b50610406610d99565b34801561066357600080fd5b506101f0600160a060020a0360043516602435611353565b34801561068757600080fd5b50610376600160a060020a03600435166113ec565b3480156106a857600080fd5b50610376600160a060020a0360043581169060243516611407565b3480156106cf57600080fd5b5061044d600160a060020a0360043516611432565b600181565b600080805b836001018110156107425760036000610711878667ffffffffffffffff16611452565b815260208101919091526040016000205467ffffffffffffffff16925082151561073a5761076e565b6001016106ee565b6004600061075a878667ffffffffffffffff16611452565b815260208101919091526040016000205491505b509250929050565b60065460a060020a900460ff1681565b60408051808201909152600781527f415045636f696e00000000000000000000000000000000000000000000000000602082015290565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6006546000908190600160a060020a0316331461083f57600080fd5b60065460a060020a900460ff161561085657600080fd5b600154610869908563ffffffff61148616565b6001556108808567ffffffffffffffff8516611452565b6000818152600460205260409020549091506108a2908563ffffffff61148616565b600082815260046020908152604080832093909355600160a060020a03881682526005905220546108d9908563ffffffff61148616565b600160a060020a0386166000908152600560205260409020556108fc8584611493565b604080518581529051600160a060020a038716917f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885919081900360200190a26040805167ffffffffffffffff85168152602081018690528151600160a060020a038816927f2ecd071e4d10ed2221b04636ed0724cce66a873aa98c1a31b4bb0e6846d3aab4928290030190a2604080518581529051600160a060020a0387169133916000805160206119fc8339815191529181900360200190a3506001949350505050565b600654760100000000000000000000000000000000000000000000900460ff1681565b60006109ef8261162d565b92915050565b60015490565b60408051808201909152600781527f415045636f696e00000000000000000000000000000000000000000000000000602082015281565b60065460009060a860020a900460ff1615610a4c57600080fd5b610a57848484611648565b949350505050565b60408051808201909152600381527f4150450000000000000000000000000000000000000000000000000000000000602082015281565b601290565b6000600160a060020a0384161515610ab257600080fd5b33600090815260208190526040902054831115610ace57600080fd5b33600090815260208190526040902054610aee908463ffffffff6117ad16565b33600090815260208190526040902055610b128467ffffffffffffffff8416611452565b600081815260046020526040902054909150610b34908463ffffffff61148616565b600082815260046020908152604080832093909355600160a060020a0387168252600590522054610b6b908463ffffffff61148616565b600160a060020a038516600090815260056020526040902055610b8e8483611493565b604080518481529051600160a060020a0386169133916000805160206119fc8339815191529181900360200190a36040805167ffffffffffffffff84168152602081018590528151600160a060020a038716927f2ecd071e4d10ed2221b04636ed0724cce66a873aa98c1a31b4bb0e6846d3aab4928290030190a250505050565b600654600160a060020a03163314610c2657600080fd5b60065460a860020a900460ff161515610c3e57600080fd5b6006805475ff000000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600654600090600160a060020a03163314610ca257600080fd5b60065460a060020a900460ff1615610cb957600080fd5b600154610ccc908363ffffffff61148616565b600155600160a060020a038316600090815260208190526040902054610cf8908363ffffffff61148616565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000916000805160206119fc8339815191529181900360200190a350600192915050565b610d8a33826117bf565b50565b670de0b6b3a764000081565b601281565b6000806000610dae3360006106e9565b67ffffffffffffffff909116925090505b8115801590610dcd57508142115b15610dfe57610dda610f03565b91820191610de93360006106e9565b67ffffffffffffffff90911692509050610dbf565b505090565b60065460a860020a900460ff1681565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610e6857336000908152600260209081526040808320600160a060020a0388168452909152812055610e9d565b610e78818463ffffffff6117ad16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000806000806000610f16336000611452565b60008181526003602052604090205490955067ffffffffffffffff169350831515610f4057600080fd5b8367ffffffffffffffff164267ffffffffffffffff16111515610f6257600080fd5b610f76338567ffffffffffffffff16611452565b600081815260036020908152604080832054600483528184208054908590553385529284905292205492955067ffffffffffffffff90911693509150610fc2908263ffffffff61148616565b3360009081526020818152604080832093909355600590522054610fec908263ffffffff6117ad16565b3360009081526005602052604090205567ffffffffffffffff8216151561102f576000858152600360205260409020805467ffffffffffffffff19169055611069565b600085815260036020526040808220805467ffffffffffffffff861667ffffffffffffffff19918216179091558583529120805490911690555b60408051828152905133917fb21fb52d5749b80f3182f8c6992236b5e5576681880914484d7f4c9b062e619e919081900360200190a25050505050565b600160a060020a0381166000908152600560205260408120546110c88361162d565b0192915050565b600654600160a060020a031633146110e657600080fd5b600654604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26006805473ffffffffffffffffffffffffffffffffffffffff19169055565b731456887aff1dbf8cc3a4022d79712c887bd8aadb81565b600654600090600160a060020a0316331461116f57600080fd5b60065460a060020a900460ff161561118657600080fd5b6006805474ff0000000000000000000000000000000000000000191660a060020a1790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600654600160a060020a031633146111f057600080fd5b60065460a860020a900460ff161561120757600080fd5b6006805475ff000000000000000000000000000000000000000000191660a860020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600654600160a060020a031681565b60408051808201909152600381527f4150450000000000000000000000000000000000000000000000000000000000602082015290565b60065460009060a860020a900460ff16156112b757600080fd5b6112c183836118ae565b9392505050565b600081565b600080600360006112df856000611452565b815260208101919091526040016000205467ffffffffffffffff1690505b67ffffffffffffffff81161561134d576001909101906003600061132b8567ffffffffffffffff8516611452565b815260208101919091526040016000205467ffffffffffffffff1690506112fd565b50919050565b336000908152600260209081526040808320600160a060020a0386168452909152812054611387908363ffffffff61148616565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a031660009081526005602052604090205490565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600654600160a060020a0316331461144957600080fd5b610d8a8161197d565b6801000000000000000091909102177f57495348000000000000000000000000000000000000000000000000000000001790565b818101828110156109ef57fe5b6000808080804267ffffffffffffffff8716116114af57600080fd5b6114c3878767ffffffffffffffff16611452565b94506114d0876000611452565b60008181526003602052604090205490945067ffffffffffffffff169250821515611523576000848152600360205260409020805467ffffffffffffffff191667ffffffffffffffff8816179055611624565b611537878467ffffffffffffffff16611452565b91505b67ffffffffffffffff83161580159061156657508267ffffffffffffffff168667ffffffffffffffff16115b1561159f575060008181526003602052604090205490925067ffffffffffffffff908116918391166115988784611452565b915061153a565b8267ffffffffffffffff168667ffffffffffffffff1614156115c057611624565b67ffffffffffffffff8316156115fa576000858152600360205260409020805467ffffffffffffffff191667ffffffffffffffff85161790555b6000848152600360205260409020805467ffffffffffffffff191667ffffffffffffffff88161790555b50505050505050565b600160a060020a031660009081526020819052604090205490565b6000600160a060020a038316151561165f57600080fd5b600160a060020a03841660009081526020819052604090205482111561168457600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156116b457600080fd5b600160a060020a0384166000908152602081905260409020546116dd908363ffffffff6117ad16565b600160a060020a038086166000908152602081905260408082209390935590851681522054611712908363ffffffff61148616565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054611754908363ffffffff6117ad16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391926000805160206119fc833981519152929181900390910190a35060019392505050565b6000828211156117b957fe5b50900390565b600160a060020a0382166000908152602081905260409020548111156117e457600080fd5b600160a060020a03821660009081526020819052604090205461180d908263ffffffff6117ad16565b600160a060020a038316600090815260208190526040902055600154611839908263ffffffff6117ad16565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516916000805160206119fc8339815191529181900360200190a35050565b6000600160a060020a03831615156118c557600080fd5b336000908152602081905260409020548211156118e157600080fd5b33600090815260208190526040902054611901908363ffffffff6117ad16565b3360009081526020819052604080822092909255600160a060020a03851681522054611933908363ffffffff61148616565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233926000805160206119fc8339815191529281900390910190a350600192915050565b600160a060020a038116151561199257600080fd5b600654604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058209e6be2b1039fc1b99e4a0b061e8aade4c9c0e1b671ad5c60d1e4e39763e811c00029

Deployed Bytecode

0x6080604052600436106101d65763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416623fd35a81146101db57806302d6f7301461020457806305d2035b1461024c57806306fdde0314610261578063095ea7b3146102eb5780630bb2cd6b1461030f578063158ef93e1461034057806317a950ac1461035557806318160ddd14610388578063188214001461039d57806323b872dd146103b25780632a905318146103dc578063313ce567146103f15780633be1e9521461041c5780633f4ba83a1461044f57806340c10f191461046457806342966c681461048857806356780085146104a05780635b7f415c146104b55780635be7fde8146104ca5780635c975abb146104df57806366188463146104f457806366a92cda1461051857806370a082311461052d578063715018a61461054e578063726a431a146105635780637d64bcb4146105945780638456cb59146105a95780638da5cb5b146105be57806395d89b41146105d3578063a9059cbb146105e8578063a9aad58c1461060c578063ca63b5b814610621578063cf3b196714610642578063d73dd62314610657578063d8aeedf51461067b578063dd62ed3e1461069c578063f2fde38b146106c3575b600080fd5b3480156101e757600080fd5b506101f06106e4565b604080519115158252519081900360200190f35b34801561021057600080fd5b50610228600160a060020a03600435166024356106e9565b6040805167ffffffffffffffff909316835260208301919091528051918290030190f35b34801561025857600080fd5b506101f0610776565b34801561026d57600080fd5b50610276610786565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102b0578181015183820152602001610298565b50505050905090810190601f1680156102dd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102f757600080fd5b506101f0600160a060020a03600435166024356107bd565b34801561031b57600080fd5b506101f0600160a060020a036004351660243567ffffffffffffffff60443516610823565b34801561034c57600080fd5b506101f06109c1565b34801561036157600080fd5b50610376600160a060020a03600435166109e4565b60408051918252519081900360200190f35b34801561039457600080fd5b506103766109f5565b3480156103a957600080fd5b506102766109fb565b3480156103be57600080fd5b506101f0600160a060020a0360043581169060243516604435610a32565b3480156103e857600080fd5b50610276610a5f565b3480156103fd57600080fd5b50610406610a96565b6040805160ff9092168252519081900360200190f35b34801561042857600080fd5b5061044d600160a060020a036004351660243567ffffffffffffffff60443516610a9b565b005b34801561045b57600080fd5b5061044d610c0f565b34801561047057600080fd5b506101f0600160a060020a0360043516602435610c88565b34801561049457600080fd5b5061044d600435610d80565b3480156104ac57600080fd5b50610376610d8d565b3480156104c157600080fd5b50610376610d99565b3480156104d657600080fd5b50610376610d9e565b3480156104eb57600080fd5b506101f0610e03565b34801561050057600080fd5b506101f0600160a060020a0360043516602435610e13565b34801561052457600080fd5b5061044d610f03565b34801561053957600080fd5b50610376600160a060020a03600435166110a6565b34801561055a57600080fd5b5061044d6110cf565b34801561056f57600080fd5b5061057861113d565b60408051600160a060020a039092168252519081900360200190f35b3480156105a057600080fd5b506101f0611155565b3480156105b557600080fd5b5061044d6111d9565b3480156105ca57600080fd5b50610578611257565b3480156105df57600080fd5b50610276611266565b3480156105f457600080fd5b506101f0600160a060020a036004351660243561129d565b34801561061857600080fd5b506101f06112c8565b34801561062d57600080fd5b50610376600160a060020a03600435166112cd565b34801561064e57600080fd5b50610406610d99565b34801561066357600080fd5b506101f0600160a060020a0360043516602435611353565b34801561068757600080fd5b50610376600160a060020a03600435166113ec565b3480156106a857600080fd5b50610376600160a060020a0360043581169060243516611407565b3480156106cf57600080fd5b5061044d600160a060020a0360043516611432565b600181565b600080805b836001018110156107425760036000610711878667ffffffffffffffff16611452565b815260208101919091526040016000205467ffffffffffffffff16925082151561073a5761076e565b6001016106ee565b6004600061075a878667ffffffffffffffff16611452565b815260208101919091526040016000205491505b509250929050565b60065460a060020a900460ff1681565b60408051808201909152600781527f415045636f696e00000000000000000000000000000000000000000000000000602082015290565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6006546000908190600160a060020a0316331461083f57600080fd5b60065460a060020a900460ff161561085657600080fd5b600154610869908563ffffffff61148616565b6001556108808567ffffffffffffffff8516611452565b6000818152600460205260409020549091506108a2908563ffffffff61148616565b600082815260046020908152604080832093909355600160a060020a03881682526005905220546108d9908563ffffffff61148616565b600160a060020a0386166000908152600560205260409020556108fc8584611493565b604080518581529051600160a060020a038716917f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885919081900360200190a26040805167ffffffffffffffff85168152602081018690528151600160a060020a038816927f2ecd071e4d10ed2221b04636ed0724cce66a873aa98c1a31b4bb0e6846d3aab4928290030190a2604080518581529051600160a060020a0387169133916000805160206119fc8339815191529181900360200190a3506001949350505050565b600654760100000000000000000000000000000000000000000000900460ff1681565b60006109ef8261162d565b92915050565b60015490565b60408051808201909152600781527f415045636f696e00000000000000000000000000000000000000000000000000602082015281565b60065460009060a860020a900460ff1615610a4c57600080fd5b610a57848484611648565b949350505050565b60408051808201909152600381527f4150450000000000000000000000000000000000000000000000000000000000602082015281565b601290565b6000600160a060020a0384161515610ab257600080fd5b33600090815260208190526040902054831115610ace57600080fd5b33600090815260208190526040902054610aee908463ffffffff6117ad16565b33600090815260208190526040902055610b128467ffffffffffffffff8416611452565b600081815260046020526040902054909150610b34908463ffffffff61148616565b600082815260046020908152604080832093909355600160a060020a0387168252600590522054610b6b908463ffffffff61148616565b600160a060020a038516600090815260056020526040902055610b8e8483611493565b604080518481529051600160a060020a0386169133916000805160206119fc8339815191529181900360200190a36040805167ffffffffffffffff84168152602081018590528151600160a060020a038716927f2ecd071e4d10ed2221b04636ed0724cce66a873aa98c1a31b4bb0e6846d3aab4928290030190a250505050565b600654600160a060020a03163314610c2657600080fd5b60065460a860020a900460ff161515610c3e57600080fd5b6006805475ff000000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600654600090600160a060020a03163314610ca257600080fd5b60065460a060020a900460ff1615610cb957600080fd5b600154610ccc908363ffffffff61148616565b600155600160a060020a038316600090815260208190526040902054610cf8908363ffffffff61148616565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000916000805160206119fc8339815191529181900360200190a350600192915050565b610d8a33826117bf565b50565b670de0b6b3a764000081565b601281565b6000806000610dae3360006106e9565b67ffffffffffffffff909116925090505b8115801590610dcd57508142115b15610dfe57610dda610f03565b91820191610de93360006106e9565b67ffffffffffffffff90911692509050610dbf565b505090565b60065460a860020a900460ff1681565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610e6857336000908152600260209081526040808320600160a060020a0388168452909152812055610e9d565b610e78818463ffffffff6117ad16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000806000806000610f16336000611452565b60008181526003602052604090205490955067ffffffffffffffff169350831515610f4057600080fd5b8367ffffffffffffffff164267ffffffffffffffff16111515610f6257600080fd5b610f76338567ffffffffffffffff16611452565b600081815260036020908152604080832054600483528184208054908590553385529284905292205492955067ffffffffffffffff90911693509150610fc2908263ffffffff61148616565b3360009081526020818152604080832093909355600590522054610fec908263ffffffff6117ad16565b3360009081526005602052604090205567ffffffffffffffff8216151561102f576000858152600360205260409020805467ffffffffffffffff19169055611069565b600085815260036020526040808220805467ffffffffffffffff861667ffffffffffffffff19918216179091558583529120805490911690555b60408051828152905133917fb21fb52d5749b80f3182f8c6992236b5e5576681880914484d7f4c9b062e619e919081900360200190a25050505050565b600160a060020a0381166000908152600560205260408120546110c88361162d565b0192915050565b600654600160a060020a031633146110e657600080fd5b600654604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26006805473ffffffffffffffffffffffffffffffffffffffff19169055565b731456887aff1dbf8cc3a4022d79712c887bd8aadb81565b600654600090600160a060020a0316331461116f57600080fd5b60065460a060020a900460ff161561118657600080fd5b6006805474ff0000000000000000000000000000000000000000191660a060020a1790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600654600160a060020a031633146111f057600080fd5b60065460a860020a900460ff161561120757600080fd5b6006805475ff000000000000000000000000000000000000000000191660a860020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600654600160a060020a031681565b60408051808201909152600381527f4150450000000000000000000000000000000000000000000000000000000000602082015290565b60065460009060a860020a900460ff16156112b757600080fd5b6112c183836118ae565b9392505050565b600081565b600080600360006112df856000611452565b815260208101919091526040016000205467ffffffffffffffff1690505b67ffffffffffffffff81161561134d576001909101906003600061132b8567ffffffffffffffff8516611452565b815260208101919091526040016000205467ffffffffffffffff1690506112fd565b50919050565b336000908152600260209081526040808320600160a060020a0386168452909152812054611387908363ffffffff61148616565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a031660009081526005602052604090205490565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600654600160a060020a0316331461144957600080fd5b610d8a8161197d565b6801000000000000000091909102177f57495348000000000000000000000000000000000000000000000000000000001790565b818101828110156109ef57fe5b6000808080804267ffffffffffffffff8716116114af57600080fd5b6114c3878767ffffffffffffffff16611452565b94506114d0876000611452565b60008181526003602052604090205490945067ffffffffffffffff169250821515611523576000848152600360205260409020805467ffffffffffffffff191667ffffffffffffffff8816179055611624565b611537878467ffffffffffffffff16611452565b91505b67ffffffffffffffff83161580159061156657508267ffffffffffffffff168667ffffffffffffffff16115b1561159f575060008181526003602052604090205490925067ffffffffffffffff908116918391166115988784611452565b915061153a565b8267ffffffffffffffff168667ffffffffffffffff1614156115c057611624565b67ffffffffffffffff8316156115fa576000858152600360205260409020805467ffffffffffffffff191667ffffffffffffffff85161790555b6000848152600360205260409020805467ffffffffffffffff191667ffffffffffffffff88161790555b50505050505050565b600160a060020a031660009081526020819052604090205490565b6000600160a060020a038316151561165f57600080fd5b600160a060020a03841660009081526020819052604090205482111561168457600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156116b457600080fd5b600160a060020a0384166000908152602081905260409020546116dd908363ffffffff6117ad16565b600160a060020a038086166000908152602081905260408082209390935590851681522054611712908363ffffffff61148616565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054611754908363ffffffff6117ad16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391926000805160206119fc833981519152929181900390910190a35060019392505050565b6000828211156117b957fe5b50900390565b600160a060020a0382166000908152602081905260409020548111156117e457600080fd5b600160a060020a03821660009081526020819052604090205461180d908263ffffffff6117ad16565b600160a060020a038316600090815260208190526040902055600154611839908263ffffffff6117ad16565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516916000805160206119fc8339815191529181900360200190a35050565b6000600160a060020a03831615156118c557600080fd5b336000908152602081905260409020548211156118e157600080fd5b33600090815260208190526040902054611901908363ffffffff6117ad16565b3360009081526020819052604080822092909255600160a060020a03851681522054611933908363ffffffff61148616565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233926000805160206119fc8339815191529281900390910190a350600192915050565b600160a060020a038116151561199257600080fd5b600654604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058209e6be2b1039fc1b99e4a0b061e8aade4c9c0e1b671ad5c60d1e4e39763e811c00029

Deployed Bytecode Sourcemap

22108:1327:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22038:44;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22038:44:0;;;;;;;;;;;;;;;;;;;;;;14439:371;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;14439:371:0;-1:-1:-1;;;;;14439:371:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11235:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11235:35:0;;;;22399:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22399:91: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;22399:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6581:200;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6581:200:0;-1:-1:-1;;;;;6581:200:0;;;;;;;21000:559;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;21000:559:0;-1:-1:-1;;;;;21000:559:0;;;;;;;;;;;22242:31;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22242:31:0;;;;13496:132;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13496:132:0;-1:-1:-1;;;;;13496:132:0;;;;;;;;;;;;;;;;;;;;;3193:89;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3193:89:0;;;;21791:45;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21791:45:0;;;;22731:194;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;22731:194:0;-1:-1:-1;;;;;22731:194:0;;;;;;;;;;;;21845:43;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21845:43:0;;;;22611:108;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22611:108:0;;;;;;;;;;;;;;;;;;;;;;;15204:573;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;15204:573:0;-1:-1:-1;;;;;15204:573:0;;;;;;;;;;;;;20286:101;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20286:101:0;;;;11710:354;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11710:354:0;-1:-1:-1;;;;;11710:354:0;;;;;;;18823:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;18823:79:0;;;;;21710:68;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21710:68:0;;;;21605:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21605:40:0;;;;16846:375;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16846:375:0;;;;19605:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19605:26:0;;;;8621:470;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8621:470:0;-1:-1:-1;;;;;8621:470:0;;;;;;;15867:800;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15867:800:0;;;;13081:152;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13081:152:0;-1:-1:-1;;;;;13081:152:0;;;;;10021:120;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10021:120:0;;;;21941:80;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21941:80:0;;;;;;;;-1:-1:-1;;;;;21941:80:0;;;;;;;;;;;;;;12196:152;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12196:152:0;;;;20090:99;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20090:99:0;;;;9345:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9345:20:0;;;;22502:97;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22502:97:0;;;;22937:164;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;22937:164:0;-1:-1:-1;;;;;22937:164:0;;;;;;;21897:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21897:35:0;;;;13898:261;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13898:261:0;-1:-1:-1;;;;;13898:261:0;;;;;21654:47;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21654:47:0;;;;7797:326;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7797:326:0;-1:-1:-1;;;;;7797:326:0;;;;;;;13640:134;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13640:134:0;-1:-1:-1;;;;;13640:134:0;;;;;7124:180;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7124:180:0;-1:-1:-1;;;;;7124:180:0;;;;;;;;;;10321:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10321:109:0;-1:-1:-1;;;;;10321:109:0;;;;;22038:44;22078:4;22038:44;:::o;14439:371::-;14509:15;;;14554:190;14575:6;14584:1;14575:10;14571:1;:14;14554:190;;;14620:6;:30;14627:22;14633:5;14640:8;14627:22;;:5;:22::i;:::-;14620:30;;;;;;;;;;;;;;;;;-1:-1:-1;14671:13:0;;14667:64;;;14707:7;;14667:64;14587:3;;14554:190;;;14767:9;:33;14777:22;14783:5;14790:8;14777:22;;:5;:22::i;:::-;14767:33;;;;;;;;;;;;;;;-1:-1:-1;14439:371:0;;;;;;;:::o;11235:35::-;;;-1:-1:-1;;;11235:35:0;;;;;:::o;22399:91::-;22470:10;;;;;;;;;;;;;;;;;22399:91;:::o;6581:200::-;6671:10;6648:4;6663:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6663:29:0;;;;;;;;;;;:38;;;6715;;;;;;;6648:4;;6663:29;;6671:10;;6715:38;;;;;;;;-1:-1:-1;6769:4:0;6581:200;;;;:::o;21000:559::-;9892:5;;21099:4;;;;-1:-1:-1;;;;;9892:5:0;9878:10;:19;9870:28;;;;;;11322:15;;-1:-1:-1;;;11322:15:0;;;;11321:16;11313:25;;;;;;21133:12;;:25;;21150:7;21133:25;:16;:25;:::i;:::-;21118:12;:40;21196:18;21202:3;21196:18;;;:5;:18::i;:::-;21251:21;;;;:9;:21;;;;;;21175:39;;-1:-1:-1;21251:34:0;;21277:7;21251:34;:25;:34;:::i;:::-;21227:21;;;;:9;:21;;;;;;;;:58;;;;-1:-1:-1;;;;;21321:20:0;;;;:15;:20;;;;:33;;21346:7;21321:33;:24;:33;:::i;:::-;-1:-1:-1;;;;;21298:20:0;;;;;;:15;:20;;;;;:56;21371:19;21314:3;21383:6;21371;:19::i;:::-;21408:18;;;;;;;;-1:-1:-1;;;;;21408:18:0;;;;;;;;;;;;;21444:29;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21444:29:0;;;;;;;;;;;21491:34;;;;;;;;-1:-1:-1;;;;;21491:34:0;;;21500:10;;-1:-1:-1;;;;;;;;;;;21491:34:0;;;;;;;;-1:-1:-1;21545:4:0;;21000:559;-1:-1:-1;;;;21000:559:0:o;22242:31::-;;;;;;;;;:::o;13496:132::-;13558:15;13595:23;13611:6;13595:15;:23::i;:::-;13588:30;13496:132;-1:-1:-1;;13496:132:0:o;3193:89::-;3262:12;;3193:89;:::o;21791:45::-;;;;;;;;;;;;;;;;;;;:::o;22731:194::-;22850:6;;22813:13;;-1:-1:-1;;;22850:6:0;;;;22849:7;22841:16;;;;;;22877:38;22896:5;22903:3;22908:6;22877:18;:38::i;:::-;22870:45;22731:194;-1:-1:-1;;;;22731:194:0:o;21845:43::-;;;;;;;;;;;;;;;;;;;:::o;22611:108::-;21699:2;22611:108;:::o;15204:573::-;15453:18;-1:-1:-1;;;;;15292:17:0;;;;15284:26;;;;;;15351:10;15342:8;:20;;;;;;;;;;;15331:31;;;15323:40;;;;;;15412:10;15403:8;:20;;;;;;;;;;;:33;;15428:7;15403:33;:24;:33;:::i;:::-;15389:10;15380:8;:20;;;;;;;;;;:56;15474:18;15480:3;15474:18;;;:5;:18::i;:::-;15529:21;;;;:9;:21;;;;;;15453:39;;-1:-1:-1;15529:34:0;;15555:7;15529:34;:25;:34;:::i;:::-;15505:21;;;;:9;:21;;;;;;;;:58;;;;-1:-1:-1;;;;;15599:20:0;;;;:15;:20;;;;:33;;15624:7;15599:33;:24;:33;:::i;:::-;-1:-1:-1;;;;;15576:20:0;;;;;;:15;:20;;;;;:56;15649:19;15592:3;15661:6;15649;:19::i;:::-;15686:34;;;;;;;;-1:-1:-1;;;;;15686:34:0;;;15695:10;;-1:-1:-1;;;;;;;;;;;15686:34:0;;;;;;;;15738:29;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15738:29:0;;;;;;;;;;;15204:573;;;;:::o;20286:101::-;9892:5;;-1:-1:-1;;;;;9892:5:0;9878:10;:19;9870:28;;;;;;19971:6;;-1:-1:-1;;;19971:6:0;;;;19963:15;;;;;;;;20342:6;:14;;-1:-1:-1;;20342:14:0;;;20370:9;;;;20351:5;;20370:9;20286:101::o;11710:354::-;11426:5;;11845:4;;-1:-1:-1;;;;;11426:5:0;11412:10;:19;11404:28;;;;;;11322:15;;-1:-1:-1;;;11322:15:0;;;;11321:16;11313:25;;;;;;11880:12;;:25;;11897:7;11880:25;:16;:25;:::i;:::-;11865:12;:40;-1:-1:-1;;;;;11930:13:0;;:8;:13;;;;;;;;;;;:26;;11948:7;11930:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;11914:13:0;;:8;:13;;;;;;;;;;;;:42;;;;11970:18;;;;;;;11914:13;;11970:18;;;;;;;;;12002:34;;;;;;;;-1:-1:-1;;;;;12002:34:0;;;12019:1;;-1:-1:-1;;;;;;;;;;;12002:34:0;;;;;;;;-1:-1:-1;12052:4:0;11710:354;;;;:::o;18823:79::-;18869:25;18875:10;18887:6;18869:5;:25::i;:::-;18823:79;:::o;21710:68::-;21758:20;21710:68;:::o;21605:40::-;21643:2;21605:40;:::o;16846:375::-;16884:11;16910:12;16935;16981:26;16993:10;17005:1;16981:11;:26::i;:::-;16960:47;;;;;-1:-1:-1;16960:47:0;-1:-1:-1;17020:192:0;17027:12;;;;;:41;;;17061:7;17043:15;:25;17027:41;17020:192;;;17087:13;:11;:13::i;:::-;17117:17;;;;17172:26;17184:10;17196:1;17172:11;:26::i;:::-;17151:47;;;;;-1:-1:-1;17151:47:0;-1:-1:-1;17020:192:0;;;16846:375;;;:::o;19605:26::-;;;-1:-1:-1;;;19605:26:0;;;;;:::o;8621:470::-;8783:10;8739:4;8775:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8775:29:0;;;;;;;;;;8817:27;;;8813:176;;;8865:10;8889:1;8857:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8857:29:0;;;;;;;;;:33;8813:176;;;8949:30;:8;8962:16;8949:30;:12;:30;:::i;:::-;8925:10;8917:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8917:29:0;;;;;;;;;:62;8813:176;9011:10;9033:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;9002:61:0;;9033:29;;;;;;;;;;;9002:61;;;;;;;;;9011:10;9002:61;;;;;;;;;;;-1:-1:-1;9079:4:0;;8621:470;-1:-1:-1;;;8621:470:0:o;15867:800::-;15910:15;15961:11;16086:18;16147:11;16196;15928:20;15934:10;15946:1;15928:5;:20::i;:::-;15975:15;;;;:6;:15;;;;;;15910:38;;-1:-1:-1;15975:15:0;;;-1:-1:-1;16011:9:0;;;16003:18;;;;;;16068:4;16042:30;;16049:15;16042:30;;;16034:39;;;;;;;;16107:23;16113:10;16125:4;16107:23;;:5;:23::i;:::-;16161:18;;;;:6;:18;;;;;;;;;16210:9;:21;;;;;;;16244:28;;;;16321:10;16312:20;;;;;;;;;16086:44;;-1:-1:-1;16161:18:0;;;;;-1:-1:-1;16210:21:0;-1:-1:-1;16312:32:0;;16210:21;16312:32;:24;:32;:::i;:::-;16298:10;16289:8;:20;;;;;;;;;;;:55;;;;16387:15;:27;;;;:39;;16419:6;16387:39;:31;:39;:::i;:::-;16373:10;16357:27;;;;:15;:27;;;;;:69;16447:9;;;;16443:169;;;16482:15;;;;:6;:15;;;;;16475:22;;-1:-1:-1;;16475:22:0;;;16443:169;;;16534:15;;;;:6;:15;;;;;;:22;;;;;-1:-1:-1;;16534:22:0;;;;;;;16580:18;;;;;16573:25;;;;;;;16443:169;16629:28;;;;;;;;16638:10;;16629:28;;;;;;;;;;15867:800;;;;;:::o;13081:152::-;-1:-1:-1;;;;;13200:23:0;;13137:15;13200:23;;;:15;:23;;;;;;13174;13216:6;13174:15;:23::i;:::-;:49;;13081:152;-1:-1:-1;;13081:152:0:o;10021:120::-;9892:5;;-1:-1:-1;;;;;9892:5:0;9878:10;:19;9870:28;;;;;;10100:5;;10081:25;;-1:-1:-1;;;;;10100:5:0;;;;10081:25;;10100:5;;10081:25;10115:5;:18;;-1:-1:-1;;10115:18:0;;;10021:120::o;21941:80::-;21979:42;21941:80;:::o;12196:152::-;9892:5;;12255:4;;-1:-1:-1;;;;;9892:5:0;9878:10;:19;9870:28;;;;;;11322:15;;-1:-1:-1;;;11322:15:0;;;;11321:16;11313:25;;;;;;12270:15;:22;;-1:-1:-1;;12270:22:0;-1:-1:-1;;;12270:22:0;;;12306:14;;;;12270:22;;12306:14;-1:-1:-1;12336:4:0;12196:152;:::o;20090:99::-;9892:5;;-1:-1:-1;;;;;9892:5:0;9878:10;:19;9870:28;;;;;;19795:6;;-1:-1:-1;;;19795:6:0;;;;19794:7;19786:16;;;;;;20147:6;:13;;-1:-1:-1;;20147:13:0;-1:-1:-1;;;20147:13:0;;;20174:7;;;;20147:13;;20174:7;20090:99::o;9345:20::-;;;-1:-1:-1;;;;;9345:20:0;;:::o;22502:97::-;22577:12;;;;;;;;;;;;;;;;;22502:97;:::o;22937:164::-;23037:6;;23000:13;;-1:-1:-1;;;23037:6:0;;;;23036:7;23028:16;;;;;;23064:27;23079:3;23084:6;23064:14;:27::i;:::-;23057:34;22937:164;-1:-1:-1;;;22937:164:0:o;21897:35::-;21927:5;21897:35;:::o;13898:261::-;13957:10;13982:14;13999:6;:23;14006:15;14012:5;14019:1;14006:5;:15::i;:::-;13999:23;;;;;;;;;;;;;;;;;-1:-1:-1;14035:115:0;14042:12;;;;14035:115;;14073:7;;;;;14107:6;:29;14114:21;14120:5;14114:21;;;:5;:21::i;:::-;14107:29;;;;;;;;;;;;;;;;;-1:-1:-1;14035:115:0;;;13898:261;;;;:::o;7797:326::-;7981:10;7910:4;7973:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7973:29:0;;;;;;;;;;:46;;8007:11;7973:46;:33;:46;:::i;:::-;7938:10;7930:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7930:29:0;;;;;;;;;;;;:90;;;8034:61;;;;;;7930:29;;8034:61;;;;;;;;;;;-1:-1:-1;8111:4:0;7797:326;;;;:::o;13640:134::-;-1:-1:-1;;;;;13741:23:0;13704:15;13741:23;;;:15;:23;;;;;;;13640:134::o;7124:180::-;-1:-1:-1;;;;;7271:15:0;;;7241:7;7271:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;7124:180::o;10321:109::-;9892:5;;-1:-1:-1;;;;;9892:5:0;9878:10;:19;9870:28;;;;;;10393:29;10412:9;10393:18;:29::i;17233:376::-;17520:19;17509:31;;;;17567:20;17383:66;17567:20;;17471:129::o;2714:135::-;2796:5;;;2817:6;;;;2810:14;;;17621:851;17733:11;;;;;17704:15;17695:24;;;;17687:33;;;;;;17747:18;17753:3;17758:6;17747:18;;:5;:18::i;:::-;17733:32;-1:-1:-1;17798:21:0;17804:3;17816:1;17798:5;:21::i;:::-;17846:17;;;;:6;:17;;;;;;17778:41;;-1:-1:-1;17846:17:0;;;-1:-1:-1;17884:9:0;;17880:95;;;17912:17;;;;:6;:17;;;;;:26;;-1:-1:-1;;17912:26:0;;;;;;;17955:7;;17880:95;18009:16;18015:3;18020:4;18009:16;;:5;:16::i;:::-;17991:34;;18066:201;18073:9;;;;;;;:26;;;18095:4;18086:13;;:6;:13;;;18073:26;18066:201;;;-1:-1:-1;18195:15:0;;;;:6;:15;;;;;;18160:7;;-1:-1:-1;18118:13:0;18195:15;;;;18160:7;;18118:13;18237:16;18243:3;18195:15;18237:5;:16::i;:::-;18227:26;;18066:201;;;18297:4;18287:14;;:6;:14;;;18283:57;;;18320:7;;18283:57;18360:9;;;;18356:64;;18388:11;;;;:6;:11;;;;;:18;;-1:-1:-1;;18388:18:0;;;;;;;18356:64;18436:17;;;;:6;:17;;;;;:26;;-1:-1:-1;;18436:26:0;;;;;;;17621:851;;;;;;;;:::o;4025:105::-;-1:-1:-1;;;;;4106:16:0;4081:7;4106:16;;;;;;;;;;;;4025:105::o;5401:521::-;5525:4;-1:-1:-1;;;;;5553:17:0;;;;5545:26;;;;;;-1:-1:-1;;;;;5598:15:0;;:8;:15;;;;;;;;;;;5588:25;;;5580:34;;;;;;-1:-1:-1;;;;;5641:14:0;;;;;;:7;:14;;;;;;;;5656:10;5641:26;;;;;;;;5631:36;;;5623:45;;;;;;-1:-1:-1;;;;;5699:15:0;;:8;:15;;;;;;;;;;;:27;;5719:6;5699:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;5681:15:0;;;:8;:15;;;;;;;;;;;:45;;;;5751:13;;;;;;;:25;;5769:6;5751:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;5735:13:0;;;:8;:13;;;;;;;;;;;:41;;;;5814:14;;;;;:7;:14;;;;;5829:10;5814:26;;;;;;;:38;;5845:6;5814:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;5785:14:0;;;;;;;:7;:14;;;;;;;;5800:10;5785:26;;;;;;;;:67;;;;5866:28;;;;;;;;;;;5785:14;;-1:-1:-1;;;;;;;;;;;5866:28:0;;;;;;;;;;-1:-1:-1;5910:4:0;5401:521;;;;;:::o;2518:119::-;2576:7;2601:6;;;;2594:14;;;;-1:-1:-1;2624:5:0;;;2518:119::o;18912:465::-;-1:-1:-1;;;;;18993:14:0;;:8;:14;;;;;;;;;;;18983:24;;;18975:33;;;;;;-1:-1:-1;;;;;19215:14:0;;:8;:14;;;;;;;;;;;:26;;19234:6;19215:26;:18;:26;:::i;:::-;-1:-1:-1;;;;;19198:14:0;;:8;:14;;;;;;;;;;:43;19265:12;;:24;;19282:6;19265:24;:16;:24;:::i;:::-;19250:12;:39;19303:18;;;;;;;;-1:-1:-1;;;;;19303:18:0;;;;;;;;;;;;;19335:34;;;;;;;;19358:1;;-1:-1:-1;;;;;19335:34:0;;;-1:-1:-1;;;;;;;;;;;19335:34:0;;;;;;;;18912:465;;:::o;3457:345::-;3520:4;-1:-1:-1;;;;;3543:17:0;;;;3535:26;;;;;;3597:10;3588:8;:20;;;;;;;;;;;3578:30;;;3570:39;;;;;;3654:10;3645:8;:20;;;;;;;;;;;:32;;3670:6;3645:32;:24;:32;:::i;:::-;3631:10;3622:8;:20;;;;;;;;;;;:55;;;;-1:-1:-1;;;;;3702:13:0;;;;;;:25;;3720:6;3702:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;3686:13:0;;:8;:13;;;;;;;;;;;;:41;;;;3741:33;;;;;;;3686:13;;3750:10;;-1:-1:-1;;;;;;;;;;;3741:33:0;;;;;;;;;-1:-1:-1;3790:4:0;3457:345;;;;:::o;10583:183::-;-1:-1:-1;;;;;10656:23:0;;;;10648:32;;;;;;10715:5;;10694:38;;-1:-1:-1;;;;;10694:38:0;;;;10715:5;;10694:38;;10715:5;;10694:38;10741:5;:17;;-1:-1:-1;;10741:17:0;-1:-1:-1;;;;;10741:17:0;;;;;;;;;;10583:183::o

Swarm Source

bzzr://9e6be2b1039fc1b99e4a0b061e8aade4c9c0e1b671ad5c60d1e4e39763e811c0
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.