ETH Price: $1,819.26 (+1.14%)
Gas: 18 Gwei
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multi Chain

Multichain Addresses

1 address found via Blockscan
Transaction Hash
Method
Block
From
To
Value
Transfer169461372023-03-31 8:56:2321 hrs 45 mins ago1680252983IN
Arowana Finance: ARW Token
0 ETH0.0042618873
Transfer169453802023-03-31 6:23:471 day 17 mins ago1680243827IN
Arowana Finance: ARW Token
0 ETH0.0008023422
Transfer169453802023-03-31 6:23:471 day 17 mins ago1680243827IN
Arowana Finance: ARW Token
0 ETH0.000802622
Transfer169453802023-03-31 6:23:471 day 17 mins ago1680243827IN
Arowana Finance: ARW Token
0 ETH0.000802622
Transfer169453802023-03-31 6:23:471 day 17 mins ago1680243827IN
Arowana Finance: ARW Token
0 ETH0.000802622
Transfer169453802023-03-31 6:23:471 day 17 mins ago1680243827IN
Arowana Finance: ARW Token
0 ETH0.000802622
Transfer169453772023-03-31 6:23:111 day 18 mins ago1680243791IN
Arowana Finance: ARW Token
0 ETH0.0008028622
Transfer169449832023-03-31 5:03:351 day 1 hr ago1680239015IN
Arowana Finance: ARW Token
0 ETH0.0021159558
Transfer169447292023-03-31 4:12:111 day 2 hrs ago1680235931IN
Arowana Finance: ARW Token
0 ETH0.0016496428.25607344
Transfer169390042023-03-30 8:54:231 day 21 hrs ago1680166463IN
Arowana Finance: ARW Token
0 ETH0.0042627673
Transfer169390042023-03-30 8:54:231 day 21 hrs ago1680166463IN
Arowana Finance: ARW Token
0 ETH0.0042618873
Transfer169390042023-03-30 8:54:231 day 21 hrs ago1680166463IN
Arowana Finance: ARW Token
0 ETH0.0042610173
Transfer169294562023-03-29 0:42:113 days 5 hrs ago1680050531IN
Arowana Finance: ARW Token
0 ETH0.0018678432
Transfer169242922023-03-28 7:15:233 days 23 hrs ago1679987723IN
Arowana Finance: ARW Token
0 ETH0.0021152658
Transfer169206662023-03-27 19:01:234 days 11 hrs ago1679943683IN
Arowana Finance: ARW Token
0 ETH0.0042610173
Transfer169191242023-03-27 13:50:354 days 16 hrs ago1679925035IN
Arowana Finance: ARW Token
0 ETH0.0019285236
Approve169187932023-03-27 12:43:474 days 17 hrs ago1679921027IN
Arowana Finance: ARW Token
0 ETH0.0009575619.79960115
Transfer169187902023-03-27 12:43:114 days 17 hrs ago1679920991IN
Arowana Finance: ARW Token
0 ETH0.0015791327.05940412
Transfer169089452023-03-26 3:32:116 days 3 hrs ago1679801531IN
Arowana Finance: ARW Token
0 ETH0.0011963520.48764051
Transfer169008182023-03-25 0:08:117 days 6 hrs ago1679702891IN
Arowana Finance: ARW Token
0 ETH0.0013425123
Transfer169004462023-03-24 22:53:117 days 7 hrs ago1679698391IN
Arowana Finance: ARW Token
0 ETH0.0014592525
Transfer168834732023-03-22 13:37:119 days 17 hrs ago1679492231IN
Arowana Finance: ARW Token
0 ETH0.0016927329
Transfer168742242023-03-21 6:26:1111 days 15 mins ago1679379971IN
Arowana Finance: ARW Token
0 ETH0.0030135873
Transfer168695352023-03-20 14:39:2311 days 16 hrs ago1679323163IN
Arowana Finance: ARW Token
0 ETH0.0042618873
Transfer168695202023-03-20 14:36:2311 days 16 hrs ago1679322983IN
Arowana Finance: ARW Token
0 ETH0.0042618873
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
ARW

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-03-05
*/

pragma solidity ^0.5.0;

/**
 * @title SafeMath
 * @dev Math operations with safety checks that revert on error
 */
library SafeMath {

    /**
    * @dev Multiplies two numbers, reverts on overflow.
    */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (a == 0) {
            return 0;
        }
        
        uint256 c = a * b;
        require(c / a == b);
        
        return c;
    }

    /**
    * @dev Integer division of two numbers truncating the quotient, reverts on division by zero.
    */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b > 0); // Solidity only automatically asserts when dividing by 0
    uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold
    
    return c;
    }
    
    /**
    * @dev Subtracts two numbers, reverts on overflow (i.e. if subtrahend is greater than minuend).
    */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a);
        uint256 c = a - b;
    
        return c;
    }
    
    /**
    * @dev Adds two numbers, reverts on overflow.
    */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a);
    
        return c;
    }
    
    /**
    * @dev Divides two numbers and returns the remainder (unsigned integer modulo),
    * reverts when dividing by zero.
    */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0);
        return a % b;
    }
}

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

    function add(Role storage role, address account) internal {
        require(account != address(0));
        require(!has(role, account));
        role.bearer[account] = true;
    }
    function remove(Role storage role, address account) internal {
        require(account != address(0));
        require(has(role, account));
        role.bearer[account] = false;
    }
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0));
        return role.bearer[account];
    }
}

contract Ownable {
    address public owner;

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

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

    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }

    function isOwner(address account) public view returns (bool) {
        if( account == owner ){
            return true;
        }
        else {
            return false;
        }
    }
    function transferOwnership(address newOwner) public onlyOwner {
        require(newOwner != address(0));
        emit OwnershipTransferred(owner, newOwner);
        owner = newOwner;
    }
}

