ETH Price: $3,341.59 (-1.37%)
Gas: 21 Gwei

Token

Mykonos coin (MYK)
 

Overview

Max Total Supply

100,000,000 MYK

Holders

110

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
169,799.91 MYK

Value
$0.00
0xf366d7165b503ae4d8b228ebd8576cb259739782
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:
MYK

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license
/**
 *Submitted for verification at Etherscan.io on 2020-12-10
*/

pragma solidity ^0.6.0;

// SPDX-License-Identifier: UNLICENSED

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot 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-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
    
    function ceil(uint256 a, uint256 m) internal pure returns (uint256 r) {
        require(m != 0, "SafeMath: to ceil number shall not be zero");
        return (a + m - 1) / m * m;
    }
}


// ----------------------------------------------------------------------------
// ERC Token Standard #20 Interface
// https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20-token-standard.md
// ----------------------------------------------------------------------------
/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: 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
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// ----------------------------------------------------------------------------
// Owned contract
// ----------------------------------------------------------------------------
contract Owned {
    address payable public owner;

    event OwnershipTransferred(address indexed _from, address indexed _to);

    constructor() public {
        owner = msg.sender;
    }

    modifier onlyOwner {
        require(msg.sender == owner, "Only allowed by owner");
        _;
    }

    function transferOwnership(address payable _newOwner) public onlyOwner {
        owner = _newOwner;
        emit OwnershipTransferred(msg.sender, _newOwner);
    }
}

// ----------------------------------------------------------------------------
// 'MYK' token contract

// Symbol      : MYK
// Name        : Mykonos coin
// Total supply: 100000000 (100 Million)
// Decimals    : 18


