ETH Price: $2,969.28 (-2.68%)
Gas: 4 Gwei

Token

Era Swap (ES)
 

Overview

Max Total Supply

1,475,550,941.125151737978487032 ES

Holders

16,999

Market

Price

$0.00 @ 0.000001 ETH (+0.25%)

Onchain Market Cap

$5,495,867.86

Circulating Supply Market Cap

$8,694,863.38

Other Info

Token Contract (WITH 18 Decimals)

Balance
35 ES

Value
$0.13 ( ~4.37815949858102E-05 Eth) [0.0000%]
0x37e25702ef2946fa5885ebbf5b2411c06f1a93ac
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Era Swap token contract has migrated to 0x72108a8CC3254813C6BE2F1b77be53E185abFdD9.

Market

Volume (24H):$294,221.53
Market Capitalization:$8,694,863.38
Circulating Supply:2,334,429,095.00 ES
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Eraswap

Compiler Version
v0.5.8+commit.23d335f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

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

// File: openzeppelin-solidity/contracts/token/ERC20/IERC20.sol
pragma solidity ^0.5.2;
/**
 * @title ERC20 interface
 * @dev see https://eips.ethereum.org/EIPS/eip-20
 */
interface IERC20 {
    function transfer(address to, uint256 value) external returns (bool);

    function approve(address spender, uint256 value) external returns (bool);

    function transferFrom(address from, address to, uint256 value) external returns (bool);

    function totalSupply() external view returns (uint256);

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

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

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

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

// File: openzeppelin-solidity/contracts/math/SafeMath.sol
/**
 * @title SafeMath
 * @dev Unsigned math operations with safety checks that revert on error
 */
library SafeMath {
    /**
     * @dev Multiplies two unsigned integers, reverts on overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (a == 0) {
            return 0;
        }

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

        return c;
    }

    /**
     * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend).
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Adds two unsigned integers, reverts on overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a);

        return c;
    }

    /**
     * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo),
     * reverts when dividing by zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0);
        return a % b;
    }
}

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20.sol


/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * https://eips.ethereum.org/EIPS/eip-20
 * Originally based on code by FirstBlood:
 * https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 *
 * This implementation emits additional Approval events, allowing applications to reconstruct the allowance status for
 * all accounts just by listening to said events. Note that this isn't required by the specification, and other
 * compliant implementations may not do it.
 */
contract ERC20 is IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

    /**
     * @dev Gets the balance of the specified address.
     * @param owner The address to query the balance of.
     * @return A uint256 representing the amount owned by the passed address.
     */
    function balanceOf(address owner) public view returns (uint256) {
        return _balances[owner];
    }

    /**
     * @dev Function to check the amount of tokens that an owner allowed to a spender.
     * @param owner address The address which owns the funds.
     * @param spender address The address which will spend the funds.
     * @return A uint256 specifying the amount of tokens still available for the spender.
     */
    function allowance(address owner, address spender) public view returns (uint256) {
        return _allowed[owner][spender];
    }

    /**
     * @dev Transfer token to a specified address
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     */
    function transfer(address to, uint256 value) public returns (bool) {
        _transfer(msg.sender, to, value);
        return true;
    }

    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
     * Beware that changing an allowance with this method brings the risk that someone may use both the old
     * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
     * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     */
    function approve(address spender, uint256 value) public returns (bool) {
        _approve(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev Transfer tokens from one address to another.
     * Note that while this function emits an Approval event, this is not required as per the specification,
     * and other compliant implementations may not emit the event.
     * @param from address The address which you want to send tokens from
     * @param to address The address which you want to transfer to
     * @param value uint256 the amount of tokens to be transferred
     */
    function transferFrom(address from, address to, uint256 value) public returns (bool) {
        _transfer(from, to, value);
        _approve(from, msg.sender, _allowed[from][msg.sender].sub(value));
        return true;
    }

    /**
     * @dev Increase the amount of tokens that an owner allowed to a spender.
     * approve should be called when _allowed[msg.sender][spender] == 0. To increment
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param addedValue The amount of tokens to increase the allowance by.
     */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowed[msg.sender][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner allowed to a spender.
     * approve should be called when _allowed[msg.sender][spender] == 0. To decrement
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowed[msg.sender][spender].sub(subtractedValue));
        return true;
    }

    /**
     * @dev Transfer token for a specified addresses
     * @param from The address to transfer from.
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     */
    function _transfer(address from, address to, uint256 value) internal {
        require(to != address(0));

        _balances[from] = _balances[from].sub(value);
        _balances[to] = _balances[to].add(value);
        emit Transfer(from, to, value);
    }

    /**
     * @dev Internal function that mints an amount of the token and assigns it to
     * an account. This encapsulates the modification of balances such that the
     * proper events are emitted.
     * @param account The account that will receive the created tokens.
     * @param value The amount that will be created.
     */
    function _mint(address account, uint256 value) internal {
        require(account != address(0));

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

    /**
     * @dev Internal function that burns an amount of the token of a given
     * account.
     * @param account The account whose tokens will be burnt.
     * @param value The amount that will be burnt.
     */
    function _burn(address account, uint256 value) internal {
        require(account != address(0));

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

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

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

    /**
     * @dev Internal function that burns an amount of the token of a given
     * account, deducting from the sender's allowance for said account. Uses the
     * internal burn function.
     * Emits an Approval event (reflecting the reduced allowance).
     * @param account The account whose tokens will be burnt.
     * @param value The amount that will be burnt.
     */
    function _burnFrom(address account, uint256 value) internal {
        _burn(account, value);
        _approve(account, msg.sender, _allowed[account][msg.sender].sub(value));
    }
}

// File: openzeppelin-solidity/contracts/access/Roles.sol
/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
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(account != address(0));
        require(!has(role, account));

        role.bearer[account] = true;
    }

    /**
     * @dev remove an account's access to this role
     */
    function remove(Role storage role, address account) internal {
        require(account != address(0));
        require(has(role, account));

        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));
        return role.bearer[account];
    }
}

