ETH Price: $3,954.00 (+1.47%)

Token

CRYPTO CANDY (CANDY)
 

Overview

Max Total Supply

800,000,000 CANDY

Holders

357 (0.00%)

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

OVERVIEW

Incentive token system for the blockchain-based parenting community.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CandyToken

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-10-20
*/

// File: openzeppelin-solidity/contracts/token/ERC20/IERC20.sol

pragma solidity ^0.4.24;

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
interface IERC20 {
    function totalSupply() external view returns (uint256);

    function balanceOf(address who) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function transfer(address to, uint256 value) external returns (bool);

    function approve(address spender, uint256 value) external returns (bool);

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

    event Transfer(address indexed from, address indexed to, uint256 value);

    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
}

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20Detailed.sol

pragma solidity ^0.4.24;

/**
 * @title ERC20Detailed token
 * @dev The decimals are only for visualization purposes.
 * All the operations are done using the smallest and indivisible token unit,
 * just as on Ethereum all the operations are done in wei.
 */
contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    constructor(
        string name,
        string symbol,
        uint8 decimals
    ) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }

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

    /**
     * @return the symbol of the token.
     */
    function symbol() public view returns (string) {
        return _symbol;
    }

    /**
     * @return the number of decimals of the token.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }
}

// File: openzeppelin-solidity/contracts/math/SafeMath.sol

pragma solidity ^0.4.24;

/**
 * @title SafeMath
 * @dev Math operations with safety checks that revert on error
 */
library SafeMath {
    /**
     * @dev Multiplies two numbers, reverts on overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b);

        return c;
    }

    /**
     * @dev Integer division of two numbers truncating the quotient, reverts on division by zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0); // Solidity only automatically asserts 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 c;
    }

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

        return c;
    }

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

        return c;
    }

    /**
     * @dev Divides two numbers and returns the remainder (unsigned integer modulo),
     * reverts when dividing by zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0);
        return a % b;
    }
}

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20.sol

pragma solidity ^0.4.24;

/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
 * Originally based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract ERC20 is IERC20 {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

    /**
     * @dev Gets the balance of the specified address.
     * @param owner The address to query 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];
    }

    /**
     * @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 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) {
        _transfer(msg.sender, 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) {
        require(spender != address(0));

        _allowed[msg.sender][spender] = value;
        emit Approval(msg.sender, spender, value);
        return true;
    }

    /**
     * @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(value <= _allowed[from][msg.sender]);

        _allowed[from][msg.sender] = _allowed[from][msg.sender].sub(value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @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 increaseAllowance(address spender, uint256 addedValue)
        public
        returns (bool)
    {
        require(spender != address(0));

        _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 decreaseAllowance(address spender, uint256 subtractedValue)
        public
        returns (bool)
    {
        require(spender != address(0));

        _allowed[msg.sender][spender] = (
            _allowed[msg.sender][spender].sub(subtractedValue)
        );
        emit Approval(msg.sender, spender, _allowed[msg.sender][spender]);
        return true;
    }

    /**
     * @dev Transfer token for a specified addresses
     * @param from The address to transfer from.
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     */
    function _transfer(
        address from,
        address to,
        uint256 value
    ) internal {
        require(value <= _balances[from]);
        require(to != address(0));

        _balances[from] = _balances[from].sub(value);
        _balances[to] = _balances[to].add(value);
        emit Transfer(from, to, value);
    }

    /**
     * @dev Internal function that mints an amount of the token and assigns it to
     * an account. This encapsulates the modification of balances such that the
     * proper events are emitted.
     * @param account The account that will receive the created tokens.
     * @param value The amount that will be created.
     */
    function _mint(address account, uint256 value) internal {
        require(account != 0);
        _totalSupply = _totalSupply.add(value);
        _balances[account] = _balances[account].add(value);
        emit Transfer(address(0), account, value);
    }

    /**
     * @dev Internal function that burns an amount of the token of a given
     * account.
     * @param account The account whose tokens will be burnt.
     * @param value The amount that will be burnt.
     */
    function _burn(address account, uint256 value) internal {
        require(account != 0);
        require(value <= _balances[account]);

        _totalSupply = _totalSupply.sub(value);
        _balances[account] = _balances[account].sub(value);
        emit Transfer(account, address(0), value);
    }

    /**
     * @dev Internal function that burns an amount of the token of a given
     * account, deducting from the sender's allowance for said account. Uses the
     * internal burn function.
     * @param account The account whose tokens will be burnt.
     * @param value The amount that will be burnt.
     */
    function _burnFrom(address account, uint256 value) internal {
        require(value <= _allowed[account][msg.sender]);

        // Should https://github.com/OpenZeppelin/zeppelin-solidity/issues/707 be accepted,
        // this function needs to emit an event with the updated approval.
        _allowed[account][msg.sender] = _allowed[account][msg.sender].sub(
            value
        );
        _burn(account, value);
    }
}