contract AdminRole is Ownable{
    using Roles for Roles.Role;

    event AdminAdded(address indexed account);
    event AdminRemoved(address indexed account);

    Roles.Role private _admin_list;

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

    modifier onlyAdmin() {
        require(isAdmin(msg.sender)|| isOwner(msg.sender));
        _;
    }

    function isAdmin(address account) public view returns (bool) {
        return _admin_list.has(account);
    }
    function addAdmin(address account) public onlyAdmin {
        _addAdmin(account);
    }
    function removeAdmin(address account) public onlyOwner {
        _removeAdmin(account);
    }
    function renounceAdmin() public {
        _removeAdmin(msg.sender);
    }
    function _addAdmin(address account) internal {
        _admin_list.add(account);
        emit AdminAdded(account);
    }
    function _removeAdmin(address account) internal {
        _admin_list.remove(account);
        emit AdminRemoved(account);
    }
}


contract Pausable is AdminRole {
    event Paused(address account);
    event Unpaused(address account);

    bool private _paused;

    constructor () internal {
        _paused = false;
    }

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

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

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

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

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

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

contract ERC20 is IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) internal _balances;
    mapping (address => mapping (address => uint256)) internal _allowed;

    uint256 private _totalSupply;

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

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

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

    /**
    * @dev Transfer token for 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) {
        require(spender != address(0));

        _allowed[msg.sender][spender] = value;
        emit Approval(msg.sender, spender, value);
        return true;
    }

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

    /**
     * @dev Increase the amount of tokens that an owner allowed to a spender.
     * approve should be called when allowed_[_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(spender != address(0));

        _allowed[msg.sender][spender] = _allowed[msg.sender][spender].add(addedValue);
        emit Approval(msg.sender, spender, _allowed[msg.sender][spender]);
        return true;
    }

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

        _allowed[msg.sender][spender] = _allowed[msg.sender][spender].sub(subtractedValue);
        emit Approval(msg.sender, spender, _allowed[msg.sender][spender]);
        return true;
    }

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

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

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

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

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

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

    /**
     * @dev 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 {
        _allowed[account][msg.sender] = _allowed[account][msg.sender].sub(value);
        _burn(account, value);
        emit Approval(account, msg.sender, _allowed[account][msg.sender]);
    }
}

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

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

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

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

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

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

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

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

contract ARW is ERC20Detailed, ERC20Pausable, ERC20Burnable {
    
    struct LockInfo {
        uint256 _releaseTime;
        uint256 _amount;
    }
    
    address public implementation;

    mapping (address => LockInfo[]) public timelockList;
	mapping (address => bool) public frozenAccount;
    
    event Freeze(address indexed holder);
    event Unfreeze(address indexed holder);
    event Lock(address indexed holder, uint256 value, uint256 releaseTime);
    event Unlock(address indexed holder, uint256 value);

    modifier notFrozen(address _holder) {
        require(!frozenAccount[_holder]);
        _;
    }
    
    constructor() ERC20Detailed("Arowana Token", "ARW", 18) public  {
        
        _mint(msg.sender, 500000000 * (10 ** 18));
    }
    
    function balanceOf(address owner) public view returns (uint256) {
        
        uint256 totalBalance = super.balanceOf(owner);
        if( timelockList[owner].length >0 ){
            for(uint i=0; i<timelockList[owner].length;i++){
                totalBalance = totalBalance.add(timelockList[owner][i]._amount);
            }
        }
        
        return totalBalance;
    }
    
    function transfer(address to, uint256 value) public notFrozen(msg.sender) returns (bool) {
        if (timelockList[msg.sender].length > 0 ) {
            _autoUnlock(msg.sender);            
        }
        return super.transfer(to, value);
    }

    function transferFrom(address from, address to, uint256 value) public notFrozen(from) returns (bool) {
        if (timelockList[from].length > 0) {
            _autoUnlock(from);            
        }
        return super.transferFrom(from, to, value);
    }
    
    function freezeAccount(address holder) public onlyAdmin returns (bool) {
        require(!frozenAccount[holder]);
        frozenAccount[holder] = true;
        emit Freeze(holder);
        return true;
    }

    function unfreezeAccount(address holder) public onlyAdmin returns (bool) {
        require(frozenAccount[holder]);
        frozenAccount[holder] = false;
        emit Unfreeze(holder);
        return true;
    }
    
    function lock(address holder, uint256 value, uint256 releaseTime) public onlyAdmin returns (bool) {
        require(_balances[holder] >= value,"There is not enough balance of holder.");
        _lock(holder,value,releaseTime);
        
        return true;
    }
    
    function transferWithLock(address holder, uint256 value, uint256 releaseTime) public onlyAdmin returns (bool) {
        _transfer(msg.sender, holder, value);
        _lock(holder,value,releaseTime);
        return true;
    }
    
    function unlock(address holder, uint256 idx) public onlyAdmin returns (bool) {
        require( timelockList[holder].length > idx, "There is not lock info.");
        _unlock(holder,idx);
        return true;
    }
    
    /**
     * @dev Upgrades the implementation address
     * @param _newImplementation address of the new implementation
     */
    function upgradeTo(address _newImplementation) public onlyOwner {
        require(implementation != _newImplementation);
        _setImplementation(_newImplementation);
    }
    
    function _lock(address holder, uint256 value, uint256 releaseTime) internal returns(bool) {
        _balances[holder] = _balances[holder].sub(value);
        timelockList[holder].push( LockInfo(releaseTime, value) );
        
        emit Lock(holder, value, releaseTime);
        return true;
    }
    
    function _unlock(address holder, uint256 idx) internal returns(bool) {
        LockInfo storage lockinfo = timelockList[holder][idx];
        uint256 releaseAmount = lockinfo._amount;

        delete timelockList[holder][idx];
        timelockList[holder][idx] = timelockList[holder][timelockList[holder].length.sub(1)];
        timelockList[holder].length -=1;
        
        emit Unlock(holder, releaseAmount);
        _balances[holder] = _balances[holder].add(releaseAmount);
        
        return true;
    }
    
    function _autoUnlock(address holder) internal returns(bool) {
        for(uint256 idx =0; idx < timelockList[holder].length ; idx++ ) {
            if (timelockList[holder][idx]._releaseTime <= now) {
                // If lockupinfo was deleted, loop restart at same position.
                if( _unlock(holder, idx) ) {
                    idx -=1;
                }
            }
        }
        return true;
    }
    
    /**
     * @dev Sets the address of the current implementation
     * @param _newImp address of the new implementation
     */
    function _setImplementation(address _newImp) internal {
        implementation = _newImp;
    }
    
    /**
     * @dev Fallback function allowing to perform a delegatecall 
     * to the given implementation. This function will return 
     * whatever the implementation call returns
     */
    function () payable external {
        address impl = implementation;
        require(impl != address(0));
        assembly {
            /*
                0x40 is the "free memory slot", meaning a pointer to next slot of empty memory. mload(0x40)
                loads the data in the free memory slot, so `ptr` is a pointer to the next slot of empty
                memory. It's needed because we're going to write the return data of delegatecall to the
                free memory slot.
            */
            let ptr := mload(0x40)
            /*
                `calldatacopy` is copy calldatasize bytes from calldata
                First argument is the destination to which data is copied(ptr)
                Second argument specifies the start position of the copied data.
                    Since calldata is sort of its own unique location in memory,
                    0 doesn't refer to 0 in memory or 0 in storage - it just refers to the zeroth byte of calldata.
                    That's always going to be the zeroth byte of the function selector.
                Third argument, calldatasize, specifies how much data will be copied.
                    calldata is naturally calldatasize bytes long (same thing as msg.data.length)
            */
            calldatacopy(ptr, 0, calldatasize)
            /*
                delegatecall params explained:
                gas: the amount of gas to provide for the call. `gas` is an Opcode that gives
                    us the amount of gas still available to execution
                _impl: address of the contract to delegate to
                ptr: to pass copied data
                calldatasize: loads the size of `bytes memory data`, same as msg.data.length
                0, 0: These are for the `out` and `outsize` params. Because the output could be dynamic,
                        these are set to 0, 0 so the output data will not be written to memory. The output
                        data will be read using `returndatasize` and `returdatacopy` instead.
                result: This will be 0 if the call fails and 1 if it succeeds
            */
            let result := delegatecall(gas, impl, ptr, calldatasize, 0, 0)
            let size := returndatasize
            /*
                `returndatacopy` is an Opcode that copies the last return data to a slot. `ptr` is the
                    slot it will copy to, 0 means copy from the beginning of the return data, and size is
                    the amount of data to copy.
                `returndatasize` is an Opcode that gives us the size of the last return data. In this case, that is the size of the data returned from delegatecall
            */
            returndatacopy(ptr, 0, size)
            
            /*
                if `result` is 0, revert.
                if `result` is 1, return `size` amount of data from `ptr`. This is the data that was
                copied to `ptr` from the delegatecall return data
            */
            switch result
            case 0 { revert(ptr, size) }
            default { return(ptr, size) }
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"AdminAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"AdminRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"holder","type":"address"}],"name":"Freeze","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"holder","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"releaseTime","type":"uint256"}],"name":"Lock","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"holder","type":"address"}],"name":"Unfreeze","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"holder","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Unlock","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"holder","type":"address"}],"name":"freezeAccount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"frozenAccount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"holder","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"releaseTime","type":"uint256"}],"name":"lock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"timelockList","outputs":[{"internalType":"uint256","name":"_releaseTime","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"holder","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"releaseTime","type":"uint256"}],"name":"transferWithLock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"holder","type":"address"}],"name":"unfreezeAccount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"holder","type":"address"},{"internalType":"uint256","name":"idx","type":"uint256"}],"name":"unlock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_newImplementation","type":"address"}],"name":"upgradeTo","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600d81526020017f41726f77616e6120546f6b656e000000000000000000000000000000000000008152506040518060400160405280600381526020017f415257000000000000000000000000000000000000000000000000000000000081525060128260009080519060200190620000989291906200048e565b508160019080519060200190620000b19291906200048e565b5080600260006101000a81548160ff021916908360ff16021790555050505033600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000122336200016160201b60201c565b6000600860006101000a81548160ff0219169083151502179055506200015b336b019d971e4fe8401e74000000620001c260201b60201c565b6200053d565b6200017c8160076200032560201b6200329a1790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e33960405160405180910390a250565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620001fd57600080fd5b6200021981600554620003db60201b620024b91790919060201c565b6005819055506200027881600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620003db60201b620024b91790919060201c565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156200036057600080fd5b620003728282620003fb60201b60201c565b156200037d57600080fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600080828401905083811015620003f157600080fd5b8091505092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200043757600080fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004d157805160ff191683800117855562000502565b8280016001018555821562000502579182015b8281111562000501578251825591602001919060010190620004e4565b5b50905062000511919062000515565b5090565b6200053a91905b80821115620005365760008160009055506001016200051c565b5090565b90565b613419806200054d6000396000f3fe6080604052600436106101e35760003560e01c8063788649ea11610102578063a9059cbb11610095578063de6baccb11610064578063de6baccb14610c68578063e2ab691d14610ce5578063f26c159f14610d62578063f2fde38b14610dcb576101e3565b8063a9059cbb14610a91578063b414d4b614610b04578063d26c4a7614610b6d578063dd62ed3e14610be3576101e3565b80638bad0c0a116100d15780638bad0c0a146109205780638da5cb5b1461093757806395d89b411461098e578063a457c2d714610a1e576101e3565b8063788649ea146107d257806379cc67901461083b5780637eee288d146108965780638456cb5914610909576101e3565b80633659cfe61161017a5780635c60da1b116101495780635c60da1b146106965780635c975abb146106ed578063704802751461071c57806370a082311461076d576101e3565b80633659cfe61461058057806339509351146105d15780633f4ba83a1461064457806342966c681461065b576101e3565b806323b872dd116101b657806323b872dd146103ea57806324d7806c1461047d5780632f54bf6e146104e6578063313ce5671461054f576101e3565b806306fdde031461026b578063095ea7b3146102fb5780631785f53c1461036e57806318160ddd146103bf575b6000600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561024457600080fd5b60405136600082376000803683855af43d806000843e8160008114610267578184f35b8184fd5b34801561027757600080fd5b50610280610e1c565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102c05780820151818401526020810190506102a5565b50505050905090810190601f1680156102ed5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030757600080fd5b506103546004803603604081101561031e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ebe565b604051808215151515815260200191505060405180910390f35b34801561037a57600080fd5b506103bd6004803603602081101561039157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610eec565b005b3480156103cb57600080fd5b506103d4610f52565b6040518082815260200191505060405180910390f35b3480156103f657600080fd5b506104636004803603606081101561040d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f5c565b604051808215151515815260200191505060405180910390f35b34801561048957600080fd5b506104cc600480360360208110156104a057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611021565b604051808215151515815260200191505060405180910390f35b3480156104f257600080fd5b506105356004803603602081101561050957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061103e565b604051808215151515815260200191505060405180910390f35b34801561055b57600080fd5b506105646110a9565b604051808260ff1660ff16815260200191505060405180910390f35b34801561058c57600080fd5b506105cf600480360360208110156105a357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110c0565b005b3480156105dd57600080fd5b5061062a600480360360408110156105f457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611181565b604051808215151515815260200191505060405180910390f35b34801561065057600080fd5b506106596111af565b005b34801561066757600080fd5b506106946004803603602081101561067e57600080fd5b810190808035906020019092919050505061126a565b005b3480156106a257600080fd5b506106ab611277565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156106f957600080fd5b5061070261129d565b604051808215151515815260200191505060405180910390f35b34801561072857600080fd5b5061076b6004803603602081101561073f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112b4565b005b34801561077957600080fd5b506107bc6004803603602081101561079057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112e2565b6040518082815260200191505060405180910390f35b3480156107de57600080fd5b50610821600480360360208110156107f557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611413565b604051808215151515815260200191505060405180910390f35b34801561084757600080fd5b506108946004803603604081101561085e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611531565b005b3480156108a257600080fd5b506108ef600480360360408110156108b957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061153f565b604051808215151515815260200191505060405180910390f35b34801561091557600080fd5b5061091e61162f565b005b34801561092c57600080fd5b506109356116eb565b005b34801561094357600080fd5b5061094c6116f6565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561099a57600080fd5b506109a361171c565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156109e35780820151818401526020810190506109c8565b50505050905090810190601f168015610a105780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610a2a57600080fd5b50610a7760048036036040811015610a4157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506117be565b604051808215151515815260200191505060405180910390f35b348015610a9d57600080fd5b50610aea60048036036040811015610ab457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506117ec565b604051808215151515815260200191505060405180910390f35b348015610b1057600080fd5b50610b5360048036036020811015610b2757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118af565b604051808215151515815260200191505060405180910390f35b348015610b7957600080fd5b50610bc660048036036040811015610b9057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506118cf565b604051808381526020018281526020019250505060405180910390f35b348015610bef57600080fd5b50610c5260048036036040811015610c0657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061190d565b6040518082815260200191505060405180910390f35b348015610c7457600080fd5b50610ccb60048036036060811015610c8b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190505050611994565b604051808215151515815260200191505060405180910390f35b348015610cf157600080fd5b50610d4860048036036060811015610d0857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001909291905050506119da565b604051808215151515815260200191505060405180910390f35b348015610d6e57600080fd5b50610db160048036036020811015610d8557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611aad565b604051808215151515815260200191505060405180910390f35b348015610dd757600080fd5b50610e1a60048036036020811015610dee57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611bcc565b005b606060008054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610eb45780601f10610e8957610100808354040283529160200191610eb4565b820191906000526020600020905b815481529060010190602001808311610e9757829003601f168201915b5050505050905090565b6000600860009054906101000a900460ff1615610eda57600080fd5b610ee48383611d20565b905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f4657600080fd5b610f4f81611e4b565b50565b6000600554905090565b600083600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610fb657600080fd5b6000600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050111561100c5761100a85611ea5565b505b611017858585611f87565b9150509392505050565b6000611037826007611fb790919063ffffffff16565b9050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561109f57600190506110a4565b600090505b919050565b6000600260009054906101000a900460ff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461111a57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561117557600080fd5b61117e81612049565b50565b6000600860009054906101000a900460ff161561119d57600080fd5b6111a7838361208d565b905092915050565b6111b833611021565b806111c857506111c73361103e565b5b6111d157600080fd5b600860009054906101000a900460ff166111ea57600080fd5b6000600860006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b61127433826122c2565b50565b600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600860009054906101000a900460ff16905090565b6112bd33611021565b806112cd57506112cc3361103e565b5b6112d657600080fd5b6112df81612416565b50565b6000806112ee83612470565b90506000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050111561140a5760008090505b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050811015611408576113f9600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002082815481106113d857fe5b906000526020600020906002020160010154836124b990919063ffffffff16565b91508080600101915050611341565b505b80915050919050565b600061141e33611021565b8061142e575061142d3361103e565b5b61143757600080fd5b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661148d57600080fd5b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167fca5069937e68fd197927055037f59d7c90bf75ac104e6e375539ef480c3ad6ee60405160405180910390a260019050919050565b61153b82826124d8565b5050565b600061154a33611021565b8061155a57506115593361103e565b5b61156357600080fd5b81600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490501161161a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f5468657265206973206e6f74206c6f636b20696e666f2e00000000000000000081525060200191505060405180910390fd5b61162483836126d6565b506001905092915050565b61163833611021565b8061164857506116473361103e565b5b61165157600080fd5b600860009054906101000a900460ff161561166b57600080fd5b6001600860006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6116f433611e4b565b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117b45780601f10611789576101008083540402835291602001916117b4565b820191906000526020600020905b81548152906001019060200180831161179757829003601f168201915b5050505050905090565b6000600860009054906101000a900460ff16156117da57600080fd5b6117e48383612a08565b905092915050565b600033600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561184657600080fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050111561189c5761189a33611ea5565b505b6118a68484612c3d565b91505092915050565b600a6020528060005260406000206000915054906101000a900460ff1681565b600960205281600052604060002081815481106118e857fe5b9060005260206000209060020201600091509150508060000154908060010154905082565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600061199f33611021565b806119af57506119ae3361103e565b5b6119b857600080fd5b6119c3338585612c6b565b6119ce848484612e39565b50600190509392505050565b60006119e533611021565b806119f557506119f43361103e565b5b6119fe57600080fd5b82600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611a96576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806133bf6026913960400191505060405180910390fd5b611aa1848484612e39565b50600190509392505050565b6000611ab833611021565b80611ac85750611ac73361103e565b5b611ad157600080fd5b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611b2857600080fd5b6001600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167faf85b60d26151edd11443b704d424da6c43d0468f2235ebae3d1904dbc32304960405160405180910390a260019050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c2657600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c6057600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d5b57600080fd5b81600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b611e5f816007612fc790919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fa3b62bc36326052d97ea62d63c3d60308ed4c3ea8ac079dd8499f1e9c4f80c0f60405160405180910390a250565b600080600090505b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050811015611f7d5742600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208281548110611f4257fe5b90600052602060002090600202016000015411611f7057611f6383826126d6565b15611f6f576001810390505b5b8080600101915050611ead565b5060019050919050565b6000600860009054906101000a900460ff1615611fa357600080fd5b611fae848484613072565b90509392505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ff257600080fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b80600860016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120c857600080fd5b61215782600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124b990919063ffffffff16565b600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518082815260200191505060405180910390a36001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122fc57600080fd5b6123118160055461327a90919063ffffffff16565b60058190555061236981600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461327a90919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b61242a81600761329a90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e33960405160405180910390a250565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000808284019050838110156124ce57600080fd5b8091505092915050565b61256781600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461327a90919063ffffffff16565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506125f182826122c2565b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518082815260200191505060405180910390a35050565b600080600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020838154811061272357fe5b90600052602060002090600202019050600081600101549050600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020848154811061278657fe5b906000526020600020906002020160008082016000905560018201600090555050600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061283c6001600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905061327a90919063ffffffff16565b8154811061284657fe5b9060005260206000209060020201600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020858154811061289e57fe5b906000526020600020906002020160008201548160000155600182015481600101559050506001600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081818054905003915081612918919061335d565b508473ffffffffffffffffffffffffffffffffffffffff167f6381d9813cabeb57471b5a7e05078e64845ccdb563146a6911d536f24ce960f1826040518082815260200191505060405180910390a26129b981600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124b990919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060019250505092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a4357600080fd5b612ad282600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461327a90919063ffffffff16565b600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518082815260200191505060405180910390a36001905092915050565b6000600860009054906101000a900460ff1615612c5957600080fd5b612c638383613346565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ca557600080fd5b612cf781600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461327a90919063ffffffff16565b600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612d8c81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124b990919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000612e8d83600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461327a90919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405280848152602001858152509080600181540180825580915050906001820390600052602060002090600202016000909192909190915060008201518160000155602082015181600101555050508373ffffffffffffffffffffffffffffffffffffffff167f49eaf4942f1237055eb4cfa5f31c9dfe50d5b4ade01e021f7de8be2fbbde557b8484604051808381526020018281526020019250505060405180910390a2600190509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561300157600080fd5b61300b8282611fb7565b61301457600080fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600061310382600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461327a90919063ffffffff16565b600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061318e848484612c6b565b3373ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518082815260200191505060405180910390a3600190509392505050565b60008282111561328957600080fd5b600082840390508091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156132d457600080fd5b6132de8282611fb7565b156132e857600080fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000613353338484612c6b565b6001905092915050565b81548183558181111561338a57600202816002028360005260206000209182019101613389919061338f565b5b505050565b6133bb91905b808211156133b757600080820160009055600182016000905550600201613395565b5090565b9056fe5468657265206973206e6f7420656e6f7567682062616c616e6365206f6620686f6c6465722ea265627a7a72315820f9c633f9182647b9ff5a3fa89f6791459d5ce4f4f0279da43f58721bc701127e64736f6c63430005110032

