ETH Price: $3,328.82 (-0.23%)
 

Overview

Max Total Supply

650,000,000 BOK

Holders

283 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
maksimi4.eth
Balance
2,000 BOK

Value
$0.00
0xffe1ce2814116b47b5f4d20a208b773dcc1fef20
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A P2P platform that allows traders to execute trading commands in a gamified environment.

IEO Information

IEO Start Date : Jun 24, 2019
IEO Launchpad : Bitforex
IEO Price  : $0.023

 

IEO Start Date : Jun 26, 2019
IEO Launchpad : Coineal
IEO Price  : $0.023

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SafeUpgradeableTokenERC20

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-26
*/

/* This code is provided at https://github.com/guylando/EthereumSmartContracts/blob/master/SafeUpgradeableTokenERC20/contracts/SafeUpgradeableTokenERC20.sol */
pragma solidity 0.5.8;

/**
 * @title ERC20 interface
 * @dev see https://eips.ethereum.org/EIPS/eip-20
 */
interface IERC20 {
    function transfer(address to, uint256 value) external returns (bool);

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

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

    function totalSupply() external view returns (uint256);

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

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

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

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

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

        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, "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 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, "SafeMath: subtraction overflow");
        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, "SafeMath: addition overflow");

        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, "SafeMath: modulo by zero");
        return a % b;
    }
}

/**
 * @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(!has(role, account), "Roles: account already has role");
        require(account != address(this), "Roles: account is the contract address");
        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");
        require(account != address(this), "Roles: account is the contract address");
        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];
    }
}

/**
 * Utility library of inline functions on addresses
 */
library Address {
    /**
     * Returns whether the target address is a contract
     * @dev This function will return false if invoked during the constructor of a contract,
     * as the code is not actually created until after the constructor finishes.
     * @param account address of the account to check
     * @return whether the target address is a contract
     */
    function isContract(address account) internal view returns (bool) {
        uint256 size;
        // XXX Currently there is no better way to check if there is a contract in an address
        // than to check the size of the code at that address.
        // See https://ethereum.stackexchange.com/a/14016/36603
        // for more details about how this works.
        // TODO Check this again before the Serenity release, because all addresses will be
        // contracts then.
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }
}

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 * Note Be careful when using SafeERC20 with non compliant token such as Golem token because SafeERC20 functions such as safeTransferFrom will give no indication that transferFrom is not implemented in the token, see: https://github.com/OpenZeppelin/openzeppelin-solidity/issues/1769
 */
library SafeERC20 {
    using SafeMath for uint256;
    using Address for address;

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).add(value);
        callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(value);
        callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves.

        // A Solidity high level call has three parts:
        //  1. The target address is checked to verify it contains contract code
        //  2. The call itself is made, and success asserted
        //  3. The return value is decoded, which in turn checks the size of the returned data.
        // solhint-disable-next-line max-line-length
        require(address(token).isContract(), "SafeERC20: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = address(token).call(data);
        require(success, "SafeERC20: low-level call failed");

        if (returndata.length > 0) { // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
    address internal _owner;

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

    /**
     * @dev The Ownable constructor sets the original `owner` of the contract to the sender
     * account.
     */
    constructor () internal {
        _owner = msg.sender;
        emit OwnershipTransferred(address(0), _owner);
    }

    /**
     * @return the address of the owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(isOwner(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @return true if `msg.sender` is the owner of the contract.
     */
    function isOwner() public view returns (bool) {
        return msg.sender == _owner;
    }

    /**
     * @dev Allows the current owner to transfer control of the contract to a newOwner.
     * @param newOwner The address to transfer ownership to.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers control of the contract to a newOwner.
     * @param newOwner The address to transfer ownership to.
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        require(newOwner != address(this), "Ownable: new owner is the contract address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

/**
 * @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 _allowances;

    uint256 private _totalSupply;
    uint256 private constant MAX_UINT = 2**256 - 1;

    /**
     * @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 _allowances[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) {
        // https://github.com/Giveth/minime/blob/master/contracts/MiniMeToken.sol#L225
        // To change the approve amount you first have to reduce the addresses`
        //  allowance to zero by calling `approve(_spender,0)` if it is not
        //  already 0 to mitigate the race condition described here:
        //  https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
        // Note: this check is not compliant with ERC20 standard, see: https://github.com/OpenZeppelin/openzeppelin-solidity/issues/438
        require((value == 0) || (_allowances[msg.sender][spender] == 0),
            "ERC20: must change allowance to 0 before changing to a different value");

        _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.
     * Note modified such that an allowance of MAX_UINT represents an unlimited amount https://github.com/ethereum/EIPs/issues/717.
     * @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);
        uint256 currentAllowance = _allowances[from][msg.sender];
        if (currentAllowance < MAX_UINT) {
            _approve(from, msg.sender, currentAllowance.sub(value));
        }
        return true;
    }

    /**
     * @dev Increase the amount of tokens that an owner allowed to a spender.
     * approve should be called when _allowances[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) {
        require(addedValue > 0, "ERC20: addedValue value can't be 0");
        _approve(msg.sender, spender, _allowances[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 _allowances[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.
     * Note If requested to decrease more than allowance then sets allowance to 0.
     * @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) {
        require(subtractedValue > 0, "ERC20: decreaseAllowance value can't be 0");
        require(_allowances[msg.sender][spender] > 0, "ERC20: current allowance must not be 0");
        uint256 allowanceToSet;
        if (subtractedValue < _allowances[msg.sender][spender]) {
            allowanceToSet = _allowances[msg.sender][spender].sub(subtractedValue);
        } else {
            allowanceToSet = 0;
        }
        _approve(msg.sender, spender, allowanceToSet);
        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(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(to != address(this), "ERC20: transfer to the contract address");

        _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), "ERC20: mint to the zero address");
        require(account != address(this), "ERC20: mint to the contract address");
        require(value != 0, "ERC20: mint value must be positive");

        _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), "ERC20: burn from the zero address");
        require(account != address(this), "ERC20: burn from the contract address");

        _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(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 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, _allowances[account][msg.sender].sub(value));
    }
}

contract PauserRole {
    using SafeMath for uint256;
    using Roles for Roles.Role;

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

    Roles.Role private _pausers;
    uint256 internal _pausersCount;

    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 removePauser(address account) public onlyPauser {
        _removePauser(account);
    }

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

    function _removePauser(address account) internal {
        require(_pausersCount > 1, "PauserRole: there should always be at least one pauser left");
        _pausersCount = _pausersCount.sub(1);
        _pausers.remove(account);
        emit PauserRemoved(account);
    }
}

/**
 * @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, "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);
    }
}

/**
 * @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, uint256 addedValue) public whenNotPaused returns (bool) {
        return super.increaseAllowance(spender, addedValue);
    }

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

/**
 * @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;
    }
}

/**
 * Upgrade agent interface inspired by Lunyr.
 *
 * Upgrade agent transfers tokens to a new contract.
 * Upgrade agent itself can be the token contract, or just a middle man contract doing the heavy lifting.
 */
contract UpgradeAgent {
    /** Interface marker */
    function isUpgradeAgent() external pure returns (bool) {
        return true;
    }

    function upgradeFrom(address _from, uint256 _value) external;
}

/**
 * @title SafeUpgradeableTokenERC20
 * @dev The deployed contract of the token itself.
 * Upgrade mechanism code review: https://github.com/bokkypoobah/InvestFeedCrowdsaleAudit/blob/master/codereview/UpgradeableToken.md
 */
contract SafeUpgradeableTokenERC20 is ERC20Pausable, ERC20Detailed, Ownable, UpgradeAgent {
    using SafeMath for uint256;

    /** Contract / person who can set the upgrade path. This can be the same as team multisig wallet, as what it is with its default value. */
    address public upgradeMaster;

    /** The next contract where the tokens will be migrated. */
    UpgradeAgent public upgradeAgent;

    /** How many tokens we have upgraded by now. */
    uint256 public totalUpgraded;

    /** Previous token address in case this is an upgraded contract.
     * Note Keeping it public so that everybody can easily get it and verify that the address here is not the current contract address and that it points to the correct contract.
     */
    address public previousToken;

    /**
    * New contract version.
    */
    string public version = "1.0";

    /**
    * Upgrade states.
    *
    * - WaitingForAgent: Token allows upgrade, but we don't have a new agent yet
    * - ReadyToUpgrade: The agent is set, but not a single token has been upgraded yet
    * - Upgrading: Upgrade agent is set and the balance holders can upgrade their tokens
    * - UpgradeFinished: All contract tokens were upgraded (might never happen if some tokens belong to invalid addresses so dont wait for this status)
    *
    */
    enum UpgradeState {WaitingForAgent, ReadyToUpgrade, Upgrading, UpgradeFinished}

    /**
    * Somebody has upgraded some of his tokens.
    */
    event LogUpgrade(address indexed from, address indexed to, uint256 value);

    /**
    * New upgrade agent available.
    */
    event LogUpgradeAgentSet(address indexed agent);

    constructor (address _previousToken, string memory _name, string memory _symbol, uint8 _decimals, uint256 _supply)
        public
        ERC20Detailed(_name, _symbol, _decimals)
    {
        upgradeMaster = msg.sender;
        previousToken = _previousToken;
        /* An upgraded token will be created with total supply of 0 in which case dont call mint */
        if (_supply > 0) {
            _mint(msg.sender, _supply);
        }
    }

    /**
     * @dev Throws if called by any account other than the upgrade master.
     */
    modifier onlyUpgradeMaster() {
        require(msg.sender == upgradeMaster, "caller must be upgradeMaster");
        _;
    }

    /**
     * @dev Throws if called with an invalid address.
     */
    modifier validateAddress(address input) {
        require(input != address(0), "invalid address, shouldnt be 0");
        require(input != address(this), "invalid address, shouldnt be current contract address");
        _;
    }

    /**
    * Allow the token holder to upgrade some of their tokens to a new contract.
    */
    function upgrade(uint256 value) external {
        UpgradeState state = getUpgradeState();
        require(state == UpgradeState.ReadyToUpgrade || state == UpgradeState.Upgrading, "upgrade state does not allow upgrade");
        require(value != 0, "value must be non-zero");

        // Take tokens out from circulation
        _burn(msg.sender, value);
        totalUpgraded = totalUpgraded.add(value);
        emit LogUpgrade(msg.sender, address(upgradeAgent), value);

        // Upgrade agent reissues the tokens
        upgradeAgent.upgradeFrom(msg.sender, value);
    }
    /**
    * Allow to upgrade from previous token if previous token was configured.
    */
    function upgradeFrom(address _from, uint256 _value) external validateAddress(_from) {
        require(previousToken != address(0), "previousToken was not set");
        require(msg.sender == previousToken, "upgradeFrom should only be called by previousToken");
        _mint(_from, _value);
    }

    /**
    * Set an upgrade agent that handles
    */
    function setUpgradeAgent(UpgradeAgent newUpgradeAgent) external onlyUpgradeMaster validateAddress(address(newUpgradeAgent)) {
        require(getUpgradeState() != UpgradeState.Upgrading, "upgrade already started");

        upgradeAgent = newUpgradeAgent;
        emit LogUpgradeAgentSet(address(newUpgradeAgent));

        // Calling non-existent function will revert inside the call without this require error message
        require(newUpgradeAgent.isUpgradeAgent(), "Bad interface");
    }

    /**
    * @dev Get the state of the token upgrade.
    */
    function getUpgradeState() public view returns(UpgradeState) {
        if (address(upgradeAgent) == address(0)) {
            return UpgradeState.WaitingForAgent;
        } else if (totalUpgraded == 0) {
            return UpgradeState.ReadyToUpgrade;
        } else if (totalUpgraded < totalSupply()) {
            return UpgradeState.Upgrading;
        } else {
            return UpgradeState.UpgradeFinished;
        }
    }

    /**
    * @dev Change the upgrade master. This allows us to set a new owner for the upgrade mechanism.
    * @param master The address of the new upgrade master
    */
    function setUpgradeMaster(address master) external onlyUpgradeMaster validateAddress(master) {
        upgradeMaster = master;
    }

    /**
    * @dev Recover tokens transferred to this contract.
    * Note Used to be inside open-zeppelin CanReclaimToken contract.
    * Note Be careful to not pass too much gas when using this function because it uses SafeERC20 which can cause gas drain, see: https://github.com/OpenZeppelin/openzeppelin-solidity/issues/1767
    * Note If the received contract implements balanceOf but does not implement transfer and has a non-reverting fallback function then no tokens will be transfered without any indication of failure, see: https://github.com/OpenZeppelin/openzeppelin-solidity/issues/1769
    * @param _token The address of the token contract
    */
    function recoverToken(IERC20 _token) external onlyOwner {
        uint256 balance = _token.balanceOf(address(this));
        require(balance > 0, "no tokens to recover for received token type");
        SafeERC20.safeTransfer(_token, _owner, balance);
    }

    /**
    * @dev Reclaim ownership of Ownable contracts
    * Note If the received contract does not implement transferOwnership function and has a non-reverting fallback function then no ownership will be transfered without any indication of failure.
    * @param contractInst The instance of the Ownable to be reclaimed.
    */
    function reclaimContract(Ownable contractInst) external onlyOwner {
        contractInst.transferOwnership(_owner);
    }

    /**
    * @dev Reject all ERC223 compatible tokens
    * Note Used to be inside open-zeppelin HasNoTokens contract.
    * @param from address The address that is transferring the tokens
    * @param value uint256 the amount of the specified token
    * @param data Bytes The data passed from the caller.
    */
    function tokenFallback(address from, uint256 value, bytes calldata data) external pure {
        /* Use variables to remove warnings https://github.com/OpenZeppelin/openzeppelin-solidity/commit/b50391862c42857e3ff2388598e52ebab92fc9fa#diff-24aa1138eec9d5dd65b1a8a898e04dd2 */
        from;
        value;
        data;
        revert("this contract does not support receiving ERC223 tokens");
    }

    /**
    * @dev It is possible that funds were sent to this address before the contract was deployed.
    * It is also possible that funds are sent here by mistake using selfdestruct.
    * This function prevents those funds being locked.
    */
    function recoverEther() external onlyOwner {
        require(address(this).balance > 0, "no ether to recover");
        address(uint160(_owner)).transfer(address(this).balance);
    }
}

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":false,"inputs":[{"name":"contractInst","type":"address"}],"name":"reclaimContract","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"upgrade","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":false,"inputs":[],"name":"recoverEther","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"upgradeAgent","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"upgradeMaster","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isUpgradeAgent","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"removePauser","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":"upgradeFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getUpgradeState","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_token","type":"address"}],"name":"recoverToken","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":"from","type":"address"},{"name":"value","type":"uint256"},{"name":"data","type":"bytes"}],"name":"tokenFallback","outputs":[],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[],"name":"totalUpgraded","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newUpgradeAgent","type":"address"}],"name":"setUpgradeAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"previousToken","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"master","type":"address"}],"name":"setUpgradeMaster","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_previousToken","type":"address"},{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_decimals","type":"uint8"},{"name":"_supply","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"LogUpgrade","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"agent","type":"address"}],"name":"LogUpgradeAgentSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"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"}]

