ETH Price: $2,953.81 (-1.50%)
Gas: 5 Gwei

Token

Sesamechain (LSC)
 

Overview

Max Total Supply

350,000,000 LSC

Holders

827

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

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

Contract Source Code Verified (Exact Match)

Contract Name:
SesameChainToken

Compiler Version
v0.5.1+commit.c8a2cb62

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-05-29
*/

pragma solidity ^0.5.0;

library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

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

contract MinterRole {
    using Roles for Roles.Role;

    event MinterAdded(address indexed account);
    event MinterRemoved(address indexed account);

    Roles.Role private _minters;

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

    modifier onlyMinter() {
        require(isMinter(msg.sender), "MinterRole: caller does not have the Minter role");
        _;
    }

    function isMinter(address account) public view returns (bool) {
        return _minters.has(account);
    }

    function addMinter(address account) public onlyMinter {
        _addMinter(account);
    }

    function renounceMinter() public {
        _removeMinter(msg.sender);
    }

    function _addMinter(address account) internal {
        _minters.add(account);
        emit MinterAdded(account);
    }

    function _removeMinter(address account) internal {
        _minters.remove(account);
        emit MinterRemoved(account);
    }
}

contract PauserRole {
    using Roles for Roles.Role;

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

    Roles.Role private _pausers;

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

    modifier onlyPauser() {
        require(isPauser(msg.sender), "PauserRole: caller does not have the Pauser role");
        _;
    }

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

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

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

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

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


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

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) {
        require(b <= a, "SafeMath: subtraction overflow");
        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-solidity/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) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, "SafeMath: division by zero");
        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) {
        require(b != 0, "SafeMath: modulo by zero");
        return a % b;
    }
}

/**
 * @dev Implementation of the `IERC20` interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using `_mint`.
 * For a generic mechanism see `ERC20Mintable`.
 *
 * *For a detailed writeup see our guide [How to implement supply
 * mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).*
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an `Approval` event is emitted on calls to `transferFrom`.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard `decreaseAllowance` and `increaseAllowance`
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See `IERC20.approve`.
 */