// ----------------------------------------------------------------------------
// ERC20 Token, with the addition of symbol, name and decimals and assisted
// token transfers
// ----------------------------------------------------------------------------
contract MYK is IERC20, Owned {
    using SafeMath for uint256;
   
    string public symbol = "MYK";
    string public  name = "Mykonos coin";
    uint256 public decimals = 18;
    uint256 _totalSupply = 100000000 * 10 ** (decimals); // 100 million
    
    mapping(address => uint256) balances;
    mapping(address => mapping(address => uint256)) allowed;
   
    // ------------------------------------------------------------------------
    // Constructor
    // ------------------------------------------------------------------------
    constructor() public {
        owner = 0x37372dc890330aE0Fd8cEfC3cD53c2CF71b7e9C4;
        
        balances[address(owner)] =   _totalSupply;
        emit Transfer(address(0), address(owner), _totalSupply);
    }
    /** ERC20Interface function's implementation **/
   
    function totalSupply() external override view returns (uint256){
       return _totalSupply;
    }
   
    // ------------------------------------------------------------------------
    // Get the token balance for account `tokenOwner`
    // ------------------------------------------------------------------------
    function balanceOf(address tokenOwner) external override view returns (uint256 balance) {
        return balances[tokenOwner];
    }
    
    // ------------------------------------------------------------------------
    // Token owner can approve for `spender` to transferFrom(...) `tokens`
    // from the token owner's account
    // ------------------------------------------------------------------------
    function approve(address spender, uint256 tokens) external override returns (bool success){
        allowed[msg.sender][spender] = tokens;
        emit Approval(msg.sender,spender,tokens);
        return true;
    }
    
    // ------------------------------------------------------------------------
    // Returns the amount of tokens approved by the owner that can be
    // transferred to the spender's account
    // ------------------------------------------------------------------------
    function allowance(address tokenOwner, address spender) external override view returns (uint256 remaining) {
        return allowed[tokenOwner][spender];
    }

    // ------------------------------------------------------------------------
    // Transfer the balance from token owner's account to `to` account
    // - Owner's account must have sufficient balance to transfer
    // - 0 value transfers are allowed
    // ------------------------------------------------------------------------
    function transfer(address to, uint256 tokens) public override returns (bool success) {
        // prevent transfer to 0x0, use burn instead
        require(address(to) != address(0));
        require(balances[msg.sender] >= tokens, "Insufficient account balance");
        
        balances[msg.sender] = balances[msg.sender].sub(tokens);
        balances[to] = balances[to].add(tokens);
        
        emit Transfer(msg.sender, to, tokens);
        return true;
    }
    
    // ------------------------------------------------------------------------
    // Transfer `tokens` from the `from` account to the `to` account
    //
    // The calling account must already have sufficient tokens approve(...)-d
    // for spending from the `from` account and
    // - From account must have sufficient balance to transfer
    // - Spender must have sufficient allowance to transfer
    // - 0 value transfers are allowed
    // ------------------------------------------------------------------------
    function transferFrom(address from, address to, uint256 tokens) external override returns (bool success){
        require(tokens <= allowed[from][msg.sender]); //check allowance
        require(balances[from] >= tokens, "Insufficient account balance");
        
        balances[from] = balances[from].sub(tokens);
        allowed[from][msg.sender] = allowed[from][msg.sender].sub(tokens);
        balances[to] = balances[to].add(tokens);
        
        emit Transfer(from, to, tokens.sub(tokens));
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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"}],"name":"OwnershipTransferred","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"},{"inputs":[{"internalType":"address","name":"tokenOwner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"remaining","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenOwner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c060405260036080819052624d594b60e81b60a09081526100249160019190610101565b5060408051808201909152600c8082526b26bcb5b7b737b99031b7b4b760a11b602090920191825261005891600291610101565b5060126003556a52b7d2dcc80cd2e400000060045534801561007957600080fd5b50600080546001600160a01b03199081163317167337372dc890330ae0fd8cefc3cd53c2cf71b7e9c4178082556004546001600160a01b039182168352600560209081526040808520839055845481519384529051931693927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3610194565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061014257805160ff191683800117855561016f565b8280016001018555821561016f579182015b8281111561016f578251825591602001919060010190610154565b5061017b92915061017f565b5090565b5b8082111561017b5760008155600101610180565b61090c806101a36000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c806370a082311161007157806370a08231146101c35780638da5cb5b146101e957806395d89b411461020d578063a9059cbb14610215578063dd62ed3e14610241578063f2fde38b1461026f576100a9565b806306fdde03146100ae578063095ea7b31461012b57806318160ddd1461016b57806323b872dd14610185578063313ce567146101bb575b600080fd5b6100b6610297565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100f05781810151838201526020016100d8565b50505050905090810190601f16801561011d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101576004803603604081101561014157600080fd5b506001600160a01b038135169060200135610322565b604080519115158252519081900360200190f35b610173610388565b60408051918252519081900360200190f35b6101576004803603606081101561019b57600080fd5b506001600160a01b0381358116916020810135909116906040013561038e565b610173610528565b610173600480360360208110156101d957600080fd5b50356001600160a01b031661052e565b6101f1610549565b604080516001600160a01b039092168252519081900360200190f35b6100b6610558565b6101576004803603604081101561022b57600080fd5b506001600160a01b0381351690602001356105b2565b6101736004803603604081101561025757600080fd5b506001600160a01b03813581169160200135166106cf565b6102956004803603602081101561028557600080fd5b50356001600160a01b03166106fa565b005b6002805460408051602060018416156101000260001901909316849004601f8101849004840282018401909252818152929183018282801561031a5780601f106102ef5761010080835404028352916020019161031a565b820191906000526020600020905b8154815290600101906020018083116102fd57829003601f168201915b505050505081565b3360008181526006602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60045490565b6001600160a01b03831660009081526006602090815260408083203384529091528120548211156103be57600080fd5b6001600160a01b03841660009081526005602052604090205482111561042b576040805162461bcd60e51b815260206004820152601c60248201527f496e73756666696369656e74206163636f756e742062616c616e636500000000604482015290519081900360640190fd5b6001600160a01b03841660009081526005602052604090205461044e908361079c565b6001600160a01b0385166000908152600560209081526040808320939093556006815282822033835290522054610485908361079c565b6001600160a01b0380861660009081526006602090815260408083203384528252808320949094559186168152600590915220546104c390836107e5565b6001600160a01b0380851660008181526005602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef61050d858061079c565b60408051918252519081900360200190a35060019392505050565b60035481565b6001600160a01b031660009081526005602052604090205490565b6000546001600160a01b031681565b60018054604080516020600284861615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561031a5780601f106102ef5761010080835404028352916020019161031a565b60006001600160a01b0383166105c757600080fd5b3360009081526005602052604090205482111561062b576040805162461bcd60e51b815260206004820152601c60248201527f496e73756666696369656e74206163636f756e742062616c616e636500000000604482015290519081900360640190fd5b33600090815260056020526040902054610645908361079c565b33600090815260056020526040808220929092556001600160a01b0385168152205461067190836107e5565b6001600160a01b0384166000818152600560209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b6000546001600160a01b03163314610751576040805162461bcd60e51b815260206004820152601560248201527427b7363c9030b63637bbb2b210313c9037bbb732b960591b604482015290519081900360640190fd5b600080546001600160a01b0319166001600160a01b0383169081178255604051909133917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b60006107de83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061083f565b9392505050565b6000828201838110156107de576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600081848411156108ce5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561089357818101518382015260200161087b565b50505050905090810190601f1680156108c05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fea26469706673582212207d61eb17150420bbb48db088dc507047506a00ad1b49b38795f5158cd86c2eaf64736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100a95760003560e01c806370a082311161007157806370a08231146101c35780638da5cb5b146101e957806395d89b411461020d578063a9059cbb14610215578063dd62ed3e14610241578063f2fde38b1461026f576100a9565b806306fdde03146100ae578063095ea7b31461012b57806318160ddd1461016b57806323b872dd14610185578063313ce567146101bb575b600080fd5b6100b6610297565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100f05781810151838201526020016100d8565b50505050905090810190601f16801561011d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101576004803603604081101561014157600080fd5b506001600160a01b038135169060200135610322565b604080519115158252519081900360200190f35b610173610388565b60408051918252519081900360200190f35b6101576004803603606081101561019b57600080fd5b506001600160a01b0381358116916020810135909116906040013561038e565b610173610528565b610173600480360360208110156101d957600080fd5b50356001600160a01b031661052e565b6101f1610549565b604080516001600160a01b039092168252519081900360200190f35b6100b6610558565b6101576004803603604081101561022b57600080fd5b506001600160a01b0381351690602001356105b2565b6101736004803603604081101561025757600080fd5b506001600160a01b03813581169160200135166106cf565b6102956004803603602081101561028557600080fd5b50356001600160a01b03166106fa565b005b6002805460408051602060018416156101000260001901909316849004601f8101849004840282018401909252818152929183018282801561031a5780601f106102ef5761010080835404028352916020019161031a565b820191906000526020600020905b8154815290600101906020018083116102fd57829003601f168201915b505050505081565b3360008181526006602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60045490565b6001600160a01b03831660009081526006602090815260408083203384529091528120548211156103be57600080fd5b6001600160a01b03841660009081526005602052604090205482111561042b576040805162461bcd60e51b815260206004820152601c60248201527f496e73756666696369656e74206163636f756e742062616c616e636500000000604482015290519081900360640190fd5b6001600160a01b03841660009081526005602052604090205461044e908361079c565b6001600160a01b0385166000908152600560209081526040808320939093556006815282822033835290522054610485908361079c565b6001600160a01b0380861660009081526006602090815260408083203384528252808320949094559186168152600590915220546104c390836107e5565b6001600160a01b0380851660008181526005602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef61050d858061079c565b60408051918252519081900360200190a35060019392505050565b60035481565b6001600160a01b031660009081526005602052604090205490565b6000546001600160a01b031681565b60018054604080516020600284861615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561031a5780601f106102ef5761010080835404028352916020019161031a565b60006001600160a01b0383166105c757600080fd5b3360009081526005602052604090205482111561062b576040805162461bcd60e51b815260206004820152601c60248201527f496e73756666696369656e74206163636f756e742062616c616e636500000000604482015290519081900360640190fd5b33600090815260056020526040902054610645908361079c565b33600090815260056020526040808220929092556001600160a01b0385168152205461067190836107e5565b6001600160a01b0384166000818152600560209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b6000546001600160a01b03163314610751576040805162461bcd60e51b815260206004820152601560248201527427b7363c9030b63637bbb2b210313c9037bbb732b960591b604482015290519081900360640190fd5b600080546001600160a01b0319166001600160a01b0383169081178255604051909133917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b60006107de83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061083f565b9392505050565b6000828201838110156107de576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600081848411156108ce5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561089357818101518382015260200161087b565b50505050905090810190601f1680156108c05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fea26469706673582212207d61eb17150420bbb48db088dc507047506a00ad1b49b38795f5158cd86c2eaf64736f6c634300060c0033

Deployed Bytecode Sourcemap

9717:4177:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9827:36;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11310:219;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;11310:219:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;10559:100;;;:::i;:::-;;;;;;;;;;;;;;;;13354:537;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;13354:537:0;;;;;;;;;;;;;;;;;:::i;9870:28::-;;;:::i;10887:134::-;;;;;;;;;;;;;;;;-1:-1:-1;10887:134:0;-1:-1:-1;;;;;10887:134:0;;:::i;8764:28::-;;;:::i;:::-;;;;-1:-1:-1;;;;;8764:28:0;;;;;;;;;;;;;;9792;;;:::i;12329:480::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;12329:480:0;;;;;;;;:::i;11819:161::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;11819:161:0;;;;;;;;;;:::i;9057:166::-;;;;;;;;;;;;;;;;-1:-1:-1;9057:166:0;-1:-1:-1;;;;;9057:166:0;;:::i;:::-;;9827:36;;;;;;;;;;;;;;-1:-1:-1;;9827:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;11310:219::-;11419:10;11387:12;11411:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;11411:28:0;;;;;;;;;;;:37;;;11464:35;;;;;;;11387:12;;11411:28;;11419:10;;11464:35;;;;;;;;-1:-1:-1;11517:4:0;11310:219;;;;:::o;10559:100::-;10639:12;;10559:100;:::o;13354:537::-;-1:-1:-1;;;;;13487:13:0;;13445:12;13487:13;;;:7;:13;;;;;;;;13501:10;13487:25;;;;;;;;13477:35;;;13469:44;;;;;;-1:-1:-1;;;;;13550:14:0;;;;;;:8;:14;;;;;;:24;-1:-1:-1;13550:24:0;13542:65;;;;;-1:-1:-1;;;13542:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13645:14:0;;;;;;:8;:14;;;;;;:26;;13664:6;13645:18;:26::i;:::-;-1:-1:-1;;;;;13628:14:0;;;;;;:8;:14;;;;;;;;:43;;;;13710:7;:13;;;;;13724:10;13710:25;;;;;;:37;;13740:6;13710:29;:37::i;:::-;-1:-1:-1;;;;;13682:13:0;;;;;;;:7;:13;;;;;;;;13696:10;13682:25;;;;;;;:65;;;;13773:12;;;;;:8;:12;;;;;:24;;13790:6;13773:16;:24::i;:::-;-1:-1:-1;;;;;13758:12:0;;;;;;;:8;:12;;;;;:39;;;;13823:38;;;13842:18;13853:6;;13842:10;:18::i;:::-;13823:38;;;;;;;;;;;;;;;-1:-1:-1;13879:4:0;13354:537;;;;;:::o;9870:28::-;;;;:::o;10887:134::-;-1:-1:-1;;;;;10993:20:0;10958:15;10993:20;;;:8;:20;;;;;;;10887:134::o;8764:28::-;;;-1:-1:-1;;;;;8764:28:0;;:::o;9792:::-;;;;;;;;;;;;;;;-1:-1:-1;;9792:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12329:480;12400:12;-1:-1:-1;;;;;12487:25:0;;12479:34;;;;;;12541:10;12532:20;;;;:8;:20;;;;;;:30;-1:-1:-1;12532:30:0;12524:71;;;;;-1:-1:-1;;;12524:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;12648:10;12639:20;;;;:8;:20;;;;;;:32;;12664:6;12639:24;:32::i;:::-;12625:10;12616:20;;;;:8;:20;;;;;;:55;;;;-1:-1:-1;;;;;12697:12:0;;;;;;:24;;12714:6;12697:16;:24::i;:::-;-1:-1:-1;;;;;12682:12:0;;;;;;:8;:12;;;;;;;;;:39;;;;12747:32;;;;;;;12682:12;;12756:10;;12747:32;;;;;;;;;;-1:-1:-1;12797:4:0;12329:480;;;;:::o;11819:161::-;-1:-1:-1;;;;;11944:19:0;;;11907:17;11944:19;;;:7;:19;;;;;;;;:28;;;;;;;;;;;;;11819:161::o;9057:166::-;8998:5;;-1:-1:-1;;;;;8998:5:0;8984:10;:19;8976:53;;;;;-1:-1:-1;;;8976:53:0;;;;;;;;;;;;-1:-1:-1;;;8976:53:0;;;;;;;;;;;;;;;9139:5:::1;:17:::0;;-1:-1:-1;;;;;;9139:17:0::1;-1:-1:-1::0;;;;;9139:17:0;::::1;::::0;;::::1;::::0;;9172:43:::1;::::0;9139:17;;9193:10:::1;::::0;9172:43:::1;::::0;9139:5;9172:43:::1;9057:166:::0;:::o;1373:136::-;1431:7;1458:43;1462:1;1465;1458:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;1451:50;1373:136;-1:-1:-1;;;1373:136:0:o;909:181::-;967:7;999:5;;;1023:6;;;;1015:46;;;;;-1:-1:-1;;;1015:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;1812:192;1898:7;1934:12;1926:6;;;;1918:29;;;;-1:-1:-1;;;1918:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1970:5:0;;;1812:192::o

Swarm Source

ipfs://7d61eb17150420bbb48db088dc507047506a00ad1b49b38795f5158cd86c2eaf
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.