ETH Price: $3,049.57 (-2.03%)
Gas: 7 Gwei

Token

Unicorn Technology International (UTI)
 

Overview

Max Total Supply

200,000,000 UTI

Holders

135

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

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

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

Contract Name:
HumanStandardToken

Compiler Version
v0.5.9+commit.e560f70d

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2020-03-15
*/

pragma solidity 0.5.9;


interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes calldata _extraData) external; }

contract Token {

    /// @return total amount of tokens
    function totalSupply() public view returns (uint256 supply) {}

    /// @param _owner The address from which the balance will be retrieved
    /// @return The balance
    function balanceOf(address _owner) public view returns (uint256 balance) {}

    /// @notice send `_value` token to `_to` from `msg.sender`
    /// @param _to The address of the recipient
    /// @param _value The amount of token to be transferred
    /// @return Whether the transfer was successful or not
    function transfer(address _to, uint256 _value) public returns (bool success) {}

    /// @notice send `_value` token to `_to` from `_from` on the condition it is approved by `_from`
    /// @param _from The address of the sender
    /// @param _to The address of the recipient
    /// @param _value The amount of token to be transferred
    /// @return Whether the transfer was successful or not
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {}

    /// @notice `msg.sender` approves `_addr` to spend `_value` tokens
    /// @param _spender The address of the account able to transfer the tokens
    /// @param _value The amount of wei to be approved for transfer
    /// @return Whether the approval was successful or not
    function approve(address _spender, uint256 _value) public returns (bool success) {}

    /// @param _owner The address of the account owning tokens
    /// @param _spender The address of the account able to transfer the tokens
    /// @return Amount of remaining tokens allowed to spent
    function allowance(address _owner, address _spender) public view returns (uint256 remaining) {}

    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
}


/*
This implements ONLY the standard functions and NOTHING else.
For a token like you would want to deploy in something like Mist, see HumanStandardToken.sol.

If you deploy this, you won't have anything useful.

Implements ERC 20 Token standard: https://github.com/ethereum/EIPs/issues/20
.*/

