ETH Price: $2,731.86 (-2.50%)

Token

SkyWay Global Token (SWG)
 

Overview

Max Total Supply

195,035,967.15642525 SWG

Holders

762

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
0 SWG

Value
$0.00
0xebfcf98354786ae0186b872f64b582f1488d510c
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
SwgToken

Compiler Version
v0.5.9+commit.e560f70d

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-06-24
*/

pragma solidity 0.5.9;

/**
 * @title Claimable
 * @dev Claimable contract, where the ownership needs to be claimed.
 * This allows the new owner to accept the transfer.
 */
contract Claimable {
    address public owner;
    address public pendingOwner;

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

    /**
    * @dev The Claimable 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 Modifier throws if called by any account other than the pendingOwner.
    */
    modifier onlyPendingOwner() {
        require(msg.sender == pendingOwner);
        _;
    }

    /**
    * @dev Allows the current owner to set the pendingOwner address.
    * @param newOwner The address to transfer ownership to.
    */
    function transferOwnership(address newOwner) public onlyOwner {
        pendingOwner = newOwner;
    }

    /**
    * @dev Allows the pendingOwner address to finalize the transfer.
    */
    function claimOwnership() public onlyPendingOwner {
        emit OwnershipTransferred(owner, pendingOwner);
        owner = pendingOwner;
        pendingOwner = address(0);
    }
}

/**
 * @title ERC20 interface
 * @dev see https://eips.ethereum.org/EIPS/eip-20
 */
interface IERC20 {
    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);

    function totalSupply() external view returns (uint256);

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

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

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

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

/**
 * @title SafeMath
 * @dev Unsigned math operations with safety checks that revert on error
 */
library SafeMath {
    /**
     * @dev Multiplies two unsigned integers, 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 unsigned integers truncating the quotient, reverts on division by zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 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 unsigned integers, 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 unsigned integers, 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 unsigned integers 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;
    }
}

/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * https://eips.ethereum.org/EIPS/eip-20
 * Originally based on code by FirstBlood:
 * https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 *
 * This implementation emits additional Approval events, allowing applications to reconstruct the allowance status for
 * all accounts just by listening to said events. Note that this isn't required by the specification, and other
 * compliant implementations may not do it.
 */
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 A 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 to 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) {
        _approve(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev Transfer tokens from one address to another.
     * Note that while this function emits an Approval event, this is not required as per the specification,
     * and other compliant implementations may not emit the event.
     * @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) {
        _transfer(from, to, value);
        _approve(from, msg.sender, _allowed[from][msg.sender].sub(value));
        return true;
    }

    /**
     * @dev Increase the amount of tokens that an owner allowed to a spender.
     * approve should be called when _allowed[msg.sender][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
     * Emits an Approval event.
     * @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) {
        _approve(msg.sender, spender, _allowed[msg.sender][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner allowed to a spender.
     * approve should be called when _allowed[msg.sender][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
     * Emits an Approval event.
     * @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) {
        _approve(msg.sender, spender, _allowed[msg.sender][spender].sub(subtractedValue));
        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(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 != address(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 != address(0));

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

    /**
     * @dev Approve an address to spend another addresses' tokens.
     * @param owner The address that owns the tokens.
     * @param spender The address that will spend the tokens.
     * @param value The number of tokens that can be spent.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        require(spender != address(0));
        require(owner != address(0));

        _allowed[owner][spender] = value;
        emit Approval(owner, spender, 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.
     * Emits an Approval event (reflecting the reduced allowance).
     * @param account The account whose tokens will be burnt.
     * @param value The amount that will be burnt.
     */
    function _burnFrom(address account, uint256 value) internal {
        _burn(account, value);
        _approve(account, msg.sender, _allowed[account][msg.sender].sub(value));
    }
}

/**
 * @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 account whose tokens will be burned.
     * @param value uint256 The amount of token to be burned.
     */
    function burnFrom(address from, uint256 value) public {
        _burnFrom(from, value);
    }
}

