ETH Price: $2,616.64 (-0.40%)

Contract

0xEbb3167Ee611Bc2675e71493142d2c72F841d5dd
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To

There are no matching entries

Please try again later

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
149720042022-06-16 6:59:10854 days ago1655362750  Contract Creation0 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xfDf27158...18f6103F1
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
ExporoToken

Compiler Version
v0.5.7+commit.6da8b019

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-06-17
*/

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

pragma solidity ^0.5.2;

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

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

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

    function totalSupply() external view returns (uint256);

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

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

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

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

// File: openzeppelin-solidity/contracts/math/SafeMath.sol

pragma solidity ^0.5.2;

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

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

        return c;
    }

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

        return c;
    }

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

        return c;
    }

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

        return c;
    }

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

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

pragma solidity ^0.5.2;



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

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.5.2;


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

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

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

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

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

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

pragma solidity ^0.5.2;


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

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

// File: openzeppelin-solidity/contracts/access/Roles.sol

pragma solidity ^0.5.2;

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

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

        role.bearer[account] = true;
    }

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

        role.bearer[account] = false;
    }

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

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

pragma solidity ^0.5.2;


contract PauserRole {
    using Roles for Roles.Role;

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

    Roles.Role private _pausers;

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

    modifier onlyPauser() {
        require(isPauser(msg.sender));
        _;
    }

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

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

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

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

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

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

pragma solidity ^0.5.2;


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

    bool private _paused;

    constructor () internal {
        _paused = false;
    }

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

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

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

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

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

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

pragma solidity ^0.5.2;



/**
 * @title Pausable token
 * @dev ERC20 modified with pausable transfers.
 */
contract ERC20Pausable is ERC20, Pausable {
    function transfer(address to, uint256 value) public whenNotPaused returns (bool) {
        return super.transfer(to, value);
    }

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

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

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

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

// File: openzeppelin-solidity/contracts/ownership/Ownable.sol

pragma solidity ^0.5.2;

/**
 * @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 private _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());
        _;
    }

    /**
     * @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 relinquish control of the contract.
     * It will not be possible to call the functions with the `onlyOwner`
     * modifier anymore.
     * @notice Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @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));
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: openzeppelin-solidity/contracts/math/Math.sol

pragma solidity ^0.5.2;

/**
 * @title Math
 * @dev Assorted math operations
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Calculates the average of two numbers. Since these are integers,
     * averages of an even and odd number cannot be represented, and will be
     * rounded down.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow, so we distribute
        return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2);
    }
}

// File: contracts/token/ERC20/library/Snapshots.sol

/**
 * @title Snapshot
 * @dev Utility library of the Snapshot structure, including getting value.
 * @author Validity Labs AG <[email protected]>
 */
pragma solidity 0.5.7;




library Snapshots {
    using Math for uint256;
    using SafeMath for uint256;

    /**
     * @notice This structure stores the historical value associate at a particular blocknumber
     * @param fromBlock The blocknumber of the creation of the snapshot
     * @param value The value to be recorded
     */
    struct Snapshot {
        uint256 fromBlock;
        uint256 value;
    }

    struct SnapshotList {
        Snapshot[] history;
    }

    /**
     * @notice This function creates snapshots for certain value...
     * @dev To avoid having two Snapshots with the same block.number, we check if the last
     * existing one is the current block.number, we update the last Snapshot
     * @param item The SnapshotList to be operated
     * @param _value The value associated the the item that is going to have a snapshot
     */
    function createSnapshot(SnapshotList storage item, uint256 _value) internal {
        uint256 length = item.history.length;
        if (length == 0 || (item.history[length.sub(1)].fromBlock < block.number)) {
            item.history.push(Snapshot(block.number, _value));
        } else {
            // When the last existing snapshot is ready to be updated
            item.history[length.sub(1)].value = _value;
        }
    }

    /**
     * @notice Find the index of the item in the SnapshotList that contains information
     * corresponding to the blockNumber. (FindLowerBond of the array)
     * @dev The binary search logic is inspired by the Arrays.sol from Openzeppelin
     * @param item The list of Snapshots to be queried
     * @param blockNumber The block number of the queried moment
     * @return The index of the Snapshot array
     */
    function findBlockIndex(
        SnapshotList storage item, 
        uint256 blockNumber
    ) 
        internal
        view 
        returns (uint256)
    {
        // Find lower bound of the array
        uint256 length = item.history.length;

        // Return value for extreme cases: If no snapshot exists and/or the last snapshot
        if (item.history[length.sub(1)].fromBlock <= blockNumber) {
            return length.sub(1);
        } else {
            // Need binary search for the value
            uint256 low = 0;
            uint256 high = length.sub(1);

            while (low < high.sub(1)) {
                uint256 mid = Math.average(low, high);
                // mid will always be strictly less than high and it rounds down
                if (item.history[mid].fromBlock <= blockNumber) {
                    low = mid;
                } else {
                    high = mid;
                }
            }
            return low;
        }   
    }

    /**
     * @notice This function returns the value of the corresponding Snapshot
     * @param item The list of Snapshots to be queried
     * @param blockNumber The block number of the queried moment
     * @return The value of the queried moment
     */
    function getValueAt(
        SnapshotList storage item, 
        uint256 blockNumber
    )
        internal
        view
        returns (uint256)
    {
        if (item.history.length == 0 || blockNumber < item.history[0].fromBlock) {
            return 0;
        } else {
            uint256 index = findBlockIndex(item, blockNumber);
            return item.history[index].value;
        }
    }
}

// File: contracts/token/ERC20/IERC20Snapshot.sol

/**
 * @title Interface ERC20 SnapshotToken (abstract contract)
 * @author Validity Labs AG <[email protected]>
 */

pragma solidity 0.5.7;  


/* solhint-disable no-empty-blocks */
interface IERC20Snapshot {   
    /**
    * @dev Queries the balance of `_owner` at a specific `_blockNumber`
    * @param _owner The address from which the balance will be retrieved
    * @param _blockNumber The block number when the balance is queried
    * @return The balance at `_blockNumber`
    */
    function balanceOfAt(address _owner, uint _blockNumber) external view returns (uint256);

    /**
    * @notice Total amount of tokens at a specific `_blockNumber`.
    * @param _blockNumber The block number when the totalSupply is queried
    * @return The total amount of tokens at `_blockNumber`
    */
    function totalSupplyAt(uint _blockNumber) external view returns(uint256);
}

// File: contracts/token/ERC20/ERC20Snapshot.sol

/**
 * @title Snapshot Token
 * @dev This is an ERC20 compatible token that takes snapshots of account balances.
 * @author Validity Labs AG <[email protected]>
 */
pragma solidity 0.5.7;  





contract ERC20Snapshot is ERC20, IERC20Snapshot {
    using Snapshots for Snapshots.SnapshotList;

    mapping(address => Snapshots.SnapshotList) private _snapshotBalances; 
    Snapshots.SnapshotList private _snapshotTotalSupply;   

    event AccountSnapshotCreated(address indexed account, uint256 indexed blockNumber, uint256 value);
    event TotalSupplySnapshotCreated(uint256 indexed blockNumber, uint256 value);

    /**
     * @notice Return the historical supply of the token at a certain time
     * @param blockNumber The block number of the moment when token supply is queried
     * @return The total supply at "blockNumber"
     */
    function totalSupplyAt(uint256 blockNumber) external view returns (uint256) {
        return _snapshotTotalSupply.getValueAt(blockNumber);
    }

    /**
     * @notice Return the historical balance of an account at a certain time
     * @param owner The address of the token holder
     * @param blockNumber The block number of the moment when token supply is queried
     * @return The balance of the queried token holder at "blockNumber"
     */
    function balanceOfAt(address owner, uint256 blockNumber) 
        external 
        view 
        returns (uint256) 
    {
        return _snapshotBalances[owner].getValueAt(blockNumber);
    }

    /** OVERRIDE
     * @notice Transfer tokens between two accounts while enforcing the update of Snapshots
     * @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 {
        super._transfer(from, to, value);

        _snapshotBalances[from].createSnapshot(balanceOf(from));
        _snapshotBalances[to].createSnapshot(balanceOf(to));

        emit AccountSnapshotCreated(from, block.number, balanceOf(from));
        emit AccountSnapshotCreated(to, block.number, balanceOf(to));
    }

    /** OVERRIDE
     * @notice Mint tokens to one account while enforcing the update of Snapshots
     * @param account The address that receives tokens
     * @param value The amount of tokens to be created
     */
    function _mint(address account, uint256 value) internal {
        super._mint(account, value);

        _snapshotBalances[account].createSnapshot(balanceOf(account));
        _snapshotTotalSupply.createSnapshot(totalSupply());
        
        emit AccountSnapshotCreated(account, block.number, balanceOf(account));
        emit TotalSupplySnapshotCreated(block.number, totalSupply());
    }

    /** OVERRIDE
     * @notice Burn tokens of one account
     * @param account The address whose tokens will be burnt
     * @param value The amount of tokens to be burnt
     */
    function _burn(address account, uint256 value) internal {
        super._burn(account, value);

        _snapshotBalances[account].createSnapshot(balanceOf(account));
        _snapshotTotalSupply.createSnapshot(totalSupply());

        emit AccountSnapshotCreated(account, block.number, balanceOf(account));
        emit TotalSupplySnapshotCreated(block.number, totalSupply());
    }
}

// File: contracts/token/ERC20/ERC20ForcedTransfer.sol

/**
 * @title ERC20Confiscatable
 * @author Validity Labs AG <[email protected]>
 */

pragma solidity 0.5.7;  





contract ERC20ForcedTransfer is Ownable, ERC20 {
    /*** EVENTS ***/
    event ForcedTransfer(address indexed account, uint256 amount, address indexed receiver);

    /*** FUNCTIONS ***/
    /**
    * @notice takes funds from _confiscatee and sends them to _receiver
    * @param _confiscatee address who's funds are being confiscated
    * @param _receiver address who's receiving the funds 
    * @param _amount uint256 amount of tokens to force transfer away
    */
    function forceTransfer(address _confiscatee, address _receiver, uint256 _amount) public onlyOwner {
        _transfer(_confiscatee, _receiver, _amount);

        emit ForcedTransfer(_confiscatee, _amount, _receiver);
    }
}

// File: contracts/utils/Utils.sol

/**
 * @title Manageable Contract
 * @author Validity Labs AG <[email protected]>
 */
 
pragma solidity 0.5.7;


contract Utils {
    /** MODIFIERS **/
    modifier onlyValidAddress(address _address) {
        require(_address != address(0), "invalid address");
        _;
    }
}

// File: contracts/management/Manageable.sol

/**
 * @title Manageable Contract
 * @author Validity Labs AG <[email protected]>
 */
 
 pragma solidity 0.5.7;



contract Manageable is Ownable, Utils {
    mapping(address => bool) public isManager;     // manager accounts

    /** EVENTS **/
    event ChangedManager(address indexed manager, bool active);

    /** MODIFIERS **/
    modifier onlyManager() {
        require(isManager[msg.sender], "is not manager");
        _;
    }

    /**
    * @notice constructor sets the deployer as a manager
    */
    constructor() public {
        setManager(msg.sender, true);
    }

    /**
     * @notice enable/disable an account to be a manager
     * @param _manager address address of the manager to create/alter
     * @param _active bool flag that shows if the manager account is active
     */
    function setManager(address _manager, bool _active) public onlyOwner onlyValidAddress(_manager) {
        isManager[_manager] = _active;
        emit ChangedManager(_manager, _active);
    }

    /** OVERRIDE 
    * @notice does not allow owner to give up ownership
    */
    function renounceOwnership() public onlyOwner {
        revert("Cannot renounce ownership");
    }
}

// File: contracts/whitelist/GlobalWhitelist.sol

/**
 * @title Global Whitelist Contract
 * @author Validity Labs AG <[email protected]>
 */

pragma solidity 0.5.7;




contract GlobalWhitelist is Ownable, Manageable {
    mapping(address => bool) public isWhitelisted; // addresses of who's whitelisted
    bool public isWhitelisting = true;             // whitelisting enabled by default

    /** EVENTS **/
    event ChangedWhitelisting(address indexed registrant, bool whitelisted);
    event GlobalWhitelistDisabled(address indexed manager);
    event GlobalWhitelistEnabled(address indexed manager);

    /**
    * @dev add an address to the whitelist
    * @param _address address
    */
    function addAddressToWhitelist(address _address) public onlyManager onlyValidAddress(_address) {
        isWhitelisted[_address] = true;
        emit ChangedWhitelisting(_address, true);
    }

    /**
    * @dev add addresses to the whitelist
    * @param _addresses addresses array
    */
    function addAddressesToWhitelist(address[] calldata _addresses) external {
        for (uint256 i = 0; i < _addresses.length; i++) {
            addAddressToWhitelist(_addresses[i]);
        }
    }

    /**
    * @dev remove an address from the whitelist
    * @param _address address
    */
    function removeAddressFromWhitelist(address _address) public onlyManager onlyValidAddress(_address) {
        isWhitelisted[_address] = false;
        emit ChangedWhitelisting(_address, false);
    }

    /**
    * @dev remove addresses from the whitelist
    * @param _addresses addresses
    */
    function removeAddressesFromWhitelist(address[] calldata _addresses) external {
        for (uint256 i = 0; i < _addresses.length; i++) {
            removeAddressFromWhitelist(_addresses[i]);
        }
    }

    /** 
    * @notice toggle the whitelist by the parent contract; ExporoTokenFactory
    */
    function toggleWhitelist() external onlyOwner {
        isWhitelisting = isWhitelisting ? false : true;

        if (isWhitelisting) {
            emit GlobalWhitelistEnabled(msg.sender);
        } else {
            emit GlobalWhitelistDisabled(msg.sender);
        }
    }
}

// File: contracts/token/ERC20/ERC20Whitelist.sol

/**
 * @title ERC20Whitelist
 * @author Validity Labs AG <[email protected]>
 */

pragma solidity 0.5.7;  





contract ERC20Whitelist is Ownable, ERC20 {   
    GlobalWhitelist public whitelist;
    bool public isWhitelisting = true;  // default to true

    /** EVENTS **/
    event ESTWhitelistingEnabled();
    event ESTWhitelistingDisabled();

    /*** FUNCTIONS ***/
    /**
    * @notice disables whitelist per individual EST
    * @dev parnent contract, ExporoTokenFactory, is owner
    */
    function toggleWhitelist() external onlyOwner {
        isWhitelisting = isWhitelisting ? false : true;
        
        if (isWhitelisting) {
            emit ESTWhitelistingEnabled();
        } else {
            emit ESTWhitelistingDisabled();
        }
    }

    /** OVERRIDE
    * @dev transfer token for a specified address
    * @param _to The address to transfer to.
    * @param _value The amount to be transferred.
    * @return bool
    */
    function transfer(address _to, uint256 _value) public returns (bool) {
        if (checkWhitelistEnabled()) {
            checkIfWhitelisted(msg.sender);
            checkIfWhitelisted(_to);
        }
        return super.transfer(_to, _value);
    }

    /** OVERRIDE
    * @dev Transfer tokens from one address to another
    * @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
    * @return bool
    */
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
        if (checkWhitelistEnabled()) {
            checkIfWhitelisted(_from);
            checkIfWhitelisted(_to);
        }
        return super.transferFrom(_from, _to, _value);
    }

    /**
    * @dev check if whitelisting is in effect versus local and global bools
    * @return bool
    */
    function checkWhitelistEnabled() public view returns (bool) {
        // local whitelist
        if (isWhitelisting) {
            // global whitelist
            if (whitelist.isWhitelisting()) {
                return true;
            }
        }

        return false;
    }

    /*** INTERNAL/PRIVATE ***/
    /**
    * @dev check if the address has been whitelisted by the Whitelist contract
    * @param _account address of the account to check
    */
    function checkIfWhitelisted(address _account) internal view {
        require(whitelist.isWhitelisted(_account), "not whitelisted");
    }
}

// File: contracts/token/ERC20/ERC20DocumentRegistry.sol

/**
 * @title ERC20 Document Registry Contract
 * @author Validity Labs AG <[email protected]>
 */
 
 pragma solidity 0.5.7;




/**
 * @notice Prospectus and Quarterly Reports stored hashes via IPFS
 * @dev read IAgreement for details under /contracts/neufund/standards
*/
// solhint-disable not-rely-on-time
contract ERC20DocumentRegistry is Ownable {
    using SafeMath for uint256;

    struct HashedDocument {
        uint256 timestamp;
        string documentUri;
    }

    // array of all documents 
    HashedDocument[] private _documents;

    event LogDocumentedAdded(string documentUri, uint256 indexed documentIndex);

    /**
    * @notice adds a document's uri from IPFS to the array
    * @param documentUri string
    */
    function addDocument(string calldata documentUri) external onlyOwner {
        require(bytes(documentUri).length > 0, "invalid documentUri");

        HashedDocument memory document = HashedDocument({
            timestamp: block.timestamp,
            documentUri: documentUri
        });

        _documents.push(document);

        emit LogDocumentedAdded(documentUri, _documents.length.sub(1));
    }

    /**
    * @notice fetch the latest document on the array
    * @return uint256, string, uint256 
    */
    function currentDocument() external view 
        returns (uint256 timestamp, string memory documentUri, uint256 index) {
            require(_documents.length > 0, "no documents exist");
            uint256 last = _documents.length.sub(1);

            HashedDocument storage document = _documents[last];
            return (document.timestamp, document.documentUri, last);
        }

    /**
    * @notice fetches a document's uri
    * @param documentIndex uint256
    * @return uint256, string, uint256 
    */
    function getDocument(uint256 documentIndex) external view
        returns (uint256 timestamp, string memory documentUri, uint256 index) {
            require(documentIndex < _documents.length, "invalid index");

            HashedDocument storage document = _documents[documentIndex];
            return (document.timestamp, document.documentUri, documentIndex);
        }

    /**
    * @notice return the total amount of documents in the array
    * @return uint256
    */
    function documentCount() external view returns (uint256) {
        return _documents.length;
    }
}

// File: contracts/token/ERC20/ERC20BatchSend.sol

/**
 * @title Batch Send
 * @author Validity Labs AG <[email protected]>
 */

pragma solidity 0.5.7;



contract ERC20BatchSend is ERC20 {
    /**
     * @dev Allows the transfer of token amounts to multiple addresses.
     * @param beneficiaries Array of addresses that would receive the tokens.
     * @param amounts Array of amounts to be transferred per beneficiary.
     */
    function batchSend(address[] calldata beneficiaries, uint256[] calldata amounts) external {
        require(beneficiaries.length == amounts.length, "mismatched array lengths");

        uint256 length = beneficiaries.length;

        for (uint256 i = 0; i < length; i++) {
            transfer(beneficiaries[i], amounts[i]);
        }
    }
}

// File: contracts/exporo/ExporoToken.sol

/**
 * @title Exporo Token Contract
 * @author Validity Labs AG <[email protected]>
 */

pragma solidity 0.5.7;












contract ExporoToken is Ownable, ERC20Snapshot, ERC20Detailed, ERC20Burnable, ERC20ForcedTransfer, ERC20Whitelist, ERC20BatchSend, ERC20Pausable, ERC20DocumentRegistry {
    /*** FUNCTIONS ***/
    /**
    * @dev constructor
    * @param _name string
    * @param _symbol string
    * @param _decimal uint8
    * @param _whitelist address
    * @param _initialSupply uint256 initial total supply cap. can be 0
    * @param _recipient address to recieve the tokens
    */
    /* solhint-disable */
    constructor(string memory _name, string memory _symbol, uint8 _decimal, address _whitelist, uint256 _initialSupply, address _recipient)
        public 
        ERC20Detailed(_name, _symbol, _decimal) {
            _mint(_recipient, _initialSupply);

            whitelist = GlobalWhitelist(_whitelist);
        }
    /* solhint-enable */
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_confiscatee","type":"address"},{"name":"_receiver","type":"address"},{"name":"_amount","type":"uint256"}],"name":"forceTransfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"documentIndex","type":"uint256"}],"name":"getDocument","outputs":[{"name":"timestamp","type":"uint256"},{"name":"documentUri","type":"string"},{"name":"index","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isPauser","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"blockNumber","type":"uint256"}],"name":"balanceOfAt","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"beneficiaries","type":"address[]"},{"name":"amounts","type":"uint256[]"}],"name":"batchSend","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"checkWhitelistEnabled","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"toggleWhitelist","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"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":"isWhitelisting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"whitelist","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"blockNumber","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"documentCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":"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":false,"inputs":[{"name":"documentUri","type":"string"}],"name":"addDocument","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"currentDocument","outputs":[{"name":"timestamp","type":"uint256"},{"name":"documentUri","type":"string"},{"name":"index","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_decimal","type":"uint8"},{"name":"_whitelist","type":"address"},{"name":"_initialSupply","type":"uint256"},{"name":"_recipient","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"documentUri","type":"string"},{"indexed":true,"name":"documentIndex","type":"uint256"}],"name":"LogDocumentedAdded","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":[],"name":"ESTWhitelistingEnabled","type":"event"},{"anonymous":false,"inputs":[],"name":"ESTWhitelistingDisabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":true,"name":"receiver","type":"address"}],"name":"ForcedTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"},{"indexed":true,"name":"blockNumber","type":"uint256"},{"indexed":false,"name":"value","type":"uint256"}],"name":"AccountSnapshotCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"blockNumber","type":"uint256"},{"indexed":false,"name":"value","type":"uint256"}],"name":"TotalSupplySnapshotCreated","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"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102115760003560e01c80637a53bcfc1161012557806395d89b41116100ad578063a9059cbb1161007c578063a9059cbb14610a8b578063dd62ed3e14610af1578063f2fde38b14610b69578063f740e04514610bad578063fcb343b314610c2657610211565b806395d89b4114610942578063981b24d0146109c5578063a457c2d714610a07578063a5b16b2e14610a6d57610211565b80638456cb59116100f45780638456cb59146108605780638da5cb5b1461086a5780638f32d59b146108b4578063914f5207146108d657806393e59dc1146108f857610211565b80637a53bcfc146107225780637b62ab6c146107f05780637e15144b1461081257806382dc1ec41461081c57610211565b80633f9b250a116101a85780635c975abb116101775780635c975abb146106465780636ef8d66d1461066857806370a0823114610672578063715018a6146106ca57806379cc6790146106d457610211565b80633f9b250a146104a557806342966c681461055a57806346fbf68e146105885780634ee2cd7e146105e457610211565b8063313ce567116101e4578063313ce567146103a357806333bebb77146103c757806339509351146104355780633f4ba83a1461049b57610211565b806306fdde0314610216578063095ea7b31461029957806318160ddd146102ff57806323b872dd1461031d575b600080fd5b61021e610cb7565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561025e578082015181840152602081019050610243565b50505050905090810190601f16801561028b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102e5600480360360408110156102af57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d59565b604051808215151515815260200191505060405180910390f35b610307610d87565b6040518082815260200191505060405180910390f35b6103896004803603606081101561033357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d91565b604051808215151515815260200191505060405180910390f35b6103ab610dc1565b604051808260ff1660ff16815260200191505060405180910390f35b610433600480360360608110156103dd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610dd8565b005b6104816004803603604081101561044b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e5e565b604051808215151515815260200191505060405180910390f35b6104a3610e8c565b005b6104d1600480360360208110156104bb57600080fd5b8101908080359060200190929190505050610f37565b6040518084815260200180602001838152602001828103825284818151815260200191508051906020019080838360005b8381101561051d578082015181840152602081019050610502565b50505050905090810190601f16801561054a5780820380516001836020036101000a031916815260200191505b5094505050505060405180910390f35b6105866004803603602081101561057057600080fd5b810190808035906020019092919050505061108a565b005b6105ca6004803603602081101561059e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611097565b604051808215151515815260200191505060405180910390f35b610630600480360360408110156105fa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506110b4565b6040518082815260200191505060405180910390f35b61064e61110f565b604051808215151515815260200191505060405180910390f35b610670611126565b005b6106b46004803603602081101561068857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611131565b6040518082815260200191505060405180910390f35b6106d261117a565b005b610720600480360360408110156106ea57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061124a565b005b6107ee6004803603604081101561073857600080fd5b810190808035906020019064010000000081111561075557600080fd5b82018360208201111561076757600080fd5b8035906020019184602083028401116401000000008311171561078957600080fd5b9091929391929390803590602001906401000000008111156107aa57600080fd5b8201836020820111156107bc57600080fd5b803590602001918460208302840111640100000000831117156107de57600080fd5b9091929391929390505050611258565b005b6107f8611343565b604051808215151515815260200191505060405180910390f35b61081a611414565b005b61085e6004803603602081101561083257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114d1565b005b6108686114ef565b005b61087261159b565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108bc6115c4565b604051808215151515815260200191505060405180910390f35b6108de61161b565b604051808215151515815260200191505060405180910390f35b61090061162e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61094a611654565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561098a57808201518184015260208101905061096f565b50505050905090810190601f1680156109b75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6109f1600480360360208110156109db57600080fd5b81019080803590602001909291905050506116f6565b6040518082815260200191505060405180910390f35b610a5360048036036040811015610a1d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611713565b604051808215151515815260200191505060405180910390f35b610a75611741565b6040518082815260200191505060405180910390f35b610ad760048036036040811015610aa157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061174e565b604051808215151515815260200191505060405180910390f35b610b5360048036036040811015610b0757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061177c565b6040518082815260200191505060405180910390f35b610bab60048036036020811015610b7f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611803565b005b610c2460048036036020811015610bc357600080fd5b8101908080359060200190640100000000811115610be057600080fd5b820183602082011115610bf257600080fd5b80359060200191846001830284011164010000000083111715610c1457600080fd5b9091929391929390505050611820565b005b610c2e6119e6565b6040518084815260200180602001838152602001828103825284818151815260200191508051906020019080838360005b83811015610c7a578082015181840152602081019050610c5f565b50505050905090810190601f168015610ca75780820380516001836020036101000a031916815260200191505b5094505050505060405180910390f35b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610d4f5780601f10610d2457610100808354040283529160200191610d4f565b820191906000526020600020905b815481529060010190602001808311610d3257829003601f168201915b5050505050905090565b6000600a60009054906101000a900460ff1615610d7557600080fd5b610d7f8383611b55565b905092915050565b6000600354905090565b6000600a60009054906101000a900460ff1615610dad57600080fd5b610db8848484611b6c565b90509392505050565b6000600860009054906101000a900460ff16905090565b610de06115c4565b610de957600080fd5b610df4838383611ba2565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fa11ae3f873795da36b88189b71a9310742245b9d6e0bc5c3463bf8fb260281af836040518082815260200191505060405180910390a3505050565b6000600a60009054906101000a900460ff1615610e7a57600080fd5b610e848383611d12565b905092915050565b610e9533611097565b610e9e57600080fd5b600a60009054906101000a900460ff16610eb757600080fd5b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600060606000600b805490508410610fb7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f696e76616c696420696e6465780000000000000000000000000000000000000081525060200191505060405180910390fd5b6000600b8581548110610fc657fe5b9060005260206000209060020201905080600001548160010186818054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156110755780601f1061104a57610100808354040283529160200191611075565b820191906000526020600020905b81548152906001019060200180831161105857829003601f168201915b50505050509150935093509350509193909250565b6110943382611db7565b50565b60006110ad826009611ecf90919063ffffffff16565b9050919050565b600061110782600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611f6190919063ffffffff16565b905092915050565b6000600a60009054906101000a900460ff16905090565b61112f33611fdf565b565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111826115c4565b61118b57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6112548282612039565b5050565b8181905084849050146112d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f6d69736d617463686564206172726179206c656e67746873000000000000000081525060200191505060405180910390fd5b600084849050905060008090505b8181101561133b5761132d8686838181106112f857fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1685858481811061132157fe5b9050602002013561174e565b5080806001019150506112e1565b505050505050565b6000600860159054906101000a900460ff161561140c57600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663914f52076040518163ffffffff1660e01b815260040160206040518083038186803b1580156113c257600080fd5b505afa1580156113d6573d6000803e3d6000fd5b505050506040513d60208110156113ec57600080fd5b81019080805190602001909291905050501561140b5760019050611411565b5b600090505b90565b61141c6115c4565b61142557600080fd5b600860159054906101000a900460ff16611440576001611443565b60005b600860156101000a81548160ff021916908315150217905550600860159054906101000a900460ff16156114a2577f0619aa5871528c196a8bee5d141b8471e0b31151f1c84c2f9330633a829b88cb60405160405180910390a16114cf565b7fefba29f8b62985a2fe3482b460d5bf4e0986196764b5a4a52ee894caa1d9d2cb60405160405180910390a15b565b6114da33611097565b6114e357600080fd5b6114ec816120e0565b50565b6114f833611097565b61150157600080fd5b600a60009054906101000a900460ff161561151b57600080fd5b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b600860159054906101000a900460ff1681565b600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116ec5780601f106116c1576101008083540402835291602001916116ec565b820191906000526020600020905b8154815290600101906020018083116116cf57829003601f168201915b5050505050905090565b600061170c826005611f6190919063ffffffff16565b9050919050565b6000600a60009054906101000a900460ff161561172f57600080fd5b611739838361213a565b905092915050565b6000600b80549050905090565b6000600a60009054906101000a900460ff161561176a57600080fd5b61177483836121df565b905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61180b6115c4565b61181457600080fd5b61181d81612213565b50565b6118286115c4565b61183157600080fd5b600082829050116118aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f696e76616c696420646f63756d656e745572690000000000000000000000000081525060200191505060405180910390fd5b6118b2612d5b565b604051806040016040528042815260200184848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050508152509050600b8190806001815401808255809150509060018203906000526020600020906002020160009091929091909150600082015181600001556020820151816001019080519060200190611961929190612d75565b5050505061197e6001600b8054905061230b90919063ffffffff16565b7f6a8f0ee5a5300087347ba2a68d54d3c5ddb7584a54dcd25e04685a7e9257f56f848460405180806020018281038252848482818152602001925080828437600081840152601f19601f820116905080830192505050935050505060405180910390a2505050565b60006060600080600b8054905011611a66576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f6e6f20646f63756d656e7473206578697374000000000000000000000000000081525060200191505060405180910390fd5b6000611a816001600b8054905061230b90919063ffffffff16565b90506000600b8281548110611a9257fe5b9060005260206000209060020201905080600001548160010183818054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611b415780601f10611b1657610100808354040283529160200191611b41565b820191906000526020600020905b815481529060010190602001808311611b2457829003601f168201915b505050505091509450945094505050909192565b6000611b6233848461232b565b6001905092915050565b6000611b76611343565b15611b8e57611b848461248a565b611b8d8361248a565b5b611b998484846125d9565b90509392505050565b611bad83838361268a565b611c06611bb984611131565b600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061285890919063ffffffff16565b611c5f611c1283611131565b600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061285890919063ffffffff16565b438373ffffffffffffffffffffffffffffffffffffffff167f3c9804bd4ed58a4d26976be3767c732c59125bdbddbe3b8ed0a247b2640b810b611ca186611131565b6040518082815260200191505060405180910390a3438273ffffffffffffffffffffffffffffffffffffffff167f3c9804bd4ed58a4d26976be3767c732c59125bdbddbe3b8ed0a247b2640b810b611cf885611131565b6040518082815260200191505060405180910390a3505050565b6000611dad3384611da885600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461294890919063ffffffff16565b61232b565b6001905092915050565b611dc18282612967565b611e1a611dcd83611131565b600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061285890919063ffffffff16565b611e35611e25610d87565b600561285890919063ffffffff16565b438273ffffffffffffffffffffffffffffffffffffffff167f3c9804bd4ed58a4d26976be3767c732c59125bdbddbe3b8ed0a247b2640b810b611e7785611131565b6040518082815260200191505060405180910390a3437fd4ef7e49cf313a9bb432e970a127e18e988925c846b38265a3cfa2787fc3b7f1611eb6610d87565b6040518082815260200191505060405180910390a25050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f0a57600080fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60008083600001805490501480611f98575082600001600081548110611f8357fe5b90600052602060002090600202016000015482105b15611fa65760009050611fd9565b6000611fb28484612abb565b9050836000018181548110611fc357fe5b9060005260206000209060020201600101549150505b92915050565b611ff3816009612bab90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b6120438282611db7565b6120dc82336120d784600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461230b90919063ffffffff16565b61232b565b5050565b6120f4816009612c5690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b60006121d533846121d085600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461230b90919063ffffffff16565b61232b565b6001905092915050565b60006121e9611343565b15612201576121f73361248a565b6122008361248a565b5b61220b8383612d02565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561224d57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008282111561231a57600080fd5b600082840390508091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561236557600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561239f57600080fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633af32abf826040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561252957600080fd5b505afa15801561253d573d6000803e3d6000fd5b505050506040513d602081101561255357600080fd5b81019080805190602001909291905050506125d6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f6e6f742077686974656c6973746564000000000000000000000000000000000081525060200191505060405180910390fd5b50565b60006125e6848484611ba2565b61267f843361267a85600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461230b90919063ffffffff16565b61232b565b600190509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126c457600080fd5b61271681600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461230b90919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506127ab81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461294890919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008260000180549050905060008114806128a55750438360000161288760018461230b90919063ffffffff16565b8154811061289157fe5b906000526020600020906002020160000154105b1561290a5782600001604051806040016040528043815260200184815250908060018154018082558091505090600182039060005260206000209060020201600090919290919091506000820151816000015560208201518160010155505050612943565b818360000161292360018461230b90919063ffffffff16565b8154811061292d57fe5b9060005260206000209060020201600101819055505b505050565b60008082840190508381101561295d57600080fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129a157600080fd5b6129b68160035461230b90919063ffffffff16565b600381905550612a0e81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461230b90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600080836000018054905090508284600001612ae160018461230b90919063ffffffff16565b81548110612aeb57fe5b90600052602060002090600202016000015411612b1e57612b1660018261230b90919063ffffffff16565b915050612ba5565b60008090506000612b3960018461230b90919063ffffffff16565b90505b612b5060018261230b90919063ffffffff16565b821015612b9e576000612b638383612d19565b905085876000018281548110612b7557fe5b90600052602060002090600202016000015411612b9457809250612b98565b8091505b50612b3c565b8193505050505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612be557600080fd5b612bef8282611ecf565b612bf857600080fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c9057600080fd5b612c9a8282611ecf565b15612ca457600080fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000612d0f338484611ba2565b6001905092915050565b60006002808381612d2657fe5b0660028581612d3157fe5b060181612d3a57fe5b0460028381612d4557fe5b0460028581612d5057fe5b040101905092915050565b604051806040016040528060008152602001606081525090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612db657805160ff1916838001178555612de4565b82800160010185558215612de4579182015b82811115612de3578251825591602001919060010190612dc8565b5b509050612df19190612df5565b5090565b612e1791905b80821115612e13576000816000905550600101612dfb565b5090565b90565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e5457600080fd5b612e698160035461294890919063ffffffff16565b600381905550612ec181600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461294890919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505056fea165627a7a72305820a2cbccdc05b6b9db80b37eb9b7c1784bddfe3c222d937aaa9866e0b50923d6250029