contract ERC20 is IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    /**
     * @dev See `IERC20.totalSupply`.
     */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See `IERC20.balanceOf`.
     */
    function balanceOf(address account) public view returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See `IERC20.transfer`.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public returns (bool) {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

    /**
     * @dev See `IERC20.allowance`.
     */
    function allowance(address owner, address spender) public view returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See `IERC20.approve`.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public returns (bool) {
        _approve(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev See `IERC20.transferFrom`.
     *
     * Emits an `Approval` event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of `ERC20`;
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `value`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to `approve` that can be used as a mitigation for
     * problems described in `IERC20.approve`.
     *
     * Emits an `Approval` event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to `approve` that can be used as a mitigation for
     * problems described in `IERC20.approve`.
     *
     * Emits an `Approval` event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to `transfer`, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a `Transfer` event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(amount);
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a `Transfer` event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: mint to the zero address");

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

     /**
     * @dev Destoys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a `Transfer` event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 value) internal {
        require(account != address(0), "ERC20: burn from the zero address");

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an `Approval` event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = value;
        emit Approval(owner, spender, value);
    }

    /**
     * @dev Destoys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See `_burn` and `_approve`.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, msg.sender, _allowances[account][msg.sender].sub(amount));
    }
}



/**
 * @dev Extension of `ERC20` that adds a set of accounts with the `MinterRole`,
 * which have permission to mint (create) new tokens as they see fit.
 *
 * At construction, the deployer of the contract is the only minter.
 */
contract ERC20Mintable is ERC20, MinterRole {
    /**
     * @dev See `ERC20._mint`.
     *
     * Requirements:
     *
     * - the caller must have the `MinterRole`.
     */
    function mint(address account, uint256 amount) public onlyMinter returns (bool) {
        _mint(account, amount);
        return true;
    }
}


contract ERC20Capped is ERC20Mintable {
    uint256 private _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor (uint256 cap) public {
        require(cap > 0, "ERC20Capped: cap is 0");
        _cap = cap;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view returns (uint256) {
        return _cap;
    }

    /**
     * @dev See `ERC20Mintable.mint`.
     *
     * Requirements:
     *
     * - `value` must not cause the total supply to go over the cap.
     */
    function _mint(address account, uint256 value) internal {
        require(totalSupply().add(value) <= _cap, "ERC20Capped: cap exceeded");
        super._mint(account, value);
    }
}

contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
     * these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol, uint8 decimals) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei.
     *
     * > Note that this information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * `IERC20.balanceOf` and `IERC20.transfer`.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }
}

contract Pausable is PauserRole {
    /**
     * @dev Emitted when the pause is triggered by a pauser (`account`).
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by a pauser (`account`).
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state. Assigns the Pauser role
     * to the deployer.
     */
    constructor () internal {
        _paused = false;
    }

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

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     */
    modifier whenNotPaused() {
        require(!_paused, "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     */
    modifier whenPaused() {
        require(_paused, "Pausable: not paused");
        _;
    }

    /**
     * @dev Called by a pauser to pause, triggers stopped state.
     */
    function pause() public onlyPauser whenNotPaused {
        _paused = true;
        emit Paused(msg.sender);
    }

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

contract ERC20Pausable is ERC20, Pausable {
    function transfer(address to, uint256 value) public whenNotPaused returns (bool) {
        return super.transfer(to, value);
    }

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

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

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

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

contract SesameChainToken is ERC20, ERC20Detailed, ERC20Capped, ERC20Pausable {

    constructor(
    )
        ERC20Detailed('Sesamechain', 'LSC', 18)
        ERC20Capped(1*(10**9)*(10**18))
        ERC20()
        ERC20Pausable()
        public
        payable
    {}

}

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":true,"inputs":[],"name":"cap","outputs":[{"name":"","type":"uint256"}],"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":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isPauser","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"account","type":"address"}],"name":"isMinter","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":true,"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterRemoved","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"}]

600b60808181527f536573616d65636861696e00000000000000000000000000000000000000000060a0908152610100604052600360c08181527f4c5343000000000000000000000000000000000000000000000000000000000060e0526b033b2e3c9fd0803ce80000009490926012926200007e9290919062000362565b5081516200009490600490602085019062000362565b506005805460ff191660ff9290921691909117905550620000c090503364010000000062000157810204565b600081116200013057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f45524332304361707065643a2063617020697320300000000000000000000000604482015290519081900360640190fd5b6007556200014733640100000000620001a9810204565b6009805460ff1916905562000407565b6200017260068264010000000062001542620001fb82021704565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b620001c460088264010000000062001542620001fb82021704565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b620002108282640100000000620002a2810204565b156200027d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b6000600160a060020a03821615156200034257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f526f6c65733a206163636f756e7420697320746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620003a557805160ff1916838001178555620003d5565b82800160010185558215620003d5579182015b82811115620003d5578251825591602001919060010190620003b8565b50620003e3929150620003e7565b5090565b6200040491905b80821115620003e35760008155600101620003ee565b90565b61161280620004176000396000f3fe608060405260043610610121577c0100000000000000000000000000000000000000000000000000000000600035046306fdde038114610126578063095ea7b3146101b057806318160ddd146101fd57806323b872dd14610224578063313ce56714610267578063355274ea1461029257806339509351146102a75780633f4ba83a146102e057806340c10f19146102f757806346fbf68e146103305780635c975abb146103635780636ef8d66d1461037857806370a082311461038d57806382dc1ec4146103c05780638456cb59146103f357806395d89b4114610408578063983b2d561461041d5780639865027514610450578063a457c2d714610465578063a9059cbb1461049e578063aa271e1a146104d7578063dd62ed3e1461050a575b600080fd5b34801561013257600080fd5b5061013b610545565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017557818101518382015260200161015d565b50505050905090810190601f1680156101a25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101bc57600080fd5b506101e9600480360360408110156101d357600080fd5b50600160a060020a0381351690602001356105db565b604080519115158252519081900360200190f35b34801561020957600080fd5b50610212610638565b60408051918252519081900360200190f35b34801561023057600080fd5b506101e96004803603606081101561024757600080fd5b50600160a060020a0381358116916020810135909116906040013561063e565b34801561027357600080fd5b5061027c61069d565b6040805160ff9092168252519081900360200190f35b34801561029e57600080fd5b506102126106a6565b3480156102b357600080fd5b506101e9600480360360408110156102ca57600080fd5b50600160a060020a0381351690602001356106ac565b3480156102ec57600080fd5b506102f5610702565b005b34801561030357600080fd5b506101e96004803603604081101561031a57600080fd5b50600160a060020a038135169060200135610822565b34801561033c57600080fd5b506101e96004803603602081101561035357600080fd5b5035600160a060020a03166108bc565b34801561036f57600080fd5b506101e96108d5565b34801561038457600080fd5b506102f56108de565b34801561039957600080fd5b50610212600480360360208110156103b057600080fd5b5035600160a060020a03166108e9565b3480156103cc57600080fd5b506102f5600480360360208110156103e357600080fd5b5035600160a060020a0316610904565b3480156103ff57600080fd5b506102f5610995565b34801561041457600080fd5b5061013b610aa5565b34801561042957600080fd5b506102f56004803603602081101561044057600080fd5b5035600160a060020a0316610b06565b34801561045c57600080fd5b506102f5610b94565b34801561047157600080fd5b506101e96004803603604081101561048857600080fd5b50600160a060020a038135169060200135610b9d565b3480156104aa57600080fd5b506101e9600480360360408110156104c157600080fd5b50600160a060020a038135169060200135610bf3565b3480156104e357600080fd5b506101e9600480360360208110156104fa57600080fd5b5035600160a060020a0316610c49565b34801561051657600080fd5b506102126004803603604081101561052d57600080fd5b50600160a060020a0381358116916020013516610c5c565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105d15780601f106105a6576101008083540402835291602001916105d1565b820191906000526020600020905b8154815290600101906020018083116105b457829003601f168201915b5050505050905090565b60095460009060ff1615610627576040805160e560020a62461bcd02815260206004820152601060248201526000805160206115c7833981519152604482015290519081900360640190fd5b6106318383610c87565b9392505050565b60025490565b60095460009060ff161561068a576040805160e560020a62461bcd02815260206004820152601060248201526000805160206115c7833981519152604482015290519081900360640190fd5b610695848484610c94565b949350505050565b60055460ff1690565b60075490565b60095460009060ff16156106f8576040805160e560020a62461bcd02815260206004820152601060248201526000805160206115c7833981519152604482015290519081900360640190fd5b6106318383610ceb565b61070b336108bc565b1515610787576040805160e560020a62461bcd02815260206004820152603060248201527f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f207468652050617573657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b60095460ff1615156107e3576040805160e560020a62461bcd02815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015290519081900360640190fd5b6009805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b600061082d33610c49565b15156108a9576040805160e560020a62461bcd02815260206004820152603060248201527f4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f20746865204d696e74657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b6108b38383610d27565b50600192915050565b60006108cf60088363ffffffff610da616565b92915050565b60095460ff1690565b6108e733610e4e565b565b600160a060020a031660009081526020819052604090205490565b61090d336108bc565b1515610989576040805160e560020a62461bcd02815260206004820152603060248201527f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f207468652050617573657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b61099281610e96565b50565b61099e336108bc565b1515610a1a576040805160e560020a62461bcd02815260206004820152603060248201527f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f207468652050617573657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b60095460ff1615610a63576040805160e560020a62461bcd02815260206004820152601060248201526000805160206115c7833981519152604482015290519081900360640190fd5b6009805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105d15780601f106105a6576101008083540402835291602001916105d1565b610b0f33610c49565b1515610b8b576040805160e560020a62461bcd02815260206004820152603060248201527f4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f20746865204d696e74657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b61099281610ede565b6108e733610f26565b60095460009060ff1615610be9576040805160e560020a62461bcd02815260206004820152601060248201526000805160206115c7833981519152604482015290519081900360640190fd5b6106318383610f6e565b60095460009060ff1615610c3f576040805160e560020a62461bcd02815260206004820152601060248201526000805160206115c7833981519152604482015290519081900360640190fd5b6106318383610faa565b60006108cf60068363ffffffff610da616565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b60006108b3338484610fb7565b6000610ca1848484611124565b600160a060020a038416600090815260016020908152604080832033808552925290912054610ce1918691610cdc908663ffffffff6112e816565b610fb7565b5060019392505050565b336000818152600160209081526040808320600160a060020a038716845290915281205490916108b3918590610cdc908663ffffffff61134816565b600754610d4282610d36610638565b9063ffffffff61134816565b1115610d98576040805160e560020a62461bcd02815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b610da282826113a5565b5050565b6000600160a060020a0382161515610e2e576040805160e560020a62461bcd02815260206004820152602260248201527f526f6c65733a206163636f756e7420697320746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b610e5f60088263ffffffff61149a16565b604051600160a060020a038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b610ea760088263ffffffff61154216565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b610eef60068263ffffffff61154216565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610f3760068263ffffffff61149a16565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b336000818152600160209081526040808320600160a060020a038716845290915281205490916108b3918590610cdc908663ffffffff6112e816565b60006108b3338484611124565b600160a060020a038316151561103c576040805160e560020a62461bcd028152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03821615156110c2576040805160e560020a62461bcd02815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a03831615156111aa576040805160e560020a62461bcd02815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0382161515611230576040805160e560020a62461bcd02815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a038316600090815260208190526040902054611259908263ffffffff6112e816565b600160a060020a03808516600090815260208190526040808220939093559084168152205461128e908263ffffffff61134816565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115611342576040805160e560020a62461bcd02815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600082820183811015610631576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600160a060020a0382161515611405576040805160e560020a62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254611418908263ffffffff61134816565b600255600160a060020a038216600090815260208190526040902054611444908263ffffffff61134816565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6114a48282610da6565b1515611520576040805160e560020a62461bcd02815260206004820152602160248201527f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c60448201527f6500000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0316600090815260209190915260409020805460ff19169055565b61154c8282610da6565b156115a1576040805160e560020a62461bcd02815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b600160a060020a0316600090815260209190915260409020805460ff1916600117905556fe5061757361626c653a2070617573656400000000000000000000000000000000a165627a7a72305820aee46f496b14c9b176e628d4fa67348ae573ecccca1a48bac23370c46fa97c180029

Deployed Bytecode

0x608060405260043610610121577c0100000000000000000000000000000000000000000000000000000000600035046306fdde038114610126578063095ea7b3146101b057806318160ddd146101fd57806323b872dd14610224578063313ce56714610267578063355274ea1461029257806339509351146102a75780633f4ba83a146102e057806340c10f19146102f757806346fbf68e146103305780635c975abb146103635780636ef8d66d1461037857806370a082311461038d57806382dc1ec4146103c05780638456cb59146103f357806395d89b4114610408578063983b2d561461041d5780639865027514610450578063a457c2d714610465578063a9059cbb1461049e578063aa271e1a146104d7578063dd62ed3e1461050a575b600080fd5b34801561013257600080fd5b5061013b610545565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017557818101518382015260200161015d565b50505050905090810190601f1680156101a25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101bc57600080fd5b506101e9600480360360408110156101d357600080fd5b50600160a060020a0381351690602001356105db565b604080519115158252519081900360200190f35b34801561020957600080fd5b50610212610638565b60408051918252519081900360200190f35b34801561023057600080fd5b506101e96004803603606081101561024757600080fd5b50600160a060020a0381358116916020810135909116906040013561063e565b34801561027357600080fd5b5061027c61069d565b6040805160ff9092168252519081900360200190f35b34801561029e57600080fd5b506102126106a6565b3480156102b357600080fd5b506101e9600480360360408110156102ca57600080fd5b50600160a060020a0381351690602001356106ac565b3480156102ec57600080fd5b506102f5610702565b005b34801561030357600080fd5b506101e96004803603604081101561031a57600080fd5b50600160a060020a038135169060200135610822565b34801561033c57600080fd5b506101e96004803603602081101561035357600080fd5b5035600160a060020a03166108bc565b34801561036f57600080fd5b506101e96108d5565b34801561038457600080fd5b506102f56108de565b34801561039957600080fd5b50610212600480360360208110156103b057600080fd5b5035600160a060020a03166108e9565b3480156103cc57600080fd5b506102f5600480360360208110156103e357600080fd5b5035600160a060020a0316610904565b3480156103ff57600080fd5b506102f5610995565b34801561041457600080fd5b5061013b610aa5565b34801561042957600080fd5b506102f56004803603602081101561044057600080fd5b5035600160a060020a0316610b06565b34801561045c57600080fd5b506102f5610b94565b34801561047157600080fd5b506101e96004803603604081101561048857600080fd5b50600160a060020a038135169060200135610b9d565b3480156104aa57600080fd5b506101e9600480360360408110156104c157600080fd5b50600160a060020a038135169060200135610bf3565b3480156104e357600080fd5b506101e9600480360360208110156104fa57600080fd5b5035600160a060020a0316610c49565b34801561051657600080fd5b506102126004803603604081101561052d57600080fd5b50600160a060020a0381358116916020013516610c5c565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105d15780601f106105a6576101008083540402835291602001916105d1565b820191906000526020600020905b8154815290600101906020018083116105b457829003601f168201915b5050505050905090565b60095460009060ff1615610627576040805160e560020a62461bcd02815260206004820152601060248201526000805160206115c7833981519152604482015290519081900360640190fd5b6106318383610c87565b9392505050565b60025490565b60095460009060ff161561068a576040805160e560020a62461bcd02815260206004820152601060248201526000805160206115c7833981519152604482015290519081900360640190fd5b610695848484610c94565b949350505050565b60055460ff1690565b60075490565b60095460009060ff16156106f8576040805160e560020a62461bcd02815260206004820152601060248201526000805160206115c7833981519152604482015290519081900360640190fd5b6106318383610ceb565b61070b336108bc565b1515610787576040805160e560020a62461bcd02815260206004820152603060248201527f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f207468652050617573657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b60095460ff1615156107e3576040805160e560020a62461bcd02815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015290519081900360640190fd5b6009805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b600061082d33610c49565b15156108a9576040805160e560020a62461bcd02815260206004820152603060248201527f4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f20746865204d696e74657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b6108b38383610d27565b50600192915050565b60006108cf60088363ffffffff610da616565b92915050565b60095460ff1690565b6108e733610e4e565b565b600160a060020a031660009081526020819052604090205490565b61090d336108bc565b1515610989576040805160e560020a62461bcd02815260206004820152603060248201527f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f207468652050617573657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b61099281610e96565b50565b61099e336108bc565b1515610a1a576040805160e560020a62461bcd02815260206004820152603060248201527f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f207468652050617573657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b60095460ff1615610a63576040805160e560020a62461bcd02815260206004820152601060248201526000805160206115c7833981519152604482015290519081900360640190fd5b6009805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105d15780601f106105a6576101008083540402835291602001916105d1565b610b0f33610c49565b1515610b8b576040805160e560020a62461bcd02815260206004820152603060248201527f4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f20746865204d696e74657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b61099281610ede565b6108e733610f26565b60095460009060ff1615610be9576040805160e560020a62461bcd02815260206004820152601060248201526000805160206115c7833981519152604482015290519081900360640190fd5b6106318383610f6e565b60095460009060ff1615610c3f576040805160e560020a62461bcd02815260206004820152601060248201526000805160206115c7833981519152604482015290519081900360640190fd5b6106318383610faa565b60006108cf60068363ffffffff610da616565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b60006108b3338484610fb7565b6000610ca1848484611124565b600160a060020a038416600090815260016020908152604080832033808552925290912054610ce1918691610cdc908663ffffffff6112e816565b610fb7565b5060019392505050565b336000818152600160209081526040808320600160a060020a038716845290915281205490916108b3918590610cdc908663ffffffff61134816565b600754610d4282610d36610638565b9063ffffffff61134816565b1115610d98576040805160e560020a62461bcd02815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b610da282826113a5565b5050565b6000600160a060020a0382161515610e2e576040805160e560020a62461bcd02815260206004820152602260248201527f526f6c65733a206163636f756e7420697320746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b610e5f60088263ffffffff61149a16565b604051600160a060020a038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b610ea760088263ffffffff61154216565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b610eef60068263ffffffff61154216565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610f3760068263ffffffff61149a16565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b336000818152600160209081526040808320600160a060020a038716845290915281205490916108b3918590610cdc908663ffffffff6112e816565b60006108b3338484611124565b600160a060020a038316151561103c576040805160e560020a62461bcd028152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03821615156110c2576040805160e560020a62461bcd02815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a03831615156111aa576040805160e560020a62461bcd02815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0382161515611230576040805160e560020a62461bcd02815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a038316600090815260208190526040902054611259908263ffffffff6112e816565b600160a060020a03808516600090815260208190526040808220939093559084168152205461128e908263ffffffff61134816565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115611342576040805160e560020a62461bcd02815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600082820183811015610631576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600160a060020a0382161515611405576040805160e560020a62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254611418908263ffffffff61134816565b600255600160a060020a038216600090815260208190526040902054611444908263ffffffff61134816565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6114a48282610da6565b1515611520576040805160e560020a62461bcd02815260206004820152602160248201527f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c60448201527f6500000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0316600090815260209190915260409020805460ff19169055565b61154c8282610da6565b156115a1576040805160e560020a62461bcd02815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b600160a060020a0316600090815260209190915260409020805460ff1916600117905556fe5061757361626c653a2070617573656400000000000000000000000000000000a165627a7a72305820aee46f496b14c9b176e628d4fa67348ae573ecccca1a48bac23370c46fa97c180029

Deployed Bytecode Sourcemap

21838:284:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18501:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18501:83:0;;;:::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;18501:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21331:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21331:140:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21331:140:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;10032:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10032:91:0;;;:::i;:::-;;;;;;;;;;;;;;;;21163:160;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21163:160:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21163:160:0;;;;;;;;;;;;;;;;;:::i;19359:83::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19359:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17509:75;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17509:75:0;;;:::i;21479:167::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21479:167:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21479:167:0;;;;;;;;:::i;20849:118::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20849:118:0;;;:::i;:::-;;16947:143;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16947:143:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;16947:143:0;;;;;;;;:::i;2332:109::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2332:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2332:109:0;-1:-1:-1;;;;;2332:109:0;;:::i;20058:78::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20058:78:0;;;:::i;2549:77::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2549:77:0;;;:::i;10186:110::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10186:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10186:110:0;-1:-1:-1;;;;;10186:110:0;;:::i;2449:92::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2449:92:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2449:92:0;-1:-1:-1;;;;;2449:92:0;;:::i;20638:116::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20638:116:0;;;:::i;18703:87::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18703:87:0;;;:::i;1465:92::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1465:92:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1465:92:0;-1:-1:-1;;;;;1465:92:0;;:::i;1565:77::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1565:77:0;;;:::i;21654:177::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21654:177:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21654:177:0;;;;;;;;:::i;21023:132::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21023:132:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21023:132:0;;;;;;;;:::i;1348:109::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1348:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1348:109:0;-1:-1:-1;;;;;1348:109:0;;:::i;10728:134::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10728:134:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10728:134:0;;;;;;;;;;:::i;18501:83::-;18571:5;18564:12;;;;;;;;-1:-1:-1;;18564:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18538:13;;18564:12;;18571:5;;18564:12;;18571:5;18564:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18501:83;:::o;21331:140::-;20295:7;;21410:4;;20295:7;;20294:8;20286:37;;;;;-1:-1:-1;;;;;20286:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20286:37:0;;;;;;;;;;;;;;;21434:29;21448:7;21457:5;21434:13;:29::i;:::-;21427:36;21331:140;-1:-1:-1;;;21331:140:0:o;10032:91::-;10103:12;;10032:91;:::o;21163:160::-;20295:7;;21256:4;;20295:7;;20294:8;20286:37;;;;;-1:-1:-1;;;;;20286:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20286:37:0;;;;;;;;;;;;;;;21280:35;21299:4;21305:2;21309:5;21280:18;:35::i;:::-;21273:42;21163:160;-1:-1:-1;;;;21163:160:0:o;19359:83::-;19425:9;;;;19359:83;:::o;17509:75::-;17572:4;;17509:75;:::o;21479:167::-;20295:7;;21570:4;;20295:7;;20294:8;20286:37;;;;;-1:-1:-1;;;;;20286:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20286:37:0;;;;;;;;;;;;;;;21594:44;21618:7;21627:10;21594:23;:44::i;20849:118::-;2231:20;2240:10;2231:8;:20::i;:::-;2223:81;;;;;;;-1:-1:-1;;;;;2223:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20494:7;;;;20486:40;;;;;;;-1:-1:-1;;;;;20486:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;20908:7;:15;;-1:-1:-1;;20908:15:0;;;20939:20;;;20948:10;20939:20;;;;;;;;;;;;;20849:118::o;16947:143::-;17021:4;1247:20;1256:10;1247:8;:20::i;:::-;1239:81;;;;;;;-1:-1:-1;;;;;1239:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17038:22;17044:7;17053:6;17038:5;:22::i;:::-;-1:-1:-1;17078:4:0;16947:143;;;;:::o;2332:109::-;2388:4;2412:21;:8;2425:7;2412:21;:12;:21;:::i;:::-;2405:28;2332:109;-1:-1:-1;;2332:109:0:o;20058:78::-;20121:7;;;;20058:78;:::o;2549:77::-;2593:25;2607:10;2593:13;:25::i;:::-;2549:77::o;10186:110::-;-1:-1:-1;;;;;10270:18:0;10243:7;10270:18;;;;;;;;;;;;10186:110::o;2449:92::-;2231:20;2240:10;2231:8;:20::i;:::-;2223:81;;;;;;;-1:-1:-1;;;;;2223:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2514:19;2525:7;2514:10;:19::i;:::-;2449:92;:::o;20638:116::-;2231:20;2240:10;2231:8;:20::i;:::-;2223:81;;;;;;;-1:-1:-1;;;;;2223:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20295:7;;;;20294:8;20286:37;;;;;-1:-1:-1;;;;;20286:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20286:37:0;;;;;;;;;;;;;;;20698:7;:14;;-1:-1:-1;;20698:14:0;20708:4;20698:14;;;20728:18;;;20735:10;20728:18;;;;;;;;;;;;;20638:116::o;18703:87::-;18775:7;18768:14;;;;;;;;-1:-1:-1;;18768:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18742:13;;18768:14;;18775:7;;18768:14;;18775:7;18768:14;;;;;;;;;;;;;;;;;;;;;;;;1465:92;1247:20;1256:10;1247:8;:20::i;:::-;1239:81;;;;;;;-1:-1:-1;;;;;1239:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1530:19;1541:7;1530:10;:19::i;1565:77::-;1609:25;1623:10;1609:13;:25::i;21654:177::-;20295:7;;21750:4;;20295:7;;20294:8;20286:37;;;;;-1:-1:-1;;;;;20286:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20286:37:0;;;;;;;;;;;;;;;21774:49;21798:7;21807:15;21774:23;:49::i;21023:132::-;20295:7;;21098:4;;20295:7;;20294:8;20286:37;;;;;-1:-1:-1;;;;;20286:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20286:37:0;;;;;;;;;;;;;;;21122:25;21137:2;21141:5;21122:14;:25::i;1348:109::-;1404:4;1428:21;:8;1441:7;1428:21;:12;:21;:::i;10728:134::-;-1:-1:-1;;;;;10827:18:0;;;10800:7;10827:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10728:134::o;11009:148::-;11074:4;11091:36;11100:10;11112:7;11121:5;11091:8;:36::i;11628:256::-;11717:4;11734:36;11744:6;11752:9;11763:6;11734:9;:36::i;:::-;-1:-1:-1;;;;;11810:19:0;;;;;;:11;:19;;;;;;;;11798:10;11810:31;;;;;;;;;11781:73;;11790:6;;11810:43;;11846:6;11810:43;:35;:43;:::i;:::-;11781:8;:73::i;:::-;-1:-1:-1;11872:4:0;11628:256;;;;;:::o;12293:206::-;12399:10;12373:4;12420:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;12420:32:0;;;;;;;;;;12373:4;;12390:79;;12411:7;;12420:48;;12457:10;12420:48;:36;:48;:::i;17757:183::-;17860:4;;17832:24;17850:5;17832:13;:11;:13::i;:::-;:17;:24;:17;:24;:::i;:::-;:32;;17824:70;;;;;-1:-1:-1;;;;;17824:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17905:27;17917:7;17926:5;17905:11;:27::i;:::-;17757:183;;:::o;723:203::-;795:4;-1:-1:-1;;;;;820:21:0;;;;812:68;;;;;-1:-1:-1;;;;;812:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;898:20:0;:11;:20;;;;;;;;;;;;;;;723:203::o;2764:130::-;2824:24;:8;2840:7;2824:24;:15;:24;:::i;:::-;2864:22;;-1:-1:-1;;;;;2864:22:0;;;;;;;;2764:130;:::o;2634:122::-;2691:21;:8;2704:7;2691:21;:12;:21;:::i;:::-;2728:20;;-1:-1:-1;;;;;2728:20:0;;;;;;;;2634:122;:::o;1650:::-;1707:21;:8;1720:7;1707:21;:12;:21;:::i;:::-;1744:20;;-1:-1:-1;;;;;1744:20:0;;;;;;;;1650:122;:::o;1780:130::-;1840:24;:8;1856:7;1840:24;:15;:24;:::i;:::-;1880:22;;-1:-1:-1;;;;;1880:22:0;;;;;;;;1780:130;:::o;13002:216::-;13113:10;13087:4;13134:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;13134:32:0;;;;;;;;;;13087:4;;13104:84;;13125:7;;13134:53;;13171:15;13134:53;:36;:53;:::i;10509:156::-;10578:4;10595:40;10605:10;10617:9;10628:6;10595:9;:40::i;15804:335::-;-1:-1:-1;;;;;15897:19:0;;;;15889:68;;;;;-1:-1:-1;;;;;15889:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15976:21:0;;;;15968:68;;;;;-1:-1:-1;;;;;15968:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16049:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;16100:31;;;;;;;;;;;;;;;;;15804:335;;;:::o;13708:429::-;-1:-1:-1;;;;;13806:20:0;;;;13798:70;;;;;-1:-1:-1;;;;;13798:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13887:23:0;;;;13879:71;;;;;-1:-1:-1;;;;;13879:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13983:17:0;;:9;:17;;;;;;;;;;;:29;;14005:6;13983:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;13963:17:0;;;:9;:17;;;;;;;;;;;:49;;;;14046:20;;;;;;;:32;;14071:6;14046:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;14023:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;14094:35;;;;;;;14023:20;;14094:35;;;;;;;;;;;;;13708:429;;;:::o;6244:184::-;6302:7;6330:6;;;;6322:49;;;;;-1:-1:-1;;;;;6322:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6394:5:0;;;6244:184::o;5788:181::-;5846:7;5878:5;;;5902:6;;;;5894:46;;;;;-1:-1:-1;;;;;5894:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;14418:308;-1:-1:-1;;;;;14494:21:0;;;;14486:65;;;;;-1:-1:-1;;;;;14486:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;14579:12;;:24;;14596:6;14579:24;:16;:24;:::i;:::-;14564:12;:39;-1:-1:-1;;;;;14635:18:0;;:9;:18;;;;;;;;;;;:30;;14658:6;14635:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;14614:18:0;;:9;:18;;;;;;;;;;;:51;;;;14681:37;;;;;;;14614:18;;:9;;14681:37;;;;;;;;;;14418:308;;:::o;445:183::-;525:18;529:4;535:7;525:3;:18::i;:::-;517:64;;;;;;;-1:-1:-1;;;;;517:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;592:20:0;615:5;592:20;;;;;;;;;;;:28;;-1:-1:-1;;592:28:0;;;445:183::o;187:178::-;265:18;269:4;275:7;265:3;:18::i;:::-;264:19;256:63;;;;;-1:-1:-1;;;;;256:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;330:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;330:27:0;353:4;330:27;;;187:178::o

Swarm Source

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