contract StandardToken is Token {

    function transfer(address _to, uint256 _value) public returns (bool success) {
        //Default assumes totalSupply can't be over max (2^256 - 1).
        //If your token leaves out totalSupply and can issue more tokens as time goes on, you need to check if it doesn't wrap.
        //Replace the if with this one instead.
        //if (balances[msg.sender] >= _value && balances[_to] + _value > balances[_to]) {
        require(_to != address(0));
        require(balances[msg.sender] >= _value && _value > 0);
            balances[msg.sender] -= _value;
            balances[_to] += _value;
            emit Transfer(msg.sender, _to, _value);
            return true;
    }

    function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {
        //same as above. Replace this line with the following if you want to protect against wrapping uints.
        //if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && balances[_to] + _value > balances[_to]) {
        require(_to != address(0));
        require(balances[_from] >= _value && allowed[_from][msg.sender] >= _value && _value > 0);
            balances[_to] += _value;
            balances[_from] -= _value;
            allowed[_from][msg.sender] -= _value;
            emit Transfer(_from, _to, _value);
            return true;
    }

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

    function approve(address _spender, uint256 _value) public returns (bool success) {
        allowed[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }

    function allowance(address _owner, address _spender) public view returns (uint256 remaining) {
      return allowed[_owner][_spender];
    }
    
    
    function totalSupply() public view returns (uint256 supply) {
        return _totalSupply;
    }
    mapping (address => uint256) internal balances;
    mapping (address => mapping (address => uint256)) internal allowed;
    uint256 internal _totalSupply;
}

/*
This Token Contract implements the standard token functionality (https://github.com/ethereum/EIPs/issues/20) as well as the following OPTIONAL extras intended for use by humans.

In other words. This is intended for deployment in something like a Token Factory or Mist wallet, and then used by humans.
Imagine coins, currencies, shares, voting weight, etc.
Machine-based, rapid creation of many tokens would not necessarily need these extra features or will be minted in other manners.

1) Initial Finite Supply (upon creation one specifies how much is minted).
2) In the absence of a token registry: Optional Decimal, Symbol & Name.
3) Optional approveAndCall() functionality to notify a contract if an approval() has occurred.

.*/

contract HumanStandardToken is StandardToken {

    function () external {
        //if ether is sent to this address, send it back.
        revert();
    }

    /* Public variables of the token */

    /*
    NOTE:
    The following variables are OPTIONAL vanities. One does not have to include them.
    They allow one to customise the token contract & in no way influences the core functionality.
    Some wallets/interfaces might not even bother to look at this information.
    */
    string public name;                   //fancy name: eg Simon Bucks
    uint8 public decimals;                //How many decimals to show. ie. There could 1000 base units with 3 decimals. Meaning 0.980 SBX = 980 base units. It's like comparing 1 wei to 1 ether.
    string public symbol;                 //An identifier: eg SBX
    string public version = 'H0.1';       //human 0.1 standard. Just an arbitrary versioning scheme.
    address public owner;

    event Burn(address indexed _owner, uint256 _value);
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    constructor(
        uint256 _initialAmount,
        string memory _tokenName,
        uint8 _decimalUnits,
        string memory _tokenSymbol
        ) public {
        balances[msg.sender] = _initialAmount;               // Give the creator all initial tokens
        _totalSupply = _initialAmount;                        // Update total supply
        name = _tokenName;                                   // Set the name for display purposes
        decimals = _decimalUnits;                            // Amount of decimals for display purposes
        symbol = _tokenSymbol;                               // Set the symbol for display purposes
        owner = msg.sender;
        emit Transfer(address(0), msg.sender, _totalSupply);
        emit OwnershipTransferred(address(0), owner);
    }

    /* Approves and then calls the receiving contract */
    function approveAndCall(address _spender, uint256 _value, bytes memory _extraData) public returns (bool success) {
        tokenRecipient spender = tokenRecipient(_spender);
        if (approve(_spender, _value)) {
            spender.receiveApproval(msg.sender, _value, address(this), _extraData);
            return true;
        }
    }

    /**
     * @dev Burns a specific amount of tokens.
     * @param _value The amount of token to be burned.
    */
    function burn(uint256 _value) public {
        require(msg.sender == owner);
        require(_value <= balances[msg.sender]);
        require(_value <= _totalSupply);
        // 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[msg.sender] -= _value;
        _totalSupply -= _value;
        emit Transfer(msg.sender, address(0), _value);
        emit Burn(msg.sender, _value);
    }

    /**
     * @dev Transfers control of the contract to a newOwner.
     * @param newOwner The address to transfer ownership to.
     */
    function transferOwnership(address newOwner) public {
        require(msg.sender == owner);
        require(newOwner != address(0), "Cannot transfer control of the contract to zero address");
        emit OwnershipTransferred(owner, newOwner);
        owner = newOwner;
    }
}

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":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"supply","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":"success","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":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","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":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","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":[{"name":"_initialAmount","type":"uint256"},{"name":"_tokenName","type":"string"},{"name":"_decimalUnits","type":"uint8"},{"name":"_tokenSymbol","type":"string"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":false,"stateMutability":"nonpayable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Burn","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":"_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"}]