Deployed ByteCode Sourcemap

15460:8184:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20506:12;20521:14;;;;;;;;;;;20506:29;;20570:1;20554:18;;:4;:18;;;;20546:27;;;;;;21011:4;21005:11;21792:12;21789:1;21784:3;21771:34;22712:1;22709;22695:12;22690:3;22684:4;22679:3;22666:48;22740:14;23248:4;23245:1;23240:3;23225:28;23532:6;23557:1;23552:28;;;;23616:4;23611:3;23604:17;23552:28;23573:4;23568:3;23561:17;15054:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15054:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;15054:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14171:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14171:140:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14171:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3825:95;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3825:95:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3825:95:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;6393:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6393:91:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16928:263;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16928:263:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16928:263:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3613:111;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3613:111:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3613:111:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;2823:193;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2823:193:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2823:193:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15370:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15370:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;18536:177;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18536:177:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18536:177:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;14319:175;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14319:175:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14319:175:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;5314:117;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5314:117:0;;;:::i;:::-;;13374:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13374:79:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13374:79:0;;;;;;;;;;;;;;;;;:::i;:::-;;15626:29;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15626:29:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4568:78;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4568:78:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3730:89;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3730:89:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3730:89:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;16260:394;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16260:394:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16260:394:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17423:216;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17423:216:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17423:216:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13712:95;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13712:95:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13712:95:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18171:218;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18171:218:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18171:218:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;5104:115;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5104:115:0;;;:::i;:::-;;3926:75;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3926:75:0;;;:::i;:::-;;2548:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2548:20:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15204:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15204:87:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;15204:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14502:185;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14502:185:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14502:185:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;16666:254;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16666:254:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16666:254:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15719:46;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15719:46:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15719:46:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15664:51;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15664:51:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15664:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;7145:131;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7145:131:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;7145:131:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17930:229;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17930:229:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17930:229:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;17651:267;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17651:267:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17651:267:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;17203:212;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17203:212:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17203:212:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3022:192;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3022:192:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3022:192:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;15054:83;15091:13;15124:5;15117:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15054:83;:::o;14171:140::-;14250:4;4805:7;;;;;;;;;;;4804:8;4796:17;;;;;;14274:29;14288:7;14297:5;14274:13;:29::i;:::-;14267:36;;14171:140;;;;:::o;3825:95::-;2789:5;;;;;;;;;;;2775:19;;:10;:19;;;2767:28;;;;;;3891:21;3904:7;3891:12;:21::i;:::-;3825:95;:::o;6393:91::-;6437:7;6464:12;;6457:19;;6393:91;:::o;16928:263::-;17023:4;17008;16059:13;:22;16073:7;16059:22;;;;;;;;;;;;;;;;;;;;;;;;;16058:23;16050:32;;;;;;17072:1;17044:12;:18;17057:4;17044:18;;;;;;;;;;;;;;;:25;;;;:29;17040:91;;;17090:17;17102:4;17090:11;:17::i;:::-;;17040:91;17148:35;17167:4;17173:2;17177:5;17148:18;:35::i;:::-;17141:42;;16928:263;;;;;;:::o;3613:111::-;3668:4;3692:24;3708:7;3692:11;:15;;:24;;;;:::i;:::-;3685:31;;3613:111;;;:::o;2823:193::-;2878:4;2910:5;;;;;;;;;;;2899:16;;:7;:16;;;2895:114;;;2939:4;2932:11;;;;2895:114;2992:5;2985:12;;2823:193;;;;:::o;15370:83::-;15411:5;15436:9;;;;;;;;;;;15429:16;;15370:83;:::o;18536:177::-;2789:5;;;;;;;;;;;2775:19;;:10;:19;;;2767:28;;;;;;18637:18;18619:36;;:14;;;;;;;;;;;:36;;;;18611:45;;;;;;18667:38;18686:18;18667;:38::i;:::-;18536:177;:::o;14319:175::-;14410:12;4805:7;;;;;;;;;;;4804:8;4796:17;;;;;;14442:44;14466:7;14475:10;14442:23;:44::i;:::-;14435:51;;14319:175;;;;:::o;5314:117::-;3543:19;3551:10;3543:7;:19::i;:::-;:41;;;;3565:19;3573:10;3565:7;:19::i;:::-;3543:41;3535:50;;;;;;4984:7;;;;;;;;;;;4976:16;;;;;;5382:5;5372:7;;:15;;;;;;;;;;;;;;;;;;5403:20;5412:10;5403:20;;;;;;;;;;;;;;;;;;;;;;5314:117::o;13374:79::-;13421:24;13427:10;13439:5;13421;:24::i;:::-;13374:79;:::o;15626:29::-;;;;;;;;;;;;;:::o;4568:78::-;4607:4;4631:7;;;;;;;;;;;4624:14;;4568:78;:::o;3730:89::-;3543:19;3551:10;3543:7;:19::i;:::-;:41;;;;3565:19;3573:10;3565:7;:19::i;:::-;3543:41;3535:50;;;;;;3793:18;3803:7;3793:9;:18::i;:::-;3730:89;:::o;16260:394::-;16315:7;16345:20;16368:22;16384:5;16368:15;:22::i;:::-;16345:45;;16433:1;16405:12;:19;16418:5;16405:19;;;;;;;;;;;;;;;:26;;;;:29;16401:206;;;16455:6;16462:1;16455:8;;16451:145;16467:12;:19;16480:5;16467:19;;;;;;;;;;;;;;;:26;;;;16465:1;:28;16451:145;;;16532:48;16549:12;:19;16562:5;16549:19;;;;;;;;;;;;;;;16569:1;16549:22;;;;;;;;;;;;;;;;;;:30;;;16532:12;:16;;:48;;;;:::i;:::-;16517:63;;16494:3;;;;;;;16451:145;;;;16401:206;16634:12;16627:19;;;16260:394;;;:::o;17423:216::-;17490:4;3543:19;3551:10;3543:7;:19::i;:::-;:41;;;;3565:19;3573:10;3565:7;:19::i;:::-;3543:41;3535:50;;;;;;17515:13;:21;17529:6;17515:21;;;;;;;;;;;;;;;;;;;;;;;;;17507:30;;;;;;17572:5;17548:13;:21;17562:6;17548:21;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;17602:6;17593:16;;;;;;;;;;;;17627:4;17620:11;;17423:216;;;:::o;13712:95::-;13777:22;13787:4;13793:5;13777:9;:22::i;:::-;13712:95;;:::o;18171:218::-;18242:4;3543:19;3551:10;3543:7;:19::i;:::-;:41;;;;3565:19;3573:10;3565:7;:19::i;:::-;3543:41;3535:50;;;;;;18298:3;18268:12;:20;18281:6;18268:20;;;;;;;;;;;;;;;:27;;;;:33;18259:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18340:19;18348:6;18355:3;18340:7;:19::i;:::-;;18377:4;18370:11;;18171:218;;;;:::o;5104:115::-;3543:19;3551:10;3543:7;:19::i;:::-;:41;;;;3565:19;3573:10;3565:7;:19::i;:::-;3543:41;3535:50;;;;;;4805:7;;;;;;;;;;;4804:8;4796:17;;;;;;5173:4;5163:7;;:14;;;;;;;;;;;;;;;;;;5193:18;5200:10;5193:18;;;;;;;;;;;;;;;;;;;;;;5104:115::o;3926:75::-;3969:24;3982:10;3969:12;:24::i;:::-;3926:75::o;2548:20::-;;;;;;;;;;;;;:::o;15204:87::-;15243:13;15276:7;15269:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15204:87;:::o;14502:185::-;14598:12;4805:7;;;;;;;;;;;4804:8;4796:17;;;;;;14630:49;14654:7;14663:15;14630:23;:49::i;:::-;14623:56;;14502:185;;;;:::o;16666:254::-;16749:4;16728:10;16059:13;:22;16073:7;16059:22;;;;;;;;;;;;;;;;;;;;;;;;;16058:23;16050:32;;;;;;16804:1;16770:12;:24;16783:10;16770:24;;;;;;;;;;;;;;;:31;;;;:35;16766:104;;;16823:23;16835:10;16823:11;:23::i;:::-;;16766:104;16887:25;16902:2;16906:5;16887:14;:25::i;:::-;16880:32;;16666:254;;;;;:::o;15719:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;15664:51::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7145:131::-;7217:7;7244:8;:15;7253:5;7244:15;;;;;;;;;;;;;;;:24;7260:7;7244:24;;;;;;;;;;;;;;;;7237:31;;7145:131;;;;:::o;17930:229::-;18034:4;3543:19;3551:10;3543:7;:19::i;:::-;:41;;;;3565:19;3573:10;3565:7;:19::i;:::-;3543:41;3535:50;;;;;;18051:36;18061:10;18073:6;18081:5;18051:9;:36::i;:::-;18098:31;18104:6;18111:5;18117:11;18098:5;:31::i;:::-;;18147:4;18140:11;;17930:229;;;;;:::o;17651:267::-;17743:4;3543:19;3551:10;3543:7;:19::i;:::-;:41;;;;3565:19;3573:10;3565:7;:19::i;:::-;3543:41;3535:50;;;;;;17789:5;17768:9;:17;17778:6;17768:17;;;;;;;;;;;;;;;;:26;;17760:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17847:31;17853:6;17860:5;17866:11;17847:5;:31::i;:::-;;17906:4;17899:11;;17651:267;;;;;:::o;17203:212::-;17268:4;3543:19;3551:10;3543:7;:19::i;:::-;:41;;;;3565:19;3573:10;3565:7;:19::i;:::-;3543:41;3535:50;;;;;;17294:13;:21;17308:6;17294:21;;;;;;;;;;;;;;;;;;;;;;;;;17293:22;17285:31;;;;;;17351:4;17327:13;:21;17341:6;17327:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;17378:6;17371:14;;;;;;;;;;;;17403:4;17396:11;;17203:212;;;:::o;3022:192::-;2789:5;;;;;;;;;;;2775:19;;:10;:19;;;2767:28;;;;;;3123:1;3103:22;;:8;:22;;;;3095:31;;;;;;3170:8;3142:37;;3163:5;;;;;;;;;;;3142:37;;;;;;;;;;;;3198:8;3190:5;;:16;;;;;;;;;;;;;;;;;;3022:192;:::o;8234:244::-;8299:4;8343:1;8324:21;;:7;:21;;;;8316:30;;;;;;8391:5;8359:8;:20;8368:10;8359:20;;;;;;;;;;;;;;;:29;8380:7;8359:29;;;;;;;;;;;;;;;:37;;;;8433:7;8412:36;;8421:10;8412:36;;;8442:5;8412:36;;;;;;;;;;;;;;;;;;8466:4;8459:11;;8234:244;;;;:::o;4136:131::-;4195:27;4214:7;4195:11;:18;;:27;;;;:::i;:::-;4251:7;4238:21;;;;;;;;;;;;4136:131;:::o;19582:430::-;19636:4;19657:11;19670:1;19657:14;;19653:330;19679:12;:20;19692:6;19679:20;;;;;;;;;;;;;;;:27;;;;19673:3;:33;19653:330;;;19778:3;19736:12;:20;19749:6;19736:20;;;;;;;;;;;;;;;19757:3;19736:25;;;;;;;;;;;;;;;;;;:38;;;:45;19732:240;;19884:20;19892:6;19900:3;19884:7;:20::i;:::-;19880:77;;;19936:1;19930:7;;;;19880:77;19732:240;19709:5;;;;;;;19653:330;;;;20000:4;19993:11;;19582:430;;;:::o;14003:160::-;14096:4;4805:7;;;;;;;;;;;4804:8;4796:17;;;;;;14120:35;14139:4;14145:2;14149:5;14120:18;:35::i;:::-;14113:42;;14003:160;;;;;:::o;2352:165::-;2424:4;2468:1;2449:21;;:7;:21;;;;2441:30;;;;;;2489:4;:11;;:20;2501:7;2489:20;;;;;;;;;;;;;;;;;;;;;;;;;2482:27;;2352:165;;;;:::o;20159:97::-;20241:7;20224:14;;:24;;;;;;;;;;;;;;;;;;20159:97;:::o;9765:323::-;9845:4;9889:1;9870:21;;:7;:21;;;;9862:30;;;;;;9937:45;9971:10;9937:8;:20;9946:10;9937:20;;;;;;;;;;;;;;;:29;9958:7;9937:29;;;;;;;;;;;;;;;;:33;;:45;;;;:::i;:::-;9905:8;:20;9914:10;9905:20;;;;;;;;;;;;;;;:29;9926:7;9905:29;;;;;;;;;;;;;;;:77;;;;10019:7;9998:60;;10007:10;9998:60;;;10028:8;:20;10037:10;10028:20;;;;;;;;;;;;;;;:29;10049:7;10028:29;;;;;;;;;;;;;;;;9998:60;;;;;;;;;;;;;;;;;;10076:4;10069:11;;9765:323;;;;:::o;12280:269::-;12374:1;12355:21;;:7;:21;;;;12347:30;;;;;;12405:23;12422:5;12405:12;;:16;;:23;;;;:::i;:::-;12390:12;:38;;;;12460:29;12483:5;12460:9;:18;12470:7;12460:18;;;;;;;;;;;;;;;;:22;;:29;;;;:::i;:::-;12439:9;:18;12449:7;12439:18;;;;;;;;;;;;;;;:50;;;;12531:1;12505:36;;12514:7;12505:36;;;12535:5;12505:36;;;;;;;;;;;;;;;;;;12280:269;;:::o;4007:123::-;4063:24;4079:7;4063:11;:15;;:24;;;;:::i;:::-;4114:7;4103:19;;;;;;;;;;;;4007:123;:::o;6700:106::-;6755:7;6782:9;:16;6792:5;6782:16;;;;;;;;;;;;;;;;6775:23;;6700:106;;;:::o;1440:154::-;1498:7;1518:9;1534:1;1530;:5;1518:17;;1559:1;1554;:6;;1546:15;;;;;;1585:1;1578:8;;;1440:154;;;;:::o;12948:259::-;13051:40;13085:5;13051:8;:17;13060:7;13051:17;;;;;;;;;;;;;;;:29;13069:10;13051:29;;;;;;;;;;;;;;;;:33;;:40;;;;:::i;:::-;13019:8;:17;13028:7;13019:17;;;;;;;;;;;;;;;:29;13037:10;13019:29;;;;;;;;;;;;;;;:72;;;;13102:21;13108:7;13117:5;13102;:21::i;:::-;13157:10;13139:60;;13148:7;13139:60;;;13169:8;:17;13178:7;13169:17;;;;;;;;;;;;;;;:29;13187:10;13169:29;;;;;;;;;;;;;;;;13139:60;;;;;;;;;;;;;;;;;;12948:259;;:::o;19042:528::-;19105:4;19122:25;19150:12;:20;19163:6;19150:20;;;;;;;;;;;;;;;19171:3;19150:25;;;;;;;;;;;;;;;;;;19122:53;;19186:21;19210:8;:16;;;19186:40;;19246:12;:20;19259:6;19246:20;;;;;;;;;;;;;;;19267:3;19246:25;;;;;;;;;;;;;;;;;;;19239:32;;;;;;;;;;;;;;19310:12;:20;19323:6;19310:20;;;;;;;;;;;;;;;19331:34;19363:1;19331:12;:20;19344:6;19331:20;;;;;;;;;;;;;;;:27;;;;:31;;:34;;;;:::i;:::-;19310:56;;;;;;;;;;;;;;;;;;19282:12;:20;19295:6;19282:20;;;;;;;;;;;;;;;19303:3;19282:25;;;;;;;;;;;;;;;;;;:84;;;;;;;;;;;;;;;;;;;19407:1;19377:12;:20;19390:6;19377:20;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;:::i;:::-;;19441:6;19434:29;;;19449:13;19434:29;;;;;;;;;;;;;;;;;;19494:36;19516:13;19494:9;:17;19504:6;19494:17;;;;;;;;;;;;;;;;:21;;:36;;;;:::i;:::-;19474:9;:17;19484:6;19474:17;;;;;;;;;;;;;;;:56;;;;19558:4;19551:11;;;;19042:528;;;;:::o;10608:333::-;10693:4;10737:1;10718:21;;:7;:21;;;;10710:30;;;;;;10785:50;10819:15;10785:8;:20;10794:10;10785:20;;;;;;;;;;;;;;;:29;10806:7;10785:29;;;;;;;;;;;;;;;;:33;;:50;;;;:::i;:::-;10753:8;:20;10762:10;10753:20;;;;;;;;;;;;;;;:29;10774:7;10753:29;;;;;;;;;;;;;;;:82;;;;10872:7;10851:60;;10860:10;10851:60;;;10881:8;:20;10890:10;10881:20;;;;;;;;;;;;;;;:29;10902:7;10881:29;;;;;;;;;;;;;;;;10851:60;;;;;;;;;;;;;;;;;;10929:4;10922:11;;10608:333;;;;:::o;13863:132::-;13938:4;4805:7;;;;;;;;;;;4804:8;4796:17;;;;;;13962:25;13977:2;13981:5;13962:14;:25::i;:::-;13955:32;;13863:132;;;;:::o;11163:262::-;11265:1;11251:16;;:2;:16;;;;11243:25;;;;;;11299:26;11319:5;11299:9;:15;11309:4;11299:15;;;;;;;;;;;;;;;;:19;;:26;;;;:::i;:::-;11281:9;:15;11291:4;11281:15;;;;;;;;;;;;;;;:44;;;;11352:24;11370:5;11352:9;:13;11362:2;11352:13;;;;;;;;;;;;;;;;:17;;:24;;;;:::i;:::-;11336:9;:13;11346:2;11336:13;;;;;;;;;;;;;;;:40;;;;11407:2;11392:25;;11401:4;11392:25;;;11411:5;11392:25;;;;;;;;;;;;;;;;;;11163:262;;;:::o;18725:305::-;18809:4;18846:28;18868:5;18846:9;:17;18856:6;18846:17;;;;;;;;;;;;;;;;:21;;:28;;;;:::i;:::-;18826:9;:17;18836:6;18826:17;;;;;;;;;;;;;;;:48;;;;18885:12;:20;18898:6;18885:20;;;;;;;;;;;;;;;18912:28;;;;;;;;18921:11;18912:28;;;;18934:5;18912:28;;;18885:57;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;18885:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18973:6;18968:32;;;18981:5;18988:11;18968:32;;;;;;;;;;;;;;;;;;;;;;;;19018:4;19011:11;;18725:305;;;;;:::o;2159:187::-;2258:1;2239:21;;:7;:21;;;;2231:30;;;;;;2280:18;2284:4;2290:7;2280:3;:18::i;:::-;2272:27;;;;;;2333:5;2310:4;:11;;:20;2322:7;2310:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;2159:187;;:::o;8951:299::-;9030:4;9076:37;9107:5;9076:8;:14;9085:4;9076:14;;;;;;;;;;;;;;;:26;9091:10;9076:26;;;;;;;;;;;;;;;;:30;;:37;;;;:::i;:::-;9047:8;:14;9056:4;9047:14;;;;;;;;;;;;;;;:26;9062:10;9047:26;;;;;;;;;;;;;;;:66;;;;9124:26;9134:4;9140:2;9144:5;9124:9;:26::i;:::-;9181:10;9166:54;;9175:4;9166:54;;;9193:8;:14;9202:4;9193:14;;;;;;;;;;;;;;;:26;9208:10;9193:26;;;;;;;;;;;;;;;;9166:54;;;;;;;;;;;;;;;;;;9238:4;9231:11;;8951:299;;;;;:::o;1206:154::-;1264:7;1297:1;1292;:6;;1284:15;;;;;;1310:9;1326:1;1322;:5;1310:17;;1351:1;1344:8;;;1206:154;;;;:::o;1969:184::-;2065:1;2046:21;;:7;:21;;;;2038:30;;;;;;2088:18;2092:4;2098:7;2088:3;:18::i;:::-;2087:19;2079:28;;;;;;2141:4;2118;:11;;:20;2130:7;2118:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;1969:184;;:::o;7447:140::-;7508:4;7525:32;7535:10;7547:2;7551:5;7525:9;:32::i;:::-;7575:4;7568:11;;7447:140;;;;:::o;15460:8184::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

bzzr://f9c633f9182647b9ff5a3fa89f6791459d5ce4f4f0279da43f58721bc701127e

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

ARW Project intends to integrate all phases from processing of gold ore to distribution and sales based on blockchain technology and digital platform.

Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.

Validator Index Block Amount
View All Withdrawals
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.