// File: openzeppelin-solidity/contracts/access/roles/MinterRole.sol

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

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

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20Mintable.sol


/**
 * @title ERC20Mintable
 * @dev ERC20 minting logic
 */
contract ERC20Mintable is ERC20, MinterRole {
    /**
     * @dev Function to mint tokens
     * @param to The address that will receive the minted tokens.
     * @param value The amount of tokens to mint.
     * @return A boolean that indicates if the operation was successful.
     */
    function mint(address to, uint256 value) public onlyMinter returns (bool) {
        _mint(to, value);
        return true;
    }
}

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20Capped.sol

/**
 * @title Capped token
 * @dev Mintable token with a token cap.
 */
contract ERC20Capped is ERC20Mintable {
    uint256 private _cap;

    constructor (uint256 cap) public {
        require(cap > 0);
        _cap = cap;
    }

    /**
     * @return the cap for the token minting.
     */
    function cap() public view returns (uint256) {
        return _cap;
    }

    function _mint(address account, uint256 value) internal {
        require(totalSupply().add(value) <= _cap);
        super._mint(account, value);
    }
}

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20Burnable.sol

/**
 * @title Burnable Token
 * @dev Token that can be irreversibly burned (destroyed).
 */
contract ERC20Burnable is ERC20 {
    /**
     * @dev Burns a specific amount of tokens.
     * @param value The amount of token to be burned.
     */
    function burn(uint256 value) public {
        _burn(msg.sender, value);
    }

    /**
     * @dev Burns a specific amount of tokens from the target address and decrements allowance
     * @param from address The account whose tokens will be burned.
     * @param value uint256 The amount of token to be burned.
     */
    function burnFrom(address from, uint256 value) public {
        _burnFrom(from, value);
    }
}

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20Detailed.sol

/**
 * @title ERC20Detailed token
 * @dev The decimals are only for visualization purposes.
 * All the operations are done using the smallest and indivisible token unit,
 * just as on Ethereum all the operations are done in wei.
 */
contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

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

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

    /**
     * @return the symbol of the token.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @return the number of decimals of the token.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }
}

// File: openzeppelin-solidity/contracts/access/roles/PauserRole.sol

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

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

// File: openzeppelin-solidity/contracts/lifecycle/Pausable.sol

/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is PauserRole {
    event Paused(address account);
    event Unpaused(address account);

    bool private _paused;

    constructor () internal {
        _paused = false;
    }

    /**
     * @return true if the contract is paused, 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);
        _;
    }

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

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

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

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20Pausable.sol


/**
 * @title Pausable token
 * @dev ERC20 modified with pausable transfers.
 */
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 success) {
        return super.increaseAllowance(spender, addedValue);
    }

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

