ETH Price: $3,016.86 (-7.98%)

Token

Ultra (XUL)
 

Overview

Max Total Supply

100,857,823.039839122965183933 XUL

Holders

49

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
498,437.5 XUL

Value
$0.00
0xCc5D2C112576304332618D74D44c8D1a6F4B1E73
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:
ULTRA

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2020-06-27
*/

pragma solidity ^0.5.2;


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);
}

library SafeMath {

    function mul(uint256 a, uint256 b) internal pure returns(uint256) {
        if (a == 0) {
            return 0;
        }

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

        return c;
    }

    function div(uint256 a, uint256 b) internal pure returns(uint256) {
        require(b > 0);
        uint256 c = a / b;

        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns(uint256) {
        require(b <= a);
        uint256 c = a - b;

        return c;
    }

    function add(uint256 a, uint256 b) internal pure returns(uint256) {
        uint256 c = a + b;
        require(c >= a);

        return c;
    }

    function ceil(uint256 a, uint256 m) internal pure returns(uint256) {
        uint256 c = add(a, m);
        uint256 d = sub(c, 1);
        return mul(div(d, m), m);
    }
}

contract ERC20Detailed is IERC20 {

    string private _name;
    string private _symbol;
    uint8 private _decimals;

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

    function name() public view returns(string memory) {
        return _name;
    }

    function symbol() public view returns(string memory) {
        return _symbol;
    }

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

contract ULTRA is ERC20Detailed {

    using SafeMath for uint256;
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply = 101000000000000000000000000;

    uint256 public basePercent = 320;

    constructor() public ERC20Detailed("Ultra", "XUL", 18) {
        _mint(msg.sender, _totalSupply);
    }

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

    /**
     * @notice Get the number of tokens held by the `owner`
     * @param owner The address of the account to get the balance of
     * @return The number of tokens held
     */
    function balanceOf(address owner) public view returns(uint256) {
        return _balances[owner];
    }

    /**
     * @notice Get the number of tokens `spender` is approved to spend on behalf of `owner`
     * @param owner The address of the account holding the funds
     * @param spender The address of the account spending the funds
     * @return The number of tokens approved
     */
    function allowance(address owner, address spender) public view returns(uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @notice Find the number of tokens to burn from `value`. Approximated at 0.3125%.
     * @param value The value to find the burn amount from
     * @return The found burn amount
     */
    function findBurnAmount(uint256 value) public view returns(uint256) {
        //Allow transfers of 0.000000000000000001
        if (value == 1) {
            return 0;
        }
        uint256 roundValue = value.ceil(basePercent);
        //Gas optimized
        uint256 burnAmount = roundValue.mul(100).div(32000);
        return burnAmount;
    }

    /**
     * @notice Transfer `value` minus `findBurnAmount(value)` tokens from `msg.sender` to `to`, 
     * while subtracting `findBurnAmount(value)` tokens from `_totalSupply`. This performs a transfer with an approximated fee of 0.3125%
     * @param to The address of the destination account
     * @param value The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transfer(address to, uint256 value) public returns(bool) {
        require(to != address(0));

        uint256 tokensToBurn = findBurnAmount(value);
        uint256 tokensToTransfer = value.sub(tokensToBurn);

        _balances[msg.sender] = _balances[msg.sender].sub(value);
        _balances[to] = _balances[to].add(tokensToTransfer);

        _totalSupply = _totalSupply.sub(tokensToBurn);

        emit Transfer(msg.sender, to, tokensToTransfer);
        emit Transfer(msg.sender, address(0), tokensToBurn);
        return true;
    }

    /**
     * @notice Approve `spender` to transfer up to `value` from `from`
     * @dev This will overwrite the approval amount for `spender`
     *  and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve)
     * @param spender The address of the account which may transfer tokens
     * @param value The number of tokens that are approved
     * @return Whether or not the approval succeeded
     */
    function approve(address spender, uint256 value) public returns(bool) {
        require(spender != address(0));
        _allowances[msg.sender][spender] = value;
        emit Approval(msg.sender, spender, value);
        return true;
    }

    /**
     * @notice Transfer `value` minus `findBurnAmount(value)` tokens from `from` to `to`, 
     * while subtracting `findBurnAmount(value)` tokens from `_totalSupply`. This performs a transfer with an approximated fee of 0.3125%
     * @param from The address of the source account
     * @param to The address of the destination account
     * @param value The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transferFrom(address from, address to, uint256 value) public returns(bool) {
        require(value <= _allowances[from][msg.sender]);
        require(to != address(0));

        _balances[from] = _balances[from].sub(value);

        uint256 tokensToBurn = findBurnAmount(value);
        uint256 tokensToTransfer = value.sub(tokensToBurn);

        _balances[to] = _balances[to].add(tokensToTransfer);
        _totalSupply = _totalSupply.sub(tokensToBurn);

        _allowances[from][msg.sender] = _allowances[from][msg.sender].sub(value);

        emit Transfer(from, to, tokensToTransfer);
        emit Transfer(from, address(0), tokensToBurn);

        return true;
    }

    /**
     * @notice Increase allowance of `spender` by 'addedValue'
     * @param spender The address of the account which may transfer tokens
     * @param addedValue Value to be added onto the existing allowance amount
     * @return Whether or not the allowance increase succeeded
     */
    function increaseAllowance(address spender, uint256 addedValue) public returns(bool) {
        require(spender != address(0));
        _allowances[msg.sender][spender] = (_allowances[msg.sender][spender].add(addedValue));
        emit Approval(msg.sender, spender, _allowances[msg.sender][spender]);
        return true;
    }

    /**
     * @notice Decrease allowance of `spender` by 'subtractedValue'
     * @param spender The address of the account which may transfer tokens
     * @param subtractedValue Value to be subtracted onto the existing allowance amount
     * @return Whether or not the allowance decrease succeeded
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns(bool) {
        require(spender != address(0));
        _allowances[msg.sender][spender] = (_allowances[msg.sender][spender].sub(subtractedValue));
        emit Approval(msg.sender, spender, _allowances[msg.sender][spender]);
        return true;
    }

    function _mint(address account, uint256 amount) internal {
        require(amount != 0);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @notice Burn `amount` of tokens from `msg.sender` by sending them to `address(0)`
     * @param amount The amount of tokens to burn
     */
    function burn(uint256 amount) external {
        _burn(msg.sender, amount);
    }

    function _burn(address account, uint256 amount) internal {
        require(amount != 0);
        _totalSupply = _totalSupply.sub(amount);
        _balances[account] = _balances[account].sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @notice Burn `amount` of tokens from `account` by sending them to `address(0)`
     * @param amount The amount of tokens to burn
     */
    function burnFrom(address account, uint256 amount) external {
        require(amount <= _allowances[account][msg.sender]);
        _allowances[account][msg.sender] = _allowances[account][msg.sender].sub(amount);
        _burn(account, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"basePercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"findBurnAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040526a538b94f896d9c0850000006005556101406006553480156200002657600080fd5b506040805180820182526005815264556c74726160d81b60208083019182528351808501909452600384526216155360ea1b90840152815191929160129162000073916000919062000165565b5081516200008990600190602085019062000165565b506002805460ff191660ff929092169190911790555050600554620000b0903390620000b6565b6200020a565b80620000c157600080fd5b6001600160a01b038216600090815260036020908152604090912054620000f391839062000a246200014b821b17901c565b6001600160a01b03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000828201838110156200015e57600080fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001a857805160ff1916838001178555620001d8565b82800160010185558215620001d8579182015b82811115620001d8578251825591602001919060010190620001bb565b50620001e6929150620001ea565b5090565b6200020791905b80821115620001e65760008155600101620001f1565b90565b610ba3806200021a6000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d7146102e7578063a9059cbb14610313578063c5ac0ded1461033f578063dd62ed3e14610347576100f5565b806370a082311461027057806379cc6790146102965780638e5691ae146102c257806395d89b41146102df576100f5565b806323b872dd116100d357806323b872dd146101d1578063313ce56714610207578063395093511461022557806342966c6814610251576100f5565b806306fdde03146100fa578063095ea7b31461017757806318160ddd146101b7575b600080fd5b610102610375565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561013c578181015183820152602001610124565b50505050905090810190601f1680156101695780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101a36004803603604081101561018d57600080fd5b506001600160a01b03813516906020013561040b565b604080519115158252519081900360200190f35b6101bf610488565b60408051918252519081900360200190f35b6101a3600480360360608110156101e757600080fd5b506001600160a01b0381358116916020810135909116906040013561048e565b61020f61064c565b6040805160ff9092168252519081900360200190f35b6101a36004803603604081101561023b57600080fd5b506001600160a01b038135169060200135610655565b61026e6004803603602081101561026757600080fd5b5035610703565b005b6101bf6004803603602081101561028657600080fd5b50356001600160a01b0316610710565b61026e600480360360408110156102ac57600080fd5b506001600160a01b03813516906020013561072f565b6101bf600480360360208110156102d857600080fd5b50356107c5565b61010261081e565b6101a3600480360360408110156102fd57600080fd5b506001600160a01b03813516906020013561087e565b6101a36004803603604081101561032957600080fd5b506001600160a01b0381351690602001356108c7565b6101bf6109de565b6101bf6004803603604081101561035d57600080fd5b506001600160a01b03813581169160200135166109e4565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104015780601f106103d657610100808354040283529160200191610401565b820191906000526020600020905b8154815290600101906020018083116103e457829003601f168201915b5050505050905090565b60006001600160a01b03831661042057600080fd5b3360008181526004602090815260408083206001600160a01b03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60055490565b6001600160a01b03831660009081526004602090815260408083203384529091528120548211156104be57600080fd5b6001600160a01b0383166104d157600080fd5b6001600160a01b0384166000908152600360205260409020546104fa908363ffffffff610a0f16565b6001600160a01b03851660009081526003602052604081209190915561051f836107c5565b90506000610533848363ffffffff610a0f16565b6001600160a01b03861660009081526003602052604090205490915061055f908263ffffffff610a2416565b6001600160a01b03861660009081526003602052604090205560055461058b908363ffffffff610a0f16565b6005556001600160a01b03861660009081526004602090815260408083203384529091529020546105c2908563ffffffff610a0f16565b6001600160a01b0380881660008181526004602090815260408083203384528252918290209490945580518581529051928916939192600080516020610b4f833981519152929181900390910190a36040805183815290516000916001600160a01b03891691600080516020610b4f8339815191529181900360200190a350600195945050505050565b60025460ff1690565b60006001600160a01b03831661066a57600080fd5b3360009081526004602090815260408083206001600160a01b038716845290915290205461069e908363ffffffff610a2416565b3360008181526004602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b61070d3382610a3d565b50565b6001600160a01b0381166000908152600360205260409020545b919050565b6001600160a01b038216600090815260046020908152604080832033845290915290205481111561075f57600080fd5b6001600160a01b0382166000908152600460209081526040808320338452909152902054610793908263ffffffff610a0f16565b6001600160a01b03831660009081526004602090815260408083203384529091529020556107c18282610a3d565b5050565b600081600114156107d85750600061072a565b60006107ef60065484610acb90919063ffffffff16565b90506000610816617d0061080a84606463ffffffff610b0516565b9063ffffffff610b2c16565b949350505050565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156104015780601f106103d657610100808354040283529160200191610401565b60006001600160a01b03831661089357600080fd5b3360009081526004602090815260408083206001600160a01b038716845290915290205461069e908363ffffffff610a0f16565b60006001600160a01b0383166108dc57600080fd5b60006108e7836107c5565b905060006108fb848363ffffffff610a0f16565b3360009081526003602052604090205490915061091e908563ffffffff610a0f16565b33600090815260036020526040808220929092556001600160a01b03871681522054610950908263ffffffff610a2416565b6001600160a01b03861660009081526003602052604090205560055461097c908363ffffffff610a0f16565b6005556040805182815290516001600160a01b038716913391600080516020610b4f8339815191529181900360200190a36040805183815290516000913391600080516020610b4f8339815191529181900360200190a3506001949350505050565b60065481565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b600082821115610a1e57600080fd5b50900390565b600082820183811015610a3657600080fd5b9392505050565b80610a4757600080fd5b600554610a5a908263ffffffff610a0f16565b6005556001600160a01b038216600090815260036020526040902054610a86908263ffffffff610a0f16565b6001600160a01b038316600081815260036020908152604080832094909455835185815293519193600080516020610b4f833981519152929081900390910190a35050565b600080610ad88484610a24565b90506000610ae7826001610a0f565b9050610afc610af68286610b2c565b85610b05565b95945050505050565b600082610b1457506000610482565b82820282848281610b2157fe5b0414610a3657600080fd5b6000808211610b3a57600080fd5b6000828481610b4557fe5b0494935050505056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa265627a7a72315820b218475d6a9b6243473d38265ca7e95d6ff28971f79818e9b50fa3126219e80964736f6c63430005110032

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d7146102e7578063a9059cbb14610313578063c5ac0ded1461033f578063dd62ed3e14610347576100f5565b806370a082311461027057806379cc6790146102965780638e5691ae146102c257806395d89b41146102df576100f5565b806323b872dd116100d357806323b872dd146101d1578063313ce56714610207578063395093511461022557806342966c6814610251576100f5565b806306fdde03146100fa578063095ea7b31461017757806318160ddd146101b7575b600080fd5b610102610375565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561013c578181015183820152602001610124565b50505050905090810190601f1680156101695780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101a36004803603604081101561018d57600080fd5b506001600160a01b03813516906020013561040b565b604080519115158252519081900360200190f35b6101bf610488565b60408051918252519081900360200190f35b6101a3600480360360608110156101e757600080fd5b506001600160a01b0381358116916020810135909116906040013561048e565b61020f61064c565b6040805160ff9092168252519081900360200190f35b6101a36004803603604081101561023b57600080fd5b506001600160a01b038135169060200135610655565b61026e6004803603602081101561026757600080fd5b5035610703565b005b6101bf6004803603602081101561028657600080fd5b50356001600160a01b0316610710565b61026e600480360360408110156102ac57600080fd5b506001600160a01b03813516906020013561072f565b6101bf600480360360208110156102d857600080fd5b50356107c5565b61010261081e565b6101a3600480360360408110156102fd57600080fd5b506001600160a01b03813516906020013561087e565b6101a36004803603604081101561032957600080fd5b506001600160a01b0381351690602001356108c7565b6101bf6109de565b6101bf6004803603604081101561035d57600080fd5b506001600160a01b03813581169160200135166109e4565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104015780601f106103d657610100808354040283529160200191610401565b820191906000526020600020905b8154815290600101906020018083116103e457829003601f168201915b5050505050905090565b60006001600160a01b03831661042057600080fd5b3360008181526004602090815260408083206001600160a01b03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60055490565b6001600160a01b03831660009081526004602090815260408083203384529091528120548211156104be57600080fd5b6001600160a01b0383166104d157600080fd5b6001600160a01b0384166000908152600360205260409020546104fa908363ffffffff610a0f16565b6001600160a01b03851660009081526003602052604081209190915561051f836107c5565b90506000610533848363ffffffff610a0f16565b6001600160a01b03861660009081526003602052604090205490915061055f908263ffffffff610a2416565b6001600160a01b03861660009081526003602052604090205560055461058b908363ffffffff610a0f16565b6005556001600160a01b03861660009081526004602090815260408083203384529091529020546105c2908563ffffffff610a0f16565b6001600160a01b0380881660008181526004602090815260408083203384528252918290209490945580518581529051928916939192600080516020610b4f833981519152929181900390910190a36040805183815290516000916001600160a01b03891691600080516020610b4f8339815191529181900360200190a350600195945050505050565b60025460ff1690565b60006001600160a01b03831661066a57600080fd5b3360009081526004602090815260408083206001600160a01b038716845290915290205461069e908363ffffffff610a2416565b3360008181526004602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b61070d3382610a3d565b50565b6001600160a01b0381166000908152600360205260409020545b919050565b6001600160a01b038216600090815260046020908152604080832033845290915290205481111561075f57600080fd5b6001600160a01b0382166000908152600460209081526040808320338452909152902054610793908263ffffffff610a0f16565b6001600160a01b03831660009081526004602090815260408083203384529091529020556107c18282610a3d565b5050565b600081600114156107d85750600061072a565b60006107ef60065484610acb90919063ffffffff16565b90506000610816617d0061080a84606463ffffffff610b0516565b9063ffffffff610b2c16565b949350505050565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156104015780601f106103d657610100808354040283529160200191610401565b60006001600160a01b03831661089357600080fd5b3360009081526004602090815260408083206001600160a01b038716845290915290205461069e908363ffffffff610a0f16565b60006001600160a01b0383166108dc57600080fd5b60006108e7836107c5565b905060006108fb848363ffffffff610a0f16565b3360009081526003602052604090205490915061091e908563ffffffff610a0f16565b33600090815260036020526040808220929092556001600160a01b03871681522054610950908263ffffffff610a2416565b6001600160a01b03861660009081526003602052604090205560055461097c908363ffffffff610a0f16565b6005556040805182815290516001600160a01b038716913391600080516020610b4f8339815191529181900360200190a36040805183815290516000913391600080516020610b4f8339815191529181900360200190a3506001949350505050565b60065481565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b600082821115610a1e57600080fd5b50900390565b600082820183811015610a3657600080fd5b9392505050565b80610a4757600080fd5b600554610a5a908263ffffffff610a0f16565b6005556001600160a01b038216600090815260036020526040902054610a86908263ffffffff610a0f16565b6001600160a01b038316600081815260036020908152604080832094909455835185815293519193600080516020610b4f833981519152929081900390910190a35050565b600080610ad88484610a24565b90506000610ae7826001610a0f565b9050610afc610af68286610b2c565b85610b05565b95945050505050565b600082610b1457506000610482565b82820282848281610b2157fe5b0414610a3657600080fd5b6000808211610b3a57600080fd5b6000828481610b4557fe5b0494935050505056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa265627a7a72315820b218475d6a9b6243473d38265ca7e95d6ff28971f79818e9b50fa3126219e80964736f6c63430005110032

Deployed Bytecode Sourcemap

2151:7197:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2151:7197:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1878:82;;;:::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;1878:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5465:244;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5465:244:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;2629:90;;;:::i;:::-;;;;;;;;;;;;;;;;6185:700;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6185:700:0;;;;;;;;;;;;;;;;;:::i;2062:82::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7194:331;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;7194:331:0;;;;;;;;:::i;8576:83::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8576:83:0;;:::i;:::-;;2918:105;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2918:105:0;-1:-1:-1;;;;;2918:105:0;;:::i;9092:253::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9092:253:0;;;;;;;;:::i;3669:358::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3669:358:0;;:::i;1968:86::-;;;:::i;7849:341::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;7849:341:0;;;;;;;;:::i;4455:561::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4455:561:0;;;;;;;;:::i;2420:32::-;;;:::i;3323:133::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;3323:133:0;;;;;;;;;;:::i;1878:82::-;1947:5;1940:12;;;;;;;;-1:-1:-1;;1940:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1914:13;;1940:12;;1947:5;;1940:12;;1947:5;1940:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1878:82;:::o;5465:244::-;5529:4;-1:-1:-1;;;;;5554:21:0;;5546:30;;;;;;5599:10;5587:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;5587:32:0;;;;;;;;;;;;:40;;;5643:36;;;;;;;5587:32;;5599:10;5643:36;;;;;;;;;;;-1:-1:-1;5697:4:0;5465:244;;;;;:::o;2629:90::-;2699:12;;2629:90;:::o;6185:700::-;-1:-1:-1;;;;;6297:17:0;;6263:4;6297:17;;;:11;:17;;;;;;;;6315:10;6297:29;;;;;;;;6288:38;;;6280:47;;;;;;-1:-1:-1;;;;;6346:16:0;;6338:25;;;;;;-1:-1:-1;;;;;6394:15:0;;;;;;:9;:15;;;;;;:26;;6414:5;6394:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;6376:15:0;;;;;;:9;:15;;;;;:44;;;;6456:21;6471:5;6456:14;:21::i;:::-;6433:44;-1:-1:-1;6488:24:0;6515:23;:5;6433:44;6515:23;:9;:23;:::i;:::-;-1:-1:-1;;;;;6567:13:0;;;;;;:9;:13;;;;;;6488:50;;-1:-1:-1;6567:35:0;;6488:50;6567:35;:17;:35;:::i;:::-;-1:-1:-1;;;;;6551:13:0;;;;;;:9;:13;;;;;:51;6628:12;;:30;;6645:12;6628:30;:16;:30;:::i;:::-;6613:12;:45;-1:-1:-1;;;;;6703:17:0;;;;;;:11;:17;;;;;;;;6721:10;6703:29;;;;;;;;:40;;6737:5;6703:40;:33;:40;:::i;:::-;-1:-1:-1;;;;;6671:17:0;;;;;;;:11;:17;;;;;;;;6689:10;6671:29;;;;;;;;:72;;;;6761:36;;;;;;;;;;;6671:17;;-1:-1:-1;;;;;;;;;;;6761:36:0;;;;;;;;;;6813:40;;;;;;;;6836:1;;-1:-1:-1;;;;;6813:40:0;;;-1:-1:-1;;;;;;;;;;;6813:40:0;;;;;;;;-1:-1:-1;6873:4:0;;6185:700;-1:-1:-1;;;;;6185:700:0:o;2062:82::-;2127:9;;;;2062:82;:::o;7194:331::-;7273:4;-1:-1:-1;;;;;7298:21:0;;7290:30;;;;;;7379:10;7367:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;7367:32:0;;;;;;;;;;:48;;7404:10;7367:48;:36;:48;:::i;:::-;7343:10;7331:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;7331:32:0;;;;;;;;;;;;:85;;;7432:63;;;;;;7331:32;;7432:63;;;;;;;;;;;-1:-1:-1;7513:4:0;7194:331;;;;:::o;8576:83::-;8626:25;8632:10;8644:6;8626:5;:25::i;:::-;8576:83;:::o;2918:105::-;-1:-1:-1;;;;;2999:16:0;;2972:7;2999:16;;;:9;:16;;;;;;2918:105;;;;:::o;9092:253::-;-1:-1:-1;;;;;9181:20:0;;;;;;:11;:20;;;;;;;;9202:10;9181:32;;;;;;;;9171:42;;;9163:51;;;;;;-1:-1:-1;;;;;9260:20:0;;;;;;:11;:20;;;;;;;;9281:10;9260:32;;;;;;;;:44;;9297:6;9260:44;:36;:44;:::i;:::-;-1:-1:-1;;;;;9225:20:0;;;;;;:11;:20;;;;;;;;9246:10;9225:32;;;;;;;:79;9315:22;9237:7;9330:6;9315:5;:22::i;:::-;9092:253;;:::o;3669:358::-;3728:7;3803:5;3812:1;3803:10;3799:51;;;-1:-1:-1;3837:1:0;3830:8;;3799:51;3860:18;3881:23;3892:11;;3881:5;:10;;:23;;;;:::i;:::-;3860:44;-1:-1:-1;3940:18:0;3961:30;3985:5;3961:19;3860:44;3976:3;3961:19;:14;:19;:::i;:::-;:23;:30;:23;:30;:::i;:::-;3940:51;3669:358;-1:-1:-1;;;;3669:358:0:o;1968:86::-;2039:7;2032:14;;;;;;;;-1:-1:-1;;2032:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2006:13;;2032:14;;2039:7;;2032:14;;2039:7;2032:14;;;;;;;;;;;;;;;;;;;;;;;;7849:341;7933:4;-1:-1:-1;;;;;7958:21:0;;7950:30;;;;;;8039:10;8027:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;8027:32:0;;;;;;;;;;:53;;8064:15;8027:53;:36;:53;:::i;4455:561::-;4515:4;-1:-1:-1;;;;;4540:16:0;;4532:25;;;;;;4570:20;4593:21;4608:5;4593:14;:21::i;:::-;4570:44;-1:-1:-1;4625:24:0;4652:23;:5;4570:44;4652:23;:9;:23;:::i;:::-;4722:10;4712:21;;;;:9;:21;;;;;;4625:50;;-1:-1:-1;4712:32:0;;4738:5;4712:32;:25;:32;:::i;:::-;4698:10;4688:21;;;;:9;:21;;;;;;:56;;;;-1:-1:-1;;;;;4771:13:0;;;;;;:35;;4789:16;4771:35;:17;:35;:::i;:::-;-1:-1:-1;;;;;4755:13:0;;;;;;:9;:13;;;;;:51;4834:12;;:30;;4851:12;4834:30;:16;:30;:::i;:::-;4819:12;:45;4882:42;;;;;;;;-1:-1:-1;;;;;4882:42:0;;;4891:10;;-1:-1:-1;;;;;;;;;;;4882:42:0;;;;;;;;4940:46;;;;;;;;4969:1;;4949:10;;-1:-1:-1;;;;;;;;;;;4940:46:0;;;;;;;;-1:-1:-1;5004:4:0;;4455:561;-1:-1:-1;;;;4455:561:0:o;2420:32::-;;;;:::o;3323:133::-;-1:-1:-1;;;;;3421:18:0;;;3394:7;3421:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3323:133::o;1079:149::-;1136:7;1169:1;1164;:6;;1156:15;;;;;;-1:-1:-1;1194:5:0;;;1079:149::o;1236:::-;1293:7;1325:5;;;1349:6;;;;1341:15;;;;;;1376:1;1236:149;-1:-1:-1;;;1236:149:0:o;8667:261::-;8743:11;8735:20;;;;;;8781:12;;:24;;8798:6;8781:24;:16;:24;:::i;:::-;8766:12;:39;-1:-1:-1;;;;;8837:18:0;;;;;;:9;:18;;;;;;:30;;8860:6;8837:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;8816:18:0;;;;;;:9;:18;;;;;;;;:51;;;;8883:37;;;;;;;8816:18;;-1:-1:-1;;;;;;;;;;;8883:37:0;;;;;;;;;;8667:261;;:::o;1393:174::-;1451:7;1471:9;1483;1487:1;1490;1483:3;:9::i;:::-;1471:21;;1503:9;1515;1519:1;1522;1515:3;:9::i;:::-;1503:21;;1542:17;1546:9;1550:1;1553;1546:3;:9::i;:::-;1557:1;1542:3;:17::i;:::-;1535:24;1393:174;-1:-1:-1;;;;;1393:174:0:o;703:212::-;760:7;784:6;780:47;;-1:-1:-1;814:1:0;807:8;;780:47;851:5;;;855:1;851;:5;:1;875:5;;;;;:10;867:19;;;;;923:148;980:7;1012:1;1008;:5;1000:14;;;;;;1025:9;1041:1;1037;:5;;;;;;;923:148;-1:-1:-1;;;;923:148:0:o

Swarm Source

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