60c0604052600360808190527f312e30000000000000000000000000000000000000000000000000000000000060a09081526200004091600d919062000674565b503480156200004e57600080fd5b506040516200326138038062003261833981018060405260a08110156200007457600080fd5b8151602083018051919392830192916401000000008111156200009657600080fd5b82016020810184811115620000aa57600080fd5b8151640100000000811182820187101715620000c557600080fd5b50509291906020018051640100000000811115620000e257600080fd5b82016020810184811115620000f657600080fd5b81516401000000008111828201871017156200011157600080fd5b5050602080830151604090930151919450919250908490849084906200013d90339062000226811b901c565b6005805460ff1916905582516200015c90600690602086019062000674565b5081516200017290600790602085019062000674565b506008805460ff191660ff9290921691909117610100600160a81b03191661010033810291909117918290556040516001600160a01b0391909204169250600091507f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a360098054336001600160a01b031991821617909155600c80549091166001600160a01b03871617905580156200021b576200021b33826200029660201b60201c565b505050505062000719565b6200024360016004546200046d60201b62001a311790919060201c565b6004556200025f600382620004e9602090811b6200239117901c565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b6001600160a01b0382166200030c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6001600160a01b03821630141562000370576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806200323e6023913960400191505060405180910390fd5b80620003c8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180620031d46022913960400191505060405180910390fd5b620003e4816002546200046d60201b62001a311790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200041791839062001a316200046d821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600082820183811015620004e257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b620004fb8282620005f160201b60201c565b156200056857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b038116301415620005cc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180620031f66026913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60006001600160a01b03821662000654576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806200321c6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006b757805160ff1916838001178555620006e7565b82800160010185558215620006e7579182015b82811115620006e7578251825591602001919060010190620006ca565b50620006f5929150620006f9565b5090565b6200071691905b80821115620006f5576000815560010162000700565b90565b612aab80620007296000396000f3fe608060405234801561001057600080fd5b50600436106102115760003560e01c806370a0823111610125578063a457c2d7116100ad578063d7e7088a1161007c578063d7e7088a14610621578063dd62ed3e14610647578063f2fde38b14610675578063f395af961461069b578063ffeb7d75146106a357610211565b8063a457c2d71461053c578063a9059cbb14610568578063c0ee0b8a14610594578063c752ff621461061957610211565b80638456cb59116100f45780638456cb59146104f65780638da5cb5b146104fe5780638f32d59b1461050657806395d89b411461050e5780639be65a601461051657610211565b806370a0823114610452578063753e88e51461047857806382dc1ec4146104a45780638444b391146104ca57610211565b806345977d03116101a85780635c975abb116101775780635c975abb146103f05780635de4ccb0146103f8578063600440cb1461041c57806361d3d7a6146104245780636b2c0f551461042c57610211565b806345977d031461039d57806346fbf68e146103ba57806352d8bfc2146103e057806354fd4d50146103e857610211565b80632aed7f3f116101e45780632aed7f3f14610323578063313ce5671461034b57806339509351146103695780633f4ba83a1461039557610211565b806306fdde0314610216578063095ea7b31461029357806318160ddd146102d357806323b872dd146102ed575b600080fd5b61021e6106c9565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610258578181015183820152602001610240565b50505050905090810190601f1680156102855780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102bf600480360360408110156102a957600080fd5b506001600160a01b038135169060200135610760565b604080519115158252519081900360200190f35b6102db6107c5565b60408051918252519081900360200190f35b6102bf6004803603606081101561030357600080fd5b506001600160a01b038135811691602081013590911690604001356107cb565b6103496004803603602081101561033957600080fd5b50356001600160a01b0316610832565b005b6103536108ed565b6040805160ff9092168252519081900360200190f35b6102bf6004803603604081101561037f57600080fd5b506001600160a01b0381351690602001356108f6565b610349610954565b610349600480360360208110156103b357600080fd5b5035610a34565b6102bf600480360360208110156103d057600080fd5b50356001600160a01b0316610bcf565b610349610be8565b61021e610ccc565b6102bf610d5a565b610400610d63565b604080516001600160a01b039092168252519081900360200190f35b610400610d72565b6102bf610d81565b6103496004803603602081101561044257600080fd5b50356001600160a01b0316610d86565b6102db6004803603602081101561046857600080fd5b50356001600160a01b0316610dd6565b6103496004803603604081101561048e57600080fd5b506001600160a01b038135169060200135610df1565b610349600480360360208110156104ba57600080fd5b50356001600160a01b0316610f56565b6104d2610fa6565b604051808260038111156104e257fe5b60ff16815260200191505060405180910390f35b610349610ff1565b6104006110cb565b6102bf6110df565b61021e6110f5565b6103496004803603602081101561052c57600080fd5b50356001600160a01b0316611156565b6102bf6004803603604081101561055257600080fd5b506001600160a01b03813516906020013561127b565b6102bf6004803603604081101561057e57600080fd5b506001600160a01b0381351690602001356112d9565b610349600480360360608110156105aa57600080fd5b6001600160a01b03823516916020810135918101906060810160408201356401000000008111156105da57600080fd5b8201836020820111156105ec57600080fd5b8035906020019184600183028401116401000000008311171561060e57600080fd5b509092509050611337565b6102db611371565b6103496004803603602081101561063757600080fd5b50356001600160a01b0316611377565b6102db6004803603604081101561065d57600080fd5b506001600160a01b03813581169160200135166115ee565b6103496004803603602081101561068b57600080fd5b50356001600160a01b0316611619565b61040061166c565b610349600480360360208110156106b957600080fd5b50356001600160a01b031661167b565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107555780601f1061072a57610100808354040283529160200191610755565b820191906000526020600020905b81548152906001019060200180831161073857829003601f168201915b505050505090505b90565b60055460009060ff16156107b45760408051600160e51b62461bcd0281526020600482015260106024820152600160821b6f14185d5cd8589b194e881c185d5cd95902604482015290519081900360640190fd5b6107be83836117aa565b9392505050565b60025490565b60055460009060ff161561081f5760408051600160e51b62461bcd0281526020600482015260106024820152600160821b6f14185d5cd8589b194e881c185d5cd95902604482015290519081900360640190fd5b61082a84848461182c565b949350505050565b61083a6110df565b61087c5760408051600160e51b62461bcd02815260206004820181905260248201526000805160206128c1833981519152604482015290519081900360640190fd5b60085460408051600160e01b63f2fde38b0281526101009092046001600160a01b03908116600484015290519083169163f2fde38b91602480830192600092919082900301818387803b1580156108d257600080fd5b505af11580156108e6573d6000803e3d6000fd5b5050505050565b60085460ff1690565b60055460009060ff161561094a5760408051600160e51b62461bcd0281526020600482015260106024820152600160821b6f14185d5cd8589b194e881c185d5cd95902604482015290519081900360640190fd5b6107be838361188c565b61095d33610bcf565b61099b57604051600160e51b62461bcd0281526004018080602001828103825260308152602001806126516030913960400191505060405180910390fd5b60055460ff166109f55760408051600160e51b62461bcd02815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015290519081900360640190fd5b6005805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b6000610a3e610fa6565b90506001816003811115610a4e57fe5b1480610a6557506002816003811115610a6357fe5b145b610aa357604051600160e51b62461bcd0281526004018080602001828103825260248152602001806127876024913960400191505060405180910390fd5b81610af85760408051600160e51b62461bcd02815260206004820152601660248201527f76616c7565206d757374206265206e6f6e2d7a65726f00000000000000000000604482015290519081900360640190fd5b610b02338361190a565b600b54610b15908363ffffffff611a3116565b600b55600a546040805184815290516001600160a01b039092169133917f947637ad74c8018986ee33595c626316230f52029a0129e84fc7212b7b2c7502919081900360200190a3600a5460408051600160e01b63753e88e50281523360048201526024810185905290516001600160a01b039092169163753e88e59160448082019260009290919082900301818387803b158015610bb357600080fd5b505af1158015610bc7573d6000803e3d6000fd5b505050505050565b6000610be260038363ffffffff611a8e16565b92915050565b610bf06110df565b610c325760408051600160e51b62461bcd02815260206004820181905260248201526000805160206128c1833981519152604482015290519081900360640190fd5b3031610c885760408051600160e51b62461bcd02815260206004820152601360248201527f6e6f20657468657220746f207265636f76657200000000000000000000000000604482015290519081900360640190fd5b6008546040516001600160a01b036101009092049190911690303180156108fc02916000818181858888f19350505050158015610cc9573d6000803e3d6000fd5b50565b600d805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610d525780601f10610d2757610100808354040283529160200191610d52565b820191906000526020600020905b815481529060010190602001808311610d3557829003601f168201915b505050505081565b60055460ff1690565b600a546001600160a01b031681565b6009546001600160a01b031681565b600190565b610d8f33610bcf565b610dcd57604051600160e51b62461bcd0281526004018080602001828103825260308152602001806126516030913960400191505060405180910390fd5b610cc981611af8565b6001600160a01b031660009081526020819052604090205490565b816001600160a01b038116610e505760408051600160e51b62461bcd02815260206004820152601e60248201527f696e76616c696420616464726573732c2073686f756c646e7420626520300000604482015290519081900360640190fd5b6001600160a01b038116301415610e9b57604051600160e51b62461bcd0281526004018080602001828103825260358152602001806129a46035913960400191505060405180910390fd5b600c546001600160a01b0316610efb5760408051600160e51b62461bcd02815260206004820152601960248201527f70726576696f7573546f6b656e20776173206e6f742073657400000000000000604482015290519081900360640190fd5b600c546001600160a01b03163314610f4757604051600160e51b62461bcd0281526004018080602001828103825260328152602001806129726032913960400191505060405180910390fd5b610f518383611b9b565b505050565b610f5f33610bcf565b610f9d57604051600160e51b62461bcd0281526004018080602001828103825260308152602001806126516030913960400191505060405180910390fd5b610cc981611d18565b600a546000906001600160a01b0316610fc15750600061075d565b600b54610fd05750600161075d565b610fd86107c5565b600b541015610fe95750600261075d565b50600361075d565b610ffa33610bcf565b61103857604051600160e51b62461bcd0281526004018080602001828103825260308152602001806126516030913960400191505060405180910390fd5b60055460ff16156110895760408051600160e51b62461bcd0281526020600482015260106024820152600160821b6f14185d5cd8589b194e881c185d5cd95902604482015290519081900360640190fd5b6005805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b60085461010090046001600160a01b031690565b60085461010090046001600160a01b0316331490565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107555780601f1061072a57610100808354040283529160200191610755565b61115e6110df565b6111a05760408051600160e51b62461bcd02815260206004820181905260248201526000805160206128c1833981519152604482015290519081900360640190fd5b60408051600160e01b6370a0823102815230600482015290516000916001600160a01b038416916370a0823191602480820192602092909190829003018186803b1580156111ed57600080fd5b505afa158015611201573d6000803e3d6000fd5b505050506040513d602081101561121757600080fd5b505190508061125a57604051600160e51b62461bcd02815260040180806020018281038252602c81526020018061275b602c913960400191505060405180910390fd5b60085461127790839061010090046001600160a01b031683611d77565b5050565b60055460009060ff16156112cf5760408051600160e51b62461bcd0281526020600482015260106024820152600160821b6f14185d5cd8589b194e881c185d5cd95902604482015290519081900360640190fd5b6107be8383611dcc565b60055460009060ff161561132d5760408051600160e51b62461bcd0281526020600482015260106024820152600160821b6f14185d5cd8589b194e881c185d5cd95902604482015290519081900360640190fd5b6107be8383611ef0565b604051600160e51b62461bcd0281526004018080602001828103825260368152602001806129fd6036913960400191505060405180910390fd5b600b5481565b6009546001600160a01b031633146113d95760408051600160e51b62461bcd02815260206004820152601c60248201527f63616c6c6572206d75737420626520757067726164654d617374657200000000604482015290519081900360640190fd5b806001600160a01b0381166114385760408051600160e51b62461bcd02815260206004820152601e60248201527f696e76616c696420616464726573732c2073686f756c646e7420626520300000604482015290519081900360640190fd5b6001600160a01b03811630141561148357604051600160e51b62461bcd0281526004018080602001828103825260358152602001806129a46035913960400191505060405180910390fd5b600261148d610fa6565b600381111561149857fe5b14156114ee5760408051600160e51b62461bcd02815260206004820152601760248201527f7570677261646520616c72656164792073746172746564000000000000000000604482015290519081900360640190fd5b600a80546001600160a01b0319166001600160a01b0384169081179091556040517f6a7d88f690d25c23b1f4d36eae06776806b41e9ace6151c26c302ae50f1ceb0390600090a2816001600160a01b03166361d3d7a66040518163ffffffff1660e01b815260040160206040518083038186803b15801561156e57600080fd5b505afa158015611582573d6000803e3d6000fd5b505050506040513d602081101561159857600080fd5b50516112775760408051600160e51b62461bcd02815260206004820152600d60248201527f42616420696e7465726661636500000000000000000000000000000000000000604482015290519081900360640190fd5b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6116216110df565b6116635760408051600160e51b62461bcd02815260206004820181905260248201526000805160206128c1833981519152604482015290519081900360640190fd5b610cc981611efd565b600c546001600160a01b031681565b6009546001600160a01b031633146116dd5760408051600160e51b62461bcd02815260206004820152601c60248201527f63616c6c6572206d75737420626520757067726164654d617374657200000000604482015290519081900360640190fd5b806001600160a01b03811661173c5760408051600160e51b62461bcd02815260206004820152601e60248201527f696e76616c696420616464726573732c2073686f756c646e7420626520300000604482015290519081900360640190fd5b6001600160a01b03811630141561178757604051600160e51b62461bcd0281526004018080602001828103825260358152602001806129a46035913960400191505060405180910390fd5b50600980546001600160a01b0319166001600160a01b0392909216919091179055565b60008115806117da57503360009081526001602090815260408083206001600160a01b0387168452909152902054155b61181857604051600160e51b62461bcd0281526004018080602001828103825260468152602001806126f36046913960600191505060405180910390fd5b611823338484611ff7565b50600192915050565b60006118398484846120e9565b6001600160a01b038416600090815260016020908152604080832033845290915290205460001981101561188157611881853361187c848763ffffffff61227c16565b611ff7565b506001949350505050565b60008082116118cf57604051600160e51b62461bcd02815260040180806020018281038252602281526020018061281d6022913960400191505060405180910390fd5b3360008181526001602090815260408083206001600160a01b03881684529091529020546118239190859061187c908663ffffffff611a3116565b6001600160a01b03821661195257604051600160e51b62461bcd02815260040180806020018281038252602181526020018061292c6021913960400191505060405180910390fd5b6001600160a01b03821630141561199d57604051600160e51b62461bcd0281526004018080602001828103825260258152602001806127ab6025913960400191505060405180910390fd5b6002546119b0908263ffffffff61227c16565b6002556001600160a01b0382166000908152602081905260409020546119dc908263ffffffff61227c16565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b6000828201838110156107be5760408051600160e51b62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60006001600160a01b038216611ad857604051600160e51b62461bcd02815260040180806020018281038252602281526020018061290a6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b600160045411611b3c57604051600160e51b62461bcd02815260040180806020018281038252603b815260200180612886603b913960400191505060405180910390fd5b600454611b5090600163ffffffff61227c16565b600455611b6460038263ffffffff6122dc16565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b6001600160a01b038216611bf95760408051600160e51b62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6001600160a01b038216301415611c4457604051600160e51b62461bcd028152600401808060200182810382526023815260200180612a5d6023913960400191505060405180910390fd5b80611c8357604051600160e51b62461bcd0281526004018080602001828103825260228152602001806127396022913960400191505060405180910390fd5b600254611c96908263ffffffff611a3116565b6002556001600160a01b038216600090815260208190526040902054611cc2908263ffffffff611a3116565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600454611d2c90600163ffffffff611a3116565b600455611d4060038263ffffffff61239116565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b0316600160e01b63a9059cbb02179052610f51908490612460565b6000808211611e0f57604051600160e51b62461bcd0281526004018080602001828103825260298152602001806128e16029913960400191505060405180910390fd5b3360009081526001602090815260408083206001600160a01b0387168452909152902054611e7157604051600160e51b62461bcd0281526004018080602001828103825260268152602001806128606026913960400191505060405180910390fd5b3360009081526001602090815260408083206001600160a01b0387168452909152812054831015611ed7573360009081526001602090815260408083206001600160a01b0388168452909152902054611ed0908463ffffffff61227c16565b9050611edb565b5060005b611ee6338583611ff7565b5060019392505050565b60006118233384846120e9565b6001600160a01b038116611f4557604051600160e51b62461bcd0281526004018080602001828103825260268152602001806126816026913960400191505060405180910390fd5b6001600160a01b038116301415611f9057604051600160e51b62461bcd02815260040180806020018281038252602a8152602001806126c9602a913960400191505060405180910390fd5b6008546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600880546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b03831661203f57604051600160e51b62461bcd0281526004018080602001828103825260248152602001806129d96024913960400191505060405180910390fd5b6001600160a01b03821661208757604051600160e51b62461bcd0281526004018080602001828103825260228152602001806126a76022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661213157604051600160e51b62461bcd02815260040180806020018281038252602581526020018061294d6025913960400191505060405180910390fd5b6001600160a01b03821661217957604051600160e51b62461bcd02815260040180806020018281038252602381526020018061262e6023913960400191505060405180910390fd5b6001600160a01b0382163014156121c457604051600160e51b62461bcd0281526004018080602001828103825260278152602001806127f66027913960400191505060405180910390fd5b6001600160a01b0383166000908152602081905260409020546121ed908263ffffffff61227c16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054612222908263ffffffff611a3116565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000828211156122d65760408051600160e51b62461bcd02815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6122e68282611a8e565b61232457604051600160e51b62461bcd02815260040180806020018281038252602181526020018061283f6021913960400191505060405180910390fd5b6001600160a01b03811630141561236f57604051600160e51b62461bcd0281526004018080602001828103825260268152602001806127d06026913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b61239b8282611a8e565b156123f05760408051600160e51b62461bcd02815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b03811630141561243b57604051600160e51b62461bcd0281526004018080602001828103825260268152602001806127d06026913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b612472826001600160a01b0316612627565b6124c65760408051600160e51b62461bcd02815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b602083106125045780518252601f1990920191602091820191016124e5565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114612566576040519150601f19603f3d011682016040523d82523d6000602084013e61256b565b606091505b5091509150816125c55760408051600160e51b62461bcd02815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b805115612621578080602001905160208110156125e157600080fd5b505161262157604051600160e51b62461bcd02815260040180806020018281038252602a815260200180612a33602a913960400191505060405180910390fd5b50505050565b3b15159056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e65722069732074686520636f6e7472616374206164647265737345524332303a206d757374206368616e676520616c6c6f77616e636520746f2030206265666f7265206368616e67696e6720746f206120646966666572656e742076616c756545524332303a206d696e742076616c7565206d75737420626520706f7369746976656e6f20746f6b656e7320746f207265636f76657220666f7220726563656976656420746f6b656e20747970657570677261646520737461746520646f6573206e6f7420616c6c6f77207570677261646545524332303a206275726e2066726f6d2074686520636f6e74726163742061646472657373526f6c65733a206163636f756e742069732074686520636f6e7472616374206164647265737345524332303a207472616e7366657220746f2074686520636f6e7472616374206164647265737345524332303a20616464656456616c75652076616c75652063616e27742062652030526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a2063757272656e7420616c6c6f77616e6365206d757374206e6f742062652030506175736572526f6c653a2074686572652073686f756c6420616c77617973206265206174206c65617374206f6e6520706175736572206c6566744f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206465637265617365416c6c6f77616e63652076616c75652063616e27742062652030526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f20616464726573737570677261646546726f6d2073686f756c64206f6e6c792062652063616c6c65642062792070726576696f7573546f6b656e696e76616c696420616464726573732c2073686f756c646e742062652063757272656e7420636f6e7472616374206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573737468697320636f6e747261637420646f6573206e6f7420737570706f727420726563656976696e672045524332323320746f6b656e735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a206d696e7420746f2074686520636f6e74726163742061646472657373a165627a7a7230582024ec5753226da6c85c3071a458b9898df9fbf6a1bd7e9d1ca6640204dca86519002945524332303a206d696e742076616c7565206d75737420626520706f736974697665526f6c65733a206163636f756e742069732074686520636f6e74726163742061646472657373526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206d696e7420746f2074686520636f6e74726163742061646472657373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000219aada9b14535aca000000000000000000000000000000000000000000000000000000000000000000000e426c6f636b69756d20546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003424f4b0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102115760003560e01c806370a0823111610125578063a457c2d7116100ad578063d7e7088a1161007c578063d7e7088a14610621578063dd62ed3e14610647578063f2fde38b14610675578063f395af961461069b578063ffeb7d75146106a357610211565b8063a457c2d71461053c578063a9059cbb14610568578063c0ee0b8a14610594578063c752ff621461061957610211565b80638456cb59116100f45780638456cb59146104f65780638da5cb5b146104fe5780638f32d59b1461050657806395d89b411461050e5780639be65a601461051657610211565b806370a0823114610452578063753e88e51461047857806382dc1ec4146104a45780638444b391146104ca57610211565b806345977d03116101a85780635c975abb116101775780635c975abb146103f05780635de4ccb0146103f8578063600440cb1461041c57806361d3d7a6146104245780636b2c0f551461042c57610211565b806345977d031461039d57806346fbf68e146103ba57806352d8bfc2146103e057806354fd4d50146103e857610211565b80632aed7f3f116101e45780632aed7f3f14610323578063313ce5671461034b57806339509351146103695780633f4ba83a1461039557610211565b806306fdde0314610216578063095ea7b31461029357806318160ddd146102d357806323b872dd146102ed575b600080fd5b61021e6106c9565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610258578181015183820152602001610240565b50505050905090810190601f1680156102855780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102bf600480360360408110156102a957600080fd5b506001600160a01b038135169060200135610760565b604080519115158252519081900360200190f35b6102db6107c5565b60408051918252519081900360200190f35b6102bf6004803603606081101561030357600080fd5b506001600160a01b038135811691602081013590911690604001356107cb565b6103496004803603602081101561033957600080fd5b50356001600160a01b0316610832565b005b6103536108ed565b6040805160ff9092168252519081900360200190f35b6102bf6004803603604081101561037f57600080fd5b506001600160a01b0381351690602001356108f6565b610349610954565b610349600480360360208110156103b357600080fd5b5035610a34565b6102bf600480360360208110156103d057600080fd5b50356001600160a01b0316610bcf565b610349610be8565b61021e610ccc565b6102bf610d5a565b610400610d63565b604080516001600160a01b039092168252519081900360200190f35b610400610d72565b6102bf610d81565b6103496004803603602081101561044257600080fd5b50356001600160a01b0316610d86565b6102db6004803603602081101561046857600080fd5b50356001600160a01b0316610dd6565b6103496004803603604081101561048e57600080fd5b506001600160a01b038135169060200135610df1565b610349600480360360208110156104ba57600080fd5b50356001600160a01b0316610f56565b6104d2610fa6565b604051808260038111156104e257fe5b60ff16815260200191505060405180910390f35b610349610ff1565b6104006110cb565b6102bf6110df565b61021e6110f5565b6103496004803603602081101561052c57600080fd5b50356001600160a01b0316611156565b6102bf6004803603604081101561055257600080fd5b506001600160a01b03813516906020013561127b565b6102bf6004803603604081101561057e57600080fd5b506001600160a01b0381351690602001356112d9565b610349600480360360608110156105aa57600080fd5b6001600160a01b03823516916020810135918101906060810160408201356401000000008111156105da57600080fd5b8201836020820111156105ec57600080fd5b8035906020019184600183028401116401000000008311171561060e57600080fd5b509092509050611337565b6102db611371565b6103496004803603602081101561063757600080fd5b50356001600160a01b0316611377565b6102db6004803603604081101561065d57600080fd5b506001600160a01b03813581169160200135166115ee565b6103496004803603602081101561068b57600080fd5b50356001600160a01b0316611619565b61040061166c565b610349600480360360208110156106b957600080fd5b50356001600160a01b031661167b565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107555780601f1061072a57610100808354040283529160200191610755565b820191906000526020600020905b81548152906001019060200180831161073857829003601f168201915b505050505090505b90565b60055460009060ff16156107b45760408051600160e51b62461bcd0281526020600482015260106024820152600160821b6f14185d5cd8589b194e881c185d5cd95902604482015290519081900360640190fd5b6107be83836117aa565b9392505050565b60025490565b60055460009060ff161561081f5760408051600160e51b62461bcd0281526020600482015260106024820152600160821b6f14185d5cd8589b194e881c185d5cd95902604482015290519081900360640190fd5b61082a84848461182c565b949350505050565b61083a6110df565b61087c5760408051600160e51b62461bcd02815260206004820181905260248201526000805160206128c1833981519152604482015290519081900360640190fd5b60085460408051600160e01b63f2fde38b0281526101009092046001600160a01b03908116600484015290519083169163f2fde38b91602480830192600092919082900301818387803b1580156108d257600080fd5b505af11580156108e6573d6000803e3d6000fd5b5050505050565b60085460ff1690565b60055460009060ff161561094a5760408051600160e51b62461bcd0281526020600482015260106024820152600160821b6f14185d5cd8589b194e881c185d5cd95902604482015290519081900360640190fd5b6107be838361188c565b61095d33610bcf565b61099b57604051600160e51b62461bcd0281526004018080602001828103825260308152602001806126516030913960400191505060405180910390fd5b60055460ff166109f55760408051600160e51b62461bcd02815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015290519081900360640190fd5b6005805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b6000610a3e610fa6565b90506001816003811115610a4e57fe5b1480610a6557506002816003811115610a6357fe5b145b610aa357604051600160e51b62461bcd0281526004018080602001828103825260248152602001806127876024913960400191505060405180910390fd5b81610af85760408051600160e51b62461bcd02815260206004820152601660248201527f76616c7565206d757374206265206e6f6e2d7a65726f00000000000000000000604482015290519081900360640190fd5b610b02338361190a565b600b54610b15908363ffffffff611a3116565b600b55600a546040805184815290516001600160a01b039092169133917f947637ad74c8018986ee33595c626316230f52029a0129e84fc7212b7b2c7502919081900360200190a3600a5460408051600160e01b63753e88e50281523360048201526024810185905290516001600160a01b039092169163753e88e59160448082019260009290919082900301818387803b158015610bb357600080fd5b505af1158015610bc7573d6000803e3d6000fd5b505050505050565b6000610be260038363ffffffff611a8e16565b92915050565b610bf06110df565b610c325760408051600160e51b62461bcd02815260206004820181905260248201526000805160206128c1833981519152604482015290519081900360640190fd5b3031610c885760408051600160e51b62461bcd02815260206004820152601360248201527f6e6f20657468657220746f207265636f76657200000000000000000000000000604482015290519081900360640190fd5b6008546040516001600160a01b036101009092049190911690303180156108fc02916000818181858888f19350505050158015610cc9573d6000803e3d6000fd5b50565b600d805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610d525780601f10610d2757610100808354040283529160200191610d52565b820191906000526020600020905b815481529060010190602001808311610d3557829003601f168201915b505050505081565b60055460ff1690565b600a546001600160a01b031681565b6009546001600160a01b031681565b600190565b610d8f33610bcf565b610dcd57604051600160e51b62461bcd0281526004018080602001828103825260308152602001806126516030913960400191505060405180910390fd5b610cc981611af8565b6001600160a01b031660009081526020819052604090205490565b816001600160a01b038116610e505760408051600160e51b62461bcd02815260206004820152601e60248201527f696e76616c696420616464726573732c2073686f756c646e7420626520300000604482015290519081900360640190fd5b6001600160a01b038116301415610e9b57604051600160e51b62461bcd0281526004018080602001828103825260358152602001806129a46035913960400191505060405180910390fd5b600c546001600160a01b0316610efb5760408051600160e51b62461bcd02815260206004820152601960248201527f70726576696f7573546f6b656e20776173206e6f742073657400000000000000604482015290519081900360640190fd5b600c546001600160a01b03163314610f4757604051600160e51b62461bcd0281526004018080602001828103825260328152602001806129726032913960400191505060405180910390fd5b610f518383611b9b565b505050565b610f5f33610bcf565b610f9d57604051600160e51b62461bcd0281526004018080602001828103825260308152602001806126516030913960400191505060405180910390fd5b610cc981611d18565b600a546000906001600160a01b0316610fc15750600061075d565b600b54610fd05750600161075d565b610fd86107c5565b600b541015610fe95750600261075d565b50600361075d565b610ffa33610bcf565b61103857604051600160e51b62461bcd0281526004018080602001828103825260308152602001806126516030913960400191505060405180910390fd5b60055460ff16156110895760408051600160e51b62461bcd0281526020600482015260106024820152600160821b6f14185d5cd8589b194e881c185d5cd95902604482015290519081900360640190fd5b6005805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b60085461010090046001600160a01b031690565b60085461010090046001600160a01b0316331490565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107555780601f1061072a57610100808354040283529160200191610755565b61115e6110df565b6111a05760408051600160e51b62461bcd02815260206004820181905260248201526000805160206128c1833981519152604482015290519081900360640190fd5b60408051600160e01b6370a0823102815230600482015290516000916001600160a01b038416916370a0823191602480820192602092909190829003018186803b1580156111ed57600080fd5b505afa158015611201573d6000803e3d6000fd5b505050506040513d602081101561121757600080fd5b505190508061125a57604051600160e51b62461bcd02815260040180806020018281038252602c81526020018061275b602c913960400191505060405180910390fd5b60085461127790839061010090046001600160a01b031683611d77565b5050565b60055460009060ff16156112cf5760408051600160e51b62461bcd0281526020600482015260106024820152600160821b6f14185d5cd8589b194e881c185d5cd95902604482015290519081900360640190fd5b6107be8383611dcc565b60055460009060ff161561132d5760408051600160e51b62461bcd0281526020600482015260106024820152600160821b6f14185d5cd8589b194e881c185d5cd95902604482015290519081900360640190fd5b6107be8383611ef0565b604051600160e51b62461bcd0281526004018080602001828103825260368152602001806129fd6036913960400191505060405180910390fd5b600b5481565b6009546001600160a01b031633146113d95760408051600160e51b62461bcd02815260206004820152601c60248201527f63616c6c6572206d75737420626520757067726164654d617374657200000000604482015290519081900360640190fd5b806001600160a01b0381166114385760408051600160e51b62461bcd02815260206004820152601e60248201527f696e76616c696420616464726573732c2073686f756c646e7420626520300000604482015290519081900360640190fd5b6001600160a01b03811630141561148357604051600160e51b62461bcd0281526004018080602001828103825260358152602001806129a46035913960400191505060405180910390fd5b600261148d610fa6565b600381111561149857fe5b14156114ee5760408051600160e51b62461bcd02815260206004820152601760248201527f7570677261646520616c72656164792073746172746564000000000000000000604482015290519081900360640190fd5b600a80546001600160a01b0319166001600160a01b0384169081179091556040517f6a7d88f690d25c23b1f4d36eae06776806b41e9ace6151c26c302ae50f1ceb0390600090a2816001600160a01b03166361d3d7a66040518163ffffffff1660e01b815260040160206040518083038186803b15801561156e57600080fd5b505afa158015611582573d6000803e3d6000fd5b505050506040513d602081101561159857600080fd5b50516112775760408051600160e51b62461bcd02815260206004820152600d60248201527f42616420696e7465726661636500000000000000000000000000000000000000604482015290519081900360640190fd5b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6116216110df565b6116635760408051600160e51b62461bcd02815260206004820181905260248201526000805160206128c1833981519152604482015290519081900360640190fd5b610cc981611efd565b600c546001600160a01b031681565b6009546001600160a01b031633146116dd5760408051600160e51b62461bcd02815260206004820152601c60248201527f63616c6c6572206d75737420626520757067726164654d617374657200000000604482015290519081900360640190fd5b806001600160a01b03811661173c5760408051600160e51b62461bcd02815260206004820152601e60248201527f696e76616c696420616464726573732c2073686f756c646e7420626520300000604482015290519081900360640190fd5b6001600160a01b03811630141561178757604051600160e51b62461bcd0281526004018080602001828103825260358152602001806129a46035913960400191505060405180910390fd5b50600980546001600160a01b0319166001600160a01b0392909216919091179055565b60008115806117da57503360009081526001602090815260408083206001600160a01b0387168452909152902054155b61181857604051600160e51b62461bcd0281526004018080602001828103825260468152602001806126f36046913960600191505060405180910390fd5b611823338484611ff7565b50600192915050565b60006118398484846120e9565b6001600160a01b038416600090815260016020908152604080832033845290915290205460001981101561188157611881853361187c848763ffffffff61227c16565b611ff7565b506001949350505050565b60008082116118cf57604051600160e51b62461bcd02815260040180806020018281038252602281526020018061281d6022913960400191505060405180910390fd5b3360008181526001602090815260408083206001600160a01b03881684529091529020546118239190859061187c908663ffffffff611a3116565b6001600160a01b03821661195257604051600160e51b62461bcd02815260040180806020018281038252602181526020018061292c6021913960400191505060405180910390fd5b6001600160a01b03821630141561199d57604051600160e51b62461bcd0281526004018080602001828103825260258152602001806127ab6025913960400191505060405180910390fd5b6002546119b0908263ffffffff61227c16565b6002556001600160a01b0382166000908152602081905260409020546119dc908263ffffffff61227c16565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b6000828201838110156107be5760408051600160e51b62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60006001600160a01b038216611ad857604051600160e51b62461bcd02815260040180806020018281038252602281526020018061290a6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b600160045411611b3c57604051600160e51b62461bcd02815260040180806020018281038252603b815260200180612886603b913960400191505060405180910390fd5b600454611b5090600163ffffffff61227c16565b600455611b6460038263ffffffff6122dc16565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b6001600160a01b038216611bf95760408051600160e51b62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6001600160a01b038216301415611c4457604051600160e51b62461bcd028152600401808060200182810382526023815260200180612a5d6023913960400191505060405180910390fd5b80611c8357604051600160e51b62461bcd0281526004018080602001828103825260228152602001806127396022913960400191505060405180910390fd5b600254611c96908263ffffffff611a3116565b6002556001600160a01b038216600090815260208190526040902054611cc2908263ffffffff611a3116565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600454611d2c90600163ffffffff611a3116565b600455611d4060038263ffffffff61239116565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b0316600160e01b63a9059cbb02179052610f51908490612460565b6000808211611e0f57604051600160e51b62461bcd0281526004018080602001828103825260298152602001806128e16029913960400191505060405180910390fd5b3360009081526001602090815260408083206001600160a01b0387168452909152902054611e7157604051600160e51b62461bcd0281526004018080602001828103825260268152602001806128606026913960400191505060405180910390fd5b3360009081526001602090815260408083206001600160a01b0387168452909152812054831015611ed7573360009081526001602090815260408083206001600160a01b0388168452909152902054611ed0908463ffffffff61227c16565b9050611edb565b5060005b611ee6338583611ff7565b5060019392505050565b60006118233384846120e9565b6001600160a01b038116611f4557604051600160e51b62461bcd0281526004018080602001828103825260268152602001806126816026913960400191505060405180910390fd5b6001600160a01b038116301415611f9057604051600160e51b62461bcd02815260040180806020018281038252602a8152602001806126c9602a913960400191505060405180910390fd5b6008546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600880546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b03831661203f57604051600160e51b62461bcd0281526004018080602001828103825260248152602001806129d96024913960400191505060405180910390fd5b6001600160a01b03821661208757604051600160e51b62461bcd0281526004018080602001828103825260228152602001806126a76022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661213157604051600160e51b62461bcd02815260040180806020018281038252602581526020018061294d6025913960400191505060405180910390fd5b6001600160a01b03821661217957604051600160e51b62461bcd02815260040180806020018281038252602381526020018061262e6023913960400191505060405180910390fd5b6001600160a01b0382163014156121c457604051600160e51b62461bcd0281526004018080602001828103825260278152602001806127f66027913960400191505060405180910390fd5b6001600160a01b0383166000908152602081905260409020546121ed908263ffffffff61227c16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054612222908263ffffffff611a3116565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000828211156122d65760408051600160e51b62461bcd02815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6122e68282611a8e565b61232457604051600160e51b62461bcd02815260040180806020018281038252602181526020018061283f6021913960400191505060405180910390fd5b6001600160a01b03811630141561236f57604051600160e51b62461bcd0281526004018080602001828103825260268152602001806127d06026913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b61239b8282611a8e565b156123f05760408051600160e51b62461bcd02815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b03811630141561243b57604051600160e51b62461bcd0281526004018080602001828103825260268152602001806127d06026913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b612472826001600160a01b0316612627565b6124c65760408051600160e51b62461bcd02815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b602083106125045780518252601f1990920191602091820191016124e5565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114612566576040519150601f19603f3d011682016040523d82523d6000602084013e61256b565b606091505b5091509150816125c55760408051600160e51b62461bcd02815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b805115612621578080602001905160208110156125e157600080fd5b505161262157604051600160e51b62461bcd02815260040180806020018281038252602a815260200180612a33602a913960400191505060405180910390fd5b50505050565b3b15159056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e65722069732074686520636f6e7472616374206164647265737345524332303a206d757374206368616e676520616c6c6f77616e636520746f2030206265666f7265206368616e67696e6720746f206120646966666572656e742076616c756545524332303a206d696e742076616c7565206d75737420626520706f7369746976656e6f20746f6b656e7320746f207265636f76657220666f7220726563656976656420746f6b656e20747970657570677261646520737461746520646f6573206e6f7420616c6c6f77207570677261646545524332303a206275726e2066726f6d2074686520636f6e74726163742061646472657373526f6c65733a206163636f756e742069732074686520636f6e7472616374206164647265737345524332303a207472616e7366657220746f2074686520636f6e7472616374206164647265737345524332303a20616464656456616c75652076616c75652063616e27742062652030526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a2063757272656e7420616c6c6f77616e6365206d757374206e6f742062652030506175736572526f6c653a2074686572652073686f756c6420616c77617973206265206174206c65617374206f6e6520706175736572206c6566744f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206465637265617365416c6c6f77616e63652076616c75652063616e27742062652030526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f20616464726573737570677261646546726f6d2073686f756c64206f6e6c792062652063616c6c65642062792070726576696f7573546f6b656e696e76616c696420616464726573732c2073686f756c646e742062652063757272656e7420636f6e7472616374206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573737468697320636f6e747261637420646f6573206e6f7420737570706f727420726563656976696e672045524332323320746f6b656e735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a206d696e7420746f2074686520636f6e74726163742061646472657373a165627a7a7230582024ec5753226da6c85c3071a458b9898df9fbf6a1bd7e9d1ca6640204dca865190029

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000219aada9b14535aca000000000000000000000000000000000000000000000000000000000000000000000e426c6f636b69756d20546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003424f4b0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _previousToken (address): 0x0000000000000000000000000000000000000000
Arg [1] : _name (string): Blockium Token
Arg [2] : _symbol (string): BOK
Arg [3] : _decimals (uint8): 18
Arg [4] : _supply (uint256): 650000000000000000000000000

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 00000000000000000000000000000000000000000219aada9b14535aca000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [6] : 426c6f636b69756d20546f6b656e000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 424f4b0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