60c0604052600460808190527f48302e310000000000000000000000000000000000000000000000000000000060a090815261003e91600691906101f5565b5034801561004b57600080fd5b5060405162000d1a38038062000d1a8339818101604052608081101561007057600080fd5b81516020830180519193928301929164010000000081111561009157600080fd5b820160208101848111156100a457600080fd5b81516401000000008111828201871017156100be57600080fd5b505060208201516040909201805191949293916401000000008111156100e357600080fd5b820160208101848111156100f657600080fd5b815164010000000081118282018710171561011057600080fd5b505033600090815260208181526040909120889055600288905586519194506101409350600392508601906101f5565b506004805460ff191660ff841617905580516101639060059060208401906101f5565b50600780546001600160a01b0319163390811790915560025460408051918252516000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a36007546040516001600160a01b03909116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350505050610290565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061023657805160ff1916838001178555610263565b82800160010185558215610263579182015b82811115610263578251825591602001919060010190610248565b5061026f929150610273565b5090565b61028d91905b8082111561026f5760008155600101610279565b90565b610a7a80620002a06000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c578063a9059cbb11610066578063a9059cbb14610293578063cae9ca51146102bf578063dd62ed3e1461037a578063f2fde38b146103a8576100ea565b806370a08231146102415780638da5cb5b1461026757806395d89b411461028b576100ea565b806323b872dd116100c857806323b872dd146101c6578063313ce567146101fc57806342966c681461021a57806354fd4d5014610239576100ea565b806306fdde03146100ef578063095ea7b31461016c57806318160ddd146101ac575b600080fd5b6100f76103ce565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610131578181015183820152602001610119565b50505050905090810190601f16801561015e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101986004803603604081101561018257600080fd5b506001600160a01b03813516906020013561045c565b604080519115158252519081900360200190f35b6101b46104c2565b60408051918252519081900360200190f35b610198600480360360608110156101dc57600080fd5b506001600160a01b038135811691602081013590911690604001356104c8565b6102046105c4565b6040805160ff9092168252519081900360200190f35b6102376004803603602081101561023057600080fd5b50356105cd565b005b6100f761069d565b6101b46004803603602081101561025757600080fd5b50356001600160a01b03166106f8565b61026f610713565b604080516001600160a01b039092168252519081900360200190f35b6100f7610722565b610198600480360360408110156102a957600080fd5b506001600160a01b03813516906020013561077d565b610198600480360360608110156102d557600080fd5b6001600160a01b038235169160208101359181019060608101604082013564010000000081111561030557600080fd5b82018360208201111561031757600080fd5b8035906020019184600183028401116401000000008311171561033957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610826945050505050565b6101b46004803603604081101561039057600080fd5b506001600160a01b038135811691602001351661092b565b610237600480360360208110156103be57600080fd5b50356001600160a01b0316610956565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104545780601f1061042957610100808354040283529160200191610454565b820191906000526020600020905b81548152906001019060200180831161043757829003601f168201915b505050505081565b3360008181526001602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60025490565b60006001600160a01b0383166104dd57600080fd5b6001600160a01b038416600090815260208190526040902054821180159061052857506001600160a01b03841660009081526001602090815260408083203384529091529020548211155b80156105345750600082115b61053d57600080fd5b6001600160a01b0380841660008181526020818152604080832080548801905593881680835284832080548890039055600182528483203384528252918490208054879003905583518681529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35060015b9392505050565b60045460ff1681565b6007546001600160a01b031633146105e457600080fd5b3360009081526020819052604090205481111561060057600080fd5b60025481111561060f57600080fd5b3360008181526020818152604080832080548690039055600280548690039055805185815290519293927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a360408051828152905133917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a250565b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104545780601f1061042957610100808354040283529160200191610454565b6001600160a01b031660009081526020819052604090205490565b6007546001600160a01b031681565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104545780601f1061042957610100808354040283529160200191610454565b60006001600160a01b03831661079257600080fd5b3360009081526020819052604090205482118015906107b15750600082115b6107ba57600080fd5b33600081815260208181526040808320805487900390556001600160a01b03871680845292819020805487019055805186815290519293927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a350600192915050565b600083610833818561045c565b1561092357604051638f4ffcb160e01b815233600482018181526024830187905230604484018190526080606485019081528751608486015287516001600160a01b03871695638f4ffcb195948b94938b939192909160a490910190602085019080838360005b838110156108b257818101518382015260200161089a565b50505050905090810190601f1680156108df5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561090157600080fd5b505af1158015610915573d6000803e3d6000fd5b5050505060019150506105bd565b509392505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6007546001600160a01b0316331461096d57600080fd5b6001600160a01b0381166109b25760405162461bcd60e51b8152600401808060200182810382526037815260200180610a0f6037913960400191505060405180910390fd5b6007546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780546001600160a01b0319166001600160a01b039290921691909117905556fe43616e6e6f74207472616e7366657220636f6e74726f6c206f662074686520636f6e747261637420746f207a65726f2061646472657373a265627a7a7230582086519340cd407bd3eb4d6aa65ab2875c8ace307896d21d214e73fc7e48572fee64736f6c63430005090032000000000000000000000000000000000000000000a56fa5b99019a5c80000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000021556e69636f726e7320546563686e6f6c6f677920496e7465726e6174696f6e616c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035554490000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c578063a9059cbb11610066578063a9059cbb14610293578063cae9ca51146102bf578063dd62ed3e1461037a578063f2fde38b146103a8576100ea565b806370a08231146102415780638da5cb5b1461026757806395d89b411461028b576100ea565b806323b872dd116100c857806323b872dd146101c6578063313ce567146101fc57806342966c681461021a57806354fd4d5014610239576100ea565b806306fdde03146100ef578063095ea7b31461016c57806318160ddd146101ac575b600080fd5b6100f76103ce565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610131578181015183820152602001610119565b50505050905090810190601f16801561015e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101986004803603604081101561018257600080fd5b506001600160a01b03813516906020013561045c565b604080519115158252519081900360200190f35b6101b46104c2565b60408051918252519081900360200190f35b610198600480360360608110156101dc57600080fd5b506001600160a01b038135811691602081013590911690604001356104c8565b6102046105c4565b6040805160ff9092168252519081900360200190f35b6102376004803603602081101561023057600080fd5b50356105cd565b005b6100f761069d565b6101b46004803603602081101561025757600080fd5b50356001600160a01b03166106f8565b61026f610713565b604080516001600160a01b039092168252519081900360200190f35b6100f7610722565b610198600480360360408110156102a957600080fd5b506001600160a01b03813516906020013561077d565b610198600480360360608110156102d557600080fd5b6001600160a01b038235169160208101359181019060608101604082013564010000000081111561030557600080fd5b82018360208201111561031757600080fd5b8035906020019184600183028401116401000000008311171561033957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610826945050505050565b6101b46004803603604081101561039057600080fd5b506001600160a01b038135811691602001351661092b565b610237600480360360208110156103be57600080fd5b50356001600160a01b0316610956565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104545780601f1061042957610100808354040283529160200191610454565b820191906000526020600020905b81548152906001019060200180831161043757829003601f168201915b505050505081565b3360008181526001602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60025490565b60006001600160a01b0383166104dd57600080fd5b6001600160a01b038416600090815260208190526040902054821180159061052857506001600160a01b03841660009081526001602090815260408083203384529091529020548211155b80156105345750600082115b61053d57600080fd5b6001600160a01b0380841660008181526020818152604080832080548801905593881680835284832080548890039055600182528483203384528252918490208054879003905583518681529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35060015b9392505050565b60045460ff1681565b6007546001600160a01b031633146105e457600080fd5b3360009081526020819052604090205481111561060057600080fd5b60025481111561060f57600080fd5b3360008181526020818152604080832080548690039055600280548690039055805185815290519293927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a360408051828152905133917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a250565b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104545780601f1061042957610100808354040283529160200191610454565b6001600160a01b031660009081526020819052604090205490565b6007546001600160a01b031681565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104545780601f1061042957610100808354040283529160200191610454565b60006001600160a01b03831661079257600080fd5b3360009081526020819052604090205482118015906107b15750600082115b6107ba57600080fd5b33600081815260208181526040808320805487900390556001600160a01b03871680845292819020805487019055805186815290519293927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a350600192915050565b600083610833818561045c565b1561092357604051638f4ffcb160e01b815233600482018181526024830187905230604484018190526080606485019081528751608486015287516001600160a01b03871695638f4ffcb195948b94938b939192909160a490910190602085019080838360005b838110156108b257818101518382015260200161089a565b50505050905090810190601f1680156108df5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561090157600080fd5b505af1158015610915573d6000803e3d6000fd5b5050505060019150506105bd565b509392505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6007546001600160a01b0316331461096d57600080fd5b6001600160a01b0381166109b25760405162461bcd60e51b8152600401808060200182810382526037815260200180610a0f6037913960400191505060405180910390fd5b6007546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780546001600160a01b0319166001600160a01b039290921691909117905556fe43616e6e6f74207472616e7366657220636f6e74726f6c206f662074686520636f6e747261637420746f207a65726f2061646472657373a265627a7a7230582086519340cd407bd3eb4d6aa65ab2875c8ace307896d21d214e73fc7e48572fee64736f6c63430005090032