// File: contracts/eraswaptoken.sol
contract Eraswap is ERC20Detailed,ERC20Burnable,ERC20Capped,ERC20Pausable {

event NRTManagerAdded(address NRTManager);

    constructor()
        public
         ERC20Detailed ("Era Swap", "ES", 18) ERC20Capped(9100000000000000000000000000) {
             mint(msg.sender, 910000000000000000000000000);
        }
        
        
    /**
    * @dev Function to add NRT Manager to have minting rights
    * It will transfer the minting rights to NRTManager and revokes it from existing minter
    * @param NRTManager Address of NRT Manager C ontract
    */
    function AddNRTManager(address NRTManager) public onlyMinter returns (bool) {
        addMinter(NRTManager);
        addPauser(NRTManager);
        renounceMinter();
        renouncePauser();
        emit NRTManagerAdded(NRTManager);
        return true;
      }

}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"NRTManager","type":"address"}],"name":"AddNRTManager","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":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":"owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":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":"success","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":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"NRTManager","type":"address"}],"name":"NRTManagerAdded","type":"event"},{"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"}]

60806040523480156200001157600080fd5b50604080518082018252600881527f457261205377617000000000000000000000000000000000000000000000000060208083019182528351808501909452600284527f45530000000000000000000000000000000000000000000000000000000000009084015281516b1d6757f47b1c8ef70c00000093916012916200009b91600091620003ea565b508151620000b1906001906020850190620003ea565b506002805460ff191660ff9290921691909117905550620000db9050336200012e602090811b901c565b60008111620000e957600080fd5b600755620000fe3362000180602090811b901c565b6009805460ff1916905562000127336b02f0bbfed91c74b24e000000620001d2602090811b901c565b506200048c565b620001498160066200020a60201b62000ea31790919060201c565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b6200019b8160086200020a60201b62000ea31790919060201c565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b6000620001e5336200026060201b60201c565b620001ef57600080fd5b6200020183836200028360201b60201c565b50600192915050565b6001600160a01b0381166200021e57600080fd5b620002308282620002d660201b60201c565b156200023b57600080fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60006200027d826006620002d660201b62000a521790919060201c565b92915050565b600754620002af826200029b6200030c60201b60201c565b6200031360201b62000d9f1790919060201c565b1115620002bb57600080fd5b620002d282826200032d60201b62000db11760201c565b5050565b60006001600160a01b038216620002ec57600080fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6005545b90565b6000828201838110156200032657600080fd5b9392505050565b6001600160a01b0382166200034157600080fd5b6200035d816005546200031360201b62000d9f1790919060201c565b6005556001600160a01b0382166000908152600360209081526040909120546200039291839062000d9f62000313821b17901c565b6001600160a01b03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200042d57805160ff19168380011785556200045d565b828001600101855582156200045d579182015b828111156200045d57825182559160200191906001019062000440565b506200046b9291506200046f565b5090565b6200031091905b808211156200046b576000815560010162000476565b610f1b806200049c6000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c80635c975abb116100de57806395d89b4111610097578063a457c2d711610071578063a457c2d71461043c578063a9059cbb14610468578063aa271e1a14610494578063dd62ed3e146104ba57610173565b806395d89b4114610406578063983b2d561461040e578063986502751461043457610173565b80635c975abb146103765780636ef8d66d1461037e57806370a082311461038657806379cc6790146103ac57806382dc1ec4146103d85780638456cb59146103fe57610173565b8063382b5e4511610130578063382b5e45146102ab57806339509351146102d15780633f4ba83a146102fd57806340c10f191461030757806342966c681461033357806346fbf68e1461035057610173565b806306fdde0314610178578063095ea7b3146101f557806318160ddd1461023557806323b872dd1461024f578063313ce56714610285578063355274ea146102a3575b600080fd5b6101806104e8565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ba5781810151838201526020016101a2565b50505050905090810190601f1680156101e75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102216004803603604081101561020b57600080fd5b506001600160a01b03813516906020013561057e565b604080519115158252519081900360200190f35b61023d6105a2565b60408051918252519081900360200190f35b6102216004803603606081101561026557600080fd5b506001600160a01b038135811691602081013590911690604001356105a8565b61028d6105ce565b6040805160ff9092168252519081900360200190f35b61023d6105d7565b610221600480360360208110156102c157600080fd5b50356001600160a01b03166105dd565b610221600480360360408110156102e757600080fd5b506001600160a01b038135169060200135610657565b610305610674565b005b6102216004803603604081101561031d57600080fd5b506001600160a01b0381351690602001356106d4565b6103056004803603602081101561034957600080fd5b50356106fb565b6102216004803603602081101561036657600080fd5b50356001600160a01b0316610708565b610221610721565b61030561072a565b61023d6004803603602081101561039c57600080fd5b50356001600160a01b0316610735565b610305600480360360408110156103c257600080fd5b506001600160a01b038135169060200135610750565b610305600480360360208110156103ee57600080fd5b50356001600160a01b031661075e565b610305610779565b6101806107dd565b6103056004803603602081101561042457600080fd5b50356001600160a01b031661083d565b610305610858565b6102216004803603604081101561045257600080fd5b506001600160a01b038135169060200135610861565b6102216004803603604081101561047e57600080fd5b506001600160a01b03813516906020013561087e565b610221600480360360208110156104aa57600080fd5b50356001600160a01b031661089b565b61023d600480360360408110156104d057600080fd5b506001600160a01b03813581169160200135166108ae565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105745780601f1061054957610100808354040283529160200191610574565b820191906000526020600020905b81548152906001019060200180831161055757829003601f168201915b5050505050905090565b60095460009060ff161561059157600080fd5b61059b83836108d9565b9392505050565b60055490565b60095460009060ff16156105bb57600080fd5b6105c68484846108e6565b949350505050565b60025460ff1690565b60075490565b60006105e83361089b565b6105f157600080fd5b6105fa8261083d565b6106038261075e565b61060b610858565b61061361072a565b604080516001600160a01b038416815290517f73ccc9776a38bbcf5eedad6b771d6c1ab0827eac87365a1059505d044c2475b49181900360200190a1506001919050565b60095460009060ff161561066a57600080fd5b61059b838361093d565b61067d33610708565b61068657600080fd5b60095460ff1661069557600080fd5b6009805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b60006106df3361089b565b6106e857600080fd5b6106f28383610979565b50600192915050565b61070533826109a9565b50565b600061071b60088363ffffffff610a5216565b92915050565b60095460ff1690565b61073333610a87565b565b6001600160a01b031660009081526003602052604090205490565b61075a8282610acf565b5050565b61076733610708565b61077057600080fd5b61070581610b14565b61078233610708565b61078b57600080fd5b60095460ff161561079b57600080fd5b6009805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156105745780601f1061054957610100808354040283529160200191610574565b6108463361089b565b61084f57600080fd5b61070581610b5c565b61073333610ba4565b60095460009060ff161561087457600080fd5b61059b8383610bec565b60095460009060ff161561089157600080fd5b61059b8383610c28565b600061071b60068363ffffffff610a5216565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b60006106f2338484610c35565b60006108f3848484610cbd565b6001600160a01b03841660009081526004602090815260408083203380855292529091205461093391869161092e908663ffffffff610d8a16565b610c35565b5060019392505050565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916106f291859061092e908663ffffffff610d9f16565b600754610994826109886105a2565b9063ffffffff610d9f16565b111561099f57600080fd5b61075a8282610db1565b6001600160a01b0382166109bc57600080fd5b6005546109cf908263ffffffff610d8a16565b6005556001600160a01b0382166000908152600360205260409020546109fb908263ffffffff610d8a16565b6001600160a01b0383166000818152600360209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b60006001600160a01b038216610a6757600080fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b610a9860088263ffffffff610e5b16565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b610ad982826109a9565b6001600160a01b03821660009081526004602090815260408083203380855292529091205461075a91849161092e908563ffffffff610d8a16565b610b2560088263ffffffff610ea316565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b610b6d60068263ffffffff610ea316565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610bb560068263ffffffff610e5b16565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916106f291859061092e908663ffffffff610d8a16565b60006106f2338484610cbd565b6001600160a01b038216610c4857600080fd5b6001600160a01b038316610c5b57600080fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038216610cd057600080fd5b6001600160a01b038316600090815260036020526040902054610cf9908263ffffffff610d8a16565b6001600160a01b038085166000908152600360205260408082209390935590841681522054610d2e908263ffffffff610d9f16565b6001600160a01b0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115610d9957600080fd5b50900390565b60008282018381101561059b57600080fd5b6001600160a01b038216610dc457600080fd5b600554610dd7908263ffffffff610d9f16565b6005556001600160a01b038216600090815260036020526040902054610e03908263ffffffff610d9f16565b6001600160a01b03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038116610e6e57600080fd5b610e788282610a52565b610e8157600080fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6001600160a01b038116610eb657600080fd5b610ec08282610a52565b15610eca57600080fd5b6001600160a01b0316600090815260209190915260409020805460ff1916600117905556fea165627a7a7230582045b54570af2c9f37cb3252eee2dc8e73aad3317aa188e35d04a557004b3f56aa0029

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c80635c975abb116100de57806395d89b4111610097578063a457c2d711610071578063a457c2d71461043c578063a9059cbb14610468578063aa271e1a14610494578063dd62ed3e146104ba57610173565b806395d89b4114610406578063983b2d561461040e578063986502751461043457610173565b80635c975abb146103765780636ef8d66d1461037e57806370a082311461038657806379cc6790146103ac57806382dc1ec4146103d85780638456cb59146103fe57610173565b8063382b5e4511610130578063382b5e45146102ab57806339509351146102d15780633f4ba83a146102fd57806340c10f191461030757806342966c681461033357806346fbf68e1461035057610173565b806306fdde0314610178578063095ea7b3146101f557806318160ddd1461023557806323b872dd1461024f578063313ce56714610285578063355274ea146102a3575b600080fd5b6101806104e8565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ba5781810151838201526020016101a2565b50505050905090810190601f1680156101e75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102216004803603604081101561020b57600080fd5b506001600160a01b03813516906020013561057e565b604080519115158252519081900360200190f35b61023d6105a2565b60408051918252519081900360200190f35b6102216004803603606081101561026557600080fd5b506001600160a01b038135811691602081013590911690604001356105a8565b61028d6105ce565b6040805160ff9092168252519081900360200190f35b61023d6105d7565b610221600480360360208110156102c157600080fd5b50356001600160a01b03166105dd565b610221600480360360408110156102e757600080fd5b506001600160a01b038135169060200135610657565b610305610674565b005b6102216004803603604081101561031d57600080fd5b506001600160a01b0381351690602001356106d4565b6103056004803603602081101561034957600080fd5b50356106fb565b6102216004803603602081101561036657600080fd5b50356001600160a01b0316610708565b610221610721565b61030561072a565b61023d6004803603602081101561039c57600080fd5b50356001600160a01b0316610735565b610305600480360360408110156103c257600080fd5b506001600160a01b038135169060200135610750565b610305600480360360208110156103ee57600080fd5b50356001600160a01b031661075e565b610305610779565b6101806107dd565b6103056004803603602081101561042457600080fd5b50356001600160a01b031661083d565b610305610858565b6102216004803603604081101561045257600080fd5b506001600160a01b038135169060200135610861565b6102216004803603604081101561047e57600080fd5b506001600160a01b03813516906020013561087e565b610221600480360360208110156104aa57600080fd5b50356001600160a01b031661089b565b61023d600480360360408110156104d057600080fd5b506001600160a01b03813581169160200135166108ae565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105745780601f1061054957610100808354040283529160200191610574565b820191906000526020600020905b81548152906001019060200180831161055757829003601f168201915b5050505050905090565b60095460009060ff161561059157600080fd5b61059b83836108d9565b9392505050565b60055490565b60095460009060ff16156105bb57600080fd5b6105c68484846108e6565b949350505050565b60025460ff1690565b60075490565b60006105e83361089b565b6105f157600080fd5b6105fa8261083d565b6106038261075e565b61060b610858565b61061361072a565b604080516001600160a01b038416815290517f73ccc9776a38bbcf5eedad6b771d6c1ab0827eac87365a1059505d044c2475b49181900360200190a1506001919050565b60095460009060ff161561066a57600080fd5b61059b838361093d565b61067d33610708565b61068657600080fd5b60095460ff1661069557600080fd5b6009805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b60006106df3361089b565b6106e857600080fd5b6106f28383610979565b50600192915050565b61070533826109a9565b50565b600061071b60088363ffffffff610a5216565b92915050565b60095460ff1690565b61073333610a87565b565b6001600160a01b031660009081526003602052604090205490565b61075a8282610acf565b5050565b61076733610708565b61077057600080fd5b61070581610b14565b61078233610708565b61078b57600080fd5b60095460ff161561079b57600080fd5b6009805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156105745780601f1061054957610100808354040283529160200191610574565b6108463361089b565b61084f57600080fd5b61070581610b5c565b61073333610ba4565b60095460009060ff161561087457600080fd5b61059b8383610bec565b60095460009060ff161561089157600080fd5b61059b8383610c28565b600061071b60068363ffffffff610a5216565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b60006106f2338484610c35565b60006108f3848484610cbd565b6001600160a01b03841660009081526004602090815260408083203380855292529091205461093391869161092e908663ffffffff610d8a16565b610c35565b5060019392505050565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916106f291859061092e908663ffffffff610d9f16565b600754610994826109886105a2565b9063ffffffff610d9f16565b111561099f57600080fd5b61075a8282610db1565b6001600160a01b0382166109bc57600080fd5b6005546109cf908263ffffffff610d8a16565b6005556001600160a01b0382166000908152600360205260409020546109fb908263ffffffff610d8a16565b6001600160a01b0383166000818152600360209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b60006001600160a01b038216610a6757600080fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b610a9860088263ffffffff610e5b16565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b610ad982826109a9565b6001600160a01b03821660009081526004602090815260408083203380855292529091205461075a91849161092e908563ffffffff610d8a16565b610b2560088263ffffffff610ea316565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b610b6d60068263ffffffff610ea316565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610bb560068263ffffffff610e5b16565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916106f291859061092e908663ffffffff610d8a16565b60006106f2338484610cbd565b6001600160a01b038216610c4857600080fd5b6001600160a01b038316610c5b57600080fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038216610cd057600080fd5b6001600160a01b038316600090815260036020526040902054610cf9908263ffffffff610d8a16565b6001600160a01b038085166000908152600360205260408082209390935590841681522054610d2e908263ffffffff610d9f16565b6001600160a01b0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115610d9957600080fd5b50900390565b60008282018381101561059b57600080fd5b6001600160a01b038216610dc457600080fd5b600554610dd7908263ffffffff610d9f16565b6005556001600160a01b038216600090815260036020526040902054610e03908263ffffffff610d9f16565b6001600160a01b03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038116610e6e57600080fd5b610e788282610a52565b610e8157600080fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6001600160a01b038116610eb657600080fd5b610ec08282610a52565b15610eca57600080fd5b6001600160a01b0316600090815260209190915260409020805460ff1916600117905556fea165627a7a7230582045b54570af2c9f37cb3252eee2dc8e73aad3317aa188e35d04a557004b3f56aa0029