contract SwgToken is ERC20, ERC20Burnable, Claimable {
    string public name = "SkyWay Global Token";
    string public symbol = "SWG";
    uint8 public decimals = 8;

    /**
     * @dev Function to mint tokens
     * @param to The address that will receive the minted tokens.
     * @param value The amount of tokens to mint.
     * @return A boolean that indicates if the operation was successful.
     */
    function mint(address to, uint256 value) public onlyOwner returns (bool) {
        require(value > 0);
        _mint(to, value);
        return true;
    }
}

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":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","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":false,"inputs":[],"name":"claimOwnership","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":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":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","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"},{"constant":true,"inputs":[],"name":"pendingOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"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"}]

60c0604052601360808190527f536b7957617920476c6f62616c20546f6b656e0000000000000000000000000060a090815261003e91600591906100a8565b506040805180820190915260038082527f53574700000000000000000000000000000000000000000000000000000000006020909201918252610083916006916100a8565b506007805460ff19166008179055600380546001600160a01b03191633179055610143565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106100e957805160ff1916838001178555610116565b82800160010185558215610116579182015b828111156101165782518255916020019190600101906100fb565b50610122929150610126565b5090565b61014091905b80821115610122576000815560010161012c565b90565b610a91806101526000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a2578063a457c2d711610071578063a457c2d714610343578063a9059cbb1461036f578063dd62ed3e1461039b578063e30c3978146103c9578063f2fde38b146103d157610116565b806370a08231146102c557806379cc6790146102eb5780638da5cb5b1461031757806395d89b411461033b57610116565b8063313ce567116100e9578063313ce56714610228578063395093511461024657806340c10f191461027257806342966c681461029e5780634e71e0c8146102bd57610116565b806306fdde031461011b578063095ea7b31461019857806318160ddd146101d857806323b872dd146101f2575b600080fd5b6101236103f7565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015d578181015183820152602001610145565b50505050905090810190601f16801561018a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101c4600480360360408110156101ae57600080fd5b506001600160a01b038135169060200135610485565b604080519115158252519081900360200190f35b6101e061049b565b60408051918252519081900360200190f35b6101c46004803603606081101561020857600080fd5b506001600160a01b038135811691602081013590911690604001356104a1565b6102306104f8565b6040805160ff9092168252519081900360200190f35b6101c46004803603604081101561025c57600080fd5b506001600160a01b038135169060200135610501565b6101c46004803603604081101561028857600080fd5b506001600160a01b03813516906020013561053d565b6102bb600480360360208110156102b457600080fd5b503561056e565b005b6102bb61057b565b6101e0600480360360208110156102db57600080fd5b50356001600160a01b03166105f8565b6102bb6004803603604081101561030157600080fd5b506001600160a01b038135169060200135610613565b61031f610621565b604080516001600160a01b039092168252519081900360200190f35b610123610630565b6101c46004803603604081101561035957600080fd5b506001600160a01b03813516906020013561068b565b6101c46004803603604081101561038557600080fd5b506001600160a01b0381351690602001356106c7565b6101e0600480360360408110156103b157600080fd5b506001600160a01b03813581169160200135166106d4565b61031f6106ff565b6102bb600480360360208110156103e757600080fd5b50356001600160a01b031661070e565b6005805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561047d5780601f106104525761010080835404028352916020019161047d565b820191906000526020600020905b81548152906001019060200180831161046057829003601f168201915b505050505081565b6000610492338484610747565b50600192915050565b60025490565b60006104ae8484846107cf565b6001600160a01b0384166000908152600160209081526040808320338085529252909120546104ee9186916104e9908663ffffffff61089a16565b610747565b5060019392505050565b60075460ff1681565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916104929185906104e9908663ffffffff6108af16565b6003546000906001600160a01b0316331461055757600080fd5b6000821161056457600080fd5b61049283836108c8565b6105783382610970565b50565b6004546001600160a01b0316331461059257600080fd5b6004546003546040516001600160a01b0392831692909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a360048054600380546001600160a01b03199081166001600160a01b03841617909155169055565b6001600160a01b031660009081526020819052604090205490565b61061d8282610a17565b5050565b6003546001600160a01b031681565b6006805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561047d5780601f106104525761010080835404028352916020019161047d565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916104929185906104e9908663ffffffff61089a16565b60006104923384846107cf565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6004546001600160a01b031681565b6003546001600160a01b0316331461072557600080fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03821661075a57600080fd5b6001600160a01b03831661076d57600080fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0382166107e257600080fd5b6001600160a01b03831660009081526020819052604090205461080b908263ffffffff61089a16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610840908263ffffffff6108af16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000828211156108a957600080fd5b50900390565b6000828201838110156108c157600080fd5b9392505050565b6001600160a01b0382166108db57600080fd5b6002546108ee908263ffffffff6108af16565b6002556001600160a01b03821660009081526020819052604090205461091a908263ffffffff6108af16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b03821661098357600080fd5b600254610996908263ffffffff61089a16565b6002556001600160a01b0382166000908152602081905260409020546109c2908263ffffffff61089a16565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b610a218282610970565b6001600160a01b03821660009081526001602090815260408083203380855292529091205461061d9184916104e9908563ffffffff61089a1656fea265627a7a7230582026618e0ccb451866fae1c7400c59c2c48e69a53b0d0863e31e4bb9efb392d96964736f6c63430005090032

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a2578063a457c2d711610071578063a457c2d714610343578063a9059cbb1461036f578063dd62ed3e1461039b578063e30c3978146103c9578063f2fde38b146103d157610116565b806370a08231146102c557806379cc6790146102eb5780638da5cb5b1461031757806395d89b411461033b57610116565b8063313ce567116100e9578063313ce56714610228578063395093511461024657806340c10f191461027257806342966c681461029e5780634e71e0c8146102bd57610116565b806306fdde031461011b578063095ea7b31461019857806318160ddd146101d857806323b872dd146101f2575b600080fd5b6101236103f7565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015d578181015183820152602001610145565b50505050905090810190601f16801561018a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101c4600480360360408110156101ae57600080fd5b506001600160a01b038135169060200135610485565b604080519115158252519081900360200190f35b6101e061049b565b60408051918252519081900360200190f35b6101c46004803603606081101561020857600080fd5b506001600160a01b038135811691602081013590911690604001356104a1565b6102306104f8565b6040805160ff9092168252519081900360200190f35b6101c46004803603604081101561025c57600080fd5b506001600160a01b038135169060200135610501565b6101c46004803603604081101561028857600080fd5b506001600160a01b03813516906020013561053d565b6102bb600480360360208110156102b457600080fd5b503561056e565b005b6102bb61057b565b6101e0600480360360208110156102db57600080fd5b50356001600160a01b03166105f8565b6102bb6004803603604081101561030157600080fd5b506001600160a01b038135169060200135610613565b61031f610621565b604080516001600160a01b039092168252519081900360200190f35b610123610630565b6101c46004803603604081101561035957600080fd5b506001600160a01b03813516906020013561068b565b6101c46004803603604081101561038557600080fd5b506001600160a01b0381351690602001356106c7565b6101e0600480360360408110156103b157600080fd5b506001600160a01b03813581169160200135166106d4565b61031f6106ff565b6102bb600480360360208110156103e757600080fd5b50356001600160a01b031661070e565b6005805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561047d5780601f106104525761010080835404028352916020019161047d565b820191906000526020600020905b81548152906001019060200180831161046057829003601f168201915b505050505081565b6000610492338484610747565b50600192915050565b60025490565b60006104ae8484846107cf565b6001600160a01b0384166000908152600160209081526040808320338085529252909120546104ee9186916104e9908663ffffffff61089a16565b610747565b5060019392505050565b60075460ff1681565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916104929185906104e9908663ffffffff6108af16565b6003546000906001600160a01b0316331461055757600080fd5b6000821161056457600080fd5b61049283836108c8565b6105783382610970565b50565b6004546001600160a01b0316331461059257600080fd5b6004546003546040516001600160a01b0392831692909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a360048054600380546001600160a01b03199081166001600160a01b03841617909155169055565b6001600160a01b031660009081526020819052604090205490565b61061d8282610a17565b5050565b6003546001600160a01b031681565b6006805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561047d5780601f106104525761010080835404028352916020019161047d565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916104929185906104e9908663ffffffff61089a16565b60006104923384846107cf565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6004546001600160a01b031681565b6003546001600160a01b0316331461072557600080fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03821661075a57600080fd5b6001600160a01b03831661076d57600080fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0382166107e257600080fd5b6001600160a01b03831660009081526020819052604090205461080b908263ffffffff61089a16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610840908263ffffffff6108af16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000828211156108a957600080fd5b50900390565b6000828201838110156108c157600080fd5b9392505050565b6001600160a01b0382166108db57600080fd5b6002546108ee908263ffffffff6108af16565b6002556001600160a01b03821660009081526020819052604090205461091a908263ffffffff6108af16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b03821661098357600080fd5b600254610996908263ffffffff61089a16565b6002556001600160a01b0382166000908152602081905260409020546109c2908263ffffffff61089a16565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b610a218282610970565b6001600160a01b03821660009081526001602090815260408083203380855292529091205461061d9184916104e9908563ffffffff61089a1656fea265627a7a7230582026618e0ccb451866fae1c7400c59c2c48e69a53b0d0863e31e4bb9efb392d96964736f6c63430005090032

Deployed Bytecode Sourcemap

12592:587:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12592:587:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12652:42;;;:::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;12652:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6851:148;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6851:148:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;5004:91;;;:::i;:::-;;;;;;;;;;;;;;;;7472:228;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;7472:228:0;;;;;;;;;;;;;;;;;:::i;12736:25::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;8226:203;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8226:203:0;;;;;;;;:::i;13017:159::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13017:159:0;;;;;;;;:::i;12157:79::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12157:79:0;;:::i;:::-;;1299:182;;;:::i;5314:106::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;5314:106:0;-1:-1:-1;;;;;5314:106:0;;:::i;12490:95::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12490:95:0;;;;;;;;:::i;207:20::-;;;:::i;:::-;;;;-1:-1:-1;;;;;207:20:0;;;;;;;;;;;;;;12701:28;;;:::i;8960:213::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8960:213:0;;;;;;;;:::i;6064:140::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6064:140:0;;;;;;;;:::i;5759:131::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5759:131:0;;;;;;;;;;:::i;234:27::-;;;:::i;1100:104::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1100:104:0;-1:-1:-1;;;;;1100:104:0;;:::i;12652:42::-;;;;;;;;;;;;;;;-1:-1:-1;;12652:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6851:148::-;6916:4;6933:36;6942:10;6954:7;6963:5;6933:8;:36::i;:::-;-1:-1:-1;6987:4:0;6851:148;;;;:::o;5004:91::-;5075:12;;5004:91;:::o;7472:228::-;7551:4;7568:26;7578:4;7584:2;7588:5;7568:9;:26::i;:::-;-1:-1:-1;;;;;7632:14:0;;;;;;:8;:14;;;;;;;;7620:10;7632:26;;;;;;;;;7605:65;;7614:4;;7632:37;;7663:5;7632:37;:30;:37;:::i;:::-;7605:8;:65::i;:::-;-1:-1:-1;7688:4:0;7472:228;;;;;:::o;12736:25::-;;;;;;:::o;8226:203::-;8332:10;8306:4;8353:20;;;:8;:20;;;;;;;;-1:-1:-1;;;;;8353:29:0;;;;;;;;;;8306:4;;8323:76;;8344:7;;8353:45;;8387:10;8353:45;:33;:45;:::i;13017:159::-;717:5;;13084:4;;-1:-1:-1;;;;;717:5:0;703:10;:19;695:28;;;;;;13117:1;13109:5;:9;13101:18;;;;;;13130:16;13136:2;13140:5;13130;:16::i;12157:79::-;12204:24;12210:10;12222:5;12204;:24::i;:::-;12157:79;:::o;1299:182::-;911:12;;-1:-1:-1;;;;;911:12:0;897:10;:26;889:35;;;;;;1393:12;;1386:5;;1365:41;;-1:-1:-1;;;;;1393:12:0;;;;1386:5;;;;1365:41;;1393:12;;1365:41;1425:12;;;1417:5;:20;;-1:-1:-1;;;;;;1417:20:0;;;-1:-1:-1;;;;;1425:12:0;;1417:20;;;;1448:25;;;1299:182::o;5314:106::-;-1:-1:-1;;;;;5396:16:0;5369:7;5396:16;;;;;;;;;;;;5314:106::o;12490:95::-;12555:22;12565:4;12571:5;12555:9;:22::i;:::-;12490:95;;:::o;207:20::-;;;-1:-1:-1;;;;;207:20:0;;:::o;12701:28::-;;;;;;;;;;;;;;;-1:-1:-1;;12701:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8960:213;9071:10;9045:4;9092:20;;;:8;:20;;;;;;;;-1:-1:-1;;;;;9092:29:0;;;;;;;;;;9045:4;;9062:81;;9083:7;;9092:50;;9126:15;9092:50;:33;:50;:::i;6064:140::-;6125:4;6142:32;6152:10;6164:2;6168:5;6142:9;:32::i;5759:131::-;-1:-1:-1;;;;;5858:15:0;;;5831:7;5858:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;5759:131::o;234:27::-;;;-1:-1:-1;;;;;234:27:0;;:::o;1100:104::-;717:5;;-1:-1:-1;;;;;717:5:0;703:10;:19;695:28;;;;;;1173:12;:23;;-1:-1:-1;;;;;;1173:23:0;-1:-1:-1;;;;;1173:23:0;;;;;;;;;;1100:104::o;11059:254::-;-1:-1:-1;;;;;11152:21:0;;11144:30;;;;;;-1:-1:-1;;;;;11193:19:0;;11185:28;;;;;;-1:-1:-1;;;;;11226:15:0;;;;;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;:32;;;11274:31;;;;;;;;;;;;;;;;;11059:254;;;:::o;9400:262::-;-1:-1:-1;;;;;9488:16:0;;9480:25;;;;;;-1:-1:-1;;;;;9536:15:0;;:9;:15;;;;;;;;;;;:26;;9556:5;9536:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;9518:15:0;;;:9;:15;;;;;;;;;;;:44;;;;9589:13;;;;;;;:24;;9607:5;9589:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;9573:13:0;;;:9;:13;;;;;;;;;;;;:40;;;;9629:25;;;;;;;9573:13;;9629:25;;;;;;;;;;;;;9400:262;;;:::o;3467:150::-;3525:7;3558:1;3553;:6;;3545:15;;;;;;-1:-1:-1;3583:5:0;;;3467:150::o;3705:::-;3763:7;3795:5;;;3819:6;;;;3811:15;;;;;;3846:1;3705:150;-1:-1:-1;;;3705:150:0:o;10014:269::-;-1:-1:-1;;;;;10089:21:0;;10081:30;;;;;;10139:12;;:23;;10156:5;10139:23;:16;:23;:::i;:::-;10124:12;:38;-1:-1:-1;;;;;10194:18:0;;:9;:18;;;;;;;;;;;:29;;10217:5;10194:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;10173:18:0;;:9;:18;;;;;;;;;;;:50;;;;10239:36;;;;;;;10173:18;;:9;;10239:36;;;;;;;;;;10014:269;;:::o;10517:::-;-1:-1:-1;;;;;10592:21:0;;10584:30;;;;;;10642:12;;:23;;10659:5;10642:23;:16;:23;:::i;:::-;10627:12;:38;-1:-1:-1;;;;;10697:18:0;;:9;:18;;;;;;;;;;;:29;;10720:5;10697:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;10676:18:0;;:9;:18;;;;;;;;;;;:50;;;;10742:36;;;;;;;10676:9;;10742:36;;;;;;;;;;;10517:269;;:::o;11712:182::-;11783:21;11789:7;11798:5;11783;:21::i;:::-;-1:-1:-1;;;;;11845:17:0;;;;;;:8;:17;;;;;;;;11833:10;11845:29;;;;;;;;;11815:71;;11824:7;;11845:40;;11879:5;11845:40;:33;:40;:::i

Swarm Source

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