// File: openzeppelin-solidity/contracts/access/Roles.sol

pragma solidity ^0.4.24;

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping(address => bool) bearer;
    }

    /**
     * @dev give an account access to this role
     */
    function add(Role storage role, address account) internal {
        require(account != address(0));
        require(!has(role, account));

        role.bearer[account] = true;
    }

    /**
     * @dev remove an account's access to this role
     */
    function remove(Role storage role, address account) internal {
        require(account != address(0));
        require(has(role, account));

        role.bearer[account] = false;
    }

    /**
     * @dev check if an account has this role
     * @return bool
     */
    function has(Role storage role, address account)
        internal
        view
        returns (bool)
    {
        require(account != address(0));
        return role.bearer[account];
    }
}

// File: openzeppelin-solidity/contracts/access/roles/PauserRole.sol

pragma solidity ^0.4.24;

contract PauserRole {
    using Roles for Roles.Role;

    event PauserAdded(address indexed account);
    event PauserRemoved(address indexed account);

    Roles.Role private pausers;

    constructor() internal {
        _addPauser(msg.sender);
    }

    modifier onlyPauser() {
        require(isPauser(msg.sender));
        _;
    }

    function isPauser(address account) public view returns (bool) {
        return pausers.has(account);
    }

    function addPauser(address account) public onlyPauser {
        _addPauser(account);
    }

    function renouncePauser() public {
        _removePauser(msg.sender);
    }

    function _addPauser(address account) internal {
        pausers.add(account);
        emit PauserAdded(account);
    }

    function _removePauser(address account) internal {
        pausers.remove(account);
        emit PauserRemoved(account);
    }
}

// File: openzeppelin-solidity/contracts/lifecycle/Pausable.sol

pragma solidity ^0.4.24;

/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is PauserRole {
    event Paused(address account);
    event Unpaused(address account);

    bool private _paused;

    constructor() internal {
        _paused = false;
    }

    /**
     * @return true if the contract is paused, false otherwise.
     */
    function paused() public view returns (bool) {
        return _paused;
    }

    /**
     * @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() public onlyPauser whenNotPaused {
        _paused = true;
        emit Paused(msg.sender);
    }

    /**
     * @dev called by the owner to unpause, returns to normal state
     */
    function unpause() public onlyPauser whenPaused {
        _paused = false;
        emit Unpaused(msg.sender);
    }
}

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20Pausable.sol

pragma solidity ^0.4.24;

/**
 * @title Pausable token
 * @dev ERC20 modified with pausable transfers.
 **/