Deployed Bytecode Sourcemap

5339:3430:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5339:3430:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5484:8;;;5844:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;5844:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3939:214;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;3939:214:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;4321:98;;;:::i;:::-;;;;;;;;;;;;;;;;3129:679;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;3129:679:0;;;;;;;;;;;;;;;;;:::i;5916:21::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7809:527;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7809:527:0;;:::i;:::-;;6178:30;;;:::i;3816:115::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3816:115:0;-1:-1:-1;;;;;3816:115:0;;:::i;6280:20::-;;;:::i;:::-;;;;-1:-1:-1;;;;;6280:20:0;;;;;;;;;;;;;;6111;;;:::i;2434:687::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;2434:687:0;;;;;;;;:::i;7335:345::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;7335:345:0;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;7335:345:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;7335:345:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;7335:345:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;7335:345:0;;-1:-1:-1;7335:345:0;;-1:-1:-1;;;;;7335:345:0:i;4161:142::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4161:142:0;;;;;;;;;;:::i;8486:280::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8486:280:0;-1:-1:-1;;;;;8486:280:0;;:::i;5844:18::-;;;;;;;;;;;;;;;-1:-1:-1;;5844:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3939:214::-;4039:10;4006:12;4031:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;4031:29:0;;;;;;;;;;;:38;;;4085;;;;;;;4006:12;;4031:29;;4039:10;;4085:38;;;;;;;;-1:-1:-1;4141:4:0;3939:214;;;;:::o;4321:98::-;4399:12;;4321:98;:::o;3129:679::-;3211:12;-1:-1:-1;;;;;3480:17:0;;3472:26;;;;;;-1:-1:-1;;;;;3517:15:0;;:8;:15;;;;;;;;;;;:25;-1:-1:-1;3517:25:0;;;:65;;-1:-1:-1;;;;;;3546:14:0;;;;;;:7;:14;;;;;;;;3561:10;3546:26;;;;;;;;:36;-1:-1:-1;3546:36:0;3517:65;:79;;;;;3595:1;3586:6;:10;3517:79;3509:88;;;;;;-1:-1:-1;;;;;3612:13:0;;;:8;:13;;;;;;;;;;;:23;;;;;;3650:15;;;;;;;;;:25;;;;;;;-1:-1:-1;3690:14:0;;;;;3705:10;3690:26;;;;;;;;:36;;;;;;;3746:28;;;;;;;3612:13;;3650:15;;3746:28;;;;;;;;;;-1:-1:-1;3796:4:0;3129:679;;;;;;:::o;5916:21::-;;;;;;:::o;7809:527::-;7879:5;;-1:-1:-1;;;;;7879:5:0;7865:10;:19;7857:28;;;;;;7923:10;7914:8;:20;;;;;;;;;;;7904:30;;;7896:39;;;;;;7964:12;;7954:6;:22;;7946:31;;;;;;8178:10;8169:8;:20;;;;;;;;;;;:30;;;;;;;8210:12;:22;;;;;;;8248:40;;;;;;;8169:8;;8178:10;8248:40;;;;;;;;;;;8304:24;;;;;;;;8309:10;;8304:24;;;;;;;;;;7809:527;:::o;6178:30::-;;;;;;;;;;;;;;;-1:-1:-1;;6178:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3816:115;-1:-1:-1;;;;;3907:16:0;3872:15;3907:16;;;;;;;;;;;;3816:115::o;6280:20::-;;;-1:-1:-1;;;;;6280:20:0;;:::o;6111:::-;;;;;;;;;;;;;;;-1:-1:-1;;6111:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2434:687;2497:12;-1:-1:-1;;;;;2869:17:0;;2861:26;;;;;;2915:10;2906:8;:20;;;;;;;;;;;:30;-1:-1:-1;2906:30:0;;;:44;;;2949:1;2940:6;:10;2906:44;2898:53;;;;;;2975:10;2966:8;:20;;;;;;;;;;;:30;;;;;;;-1:-1:-1;;;;;3011:13:0;;;;;;;;;:23;;;;;;3054:33;;;;;;;3011:13;;2975:10;3054:33;;;;;;;;;;;-1:-1:-1;3109:4:0;2434:687;;;;:::o;7335:345::-;7434:12;7499:8;7523:25;7499:8;7541:6;7523:7;:25::i;:::-;7519:154;;;7565:70;;-1:-1:-1;;;7565:70:0;;7589:10;7565:70;;;;;;;;;;;;7617:4;7565:70;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7565:23:0;;;;;7589:10;7601:6;;7617:4;7624:10;;7565:70;;;;;;;;;;;;;;;;-1:-1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;7565:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7565:70:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;7565:70:0;;;;7657:4;7650:11;;;;;7519:154;7335:345;;;;;;:::o;4161:142::-;-1:-1:-1;;;;;4270:15:0;;;4235:17;4270:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;4161:142::o;8486:280::-;8571:5;;-1:-1:-1;;;;;8571:5:0;8557:10;:19;8549:28;;;;;;-1:-1:-1;;;;;8596:22:0;;8588:90;;;;-1:-1:-1;;;8588:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8715:5;;8694:37;;-1:-1:-1;;;;;8694:37:0;;;;8715:5;;8694:37;;8715:5;;8694:37;8742:5;:16;;-1:-1:-1;;;;;;8742:16:0;-1:-1:-1;;;;;8742:16:0;;;;;;;;;;8486:280::o

Swarm Source

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