Deployed Bytecode Sourcemap

19139:852:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19139:852:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15302:83;;;:::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;15302:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18579:140;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18579:140:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;3734:91;;;:::i;:::-;;;;;;;;;;;;;;;;18411:160;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18411:160:0;;;;;;;;;;;;;;;;;:::i;15618:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13620:75;;;:::i;19717:269::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19717:269:0;-1:-1:-1;;;;;19717:269:0;;:::i;18727:175::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18727:175:0;;;;;;;;:::i;17936:118::-;;;:::i;:::-;;13098:131;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13098:131:0;;;;;;;;:::i;14194:79::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14194:79:0;;:::i;16143:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16143:109:0;-1:-1:-1;;;;;16143:109:0;;:::i;17189:78::-;;;:::i;16360:77::-;;;:::i;4044:106::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4044:106:0;-1:-1:-1;;;;;4044:106:0;;:::i;14527:95::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14527:95:0;;;;;;;;:::i;16260:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16260:92:0;-1:-1:-1;;;;;16260:92:0;;:::i;17725:116::-;;;:::i;15452:87::-;;;:::i;12208:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12208:92:0;-1:-1:-1;;;;;12208:92:0;;:::i;12308:77::-;;;:::i;18910:185::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18910:185:0;;;;;;;;:::i;18271:132::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18271:132:0;;;;;;;;:::i;12091:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12091:109:0;-1:-1:-1;;;;;12091:109:0;;:::i;4489:131::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4489:131:0;;;;;;;;;;:::i;15302:83::-;15372:5;15365:12;;;;;;;;-1:-1:-1;;15365:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15339:13;;15365:12;;15372:5;;15365:12;;15372:5;15365:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15302:83;:::o;18579:140::-;17426:7;;18658:4;;17426:7;;17425:8;17417:17;;;;;;18682:29;18696:7;18705:5;18682:13;:29::i;:::-;18675:36;18579:140;-1:-1:-1;;;18579:140:0:o;3734:91::-;3805:12;;3734:91;:::o;18411:160::-;17426:7;;18504:4;;17426:7;;17425:8;17417:17;;;;;;18528:35;18547:4;18553:2;18557:5;18528:18;:35::i;:::-;18521:42;18411:160;-1:-1:-1;;;;18411:160:0:o;15618:83::-;15684:9;;;;15618:83;:::o;13620:75::-;13683:4;;13620:75;:::o;19717:269::-;19787:4;12042:20;12051:10;12042:8;:20::i;:::-;12034:29;;;;;;19804:21;19814:10;19804:9;:21::i;:::-;19836;19846:10;19836:9;:21::i;:::-;19868:16;:14;:16::i;:::-;19895;:14;:16::i;:::-;19927:27;;;-1:-1:-1;;;;;19927:27:0;;;;;;;;;;;;;;;-1:-1:-1;19972:4:0;19717:269;;;:::o;18727:175::-;17426:7;;18818:12;;17426:7;;17425:8;17417:17;;;;;;18850:44;18874:7;18883:10;18850:23;:44::i;17936:118::-;16094:20;16103:10;16094:8;:20::i;:::-;16086:29;;;;;;17605:7;;;;17597:16;;;;;;17995:7;:15;;-1:-1:-1;;17995:15:0;;;18026:20;;;18035:10;18026:20;;;;;;;;;;;;;17936:118::o;13098:131::-;13166:4;12042:20;12051:10;12042:8;:20::i;:::-;12034:29;;;;;;13183:16;13189:2;13193:5;13183;:16::i;:::-;-1:-1:-1;13217:4:0;13098:131;;;;:::o;14194:79::-;14241:24;14247:10;14259:5;14241;:24::i;:::-;14194:79;:::o;16143:109::-;16199:4;16223:21;:8;16236:7;16223:21;:12;:21;:::i;:::-;16216:28;16143:109;-1:-1:-1;;16143:109:0:o;17189:78::-;17252:7;;;;17189:78;:::o;16360:77::-;16404:25;16418:10;16404:13;:25::i;:::-;16360:77::o;4044:106::-;-1:-1:-1;;;;;4126:16:0;4099:7;4126:16;;;:9;:16;;;;;;;4044:106::o;14527:95::-;14592:22;14602:4;14608:5;14592:9;:22::i;:::-;14527:95;;:::o;16260:92::-;16094:20;16103:10;16094:8;:20::i;:::-;16086:29;;;;;;16325:19;16336:7;16325:10;:19::i;17725:116::-;16094:20;16103:10;16094:8;:20::i;:::-;16086:29;;;;;;17426:7;;;;17425:8;17417:17;;;;;;17785:7;:14;;-1:-1:-1;;17785:14:0;17795:4;17785:14;;;17815:18;;;17822:10;17815:18;;;;;;;;;;;;;17725:116::o;15452:87::-;15524:7;15517:14;;;;;;;;-1:-1:-1;;15517:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15491:13;;15517:14;;15524:7;;15517:14;;15524:7;15517:14;;;;;;;;;;;;;;;;;;;;;;;;12208:92;12042:20;12051:10;12042:8;:20::i;:::-;12034:29;;;;;;12273:19;12284:7;12273:10;:19::i;12308:77::-;12352:25;12366:10;12352:13;:25::i;18910:185::-;17426:7;;19006:12;;17426:7;;17425:8;17417:17;;;;;;19038:49;19062:7;19071:15;19038:23;:49::i;18271:132::-;17426:7;;18346:4;;17426:7;;17425:8;17417:17;;;;;;18370:25;18385:2;18389:5;18370:14;:25::i;12091:109::-;12147:4;12171:21;:8;12184:7;12171:21;:12;:21;:::i;4489:131::-;-1:-1:-1;;;;;4588:15:0;;;4561:7;4588:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;4489:131::o;5581:148::-;5646:4;5663:36;5672:10;5684:7;5693:5;5663:8;:36::i;6202:228::-;6281:4;6298:26;6308:4;6314:2;6318:5;6298:9;:26::i;:::-;-1:-1:-1;;;;;6362:14:0;;;;;;:8;:14;;;;;;;;6350:10;6362:26;;;;;;;;;6335:65;;6344:4;;6362:37;;6393:5;6362:37;:30;:37;:::i;:::-;6335:8;:65::i;:::-;-1:-1:-1;6418:4:0;6202:228;;;;;:::o;6956:203::-;7062:10;7036:4;7083:20;;;:8;:20;;;;;;;;-1:-1:-1;;;;;7083:29:0;;;;;;;;;;7036:4;;7053:76;;7074:7;;7083:45;;7117:10;7083:45;:33;:45;:::i;13703:154::-;13806:4;;13778:24;13796:5;13778:13;:11;:13::i;:::-;:17;:24;:17;:24;:::i;:::-;:32;;13770:41;;;;;;13822:27;13834:7;13843:5;13822:11;:27::i;9247:269::-;-1:-1:-1;;;;;9322:21:0;;9314:30;;;;;;9372:12;;:23;;9389:5;9372:23;:16;:23;:::i;:::-;9357:12;:38;-1:-1:-1;;;;;9427:18:0;;;;;;:9;:18;;;;;;:29;;9450:5;9427:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;9406:18:0;;;;;;:9;:18;;;;;;;;:50;;;;9472:36;;;;;;;9406:18;;9472:36;;;;;;;;;;;9247:269;;:::o;11484:165::-;11556:4;-1:-1:-1;;;;;11581:21:0;;11573:30;;;;;;-1:-1:-1;;;;;;11621:20:0;:11;:20;;;;;;;;;;;;;;;11484:165::o;16575:130::-;16635:24;:8;16651:7;16635:24;:15;:24;:::i;:::-;16675:22;;-1:-1:-1;;;;;16675:22:0;;;;;;;;16575:130;:::o;10442:182::-;10513:21;10519:7;10528:5;10513;:21::i;:::-;-1:-1:-1;;;;;10575:17:0;;;;;;:8;:17;;;;;;;;10563:10;10575:29;;;;;;;;;10545:71;;10554:7;;10575:40;;10609:5;10575:40;:33;:40;:::i;16445:122::-;16502:21;:8;16515:7;16502:21;:12;:21;:::i;:::-;16539:20;;-1:-1:-1;;;;;16539:20:0;;;;;;;;16445:122;:::o;12393:::-;12450:21;:8;12463:7;12450:21;:12;:21;:::i;:::-;12487:20;;-1:-1:-1;;;;;12487:20:0;;;;;;;;12393:122;:::o;12523:130::-;12583:24;:8;12599:7;12583:24;:15;:24;:::i;:::-;12623:22;;-1:-1:-1;;;;;12623:22:0;;;;;;;;12523:130;:::o;7690:213::-;7801:10;7775:4;7822:20;;;:8;:20;;;;;;;;-1:-1:-1;;;;;7822:29:0;;;;;;;;;;7775:4;;7792:81;;7813:7;;7822:50;;7856:15;7822:50;:33;:50;:::i;4794:140::-;4855:4;4872:32;4882:10;4894:2;4898:5;4872:9;:32::i;9789:254::-;-1:-1:-1;;;;;9882:21:0;;9874:30;;;;;;-1:-1:-1;;;;;9923:19:0;;9915:28;;;;;;-1:-1:-1;;;;;9956:15:0;;;;;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;:32;;;10004:31;;;;;;;;;;;;;;;;;9789:254;;;:::o;8130:262::-;-1:-1:-1;;;;;8218:16:0;;8210:25;;;;;;-1:-1:-1;;;;;8266:15:0;;;;;;:9;:15;;;;;;:26;;8286:5;8266:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;8248:15:0;;;;;;;:9;:15;;;;;;:44;;;;8319:13;;;;;;;:24;;8337:5;8319:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;8303:13:0;;;;;;;:9;:13;;;;;;;;;:40;;;;8359:25;;;;;;;8303:13;;8359:25;;;;;;;;;;;;;8130:262;;;:::o;2129:150::-;2187:7;2220:1;2215;:6;;2207:15;;;;;;-1:-1:-1;2245:5:0;;;2129:150::o;2367:::-;2425:7;2457:5;;;2481:6;;;;2473:15;;;;;8744:269;-1:-1:-1;;;;;8819:21:0;;8811:30;;;;;;8869:12;;:23;;8886:5;8869:23;:16;:23;:::i;:::-;8854:12;:38;-1:-1:-1;;;;;8924:18:0;;;;;;:9;:18;;;;;;:29;;8947:5;8924:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;8903:18:0;;;;;;:9;:18;;;;;;;;:50;;;;8969:36;;;;;;;8903:18;;;;8969:36;;;;;;;;;;8744:269;;:::o;11201:189::-;-1:-1:-1;;;;;11281:21:0;;11273:30;;;;;;11322:18;11326:4;11332:7;11322:3;:18::i;:::-;11314:27;;;;;;-1:-1:-1;;;;;11354:20:0;11377:5;11354:20;;;;;;;;;;;:28;;-1:-1:-1;;11354:28:0;;;11201:189::o;10936:186::-;-1:-1:-1;;;;;11013:21:0;;11005:30;;;;;;11055:18;11059:4;11065:7;11055:3;:18::i;:::-;11054:19;11046:28;;;;;;-1:-1:-1;;;;;11087:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;11087:27:0;11110:4;11087:27;;;10936:186::o

Swarm Source

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