contract ERC20Pausable is ERC20, Pausable {
    function transfer(address to, uint256 value)
        public
        whenNotPaused
        returns (bool)
    {
        return super.transfer(to, value);
    }

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) public whenNotPaused returns (bool) {
        return super.transferFrom(from, to, value);
    }

    function approve(address spender, uint256 value)
        public
        whenNotPaused
        returns (bool)
    {
        return super.approve(spender, value);
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        whenNotPaused
        returns (bool success)
    {
        return super.increaseAllowance(spender, addedValue);
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        whenNotPaused
        returns (bool success)
    {
        return super.decreaseAllowance(spender, subtractedValue);
    }
}

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20Burnable.sol

pragma solidity ^0.4.24;

/**
 * @title Burnable Token
 * @dev Token that can be irreversibly burned (destroyed).
 */
contract ERC20Burnable is ERC20 {
    /**
     * @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);
    }

    /**
     * @dev Burns a specific amount of tokens from the target address and decrements allowance
     * @param from address The address which you want to send tokens from
     * @param value uint256 The amount of token to be burned
     */
    function burnFrom(address from, uint256 value) public {
        _burnFrom(from, value);
    }
}

// File: contracts/token/CandyToken.sol

pragma solidity ^0.4.24;

contract CandyToken is ERC20Detailed, ERC20Pausable, ERC20Burnable {
    /**
     * @dev constructor to mint initial tokens
     * @param name string
     * @param symbol string
     * @param decimals uint8
     * @param initialSupply uint256
     */
    constructor(
        string name,
        string symbol,
        uint8 decimals,
        uint256 initialSupply
    ) public ERC20Detailed(name, symbol, decimals) {
        // Mint the initial supply
        require(initialSupply > 0, "initialSupply must be greater than zero.");
        _mint(msg.sender, initialSupply * (10**uint256(decimals)));
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","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":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"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":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"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":"account","type":"address"}],"name":"isPauser","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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"},{"inputs":[{"name":"name","type":"string"},{"name":"symbol","type":"string"},{"name":"decimals","type":"uint8"},{"name":"initialSupply","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserRemoved","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"},{"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"}]

60806040523480156200001157600080fd5b50604051620011183803806200111883398101604090815281516020808401519284015160608501519285018051909594909401939092918591859185916200006191600091908601906200032a565b508151620000779060019060208501906200032a565b506002805460ff191660ff9290921691909117905550620000a39050336401000000006200016a810204565b6007805460ff19169055600081116200014357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f696e697469616c537570706c79206d757374206265206772656174657220746860448201527f616e207a65726f2e000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b620001603360ff8416600a0a8302640100000000620001bc810204565b50505050620003cf565b6200018560068264010000000062000cbf6200027d82021704565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b600160a060020a0382161515620001d257600080fd5b600554620001ef908264010000000062000c61620002d882021704565b600555600160a060020a03821660009081526003602052604090205462000225908264010000000062000c61620002d882021704565b600160a060020a03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a03811615156200029357600080fd5b620002a88282640100000000620002f2810204565b15620002b357600080fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b600082820183811015620002eb57600080fd5b9392505050565b6000600160a060020a03821615156200030a57600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200036d57805160ff19168380011785556200039d565b828001600101855582156200039d579182015b828111156200039d57825182559160200191906001019062000380565b50620003ab929150620003af565b5090565b620003cc91905b80821115620003ab5760008155600101620003b6565b90565b610d3980620003df6000396000f3006080604052600436106101065763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461010b578063095ea7b31461019557806318160ddd146101cd57806323b872dd146101f4578063313ce5671461021e57806339509351146102495780633f4ba83a1461026d57806342966c681461028457806346fbf68e1461029c5780635c975abb146102bd5780636ef8d66d146102d257806370a08231146102e757806379cc67901461030857806382dc1ec41461032c5780638456cb591461034d57806395d89b4114610362578063a457c2d714610377578063a9059cbb1461039b578063dd62ed3e146103bf575b600080fd5b34801561011757600080fd5b506101206103e6565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015a578181015183820152602001610142565b50505050905090810190601f1680156101875780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101a157600080fd5b506101b9600160a060020a036004351660243561047c565b604080519115158252519081900360200190f35b3480156101d957600080fd5b506101e26104a0565b60408051918252519081900360200190f35b34801561020057600080fd5b506101b9600160a060020a03600435811690602435166044356104a6565b34801561022a57600080fd5b506102336104cc565b6040805160ff9092168252519081900360200190f35b34801561025557600080fd5b506101b9600160a060020a03600435166024356104d5565b34801561027957600080fd5b506102826104f2565b005b34801561029057600080fd5b50610282600435610556565b3480156102a857600080fd5b506101b9600160a060020a0360043516610563565b3480156102c957600080fd5b506101b961057c565b3480156102de57600080fd5b50610282610585565b3480156102f357600080fd5b506101e2600160a060020a0360043516610590565b34801561031457600080fd5b50610282600160a060020a03600435166024356105ab565b34801561033857600080fd5b50610282600160a060020a03600435166105b9565b34801561035957600080fd5b506102826105d6565b34801561036e57600080fd5b5061012061063c565b34801561038357600080fd5b506101b9600160a060020a036004351660243561069c565b3480156103a757600080fd5b506101b9600160a060020a03600435166024356106b9565b3480156103cb57600080fd5b506101e2600160a060020a03600435811690602435166106d6565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104725780601f1061044757610100808354040283529160200191610472565b820191906000526020600020905b81548152906001019060200180831161045557829003601f168201915b5050505050905090565b60075460009060ff161561048f57600080fd5b6104998383610701565b9392505050565b60055490565b60075460009060ff16156104b957600080fd5b6104c484848461077f565b949350505050565b60025460ff1690565b60075460009060ff16156104e857600080fd5b610499838361081c565b6104fb33610563565b151561050657600080fd5b60075460ff16151561051757600080fd5b6007805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b61056033826108cc565b50565b600061057660068363ffffffff61099c16565b92915050565b60075460ff1690565b61058e336109d3565b565b600160a060020a031660009081526003602052604090205490565b6105b58282610a1b565b5050565b6105c233610563565b15156105cd57600080fd5b61056081610aad565b6105df33610563565b15156105ea57600080fd5b60075460ff16156105fa57600080fd5b6007805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156104725780601f1061044757610100808354040283529160200191610472565b60075460009060ff16156106af57600080fd5b6104998383610af5565b60075460009060ff16156106cc57600080fd5b6104998383610b40565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b6000600160a060020a038316151561071857600080fd5b336000818152600460209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b600160a060020a03831660009081526004602090815260408083203384529091528120548211156107af57600080fd5b600160a060020a03841660009081526004602090815260408083203384529091529020546107e3908363ffffffff610b5616565b600160a060020a0385166000908152600460209081526040808320338452909152902055610812848484610b6d565b5060019392505050565b6000600160a060020a038316151561083357600080fd5b336000908152600460209081526040808320600160a060020a0387168452909152902054610867908363ffffffff610c6116565b336000818152600460209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03821615156108e157600080fd5b600160a060020a03821660009081526003602052604090205481111561090657600080fd5b600554610919908263ffffffff610b5616565b600555600160a060020a038216600090815260036020526040902054610945908263ffffffff610b5616565b600160a060020a0383166000818152600360209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b6000600160a060020a03821615156109b357600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b6109e460068263ffffffff610c7316565b604051600160a060020a038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b600160a060020a0382166000908152600460209081526040808320338452909152902054811115610a4b57600080fd5b600160a060020a0382166000908152600460209081526040808320338452909152902054610a7f908263ffffffff610b5616565b600160a060020a03831660009081526004602090815260408083203384529091529020556105b582826108cc565b610abe60068263ffffffff610cbf16565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b6000600160a060020a0383161515610b0c57600080fd5b336000908152600460209081526040808320600160a060020a0387168452909152902054610867908363ffffffff610b5616565b6000610b4d338484610b6d565b50600192915050565b60008083831115610b6657600080fd5b5050900390565b600160a060020a038316600090815260036020526040902054811115610b9257600080fd5b600160a060020a0382161515610ba757600080fd5b600160a060020a038316600090815260036020526040902054610bd0908263ffffffff610b5616565b600160a060020a038085166000908152600360205260408082209390935590841681522054610c05908263ffffffff610c6116565b600160a060020a0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008282018381101561049957600080fd5b600160a060020a0381161515610c8857600080fd5b610c92828261099c565b1515610c9d57600080fd5b600160a060020a0316600090815260209190915260409020805460ff19169055565b600160a060020a0381161515610cd457600080fd5b610cde828261099c565b15610ce857600080fd5b600160a060020a0316600090815260209190915260409020805460ff191660011790555600a165627a7a72305820654f6ee48cbe29eeda58a8e56bc39dfe96290064fa6b8b89843949e3f89ad2b10029000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000002faf0800000000000000000000000000000000000000000000000000000000000000000c43525950544f2043414e44590000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000543414e4459000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101065763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461010b578063095ea7b31461019557806318160ddd146101cd57806323b872dd146101f4578063313ce5671461021e57806339509351146102495780633f4ba83a1461026d57806342966c681461028457806346fbf68e1461029c5780635c975abb146102bd5780636ef8d66d146102d257806370a08231146102e757806379cc67901461030857806382dc1ec41461032c5780638456cb591461034d57806395d89b4114610362578063a457c2d714610377578063a9059cbb1461039b578063dd62ed3e146103bf575b600080fd5b34801561011757600080fd5b506101206103e6565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015a578181015183820152602001610142565b50505050905090810190601f1680156101875780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101a157600080fd5b506101b9600160a060020a036004351660243561047c565b604080519115158252519081900360200190f35b3480156101d957600080fd5b506101e26104a0565b60408051918252519081900360200190f35b34801561020057600080fd5b506101b9600160a060020a03600435811690602435166044356104a6565b34801561022a57600080fd5b506102336104cc565b6040805160ff9092168252519081900360200190f35b34801561025557600080fd5b506101b9600160a060020a03600435166024356104d5565b34801561027957600080fd5b506102826104f2565b005b34801561029057600080fd5b50610282600435610556565b3480156102a857600080fd5b506101b9600160a060020a0360043516610563565b3480156102c957600080fd5b506101b961057c565b3480156102de57600080fd5b50610282610585565b3480156102f357600080fd5b506101e2600160a060020a0360043516610590565b34801561031457600080fd5b50610282600160a060020a03600435166024356105ab565b34801561033857600080fd5b50610282600160a060020a03600435166105b9565b34801561035957600080fd5b506102826105d6565b34801561036e57600080fd5b5061012061063c565b34801561038357600080fd5b506101b9600160a060020a036004351660243561069c565b3480156103a757600080fd5b506101b9600160a060020a03600435166024356106b9565b3480156103cb57600080fd5b506101e2600160a060020a03600435811690602435166106d6565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104725780601f1061044757610100808354040283529160200191610472565b820191906000526020600020905b81548152906001019060200180831161045557829003601f168201915b5050505050905090565b60075460009060ff161561048f57600080fd5b6104998383610701565b9392505050565b60055490565b60075460009060ff16156104b957600080fd5b6104c484848461077f565b949350505050565b60025460ff1690565b60075460009060ff16156104e857600080fd5b610499838361081c565b6104fb33610563565b151561050657600080fd5b60075460ff16151561051757600080fd5b6007805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b61056033826108cc565b50565b600061057660068363ffffffff61099c16565b92915050565b60075460ff1690565b61058e336109d3565b565b600160a060020a031660009081526003602052604090205490565b6105b58282610a1b565b5050565b6105c233610563565b15156105cd57600080fd5b61056081610aad565b6105df33610563565b15156105ea57600080fd5b60075460ff16156105fa57600080fd5b6007805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156104725780601f1061044757610100808354040283529160200191610472565b60075460009060ff16156106af57600080fd5b6104998383610af5565b60075460009060ff16156106cc57600080fd5b6104998383610b40565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b6000600160a060020a038316151561071857600080fd5b336000818152600460209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b600160a060020a03831660009081526004602090815260408083203384529091528120548211156107af57600080fd5b600160a060020a03841660009081526004602090815260408083203384529091529020546107e3908363ffffffff610b5616565b600160a060020a0385166000908152600460209081526040808320338452909152902055610812848484610b6d565b5060019392505050565b6000600160a060020a038316151561083357600080fd5b336000908152600460209081526040808320600160a060020a0387168452909152902054610867908363ffffffff610c6116565b336000818152600460209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03821615156108e157600080fd5b600160a060020a03821660009081526003602052604090205481111561090657600080fd5b600554610919908263ffffffff610b5616565b600555600160a060020a038216600090815260036020526040902054610945908263ffffffff610b5616565b600160a060020a0383166000818152600360209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b6000600160a060020a03821615156109b357600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b6109e460068263ffffffff610c7316565b604051600160a060020a038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b600160a060020a0382166000908152600460209081526040808320338452909152902054811115610a4b57600080fd5b600160a060020a0382166000908152600460209081526040808320338452909152902054610a7f908263ffffffff610b5616565b600160a060020a03831660009081526004602090815260408083203384529091529020556105b582826108cc565b610abe60068263ffffffff610cbf16565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b6000600160a060020a0383161515610b0c57600080fd5b336000908152600460209081526040808320600160a060020a0387168452909152902054610867908363ffffffff610b5616565b6000610b4d338484610b6d565b50600192915050565b60008083831115610b6657600080fd5b5050900390565b600160a060020a038316600090815260036020526040902054811115610b9257600080fd5b600160a060020a0382161515610ba757600080fd5b600160a060020a038316600090815260036020526040902054610bd0908263ffffffff610b5616565b600160a060020a038085166000908152600360205260408082209390935590841681522054610c05908263ffffffff610c6116565b600160a060020a0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008282018381101561049957600080fd5b600160a060020a0381161515610c8857600080fd5b610c92828261099c565b1515610c9d57600080fd5b600160a060020a0316600090815260209190915260409020805460ff19169055565b600160a060020a0381161515610cd457600080fd5b610cde828261099c565b15610ce857600080fd5b600160a060020a0316600090815260209190915260409020805460ff191660011790555600a165627a7a72305820654f6ee48cbe29eeda58a8e56bc39dfe96290064fa6b8b89843949e3f89ad2b10029

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000002faf0800000000000000000000000000000000000000000000000000000000000000000c43525950544f2043414e44590000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000543414e4459000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): CRYPTO CANDY
Arg [1] : symbol (string): CANDY
Arg [2] : decimals (uint8): 18
Arg [3] : initialSupply (uint256): 800000000

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000000000000000000000000000000000002faf0800
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [5] : 43525950544f2043414e44590000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 43414e4459000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

17220:627:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1671:76;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1671:76: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;1671:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15726:172;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;15726:172:0;-1:-1:-1;;;;;15726:172:0;;;;;;;;;;;;;;;;;;;;;;;;;4672:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4672:91:0;;;;;;;;;;;;;;;;;;;;15524:194;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;15524:194:0;-1:-1:-1;;;;;15524:194:0;;;;;;;;;;;;1973:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1973:83:0;;;;;;;;;;;;;;;;;;;;;;;15906:210;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;15906:210:0;-1:-1:-1;;;;;15906:210:0;;;;;;;14990:118;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14990:118:0;;;;;;16709:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;16709:79:0;;;;;13173:108;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13173:108:0;-1:-1:-1;;;;;13173:108:0;;;;;14243:78;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14243:78:0;;;;13389:77;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13389:77:0;;;;4983:106;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4983:106:0;-1:-1:-1;;;;;4983:106:0;;;;;17047:95;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;17047:95:0;-1:-1:-1;;;;;17047:95:0;;;;;;;13289:92;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13289:92:0;-1:-1:-1;;;;;13289:92:0;;;;;14779:116;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14779:116:0;;;;1814:80;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1814:80:0;;;;16124:220;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;16124:220:0;-1:-1:-1;;;;;16124:220:0;;;;;;;15352:164;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;15352:164:0;-1:-1:-1;;;;;15352:164:0;;;;;;;5428:163;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5428:163:0;-1:-1:-1;;;;;5428:163:0;;;;;;;;;;1671:76;1734:5;1727:12;;;;;;;;-1:-1:-1;;1727:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1708:6;;1727:12;;1734:5;;1727:12;;1734:5;1727:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1671:76;:::o;15726:172::-;14480:7;;15832:4;;14480:7;;14479:8;14471:17;;;;;;15861:29;15875:7;15884:5;15861:13;:29::i;:::-;15854:36;15726:172;-1:-1:-1;;;15726:172:0:o;4672:91::-;4743:12;;4672:91;:::o;15524:194::-;14480:7;;15651:4;;14480:7;;14479:8;14471:17;;;;;;15675:35;15694:4;15700:2;15704:5;15675:18;:35::i;:::-;15668:42;15524:194;-1:-1:-1;;;;15524:194:0:o;1973:83::-;2039:9;;;;1973:83;:::o;15906:210::-;14480:7;;16027:12;;14480:7;;14479:8;14471:17;;;;;;16064:44;16088:7;16097:10;16064:23;:44::i;14990:118::-;13124:20;13133:10;13124:8;:20::i;:::-;13116:29;;;;;;;;14659:7;;;;14651:16;;;;;;;;15049:7;:15;;-1:-1:-1;;15049:15:0;;;15080:20;;;15089:10;15080:20;;;;;;;;;;;;;14990:118::o;16709:79::-;16756:24;16762:10;16774:5;16756;:24::i;:::-;16709:79;:::o;13173:108::-;13229:4;13253:20;:7;13265;13253:20;:11;:20;:::i;:::-;13246:27;13173:108;-1:-1:-1;;13173:108:0:o;14243:78::-;14306:7;;;;14243:78;:::o;13389:77::-;13433:25;13447:10;13433:13;:25::i;:::-;13389:77::o;4983:106::-;-1:-1:-1;;;;;5065:16:0;5038:7;5065:16;;;:9;:16;;;;;;;4983:106::o;17047:95::-;17112:22;17122:4;17128:5;17112:9;:22::i;:::-;17047:95;;:::o;13289:92::-;13124:20;13133:10;13124:8;:20::i;:::-;13116:29;;;;;;;;13354:19;13365:7;13354:10;:19::i;14779:116::-;13124:20;13133:10;13124:8;:20::i;:::-;13116:29;;;;;;;;14480:7;;;;14479:8;14471:17;;;;;;14839:7;:14;;-1:-1:-1;;14839:14:0;14849:4;14839:14;;;14869:18;;;14876:10;14869:18;;;;;;;;;;;;;14779:116::o;1814:80::-;1879:7;1872:14;;;;;;;;-1:-1:-1;;1872:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1853:6;;1872:14;;1879:7;;1872:14;;1879:7;1872:14;;;;;;;;;;;;;;;;;;;;;;;;16124:220;14480:7;;16250:12;;14480:7;;14479:8;14471:17;;;;;;16287:49;16311:7;16320:15;16287:23;:49::i;15352:164::-;14480:7;;15454:4;;14480:7;;14479:8;14471:17;;;;;;15483:25;15498:2;15502:5;15483:14;:25::i;5428:163::-;-1:-1:-1;;;;;5559:15:0;;;5527:7;5559:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;5428:163::o;6553:244::-;6618:4;-1:-1:-1;;;;;6643:21:0;;;;6635:30;;;;;;6687:10;6678:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;6678:29:0;;;;;;;;;;;;:37;;;6731:36;;;;;;;6678:29;;6687:10;6731:36;;;;;;;;;;;-1:-1:-1;6785:4:0;6553:244;;;;:::o;7091:320::-;-1:-1:-1;;;;;7238:14:0;;7204:4;7238:14;;;:8;:14;;;;;;;;7253:10;7238:26;;;;;;;;7229:35;;;7221:44;;;;;;-1:-1:-1;;;;;7307:14:0;;;;;;:8;:14;;;;;;;;7322:10;7307:26;;;;;;;;:37;;7338:5;7307:37;:30;:37;:::i;:::-;-1:-1:-1;;;;;7278:14:0;;;;;;:8;:14;;;;;;;;7293:10;7278:26;;;;;;;:66;7355:26;7287:4;7371:2;7375:5;7355:9;:26::i;:::-;-1:-1:-1;7399:4:0;7091:320;;;;;:::o;7893:372::-;7991:4;-1:-1:-1;;;;;8021:21:0;;;;8013:30;;;;;;8112:10;8103:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;8103:29:0;;;;;;;;;;:45;;8137:10;8103:45;:33;:45;:::i;:::-;8065:10;8056:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;8056:29:0;;;;;;;;;;;;:103;;;8175:60;;;;;;8056:29;;8175:60;;;;;;;;;;;-1:-1:-1;8253:4:0;7893:372;;;;:::o;10545:307::-;-1:-1:-1;;;;;10620:12:0;;;;10612:21;;;;;;-1:-1:-1;;;;;10661:18:0;;;;;;:9;:18;;;;;;10652:27;;;10644:36;;;;;;10708:12;;:23;;10725:5;10708:23;:16;:23;:::i;:::-;10693:12;:38;-1:-1:-1;;;;;10763:18:0;;;;;;:9;:18;;;;;;:29;;10786:5;10763:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;10742:18:0;;;;;;:9;:18;;;;;;;;:50;;;;10808:36;;;;;;;10742:18;;10808:36;;;;;;;;;;;10545:307;;:::o;12508:197::-;12607:4;-1:-1:-1;;;;;12637:21:0;;;;12629:30;;;;;;-1:-1:-1;;;;;;12677:20:0;:11;:20;;;;;;;;;;;;;;;12508:197::o;13603:129::-;13663:23;:7;13678;13663:23;:14;:23;:::i;:::-;13702:22;;-1:-1:-1;;;;;13702:22:0;;;;;;;;13603:129;:::o;11183:436::-;-1:-1:-1;;;;;11271:17:0;;;;;;:8;:17;;;;;;;;11289:10;11271:29;;;;;;;;11262:38;;;11254:47;;;;;;-1:-1:-1;;;;;11515:17:0;;;;;;:8;:17;;;;;;;;11533:10;11515:29;;;;;;;;:64;;11563:5;11515:64;:33;:64;:::i;:::-;-1:-1:-1;;;;;11483:17:0;;;;;;:8;:17;;;;;;;;11501:10;11483:29;;;;;;;:96;11590:21;11492:7;11605:5;11590;:21::i;13474:121::-;13531:20;:7;13543;13531:20;:11;:20;:::i;:::-;13567;;-1:-1:-1;;;;;13567:20:0;;;;;;;;13474:121;:::o;8752:382::-;8855:4;-1:-1:-1;;;;;8885:21:0;;;;8877:30;;;;;;8976:10;8967:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;8967:29:0;;;;;;;;;;:50;;9001:15;8967:50;:33;:50;:::i;5766:140::-;5827:4;5844:32;5854:10;5866:2;5870:5;5844:9;:32::i;:::-;-1:-1:-1;5894:4:0;5766:140;;;;:::o;3328:150::-;3386:7;;3414:6;;;;3406:15;;;;;;-1:-1:-1;;3444:5:0;;;3328:150::o;9361:340::-;-1:-1:-1;;;;;9492:15:0;;;;;;:9;:15;;;;;;9483:24;;;9475:33;;;;;;-1:-1:-1;;;;;9527:16:0;;;;9519:25;;;;;;-1:-1:-1;;;;;9575:15:0;;;;;;:9;:15;;;;;;:26;;9595:5;9575:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;9557:15:0;;;;;;;:9;:15;;;;;;:44;;;;9628:13;;;;;;;:24;;9646:5;9628:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;9612:13:0;;;;;;;:9;:13;;;;;;;;;:40;;;;9668:25;;;;;;;9612:13;;9668:25;;;;;;;;;;;;;9361:340;;;:::o;3556:150::-;3614:7;3646:5;;;3670:6;;;;3662:15;;;;;12225:189;-1:-1:-1;;;;;12305:21:0;;;;12297:30;;;;;;12346:18;12350:4;12356:7;12346:3;:18::i;:::-;12338:27;;;;;;;;-1:-1:-1;;;;;12378:20:0;12401:5;12378:20;;;;;;;;;;;:28;;-1:-1:-1;;12378:28:0;;;12225:189::o;11960:186::-;-1:-1:-1;;;;;12037:21:0;;;;12029:30;;;;;;12079:18;12083:4;12089:7;12079:3;:18::i;:::-;12078:19;12070:28;;;;;;-1:-1:-1;;;;;12111:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;12111:27:0;12134:4;12111:27;;;11960:186::o

Swarm Source

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