Deployed Bytecode Sourcemap

39459:860:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39459:860:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11395:83;;;:::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;11395:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16607:140;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16607:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3796:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16439:160;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16439:160:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11711:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;29180:226;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;29180:226:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16755:175;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16755:175:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15935:118;;;:::i;:::-;;37860:378;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;37860:378: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;37860:378:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12160:79;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12160:79:0;;;;;;;;;;;;;;;;;:::i;:::-;;14113:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14113:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;26416:199;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26416:199:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15188:78;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;14330:77;;;:::i;:::-;;4106:106;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4106:106:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18669:140;;;:::i;:::-;;12493:95;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12493:95:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38913:348;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;38913:348:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;38913:348:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;38913:348:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;38913:348:0;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;38913:348:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;38913:348:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;38913:348:0;;;;;;;;;;;;:::i;:::-;;35327:288;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;33875:270;;;:::i;:::-;;14230:92;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14230:92:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;15724:116;;;:::i;:::-;;17879:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;18214:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;33562:33;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;33523:32;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11545:87;;;:::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;11545:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25953:146;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;25953:146:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16938:185;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16938:185:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;38351:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16299:132;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16299:132:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4551:131;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4551:131:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18986:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18986:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;36792:415;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;36792:415:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;36792:415:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;36792:415: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;36792:415:0;;;;;;;;;;;;:::i;:::-;;37327:391;;;:::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;37327:391:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11395:83;11432:13;11465:5;11458:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11395:83;:::o;16607:140::-;16686:4;15425:7;;;;;;;;;;;15424:8;15416:17;;;;;;16710:29;16724:7;16733:5;16710:13;:29::i;:::-;16703:36;;16607:140;;;;:::o;3796:91::-;3840:7;3867:12;;3860:19;;3796:91;:::o;16439:160::-;16532:4;15425:7;;;;;;;;;;;15424:8;15416:17;;;;;;16556:35;16575:4;16581:2;16585:5;16556:18;:35::i;:::-;16549:42;;16439:160;;;;;:::o;11711:83::-;11752:5;11777:9;;;;;;;;;;;11770:16;;11711:83;:::o;29180:226::-;18091:9;:7;:9::i;:::-;18083:18;;;;;;29289:43;29299:12;29313:9;29324:7;29289:9;:43::i;:::-;29388:9;29350:48;;29365:12;29350:48;;;29379:7;29350:48;;;;;;;;;;;;;;;;;;29180:226;;;:::o;16755:175::-;16846:12;15425:7;;;;;;;;;;;15424:8;15416:17;;;;;;16878:44;16902:7;16911:10;16878:23;:44::i;:::-;16871:51;;16755:175;;;;:::o;15935:118::-;14064:20;14073:10;14064:8;:20::i;:::-;14056:29;;;;;;15604:7;;;;;;;;;;;15596:16;;;;;;16004:5;15994:7;;:15;;;;;;;;;;;;;;;;;;16025:20;16034:10;16025:20;;;;;;;;;;;;;;;;;;;;;;15935:118::o;37860:378::-;37936:17;37955:25;37982:13;38036:10;:17;;;;38020:13;:33;38012:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38088:31;38122:10;38133:13;38122:25;;;;;;;;;;;;;;;;;;38088:59;;38170:8;:18;;;38190:8;:20;;38212:13;38162:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37860:378;;;;;:::o;12160:79::-;12207:24;12213:10;12225:5;12207;:24::i;:::-;12160:79;:::o;14113:109::-;14169:4;14193:21;14206:7;14193:8;:12;;:21;;;;:::i;:::-;14186:28;;14113:109;;;:::o;26416:199::-;26526:7;26559:48;26595:11;26559:17;:24;26577:5;26559:24;;;;;;;;;;;;;;;:35;;:48;;;;:::i;:::-;26552:55;;26416:199;;;;:::o;15188:78::-;15227:4;15251:7;;;;;;;;;;;15244:14;;15188:78;:::o;14330:77::-;14374:25;14388:10;14374:13;:25::i;:::-;14330:77::o;4106:106::-;4161:7;4188:9;:16;4198:5;4188:16;;;;;;;;;;;;;;;;4181:23;;4106:106;;;:::o;18669:140::-;18091:9;:7;:9::i;:::-;18083:18;;;;;;18768:1;18731:40;;18752:6;;;;;;;;;;;18731:40;;;;;;;;;;;;18799:1;18782:6;;:19;;;;;;;;;;;;;;;;;;18669:140::o;12493:95::-;12558:22;12568:4;12574:5;12558:9;:22::i;:::-;12493:95;;:::o;38913:348::-;39046:7;;:14;;39022:13;;:20;;:38;39014:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39102:14;39119:13;;:20;;39102:37;;39157:9;39169:1;39157:13;;39152:102;39176:6;39172:1;:10;39152:102;;;39204:38;39213:13;;39227:1;39213:16;;;;;;;;;;;;;;;39231:7;;39239:1;39231:10;;;;;;;;;;;;;39204:8;:38::i;:::-;;39184:3;;;;;;;39152:102;;;;38913:348;;;;;:::o;35327:288::-;35381:4;35430:14;;;;;;;;;;;35426:157;;;35498:9;;;;;;;;;;;:24;;;:26;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35498:26:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;35498:26:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;35498:26:0;;;;;;;;;;;;;;;;35494:78;;;35552:4;35545:11;;;;35494:78;35426:157;35602:5;35595:12;;35327:288;;:::o;33875:270::-;18091:9;:7;:9::i;:::-;18083:18;;;;;;33949:14;;;;;;;;;;;:29;;33974:4;33949:29;;;33966:5;33949:29;33932:14;;:46;;;;;;;;;;;;;;;;;;34003:14;;;;;;;;;;;33999:139;;;34039:24;;;;;;;;;;33999:139;;;34101:25;;;;;;;;;;33999:139;33875:270::o;14230:92::-;14064:20;14073:10;14064:8;:20::i;:::-;14056:29;;;;;;14295:19;14306:7;14295:10;:19::i;:::-;14230:92;:::o;15724:116::-;14064:20;14073:10;14064:8;:20::i;:::-;14056:29;;;;;;15425:7;;;;;;;;;;;15424:8;15416:17;;;;;;15794:4;15784:7;;:14;;;;;;;;;;;;;;;;;;15814:18;15821:10;15814:18;;;;;;;;;;;;;;;;;;;;;;15724:116::o;17879:79::-;17917:7;17944:6;;;;;;;;;;;17937:13;;17879:79;:::o;18214:92::-;18254:4;18292:6;;;;;;;;;;;18278:20;;:10;:20;;;18271:27;;18214:92;:::o;33562:33::-;;;;;;;;;;;;;:::o;33523:32::-;;;;;;;;;;;;;:::o;11545:87::-;11584:13;11617:7;11610:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11545:87;:::o;25953:146::-;26020:7;26047:44;26079:11;26047:20;:31;;:44;;;;:::i;:::-;26040:51;;25953:146;;;:::o;16938:185::-;17034:12;15425:7;;;;;;;;;;;15424:8;15416:17;;;;;;17066:49;17090:7;17099:15;17066:23;:49::i;:::-;17059:56;;16938:185;;;;:::o;38351:100::-;38399:7;38426:10;:17;;;;38419:24;;38351:100;:::o;16299:132::-;16374:4;15425:7;;;;;;;;;;;15424:8;15416:17;;;;;;16398:25;16413:2;16417:5;16398:14;:25::i;:::-;16391:32;;16299:132;;;;:::o;4551:131::-;4623:7;4650:8;:15;4659:5;4650:15;;;;;;;;;;;;;;;:24;4666:7;4650:24;;;;;;;;;;;;;;;;4643:31;;4551:131;;;;:::o;18986:109::-;18091:9;:7;:9::i;:::-;18083:18;;;;;;19059:28;19078:8;19059:18;:28::i;:::-;18986:109;:::o;36792:415::-;18091:9;:7;:9::i;:::-;18083:18;;;;;;36908:1;36886:11;;36880:25;;:29;36872:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36946:30;;:::i;:::-;36979:107;;;;;;;;37020:15;36979:107;;;;37063:11;;36979:107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;36979:107:0;;;;;;;;;36946:140;;37099:10;37115:8;37099:25;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;37099:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;37174:24;37196:1;37174:10;:17;;;;:21;;:24;;;;:::i;:::-;37142:57;37161:11;;37142:57;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;37142:57:0;;;;;;;;;;;;;;18112:1;36792:415;;:::o;37327:391::-;37387:17;37406:25;37433:13;37491:1;37471:10;:17;;;;:21;37463:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37530:12;37545:24;37567:1;37545:10;:17;;;;:21;;:24;;;;:::i;:::-;37530:39;;37586:31;37620:10;37631:4;37620:16;;;;;;;;;;;;;;;;;;37586:50;;37659:8;:18;;;37679:8;:20;;37701:4;37651:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37327:391;;;:::o;5643:148::-;5708:4;5725:36;5734:10;5746:7;5755:5;5725:8;:36::i;:::-;5779:4;5772:11;;5643:148;;;;:::o;34924:281::-;35006:4;35027:23;:21;:23::i;:::-;35023:119;;;35067:25;35086:5;35067:18;:25::i;:::-;35107:23;35126:3;35107:18;:23::i;:::-;35023:119;35159:38;35178:5;35185:3;35190:6;35159:18;:38::i;:::-;35152:45;;34924:281;;;;;:::o;26887:398::-;26967:32;26983:4;26989:2;26993:5;26967:15;:32::i;:::-;27012:55;27051:15;27061:4;27051:9;:15::i;:::-;27012:17;:23;27030:4;27012:23;;;;;;;;;;;;;;;:38;;:55;;;;:::i;:::-;27078:51;27115:13;27125:2;27115:9;:13::i;:::-;27078:17;:21;27096:2;27078:21;;;;;;;;;;;;;;;:36;;:51;;;;:::i;:::-;27176:12;27170:4;27147:59;;;27190:15;27200:4;27190:9;:15::i;:::-;27147:59;;;;;;;;;;;;;;;;;;27249:12;27245:2;27222:55;;;27263:13;27273:2;27263:9;:13::i;:::-;27222:55;;;;;;;;;;;;;;;;;;26887:398;;;:::o;7018:203::-;7098:4;7115:76;7124:10;7136:7;7145:45;7179:10;7145:8;:20;7154:10;7145:20;;;;;;;;;;;;;;;:29;7166:7;7145:29;;;;;;;;;;;;;;;;:33;;:45;;;;:::i;:::-;7115:8;:76::i;:::-;7209:4;7202:11;;7018:203;;;;:::o;28108:391::-;28175:27;28187:7;28196:5;28175:11;:27::i;:::-;28215:61;28257:18;28267:7;28257:9;:18::i;:::-;28215:17;:26;28233:7;28215:26;;;;;;;;;;;;;;;:41;;:61;;;;:::i;:::-;28287:50;28323:13;:11;:13::i;:::-;28287:20;:35;;:50;;;;:::i;:::-;28387:12;28378:7;28355:65;;;28401:18;28411:7;28401:9;:18::i;:::-;28355:65;;;;;;;;;;;;;;;;;;28463:12;28436:55;28477:13;:11;:13::i;:::-;28436:55;;;;;;;;;;;;;;;;;;28108:391;;:::o;13477:165::-;13549:4;13593:1;13574:21;;:7;:21;;;;13566:30;;;;;;13614:4;:11;;:20;13626:7;13614:20;;;;;;;;;;;;;;;;;;;;;;;;;13607:27;;13477:165;;;;:::o;23645:413::-;23789:7;23841:1;23818:4;:12;;:19;;;;:24;:67;;;;23860:4;:12;;23873:1;23860:15;;;;;;;;;;;;;;;;;;:25;;;23846:11;:39;23818:67;23814:237;;;23909:1;23902:8;;;;23814:237;23943:13;23959:33;23974:4;23980:11;23959:14;:33::i;:::-;23943:49;;24014:4;:12;;24027:5;24014:19;;;;;;;;;;;;;;;;;;:25;;;24007:32;;;23645:413;;;;;:::o;14545:130::-;14605:24;14621:7;14605:8;:15;;:24;;;;:::i;:::-;14659:7;14645:22;;;;;;;;;;;;14545:130;:::o;10504:182::-;10575:21;10581:7;10590:5;10575;:21::i;:::-;10607:71;10616:7;10625:10;10637:40;10671:5;10637:8;:17;10646:7;10637:17;;;;;;;;;;;;;;;:29;10655:10;10637:29;;;;;;;;;;;;;;;;:33;;:40;;;;:::i;:::-;10607:8;:71::i;:::-;10504:182;;:::o;14415:122::-;14472:21;14485:7;14472:8;:12;;:21;;;;:::i;:::-;14521:7;14509:20;;;;;;;;;;;;14415:122;:::o;7752:213::-;7837:4;7854:81;7863:10;7875:7;7884:50;7918:15;7884:8;:20;7893:10;7884:20;;;;;;;;;;;;;;;:29;7905:7;7884:29;;;;;;;;;;;;;;;;:33;;:50;;;;:::i;:::-;7854:8;:81::i;:::-;7953:4;7946:11;;7752:213;;;;:::o;34347:256::-;34410:4;34431:23;:21;:23::i;:::-;34427:124;;;34471:30;34490:10;34471:18;:30::i;:::-;34516:23;34535:3;34516:18;:23::i;:::-;34427:124;34568:27;34583:3;34588:6;34568:14;:27::i;:::-;34561:34;;34347:256;;;;:::o;19245:187::-;19339:1;19319:22;;:8;:22;;;;19311:31;;;;;;19387:8;19358:38;;19379:6;;;;;;;;;;;19358:38;;;;;;;;;;;;19416:8;19407:6;;:17;;;;;;;;;;;;;;;;;;19245:187;:::o;2162:150::-;2220:7;2253:1;2248;:6;;2240:15;;;;;;2266:9;2282:1;2278;:5;2266:17;;2303:1;2296:8;;;2162:150;;;;:::o;9851:254::-;9963:1;9944:21;;:7;:21;;;;9936:30;;;;;;10002:1;9985:19;;:5;:19;;;;9977:28;;;;;;10045:5;10018:8;:15;10027:5;10018:15;;;;;;;;;;;;;;;:24;10034:7;10018:24;;;;;;;;;;;;;;;:32;;;;10082:7;10066:31;;10075:5;10066:31;;;10091:5;10066:31;;;;;;;;;;;;;;;;;;9851:254;;;:::o;35807:140::-;35886:9;;;;;;;;;;;:23;;;35910:8;35886:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35886:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;35886:33:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;35886:33:0;;;;;;;;;;;;;;;;35878:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35807:140;:::o;6264:228::-;6343:4;6360:26;6370:4;6376:2;6380:5;6360:9;:26::i;:::-;6397:65;6406:4;6412:10;6424:37;6455:5;6424:8;:14;6433:4;6424:14;;;;;;;;;;;;;;;:26;6439:10;6424:26;;;;;;;;;;;;;;;;:30;;:37;;;;:::i;:::-;6397:8;:65::i;:::-;6480:4;6473:11;;6264:228;;;;;:::o;8192:262::-;8294:1;8280:16;;:2;:16;;;;8272:25;;;;;;8328:26;8348:5;8328:9;:15;8338:4;8328:15;;;;;;;;;;;;;;;;:19;;:26;;;;:::i;:::-;8310:9;:15;8320:4;8310:15;;;;;;;;;;;;;;;:44;;;;8381:24;8399:5;8381:9;:13;8391:2;8381:13;;;;;;;;;;;;;;;;:17;;:24;;;;:::i;:::-;8365:9;:13;8375:2;8365:13;;;;;;;;;;;;;;;:40;;;;8436:2;8421:25;;8430:4;8421:25;;;8440:5;8421:25;;;;;;;;;;;;;;;;;;8192:262;;;:::o;21482:438::-;21569:14;21586:4;:12;;:19;;;;21569:36;;21630:1;21620:6;:11;:69;;;;21676:12;21636:4;:12;;21649:13;21660:1;21649:6;:10;;:13;;;;:::i;:::-;21636:27;;;;;;;;;;;;;;;;;;:37;;;:52;21620:69;21616:297;;;21706:4;:12;;21724:30;;;;;;;;21733:12;21724:30;;;;21747:6;21724:30;;;21706:49;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;21706:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21616:297;;;21895:6;21859:4;:12;;21872:13;21883:1;21872:6;:10;;:13;;;;:::i;:::-;21859:27;;;;;;;;;;;;;;;;;;:33;;:42;;;;21616:297;21482:438;;;:::o;2400:150::-;2458:7;2478:9;2494:1;2490;:5;2478:17;;2519:1;2514;:6;;2506:15;;;;;;2541:1;2534:8;;;2400:150;;;;:::o;9309:269::-;9403:1;9384:21;;:7;:21;;;;9376:30;;;;;;9434:23;9451:5;9434:12;;:16;;:23;;;;:::i;:::-;9419:12;:38;;;;9489:29;9512:5;9489:9;:18;9499:7;9489:18;;;;;;;;;;;;;;;;:22;;:29;;;;:::i;:::-;9468:9;:18;9478:7;9468:18;;;;;;;;;;;;;;;:50;;;;9560:1;9534:36;;9543:7;9534:36;;;9564:5;9534:36;;;;;;;;;;;;;;;;;;9309:269;;:::o;22361:1010::-;22511:7;22578:14;22595:4;:12;;:19;;;;22578:36;;22763:11;22722:4;:12;;22735:13;22746:1;22735:6;:10;;:13;;;;:::i;:::-;22722:27;;;;;;;;;;;;;;;;;;:37;;;:52;22718:643;;22798:13;22809:1;22798:6;:10;;:13;;;;:::i;:::-;22791:20;;;;;22718:643;22893:11;22907:1;22893:15;;22923:12;22938:13;22949:1;22938:6;:10;;:13;;;;:::i;:::-;22923:28;;22968:357;22981:11;22990:1;22981:4;:8;;:11;;;;:::i;:::-;22975:3;:17;22968:357;;;23013:11;23027:23;23040:3;23045:4;23027:12;:23::i;:::-;23013:37;;23186:11;23155:4;:12;;23168:3;23155:17;;;;;;;;;;;;;;;;;;:27;;;:42;23151:159;;23228:3;23222:9;;23151:159;;;23287:3;23280:10;;23151:159;22968:357;;;;23346:3;23339:10;;;;;22361:1010;;;;;:::o;13194:189::-;13293:1;13274:21;;:7;:21;;;;13266:30;;;;;;13315:18;13319:4;13325:7;13315:3;:18::i;:::-;13307:27;;;;;;13370:5;13347:4;:11;;:20;13359:7;13347:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;13194:189;;:::o;12929:186::-;13025:1;13006:21;;:7;:21;;;;12998:30;;;;;;13048:18;13052:4;13058:7;13048:3;:18::i;:::-;13047:19;13039:28;;;;;;13103:4;13080;:11;;:20;13092:7;13080:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;12929:186;;:::o;4856:140::-;4917:4;4934:32;4944:10;4956:2;4960:5;4934:9;:32::i;:::-;4984:4;4977:11;;4856:140;;;;:::o;20164:193::-;20226:7;20347:1;20342;20338;:5;;;;;;20334:1;20330;:5;;;;;;:13;20329:19;;;;;;20323:1;20319;:5;;;;;;20313:1;20309;:5;;;;;;20308:17;:41;20301:48;;20164:193;;;;:::o;39459:860::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;8806:269::-;8900:1;8881:21;;:7;:21;;;;8873:30;;;;;;8931:23;8948:5;8931:12;;:16;;:23;;;;:::i;:::-;8916:12;:38;;;;8986:29;9009:5;8986:9;:18;8996:7;8986:18;;;;;;;;;;;;;;;;:22;;:29;;;;:::i;:::-;8965:9;:18;8975:7;8965:18;;;;;;;;;;;;;;;:50;;;;9052:7;9031:36;;9048:1;9031:36;;;9061:5;9031:36;;;;;;;;;;;;;;;;;;8806:269;;:::o

Swarm Source

bzzr://a2cbccdc05b6b9db80b37eb9b7c1784bddfe3c222d937aaa9866e0b50923d625

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ 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.