26234:7777:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26234:7777:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25154: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;25154:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24042:140;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;24042:140:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;12008:91;;;:::i;:::-;;;;;;;;;;;;;;;;23874:160;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;23874:160:0;;;;;;;;;;;;;;;;;:::i;32703:123::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32703:123:0;-1:-1:-1;;;;;32703:123:0;;:::i;:::-;;25470:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24190:170;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;24190:170:0;;;;;;;;:::i;23475:118::-;;;:::i;29036:588::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29036:588:0;;:::i;21490:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21490:109:0;-1:-1:-1;;;;;21490:109:0;;:::i;33822:186::-;;;:::i;27085:29::-;;;:::i;22684:78::-;;;:::i;26612:32::-;;;:::i;:::-;;;;-1:-1:-1;;;;;26612:32:0;;;;;;;;;;;;;;26510:28;;;:::i;25840:85::-;;;:::i;21707:98::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21707:98:0;-1:-1:-1;;;;;21707:98:0;;:::i;12318:106::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12318:106:0;-1:-1:-1;;;;;12318:106:0;;:::i;29725:300::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;29725:300:0;;;;;;;;:::i;21607:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21607:92:0;-1:-1:-1;;;;;21607:92:0;;:::i;30665:438::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23264:116;;;:::i;9868:79::-;;;:::i;10239:92::-;;;:::i;25304:87::-;;;:::i;32097:261::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32097:261:0;-1:-1:-1;;;;;32097:261:0;;:::i;24368:180::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;24368:180:0;;;;;;;;:::i;23734:132::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;23734:132:0;;;;;;;;:::i;33156:404::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;33156:404:0;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;33156:404:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;33156:404:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;33156:404:0;;-1:-1:-1;33156:404:0;-1:-1:-1;33156:404:0;:::i;26706:28::-;;;:::i;30091:501::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;30091:501:0;-1:-1:-1;;;;;30091:501:0;;:::i;12763:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12763:134:0;;;;;;;;;;:::i;10508:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10508:109:0;-1:-1:-1;;;;;10508:109:0;;:::i;27002:28::-;;;:::i;31287:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31287:134:0;-1:-1:-1;;;;;31287:134:0;;:::i;25154:83::-;25224:5;25217:12;;;;;;;;-1:-1:-1;;25217:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25191:13;;25217:12;;25224:5;;25217:12;;25224:5;25217:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25154:83;;:::o;24042:140::-;22921:7;;24121:4;;22921:7;;22920:8;22912:37;;;;;-1:-1:-1;;;;;22912:37:0;;;;;;;;;;;;-1:-1:-1;;;;;22912:37:0;;;;;;;;;;;;;;;24145:29;24159:7;24168:5;24145:13;:29::i;:::-;24138:36;24042:140;-1:-1:-1;;;24042:140:0:o;12008:91::-;12079:12;;12008:91;:::o;23874:160::-;22921:7;;23967:4;;22921:7;;22920:8;22912:37;;;;;-1:-1:-1;;;;;22912:37:0;;;;;;;;;;;;-1:-1:-1;;;;;22912:37:0;;;;;;;;;;;;;;;23991:35;24010:4;24016:2;24020:5;23991:18;:35::i;:::-;23984:42;23874:160;-1:-1:-1;;;;23874:160:0:o;32703:123::-;10080:9;:7;:9::i;:::-;10072:54;;;;;-1:-1:-1;;;;;10072:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10072:54:0;;;;;;;;;;;;;;;32811:6;;32780:38;;;-1:-1:-1;;;;;32780:38:0;;32811:6;;;;-1:-1:-1;;;;;32811:6:0;;;32780:38;;;;;;:30;;;;;;:38;;;;;-1:-1:-1;;32780:38:0;;;;;;;-1:-1:-1;32780:30:0;:38;;;5:2:-1;;;;30:1;27;20:12;5:2;32780:38:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;32780:38:0;;;;32703:123;:::o;25470:83::-;25536:9;;;;25470:83;:::o;24190:170::-;22921:7;;24284:4;;22921:7;;22920:8;22912:37;;;;;-1:-1:-1;;;;;22912:37:0;;;;;;;;;;;;-1:-1:-1;;;;;22912:37:0;;;;;;;;;;;;;;;24308:44;24332:7;24341:10;24308:23;:44::i;23475:118::-;21389:20;21398:10;21389:8;:20::i;:::-;21381:81;;;;-1:-1:-1;;;;;21381:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23120:7;;;;23112:40;;;;;-1:-1:-1;;;;;23112:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;23534:7;:15;;-1:-1:-1;;23534:15:0;;;23565:20;;;23574:10;23565:20;;;;;;;;;;;;;23475:118::o;29036:588::-;29088:18;29109:17;:15;:17::i;:::-;29088:38;-1:-1:-1;29154:27:0;29145:5;:36;;;;;;;;;:71;;;-1:-1:-1;29194:22:0;29185:5;:31;;;;;;;;;29145:71;29137:120;;;;-1:-1:-1;;;;;29137:120:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29276:10;29268:45;;;;;-1:-1:-1;;;;;29268:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;29371:24;29377:10;29389:5;29371;:24::i;:::-;29422:13;;:24;;29440:5;29422:24;:17;:24;:::i;:::-;29406:13;:40;29493:12;;29462:52;;;;;;;;-1:-1:-1;;;;;29493:12:0;;;;29473:10;;29462:52;;;;;;;;;;29573:12;;:43;;;-1:-1:-1;;;;;29573:43:0;;29598:10;29573:43;;;;;;;;;;;;-1:-1:-1;;;;;29573:12:0;;;;:24;;:43;;;;;:12;;:43;;;;;;;;:12;;:43;;;5:2:-1;;;;30:1;27;20:12;5:2;29573:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;29573:43:0;;;;29036:588;;:::o;21490:109::-;21546:4;21570:21;:8;21583:7;21570:21;:12;:21;:::i;:::-;21563:28;21490:109;-1:-1:-1;;21490:109:0:o;33822:186::-;10080:9;:7;:9::i;:::-;10072:54;;;;;-1:-1:-1;;;;;10072:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10072:54:0;;;;;;;;;;;;;;;33892:4;33884:21;33876:57;;;;;-1:-1:-1;;;;;33876:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;33960:6;;33944:56;;-1:-1:-1;;;;;33960:6:0;;;;;;;;;33986:4;33978:21;33944:56;;;;;;;;;33978:21;33960:6;33944:56;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;33944:56:0;33822:186::o;27085:29::-;;;;;;;;;;;;;;;-1:-1:-1;;27085:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22684:78::-;22747:7;;;;22684:78;:::o;26612:32::-;;;-1:-1:-1;;;;;26612:32:0;;:::o;26510:28::-;;;-1:-1:-1;;;;;26510:28:0;;:::o;25840:85::-;25913:4;25840:85;:::o;21707:98::-;21389:20;21398:10;21389:8;:20::i;:::-;21381:81;;;;-1:-1:-1;;;;;21381:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21775:22;21789:7;21775:13;:22::i;12318:106::-;-1:-1:-1;;;;;12400:16:0;12373:7;12400:16;;;;;;;;;;;;12318:106::o;29725:300::-;29802:5;-1:-1:-1;;;;;28757:19:0;;28749:62;;;;;-1:-1:-1;;;;;28749:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28830:22:0;;28847:4;28830:22;;28822:88;;;;-1:-1:-1;;;;;28822:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29828:13;;-1:-1:-1;;;;;29828:13:0;29820:65;;;;;-1:-1:-1;;;;;29820:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;29918:13;;-1:-1:-1;;;;;29918:13:0;29904:10;:27;29896:90;;;;-1:-1:-1;;;;;29896:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29997:20;30003:5;30010:6;29997:5;:20::i;:::-;29725:300;;;:::o;21607:92::-;21389:20;21398:10;21389:8;:20::i;:::-;21381:81;;;;-1:-1:-1;;;;;21381:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21672:19;21683:7;21672:10;:19::i;30665:438::-;30749:12;;30712;;-1:-1:-1;;;;;30749:12:0;30737:359;;-1:-1:-1;30800:28:0;30793:35;;30737:359;30850:13;;30846:250;;-1:-1:-1;30892:27:0;30885:34;;30846:250;30957:13;:11;:13::i;:::-;30941;;:29;30937:159;;;-1:-1:-1;30994:22:0;30987:29;;30937:159;-1:-1:-1;31056:28:0;31049:35;;23264:116;21389:20;21398:10;21389:8;:20::i;:::-;21381:81;;;;-1:-1:-1;;;;;21381:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22921:7;;;;22920:8;22912:37;;;;;-1:-1:-1;;;;;22912:37:0;;;;;;;;;;;;-1:-1:-1;;;;;22912:37:0;;;;;;;;;;;;;;;23324:7;:14;;-1:-1:-1;;23324:14:0;23334:4;23324:14;;;23354:18;;;23361:10;23354:18;;;;;;;;;;;;;23264:116::o;9868:79::-;9933:6;;;;;-1:-1:-1;;;;;9933:6:0;;9868:79::o;10239:92::-;10317:6;;;;;-1:-1:-1;;;;;10317:6:0;10303:10;:20;;10239:92::o;25304:87::-;25376:7;25369:14;;;;;;;;-1:-1:-1;;25369:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25343:13;;25369:14;;25376:7;;25369:14;;25376:7;25369:14;;;;;;;;;;;;;;;;;;;;;;;;32097:261;10080:9;:7;:9::i;:::-;10072:54;;;;;-1:-1:-1;;;;;10072:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10072:54:0;;;;;;;;;;;;;;;32182:31;;;-1:-1:-1;;;;;32182:31:0;;32207:4;32182:31;;;;;;32164:15;;-1:-1:-1;;;;;32182:16:0;;;;;:31;;;;;;;;;;;;;;;:16;:31;;;5:2:-1;;;;30:1;27;20:12;5:2;32182:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;32182:31:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32182:31:0;;-1:-1:-1;32232:11:0;32224:68;;;;-1:-1:-1;;;;;32224:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32334:6;;32303:47;;32326:6;;32334;;;-1:-1:-1;;;;;32334:6:0;32342:7;32303:22;:47::i;:::-;10137:1;32097:261;:::o;24368:180::-;22921:7;;24467:4;;22921:7;;22920:8;22912:37;;;;;-1:-1:-1;;;;;22912:37:0;;;;;;;;;;;;-1:-1:-1;;;;;22912:37:0;;;;;;;;;;;;;;;24491:49;24515:7;24524:15;24491:23;:49::i;23734:132::-;22921:7;;23809:4;;22921:7;;22920:8;22912:37;;;;;-1:-1:-1;;;;;22912:37:0;;;;;;;;;;;;-1:-1:-1;;;;;22912:37:0;;;;;;;;;;;;;;;23833:25;23848:2;23852:5;23833:14;:25::i;33156:404::-;33488:64;;-1:-1:-1;;;;;33488:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26706:28;;;;:::o;30091:501::-;28551:13;;-1:-1:-1;;;;;28551:13:0;28537:10;:27;28529:68;;;;;-1:-1:-1;;;;;28529:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30197:15;-1:-1:-1;;;;;28757:19:0;;28749:62;;;;;-1:-1:-1;;;;;28749:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28830:22:0;;28847:4;28830:22;;28822:88;;;;-1:-1:-1;;;;;28822:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30255:22;30234:17;:15;:17::i;:::-;:43;;;;;;;;;;30226:79;;;;;-1:-1:-1;;;;;30226:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30318:12;:30;;-1:-1:-1;;;;;;30318:30:0;-1:-1:-1;;;;;30318:30:0;;;;;;;;30364:44;;;;-1:-1:-1;;30364:44:0;30534:15;-1:-1:-1;;;;;30534:30:0;;:32;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30534:32:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;30534:32:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;30534:32:0;30526:58;;;;;-1:-1:-1;;;;;30526:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;12763:134;-1:-1:-1;;;;;12862:18:0;;;12835:7;12862:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12763:134::o;10508:109::-;10080:9;:7;:9::i;:::-;10072:54;;;;;-1:-1:-1;;;;;10072:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10072:54:0;;;;;;;;;;;;;;;10581:28;10600:8;10581:18;:28::i;27002:::-;;;-1:-1:-1;;;;;27002:28:0;;:::o;31287:134::-;28551:13;;-1:-1:-1;;;;;28551:13:0;28537:10;:27;28529:68;;;;;-1:-1:-1;;;;;28529:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31372:6;-1:-1:-1;;;;;28757:19:0;;28749:62;;;;;-1:-1:-1;;;;;28749:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28830:22:0;;28847:4;28830:22;;28822:88;;;;-1:-1:-1;;;;;28822:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31391:13:0;:22;;-1:-1:-1;;;;;;31391:22:0;-1:-1:-1;;;;;31391:22:0;;;;;;;;;;31287:134::o;13859:844::-;13924:4;14482:10;;;14481:55;;-1:-1:-1;14510:10:0;14498:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;14498:32:0;;;;;;;;;;:37;14481:55;14473:151;;;;-1:-1:-1;;;;;14473:151:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14637:36;14646:10;14658:7;14667:5;14637:8;:36::i;:::-;-1:-1:-1;14691:4:0;13859:844;;;;:::o;15309:344::-;15388:4;15405:26;15415:4;15421:2;15425:5;15405:9;:26::i;:::-;-1:-1:-1;;;;;15469:17:0;;15442:24;15469:17;;;:11;:17;;;;;;;;15487:10;15469:29;;;;;;;;-1:-1:-1;;15513:27:0;;15509:115;;;15557:55;15566:4;15572:10;15584:27;:16;15605:5;15584:27;:20;:27;:::i;:::-;15557:8;:55::i;:::-;-1:-1:-1;15641:4:0;;15309:344;-1:-1:-1;;;;15309:344:0:o;16182:278::-;16262:4;16300:1;16287:10;:14;16279:61;;;;-1:-1:-1;;;;;16279:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16360:10;16381:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;16381:32:0;;;;;;;;;;16351:79;;16360:10;16372:7;;16381:48;;16418:10;16381:48;:36;:48;:::i;19415:391::-;-1:-1:-1;;;;;19490:21:0;;19482:67;;;;-1:-1:-1;;;;;19482:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19568:24:0;;19587:4;19568:24;;19560:74;;;;-1:-1:-1;;;;;19560:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19662:12;;:23;;19679:5;19662:23;:16;:23;:::i;:::-;19647:12;:38;-1:-1:-1;;;;;19717:18:0;;:9;:18;;;;;;;;;;;:29;;19740:5;19717:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;19696:18:0;;:9;:18;;;;;;;;;;;:50;;;;19762:36;;;;;;;19696:9;;19762:36;;;;;;;;;;;19415:391;;:::o;2504:181::-;2562:7;2594:5;;;2618:6;;;;2610:46;;;;;-1:-1:-1;;;;;2610:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;3960:203;4032:4;-1:-1:-1;;;;;4057:21:0;;4049:68;;;;-1:-1:-1;;;;;4049:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;4135:20:0;:11;:20;;;;;;;;;;;;;;;3960:203::o;21990:277::-;22074:1;22058:13;;:17;22050:89;;;;-1:-1:-1;;;;;22050:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22166:13;;:20;;22184:1;22166:20;:17;:20;:::i;:::-;22150:13;:36;22197:24;:8;22213:7;22197:24;:15;:24;:::i;:::-;22237:22;;-1:-1:-1;;;;;22237:22:0;;;;;;;;21990:277;:::o;18726:455::-;-1:-1:-1;;;;;18801:21:0;;18793:65;;;;;-1:-1:-1;;;;;18793:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18877:24:0;;18896:4;18877:24;;18869:72;;;;-1:-1:-1;;;;;18869:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18960:10;18952:57;;;;-1:-1:-1;;;;;18952:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19037:12;;:23;;19054:5;19037:23;:16;:23;:::i;:::-;19022:12;:38;-1:-1:-1;;;;;19092:18:0;;:9;:18;;;;;;;;;;;:29;;19115:5;19092:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;19071:18:0;;:9;:18;;;;;;;;;;;:50;;;;19137:36;;;;;;;19071:18;;:9;;19137:36;;;;;;;;;;18726:455;;:::o;21813:169::-;21886:13;;:20;;21904:1;21886:20;:17;:20;:::i;:::-;21870:13;:36;21917:21;:8;21930:7;21917:21;:12;:21;:::i;:::-;21954:20;;-1:-1:-1;;;;;21954:20:0;;;;;;;;21813:169;:::o;6096:176::-;6205:58;;;-1:-1:-1;;;;;6205:58:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;6205:58:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;;;179:29;160:49;;6179:85:0;;6198:5;;6179:18;:85::i;17078:606::-;17163:4;17206:1;17188:15;:19;17180:73;;;;-1:-1:-1;;;;;17180:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17284:10;17307:1;17272:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;17272:32:0;;;;;;;;;;17264:87;;;;-1:-1:-1;;;;;17264:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17429:10;17362:22;17417:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;17417:32:0;;;;;;;;;;17399:50;;17395:204;;;17495:10;17483:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;17483:32:0;;;;;;;;;;:53;;17520:15;17483:53;:36;:53;:::i;:::-;17466:70;;17395:204;;;-1:-1:-1;17586:1:0;17395:204;17609:45;17618:10;17630:7;17639:14;17609:8;:45::i;:::-;-1:-1:-1;17672:4:0;;17078:606;-1:-1:-1;;;17078:606:0:o;13072:140::-;13133:4;13150:32;13160:10;13172:2;13176:5;13150:9;:32::i;10767:320::-;-1:-1:-1;;;;;10841:22:0;;10833:73;;;;-1:-1:-1;;;;;10833:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10925:25:0;;10945:4;10925:25;;10917:80;;;;-1:-1:-1;;;;;10917:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11034:6;;11013:38;;-1:-1:-1;;;;;11013:38:0;;;;11034:6;;;;;11013:38;;;;;11062:6;:17;;-1:-1:-1;;;;;11062:17:0;;;;;-1:-1:-1;;;;;;11062:17:0;;;;;;;;;10767:320::o;20079:335::-;-1:-1:-1;;;;;20172:19:0;;20164:68;;;;-1:-1:-1;;;;;20164:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20251:21:0;;20243:68;;;;-1:-1:-1;;;;;20243:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20324:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;20375:31;;;;;;;;;;;;;;;;;20079:335;;;:::o;17912:462::-;-1:-1:-1;;;;;18000:18:0;;17992:68;;;;-1:-1:-1;;;;;17992:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18079:16:0;;18071:64;;;;-1:-1:-1;;;;;18071:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18154:19:0;;18168:4;18154:19;;18146:71;;;;-1:-1:-1;;;;;18146:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18248:15:0;;:9;:15;;;;;;;;;;;:26;;18268:5;18248:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;18230:15:0;;;:9;:15;;;;;;;;;;;:44;;;;18301:13;;;;;;;:24;;18319:5;18301:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;18285:13:0;;;:9;:13;;;;;;;;;;;;:40;;;;18341:25;;;;;;;18285:13;;18341:25;;;;;;;;;;;;;17912:462;;;:::o;2232:184::-;2290:7;2323:1;2318;:6;;2310:49;;;;;-1:-1:-1;;;;;2310:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2382:5:0;;;2232:184::o;3596:269::-;3676:18;3680:4;3686:7;3676:3;:18::i;:::-;3668:64;;;;-1:-1:-1;;;;;3668:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3751:24:0;;3770:4;3751:24;;3743:75;;;;-1:-1:-1;;;;;3743:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3829:20:0;3852:5;3829:20;;;;;;;;;;;:28;;-1:-1:-1;;3829:28:0;;;3596:269::o;3252:264::-;3330:18;3334:4;3340:7;3330:3;:18::i;:::-;3329:19;3321:63;;;;;-1:-1:-1;;;;;3321:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3403:24:0;;3422:4;3403:24;;3395:75;;;;-1:-1:-1;;;;;3395:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3481:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;3481:27:0;3504:4;3481:27;;;3252:264::o;8090:1114::-;8694:27;8702:5;-1:-1:-1;;;;;8694:25:0;;:27::i;:::-;8686:71;;;;;-1:-1:-1;;;;;8686:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8831:12;8845:23;8880:5;-1:-1:-1;;;;;8872:19:0;8892:4;8872:25;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;8872:25:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;8830:67:0;;;;8916:7;8908:52;;;;;-1:-1:-1;;;;;8908:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8977:17;;:21;8973:224;;9119:10;9108:30;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9108:30:0;9100:85;;;;-1:-1:-1;;;;;9100:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8090:1114;;;;:::o;4619:627::-;5191:20;5230:8;;;4619:627::o

Swarm Source

bzzr://24ec5753226da6c85c3071a458b9898df9fbf6a1bd7e9d1ca6640204dca86519
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.