ETH Price: $2,300.71 (-0.28%)
Gas: 7.57 Gwei

Contract

0x559604845ffc64a05F780eAd75249C377B1Dae57
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Set Approval For...202287332024-07-03 21:40:4776 days ago1720042847IN
0x55960484...77B1Dae57
0 ETH0.000291896.33956535
Set Approval For...175814462023-06-29 0:38:59447 days ago1687999139IN
0x55960484...77B1Dae57
0 ETH0.0008441118.33312313
Safe Transfer Fr...174363692023-06-08 15:07:35467 days ago1686236855IN
0x55960484...77B1Dae57
0 ETH0.0021953238.96433626
Safe Transfer Fr...173119732023-05-22 2:48:47485 days ago1684723727IN
0x55960484...77B1Dae57
0 ETH0.0022714840.31609987
Set Approval For...167454732023-03-03 4:01:59565 days ago1677816119IN
0x55960484...77B1Dae57
0 ETH0.0011191524.30672324
Safe Transfer Fr...152039072022-07-24 7:11:46787 days ago1658646706IN
0x55960484...77B1Dae57
0 ETH0.000154393
Set Approval For...151791152022-07-20 11:08:29791 days ago1658315309IN
0x55960484...77B1Dae57
0 ETH0.0008140917.64909821
Set Approval For...151764522022-07-20 1:03:02791 days ago1658278982IN
0x55960484...77B1Dae57
0 ETH0.0012466127.0256306
Safe Transfer Fr...144832572022-03-29 20:24:25903 days ago1648585465IN
0x55960484...77B1Dae57
0 ETH0.0016729332.49809899
Set Approval For...143805172022-03-13 20:46:55919 days ago1647204415IN
0x55960484...77B1Dae57
0 ETH0.0015910834.49360997
Set Approval For...143599562022-03-10 15:42:29922 days ago1646926949IN
0x55960484...77B1Dae57
0 ETH0.0018301439.67626031
Safe Transfer Fr...142407792022-02-20 4:24:33941 days ago1645331073IN
0x55960484...77B1Dae57
0 ETH0.0022794744.28051326
Safe Transfer Fr...139543282022-01-06 21:33:42985 days ago1641504822IN
0x55960484...77B1Dae57
0 ETH0.00532944103.52863556
Safe Transfer Fr...138834402021-12-26 22:13:51996 days ago1640556831IN
0x55960484...77B1Dae57
0 ETH0.0047829192.91186217
Safe Transfer Fr...137720942021-12-09 16:29:571013 days ago1639067397IN
0x55960484...77B1Dae57
0 ETH0.0041963481.55536847
Safe Transfer Fr...135292372021-11-01 4:59:531052 days ago1635742793IN
0x55960484...77B1Dae57
0 ETH0.00620163120.47149672
Set Approval For...135085322021-10-28 22:57:011055 days ago1635461821IN
0x55960484...77B1Dae57
0 ETH0.00859988186.43938428
Set Approval For...134161952021-10-14 12:01:191070 days ago1634212879IN
0x55960484...77B1Dae57
0 ETH0.0031916569.19279647
Set Approval For...134142262021-10-14 4:26:491070 days ago1634185609IN
0x55960484...77B1Dae57
0 ETH0.00646878140.23862412
Set Approval For...134138032021-10-14 2:53:021070 days ago1634179982IN
0x55960484...77B1Dae57
0 ETH0.0049973108.33787188
Set Approval For...132980742021-09-25 23:47:181088 days ago1632613638IN
0x55960484...77B1Dae57
0 ETH0.0014663231.78891893
Safe Transfer Fr...132822502021-09-23 13:23:231091 days ago1632403403IN
0x55960484...77B1Dae57
0 ETH0.0035364168.69755108
Safe Transfer Fr...132731952021-09-22 3:37:271092 days ago1632281847IN
0x55960484...77B1Dae57
0 ETH0.0027798154
Set Approval For...132052282021-09-11 15:24:391102 days ago1631373879IN
0x55960484...77B1Dae57
0 ETH0.0040747788.33818123
Safe Transfer Fr...131895752021-09-09 5:05:061105 days ago1631163906IN
0x55960484...77B1Dae57
0 ETH0.00559965108.77764252
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:
RCContract

Compiler Version
v0.5.2+commit.1df8f40c

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-07-09
*/

// File: contracts/SafeMath.sol

pragma solidity ^0.5.0;


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

    /**
    * @dev Multiplies two numbers, throws on overflow.
    */
    function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {
        // Gas optimization: this is cheaper than asserting '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;
        }

        c = a * b;
        assert(c / a == b);
        return c;
    }

    /**
    * @dev Integer division of two numbers, truncating the quotient.
    */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // assert(b > 0); // Solidity automatically throws 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 a / b;
    }

    /**
    * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
    */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        assert(b <= a);
        return a - b;
    }

    /**
    * @dev Adds two numbers, throws on overflow.
    */
    function add(uint256 a, uint256 b) internal pure returns (uint256 c) {
        c = a + b;
        assert(c >= a);
        return c;
    }
}

// File: contracts/Address.sol

pragma solidity ^0.5.0;


/**
 * Utility library of inline functions on addresses
 */
library Address {

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

}

// File: contracts/Common.sol

pragma solidity ^0.5.0;

/**
    Note: Simple contract to use as base for const vals
*/
contract CommonConstants {

    bytes4 constant internal ERC1155_ACCEPTED = 0xf23a6e61; // bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))
    bytes4 constant internal ERC1155_BATCH_ACCEPTED = 0xbc197c81; // bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))
}

// File: contracts/IERC1155TokenReceiver.sol

pragma solidity ^0.5.0;

/**
    Note: The ERC-165 identifier for this interface is 0x4e2312e0.
*/
interface ERC1155TokenReceiver {
    /**
        @notice Handle the receipt of a single ERC1155 token type.
        @dev An ERC1155-compliant smart contract MUST call this function on the token recipient contract, at the end of a `safeTransferFrom` after the balance has been updated.
        This function MUST return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` (i.e. 0xf23a6e61) if it accepts the transfer.
        This function MUST revert if it rejects the transfer.
        Return of any other value than the prescribed keccak256 generated value MUST result in the transaction being reverted by the caller.
        @param _operator  The address which initiated the transfer (i.e. msg.sender)
        @param _from      The address which previously owned the token
        @param _id        The ID of the token being transferred
        @param _value     The amount of tokens being transferred
        @param _data      Additional data with no specified format
        @return           `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
    */
    function onERC1155Received(address _operator, address _from, uint256 _id, uint256 _value, bytes calldata _data) external returns(bytes4);

    /**
        @notice Handle the receipt of multiple ERC1155 token types.
        @dev An ERC1155-compliant smart contract MUST call this function on the token recipient contract, at the end of a `safeBatchTransferFrom` after the balances have been updated.
        This function MUST return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` (i.e. 0xbc197c81) if it accepts the transfer(s).
        This function MUST revert if it rejects the transfer(s).
        Return of any other value than the prescribed keccak256 generated value MUST result in the transaction being reverted by the caller.
        @param _operator  The address which initiated the batch transfer (i.e. msg.sender)
        @param _from      The address which previously owned the token
        @param _ids       An array containing ids of each token being transferred (order and length must match _values array)
        @param _values    An array containing amounts of each token being transferred (order and length must match _ids array)
        @param _data      Additional data with no specified format
        @return           `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
    */
    function onERC1155BatchReceived(address _operator, address _from, uint256[] calldata _ids, uint256[] calldata _values, bytes calldata _data) external returns(bytes4);
}

// File: contracts/ERC165.sol

pragma solidity ^0.5.0;


/**
 * @title ERC165
 * @dev https://github.com/ethereum/EIPs/blob/master/EIPS/eip-165.md
 */
interface ERC165 {

    /**
     * @notice Query if a contract implements an interface
     * @param _interfaceId The interface identifier, as specified in ERC-165
     * @dev Interface identification is specified in ERC-165. This function
     * uses less than 30,000 gas.
     */
    function supportsInterface(bytes4 _interfaceId)
    external
    view
    returns (bool);
}

// File: contracts/IERC1155.sol

pragma solidity ^0.5.0;


/**
    @title ERC-1155 Multi Token Standard
    @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-1155.md
    Note: The ERC-165 identifier for this interface is 0xd9b67a26.
 */
interface IERC1155 /* is ERC165 */ {
    /**
        @dev Either `TransferSingle` or `TransferBatch` MUST emit when tokens are transferred, including zero value transfers as well as minting or burning (see "Safe Transfer Rules" section of the standard).
        The `_operator` argument MUST be msg.sender.
        The `_from` argument MUST be the address of the holder whose balance is decreased.
        The `_to` argument MUST be the address of the recipient whose balance is increased.
        The `_id` argument MUST be the token type being transferred.
        The `_value` argument MUST be the number of tokens the holder balance is decreased by and match what the recipient balance is increased by.
        When minting/creating tokens, the `_from` argument MUST be set to `0x0` (i.e. zero address).
        When burning/destroying tokens, the `_to` argument MUST be set to `0x0` (i.e. zero address).
    */
    event TransferSingle(address indexed _operator, address indexed _from, address indexed _to, uint256 _id, uint256 _value);

    /**
        @dev Either `TransferSingle` or `TransferBatch` MUST emit when tokens are transferred, including zero value transfers as well as minting or burning (see "Safe Transfer Rules" section of the standard).
        The `_operator` argument MUST be msg.sender.
        The `_from` argument MUST be the address of the holder whose balance is decreased.
        The `_to` argument MUST be the address of the recipient whose balance is increased.
        The `_ids` argument MUST be the list of tokens being transferred.
        The `_values` argument MUST be the list of number of tokens (matching the list and order of tokens specified in _ids) the holder balance is decreased by and match what the recipient balance is increased by.
        When minting/creating tokens, the `_from` argument MUST be set to `0x0` (i.e. zero address).
        When burning/destroying tokens, the `_to` argument MUST be set to `0x0` (i.e. zero address).
    */
    event TransferBatch(address indexed _operator, address indexed _from, address indexed _to, uint256[] _ids, uint256[] _values);

    /**
        @dev MUST emit when approval for a second party/operator address to manage all tokens for an owner address is enabled or disabled (absense of an event assumes disabled).
    */
    event ApprovalForAll(address indexed _owner, address indexed _operator, bool _approved);

    /**
        @dev MUST emit when the URI is updated for a token ID.
        URIs are defined in RFC 3986.
        The URI MUST point a JSON file that conforms to the "ERC-1155 Metadata URI JSON Schema".
    */
    event URI(string _value, uint256 indexed _id);

    /**
        @notice Transfers `_value` amount of an `_id` from the `_from` address to the `_to` address specified (with safety call).
        @dev Caller must be approved to manage the tokens being transferred out of the `_from` account (see "Approval" section of the standard).
        MUST revert if `_to` is the zero address.
        MUST revert if balance of holder for token `_id` is lower than the `_value` sent.
        MUST revert on any other error.
        MUST emit the `TransferSingle` event to reflect the balance change (see "Safe Transfer Rules" section of the standard).
        After the above conditions are met, this function MUST check if `_to` is a smart contract (e.g. code size > 0). If so, it MUST call `onERC1155Received` on `_to` and act appropriately (see "Safe Transfer Rules" section of the standard).
        @param _from    Source address
        @param _to      Target address
        @param _id      ID of the token type
        @param _value   Transfer amount
        @param _data    Additional data with no specified format, MUST be sent unaltered in call to `onERC1155Received` on `_to`
    */
    function safeTransferFrom(address _from, address _to, uint256 _id, uint256 _value, bytes calldata _data) external;

    /**
        @notice Transfers `_values` amount(s) of `_ids` from the `_from` address to the `_to` address specified (with safety call).
        @dev Caller must be approved to manage the tokens being transferred out of the `_from` account (see "Approval" section of the standard).
        MUST revert if `_to` is the zero address.
        MUST revert if length of `_ids` is not the same as length of `_values`.
        MUST revert if any of the balance(s) of the holder(s) for token(s) in `_ids` is lower than the respective amount(s) in `_values` sent to the recipient.
        MUST revert on any other error.
        MUST emit `TransferSingle` or `TransferBatch` event(s) such that all the balance changes are reflected (see "Safe Transfer Rules" section of the standard).
        Balance changes and events MUST follow the ordering of the arrays (_ids[0]/_values[0] before _ids[1]/_values[1], etc).
        After the above conditions for the transfer(s) in the batch are met, this function MUST check if `_to` is a smart contract (e.g. code size > 0). If so, it MUST call the relevant `ERC1155TokenReceiver` hook(s) on `_to` and act appropriately (see "Safe Transfer Rules" section of the standard).
        @param _from    Source address
        @param _to      Target address
        @param _ids     IDs of each token type (order and length must match _values array)
        @param _values  Transfer amounts per token type (order and length must match _ids array)
        @param _data    Additional data with no specified format, MUST be sent unaltered in call to the `ERC1155TokenReceiver` hook(s) on `_to`
    */
    function safeBatchTransferFrom(address _from, address _to, uint256[] calldata _ids, uint256[] calldata _values, bytes calldata _data) external;

    /**
        @notice Get the balance of an account's Tokens.
        @param _owner  The address of the token holder
        @param _id     ID of the Token
        @return        The _owner's balance of the Token type requested
     */
    function balanceOf(address _owner, uint256 _id) external view returns (uint256);

    /**
        @notice Get the balance of multiple account/token pairs
        @param _owners The addresses of the token holders
        @param _ids    ID of the Tokens
        @return        The _owner's balance of the Token types requested (i.e. balance for each (owner, id) pair)
     */
    function balanceOfBatch(address[] calldata _owners, uint256[] calldata _ids) external view returns (uint256[] memory);

    /**
        @notice Enable or disable approval for a third party ("operator") to manage all of the caller's tokens.
        @dev MUST emit the ApprovalForAll event on success.
        @param _operator  Address to add to the set of authorized operators
        @param _approved  True if the operator is approved, false to revoke approval
    */
    function setApprovalForAll(address _operator, bool _approved) external;

    /**
        @notice Queries the approval status of an operator for a given owner.
        @param _owner     The owner of the Tokens
        @param _operator  Address of authorized operator
        @return           True if the operator is approved, false if not
    */
    function isApprovedForAll(address _owner, address _operator) external view returns (bool);
}

// File: contracts/ERC1155.sol

pragma solidity ^0.5.0;






// A sample implementation of core ERC1155 function.
contract ERC1155 is IERC1155, ERC165, CommonConstants
{
    using SafeMath for uint256;
    using Address for address;

    // id => (owner => balance)
    mapping (uint256 => mapping(address => uint256)) internal balances;

    // owner => (operator => approved)
    mapping (address => mapping(address => bool)) internal operatorApproval;

/////////////////////////////////////////// ERC165 //////////////////////////////////////////////

    /*
        bytes4(keccak256('supportsInterface(bytes4)'));
    */
    bytes4 constant private INTERFACE_SIGNATURE_ERC165 = 0x01ffc9a7;

    /*
        bytes4(keccak256("safeTransferFrom(address,address,uint256,uint256,bytes)")) ^
        bytes4(keccak256("safeBatchTransferFrom(address,address,uint256[],uint256[],bytes)")) ^
        bytes4(keccak256("balanceOf(address,uint256)")) ^
        bytes4(keccak256("balanceOfBatch(address[],uint256[])")) ^
        bytes4(keccak256("setApprovalForAll(address,bool)")) ^
        bytes4(keccak256("isApprovedForAll(address,address)"));
    */
    bytes4 constant private INTERFACE_SIGNATURE_ERC1155 = 0xd9b67a26;

    function supportsInterface(bytes4 _interfaceId)
    public
    view
    returns (bool) {
         if (_interfaceId == INTERFACE_SIGNATURE_ERC165 ||
             _interfaceId == INTERFACE_SIGNATURE_ERC1155) {
            return true;
         }

         return false;
    }

/////////////////////////////////////////// ERC1155 //////////////////////////////////////////////

    /**
        @notice Transfers `_value` amount of an `_id` from the `_from` address to the `_to` address specified (with safety call).
        @dev Caller must be approved to manage the tokens being transferred out of the `_from` account (see "Approval" section of the standard).
        MUST revert if `_to` is the zero address.
        MUST revert if balance of holder for token `_id` is lower than the `_value` sent.
        MUST revert on any other error.
        MUST emit the `TransferSingle` event to reflect the balance change (see "Safe Transfer Rules" section of the standard).
        After the above conditions are met, this function MUST check if `_to` is a smart contract (e.g. code size > 0). If so, it MUST call `onERC1155Received` on `_to` and act appropriately (see "Safe Transfer Rules" section of the standard).
        @param _from    Source address
        @param _to      Target address
        @param _id      ID of the token type
        @param _value   Transfer amount
        @param _data    Additional data with no specified format, MUST be sent unaltered in call to `onERC1155Received` on `_to`
    */
    function safeTransferFrom(address _from, address _to, uint256 _id, uint256 _value, bytes calldata _data) external {

        require(_to != address(0x0), "_to must be non-zero.");
        require(_from == msg.sender || operatorApproval[_from][msg.sender] == true, "Need operator approval for 3rd party transfers.");

        // SafeMath will throw with insuficient funds _from
        // or if _id is not valid (balance will be 0)
        balances[_id][_from] = balances[_id][_from].sub(_value);
        balances[_id][_to]   = _value.add(balances[_id][_to]);

        // MUST emit event
        emit TransferSingle(msg.sender, _from, _to, _id, _value);

        // Now that the balance is updated and the event was emitted,
        // call onERC1155Received if the destination is a contract.
        if (_to.isContract()) {
            _doSafeTransferAcceptanceCheck(msg.sender, _from, _to, _id, _value, _data);
        }
    }

    /**
        @notice Transfers `_values` amount(s) of `_ids` from the `_from` address to the `_to` address specified (with safety call).
        @dev Caller must be approved to manage the tokens being transferred out of the `_from` account (see "Approval" section of the standard).
        MUST revert if `_to` is the zero address.
        MUST revert if length of `_ids` is not the same as length of `_values`.
        MUST revert if any of the balance(s) of the holder(s) for token(s) in `_ids` is lower than the respective amount(s) in `_values` sent to the recipient.
        MUST revert on any other error.
        MUST emit `TransferSingle` or `TransferBatch` event(s) such that all the balance changes are reflected (see "Safe Transfer Rules" section of the standard).
        Balance changes and events MUST follow the ordering of the arrays (_ids[0]/_values[0] before _ids[1]/_values[1], etc).
        After the above conditions for the transfer(s) in the batch are met, this function MUST check if `_to` is a smart contract (e.g. code size > 0). If so, it MUST call the relevant `ERC1155TokenReceiver` hook(s) on `_to` and act appropriately (see "Safe Transfer Rules" section of the standard).
        @param _from    Source address
        @param _to      Target address
        @param _ids     IDs of each token type (order and length must match _values array)
        @param _values  Transfer amounts per token type (order and length must match _ids array)
        @param _data    Additional data with no specified format, MUST be sent unaltered in call to the `ERC1155TokenReceiver` hook(s) on `_to`
    */
    function safeBatchTransferFrom(address _from, address _to, uint256[] calldata _ids, uint256[] calldata _values, bytes calldata _data) external {

        // MUST Throw on errors
        require(_to != address(0x0), "destination address must be non-zero.");
        require(_ids.length == _values.length, "_ids and _values array lenght must match.");
        require(_from == msg.sender || operatorApproval[_from][msg.sender] == true, "Need operator approval for 3rd party transfers.");

        for (uint256 i = 0; i < _ids.length; ++i) {
            uint256 id = _ids[i];
            uint256 value = _values[i];

            // SafeMath will throw with insuficient funds _from
            // or if _id is not valid (balance will be 0)
            balances[id][_from] = balances[id][_from].sub(value);
            balances[id][_to]   = value.add(balances[id][_to]);
        }

        // Note: instead of the below batch versions of event and acceptance check you MAY have emitted a TransferSingle
        // event and a subsequent call to _doSafeTransferAcceptanceCheck in above loop for each balance change instead.
        // Or emitted a TransferSingle event for each in the loop and then the single _doSafeBatchTransferAcceptanceCheck below.
        // However it is implemented the balance changes and events MUST match when a check (i.e. calling an external contract) is done.

        // MUST emit event
        emit TransferBatch(msg.sender, _from, _to, _ids, _values);

        // Now that the balances are updated and the events are emitted,
        // call onERC1155BatchReceived if the destination is a contract.
        if (_to.isContract()) {
            _doSafeBatchTransferAcceptanceCheck(msg.sender, _from, _to, _ids, _values, _data);
        }
    }

    /**
        @notice Get the balance of an account's Tokens.
        @param _owner  The address of the token holder
        @param _id     ID of the Token
        @return        The _owner's balance of the Token type requested
     */
    function balanceOf(address _owner, uint256 _id) external view returns (uint256) {
        // The balance of any account can be calculated from the Transfer events history.
        // However, since we need to keep the balances to validate transfer request,
        // there is no extra cost to also privide a querry function.
        return balances[_id][_owner];
    }


    /**
        @notice Get the balance of multiple account/token pairs
        @param _owners The addresses of the token holders
        @param _ids    ID of the Tokens
        @return        The _owner's balance of the Token types requested (i.e. balance for each (owner, id) pair)
     */
    function balanceOfBatch(address[] calldata _owners, uint256[] calldata _ids) external view returns (uint256[] memory) {

        require(_owners.length == _ids.length);

        uint256[] memory balances_ = new uint256[](_owners.length);

        for (uint256 i = 0; i < _owners.length; ++i) {
            balances_[i] = balances[_ids[i]][_owners[i]];
        }

        return balances_;
    }

    /**
        @notice Enable or disable approval for a third party ("operator") to manage all of the caller's tokens.
        @dev MUST emit the ApprovalForAll event on success.
        @param _operator  Address to add to the set of authorized operators
        @param _approved  True if the operator is approved, false to revoke approval
    */
    function setApprovalForAll(address _operator, bool _approved) external {
        operatorApproval[msg.sender][_operator] = _approved;
        emit ApprovalForAll(msg.sender, _operator, _approved);
    }

    /**
        @notice Queries the approval status of an operator for a given owner.
        @param _owner     The owner of the Tokens
        @param _operator  Address of authorized operator
        @return           True if the operator is approved, false if not
    */
    function isApprovedForAll(address _owner, address _operator) external view returns (bool) {
        return operatorApproval[_owner][_operator];
    }

/////////////////////////////////////////// Internal //////////////////////////////////////////////

    function _doSafeTransferAcceptanceCheck(address _operator, address _from, address _to, uint256 _id, uint256 _value, bytes memory _data) internal {

        // If this was a hybrid standards solution you would have to check ERC165(_to).supportsInterface(0x4e2312e0) here but as this is a pure implementation of an ERC-1155 token set as recommended by
        // the standard, it is not necessary. The below should revert in all failure cases i.e. _to isn't a receiver, or it is and either returns an unknown value or it reverts in the call to indicate non-acceptance.


        // Note: if the below reverts in the onERC1155Received function of the _to address you will have an undefined revert reason returned rather than the one in the require test.
        // If you want predictable revert reasons consider using low level _to.call() style instead so the revert does not bubble up and you can revert yourself on the ERC1155_ACCEPTED test.
        require(ERC1155TokenReceiver(_to).onERC1155Received(_operator, _from, _id, _value, _data) == ERC1155_ACCEPTED, "contract returned an unknown value from onERC1155Received");
    }

    function _doSafeBatchTransferAcceptanceCheck(address _operator, address _from, address _to, uint256[] memory _ids, uint256[] memory _values, bytes memory _data) internal {

        // If this was a hybrid standards solution you would have to check ERC165(_to).supportsInterface(0x4e2312e0) here but as this is a pure implementation of an ERC-1155 token set as recommended by
        // the standard, it is not necessary. The below should revert in all failure cases i.e. _to isn't a receiver, or it is and either returns an unknown value or it reverts in the call to indicate non-acceptance.

        // Note: if the below reverts in the onERC1155BatchReceived function of the _to address you will have an undefined revert reason returned rather than the one in the require test.
        // If you want predictable revert reasons consider using low level _to.call() style instead so the revert does not bubble up and you can revert yourself on the ERC1155_BATCH_ACCEPTED test.
        require(ERC1155TokenReceiver(_to).onERC1155BatchReceived(_operator, _from, _ids, _values, _data) == ERC1155_BATCH_ACCEPTED, "contract returned an unknown value from onERC1155BatchReceived");
    }
}

// File: contracts/Ownable.sol

pragma solidity ^0.5.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        _owner = msg.sender;
        emit OwnershipTransferred(address(0), _owner);
    }

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

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

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return msg.sender == _owner;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * > Note: 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 Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

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

// File: contracts/Strings.sol

pragma solidity ^0.5.0;

library Strings {
  // via https://github.com/oraclize/ethereum-api/blob/master/oraclizeAPI_0.5.sol
  function strConcat(string memory _a, string memory _b, string memory _c, string memory _d, string memory _e) internal pure returns (string memory) {
      bytes memory _ba = bytes(_a);
      bytes memory _bb = bytes(_b);
      bytes memory _bc = bytes(_c);
      bytes memory _bd = bytes(_d);
      bytes memory _be = bytes(_e);
      string memory abcde = new string(_ba.length + _bb.length + _bc.length + _bd.length + _be.length);
      bytes memory babcde = bytes(abcde);
      uint k = 0;
      for (uint i = 0; i < _ba.length; i++) babcde[k++] = _ba[i];
      for (uint i = 0; i < _bb.length; i++) babcde[k++] = _bb[i];
      for (uint i = 0; i < _bc.length; i++) babcde[k++] = _bc[i];
      for (uint i = 0; i < _bd.length; i++) babcde[k++] = _bd[i];
      for (uint i = 0; i < _be.length; i++) babcde[k++] = _be[i];
      return string(babcde);
    }

    function strConcat(string memory _a, string memory _b, string memory _c, string memory _d) internal pure returns (string memory) {
        return strConcat(_a, _b, _c, _d, "");
    }

    function strConcat(string memory _a, string memory _b, string memory _c) internal pure returns (string memory) {
        return strConcat(_a, _b, _c, "", "");
    }

    function strConcat(string memory _a, string memory _b) internal pure returns (string memory) {
        return strConcat(_a, _b, "", "", "");
    }

    function uint2str(uint _i) internal pure returns (string memory _uintAsString) {
        if (_i == 0) {
            return "0";
        }
        uint j = _i;
        uint len;
        while (j != 0) {
            len++;
            j /= 10;
        }
        bytes memory bstr = new bytes(len);
        uint k = len - 1;
        while (_i != 0) {
            bstr[k--] = byte(uint8(48 + _i % 10));
            _i /= 10;
        }
        return string(bstr);
    }
}

// File: contracts/RCContract.sol

pragma solidity ^0.5.0;




/**
    @dev Mintable form of ERC1155
    Shows how easy it is to mint new items.
*/
contract RCContract is ERC1155, Ownable {

    bytes4 constant private INTERFACE_SIGNATURE_URI = 0x0e89341c;

     // Token name
    string private _contractName = 'ReceiptChain';

    // Token symbol
    string private _symbol = 'RCPT';

    // Base URI
    string private _baseURI = 'https://receiptchain.io/api/items/';

    // Total Supplies
    mapping(uint256 => uint256) private _totalSupplies;

    // A nonce to ensure we have a unique id each time we mint.
    uint256 public nonce;

        /**
        @dev Must emit on creation
        The `_name` Name at creation gives some human context to what this token is in the blockchain
        The `_id` Id of token.
    */
    event CreationName(string _value, uint256 indexed _id);

    event Update(string _value, uint256 indexed _id);

    function supportsInterface(bytes4 _interfaceId)
    public
    view
    returns (bool) {
        if (_interfaceId == INTERFACE_SIGNATURE_URI) {
            return true;
        } else {
            return super.supportsInterface(_interfaceId);
        }
    }

    // Creates a new token type and assings _initialSupply to minter
    function create(uint256 _initialSupply, address _to, string calldata _name) external onlyOwner returns (uint256 _id) {

        _id = _create(_initialSupply, _to, _name); 

    }

    // Creates a new token type and assings _initialSupply to minter
    function _create(uint256 _initialSupply, address _to, string memory _name) internal returns (uint256 _id) {

        _id = ++nonce;
        balances[_id][_to] = _initialSupply;
        _totalSupplies[_id] = _initialSupply;

        // Transfer event with mint semantic
        emit TransferSingle(msg.sender, address(0x0), _to, _id, _initialSupply);

        emit URI(string(abi.encodePacked(baseTokenURI(),Strings.uint2str(_id))), _id);

        if (bytes(_name).length > 0)
            emit CreationName(_name, _id);

    }

    // Batch mint tokens. Assign directly to _to[].
    function batchCreate(uint256[] calldata _initialSupplies, address[] calldata _to, string calldata _name) external onlyOwner {
        
        for (uint256 i = 0; i < _to.length; ++i) {
            _create(_initialSupplies[i], _to[i], _name); 
        }

    }

    function setBaseURI(string calldata uri) external onlyOwner {
        _baseURI = uri;
    }

    function update(string calldata _update, uint256 _id) external onlyOwner {
        emit Update(_update, _id);
    }

    function baseTokenURI() public view returns (string memory) {
        return _baseURI;
    }

    function uri(uint256 _id) external view returns (string memory) {
        
        assert(_totalSupplies[_id] != 0);

        return string(abi.encodePacked(baseTokenURI(),Strings.uint2str(_id)));
    }

    function tokenURI(uint256 _id) external view returns (string memory) {
        
        assert(_totalSupplies[_id] != 0);

        return string(abi.encodePacked(baseTokenURI(),Strings.uint2str(_id)));
    }

    /**
     * @dev Gets the token name.
     * @return string representing the token name
     */
    function name() external view returns (string memory) {
        return _contractName;
    }

    /**
     * @dev Gets the token symbol.
     * @return string representing the token symbol
     */
    function symbol() external view returns (string memory) {
        return _symbol;
    }

    /// @notice Returns the total token supply.
    /// @dev Throws if '_tokenType' is not a valid SFT
    /// @param _id The type of SFT to get the totalSupply of. Must be less than the return value of totalTokenTypes
    /// @return The total supply of the given SFT
    function totalSupply(uint256 _id) external view returns (uint256) {
        return _totalSupplies[_id];
    }

    /// @notice Returns the total number of token types for this contract
    /// @dev Can possibly be zero
    /// @return The total number of token types
    function totalTokenTypes() external view returns (uint256) {
        return nonce;
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_id","type":"uint256"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_id","type":"uint256"}],"name":"uri","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_ids","type":"uint256[]"},{"name":"_values","type":"uint256[]"},{"name":"_data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owners","type":"address[]"},{"name":"_ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"name":"","type":"uint256[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_update","type":"string"},{"name":"_id","type":"uint256"}],"name":"update","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_initialSupplies","type":"uint256[]"},{"name":"_to","type":"address[]"},{"name":"_name","type":"string"}],"name":"batchCreate","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":"totalTokenTypes","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_operator","type":"address"},{"name":"_approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"nonce","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_id","type":"uint256"}],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_id","type":"uint256"}],"name":"tokenURI","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_initialSupply","type":"uint256"},{"name":"_to","type":"address"},{"name":"_name","type":"string"}],"name":"create","outputs":[{"name":"_id","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"baseTokenURI","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_id","type":"uint256"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_value","type":"string"},{"indexed":true,"name":"_id","type":"uint256"}],"name":"CreationName","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_value","type":"string"},{"indexed":true,"name":"_id","type":"uint256"}],"name":"Update","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_operator","type":"address"},{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_id","type":"uint256"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_operator","type":"address"},{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_ids","type":"uint256[]"},{"indexed":false,"name":"_values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_operator","type":"address"},{"indexed":false,"name":"_approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_value","type":"string"},{"indexed":true,"name":"_id","type":"uint256"}],"name":"URI","type":"event"}]

60806040526040805190810160405280600c81526020017f52656365697074436861696e0000000000000000000000000000000000000000815250600390805190602001906200005192919062000197565b506040805190810160405280600481526020017f5243505400000000000000000000000000000000000000000000000000000000815250600490805190602001906200009f92919062000197565b5060606040519081016040528060228152602001620034b56022913960059080519060200190620000d292919062000197565b5033600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a362000246565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001da57805160ff19168380011785556200020b565b828001600101855582156200020b579182015b828111156200020a578251825591602001919060010190620001ed565b5b5090506200021a91906200021e565b5090565b6200024391905b808211156200023f57600081600090555060010162000225565b5090565b90565b61325f80620002566000396000f3fe608060405234801561001057600080fd5b5060043610610169576000357c0100000000000000000000000000000000000000000000000000000000900480638dfde339116100e0578063c87b56dd11610099578063c87b56dd146109cb578063cda4ed0814610a72578063d547cfb714610b29578063e985e9c514610bac578063f242432a14610c28578063f2fde38b14610cf557610169565b80638dfde339146108585780638f32d59b1461087657806395d89b4114610898578063a22cb4651461091b578063affed0e01461096b578063bd85b0391461098957610169565b80634e1273f4116101325780634e1273f4146104c25780634ee5c2ee146105e557806355f804b314610668578063715018a6146106e1578063847e7809146106eb5780638da5cb5b1461080e57610169565b8062fdd58e1461016e57806301ffc9a7146101d057806306fdde03146102355780630e89341c146102b85780632eb2c2d61461035f575b600080fd5b6101ba6004803603604081101561018457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d39565b6040518082815260200191505060405180910390f35b61021b600480360360208110156101e657600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050610d93565b604051808215151515815260200191505060405180910390f35b61023d610e18565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561027d578082015181840152602081019050610262565b50505050905090810190601f1680156102aa5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102e4600480360360208110156102ce57600080fd5b8101908080359060200190929190505050610eba565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610324578082015181840152602081019050610309565b50505050905090810190601f1680156103515780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6104c0600480360360a081101561037557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001906401000000008111156103d257600080fd5b8201836020820111156103e457600080fd5b8035906020019184602083028401116401000000008311171561040657600080fd5b90919293919293908035906020019064010000000081111561042757600080fd5b82018360208201111561043957600080fd5b8035906020019184602083028401116401000000008311171561045b57600080fd5b90919293919293908035906020019064010000000081111561047c57600080fd5b82018360208201111561048e57600080fd5b803590602001918460018302840111640100000000831117156104b057600080fd5b9091929391929390505050610fb4565b005b61058e600480360360408110156104d857600080fd5b81019080803590602001906401000000008111156104f557600080fd5b82018360208201111561050757600080fd5b8035906020019184602083028401116401000000008311171561052957600080fd5b90919293919293908035906020019064010000000081111561054a57600080fd5b82018360208201111561055c57600080fd5b8035906020019184602083028401116401000000008311171561057e57600080fd5b909192939192939050505061155a565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b838110156105d15780820151818401526020810190506105b6565b505050509050019250505060405180910390f35b610666600480360360408110156105fb57600080fd5b810190808035906020019064010000000081111561061857600080fd5b82018360208201111561062a57600080fd5b8035906020019184600183028401116401000000008311171561064c57600080fd5b90919293919293908035906020019092919050505061167a565b005b6106df6004803603602081101561067e57600080fd5b810190808035906020019064010000000081111561069b57600080fd5b8201836020820111156106ad57600080fd5b803590602001918460018302840111640100000000831117156106cf57600080fd5b909192939192939050505061175f565b005b6106e96117f1565b005b61080c6004803603606081101561070157600080fd5b810190808035906020019064010000000081111561071e57600080fd5b82018360208201111561073057600080fd5b8035906020019184602083028401116401000000008311171561075257600080fd5b90919293919293908035906020019064010000000081111561077357600080fd5b82018360208201111561078557600080fd5b803590602001918460208302840111640100000000831117156107a757600080fd5b9091929391929390803590602001906401000000008111156107c857600080fd5b8201836020820111156107da57600080fd5b803590602001918460018302840111640100000000831117156107fc57600080fd5b909192939192939050505061192e565b005b610816611a5d565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610860611a87565b6040518082815260200191505060405180910390f35b61087e611a91565b604051808215151515815260200191505060405180910390f35b6108a0611ae9565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156108e05780820151818401526020810190506108c5565b50505050905090810190601f16801561090d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6109696004803603604081101561093157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611b8b565b005b610973611c8c565b6040518082815260200191505060405180910390f35b6109b56004803603602081101561099f57600080fd5b8101908080359060200190929190505050611c92565b6040518082815260200191505060405180910390f35b6109f7600480360360208110156109e157600080fd5b8101908080359060200190929190505050611caf565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a37578082015181840152602081019050610a1c565b50505050905090810190601f168015610a645780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610b1360048036036060811015610a8857600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190640100000000811115610acf57600080fd5b820183602082011115610ae157600080fd5b80359060200191846001830284011164010000000083111715610b0357600080fd5b9091929391929390505050611da9565b6040518082815260200191505060405180910390f35b610b31611e80565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610b71578082015181840152602081019050610b56565b50505050905090810190601f168015610b9e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610c0e60048036036040811015610bc257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f22565b604051808215151515815260200191505060405180910390f35b610cf3600480360360a0811015610c3e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019092919080359060200190640100000000811115610caf57600080fd5b820183602082011115610cc157600080fd5b80359060200191846001830284011164010000000083111715610ce357600080fd5b9091929391929390505050611fb6565b005b610d3760048036036020811015610d0b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506123e6565b005b600080600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000630e89341c7c0100000000000000000000000000000000000000000000000000000000027bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415610e075760019050610e13565b610e108261246e565b90505b919050565b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610eb05780601f10610e8557610100808354040283529160200191610eb0565b820191906000526020600020905b815481529060010190602001808311610e9357829003601f168201915b5050505050905090565b60606000600660008481526020019081526020016000205414151515610edc57fe5b610ee4611e80565b610eed83612557565b6040516020018083805190602001908083835b602083101515610f255780518252602082019150602081019050602083039250610f00565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b602083101515610f785780518252602082019150602081019050602083039250610f53565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040529050919050565b600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff161415151561103c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806131406025913960400191505060405180910390fd5b838390508686905014151561109c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806131d26029913960400191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff161480611163575060011515600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b15156111ba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180613165602f913960400191505060405180910390fd5b60008090505b8686905081101561137457600087878381811015156111db57fe5b905060200201359050600086868481811015156111f457fe5b90506020020135905061125f8160008085815260200190815260200160002060008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126b090919063ffffffff16565b60008084815260200190815260200160002060008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061131460008084815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826126c990919063ffffffff16565b60008084815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050508060010190506111c0565b508673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb898989896040518080602001806020018381038352878782818152602001925060200280828437600081840152601f19601f8201169050808301925050508381038252858582818152602001925060200280828437600081840152601f19601f820116905080830192505050965050505050505060405180910390a46114768773ffffffffffffffffffffffffffffffffffffffff166126e5565b156115505761154f338989898980806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050888880806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505087878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506126f8565b5b5050505050505050565b6060828290508585905014151561157057600080fd5b6060858590506040519080825280602002602001820160405280156115a45781602001602082028038833980820191505090505b50905060008090505b8686905081101561166d5760008086868481811015156115c957fe5b905060200201358152602001908152602001600020600088888481811015156115ee57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054828281518110151561165457fe5b90602001906020020181815250508060010190506115ad565b5080915050949350505050565b611682611a91565b15156116f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b807f68569b533bfdeb53ee0f87318e7aa1ad56335f80086c45dfaa733c24fa43ea7b848460405180806020018281038252848482818152602001925080828437600081840152601f19601f820116905080830192505050935050505060405180910390a2505050565b611767611a91565b15156117db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8181600591906117ec929190613074565b505050565b6117f9611a91565b151561186d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611936611a91565b15156119aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008090505b84849050811015611a5457611a4887878381811015156119cc57fe5b9050602002013586868481811015156119e157fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1685858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506129c3565b508060010190506119b0565b50505050505050565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600754905090565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611b815780601f10611b5657610100808354040283529160200191611b81565b820191906000526020600020905b815481529060010190602001808311611b6457829003601f168201915b5050505050905090565b80600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b60075481565b600060066000838152602001908152602001600020549050919050565b60606000600660008481526020019081526020016000205414151515611cd157fe5b611cd9611e80565b611ce283612557565b6040516020018083805190602001908083835b602083101515611d1a5780518252602082019150602081019050602083039250611cf5565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b602083101515611d6d5780518252602082019150602081019050602083039250611d48565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040529050919050565b6000611db3611a91565b1515611e27576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611e76858585858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506129c3565b9050949350505050565b606060058054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611f185780601f10611eed57610100808354040283529160200191611f18565b820191906000526020600020905b815481529060010190602001808311611efb57829003601f168201915b5050505050905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415151561205b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f5f746f206d757374206265206e6f6e2d7a65726f2e000000000000000000000081525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161480612122575060011515600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b1515612179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180613165602f913960400191505060405180910390fd5b6121db8360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126b090919063ffffffff16565b60008086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061229060008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846126c990919063ffffffff16565b60008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051808381526020018281526020019250505060405180910390a46123868573ffffffffffffffffffffffffffffffffffffffff166126e5565b156123de576123dd338787878787878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612ce3565b5b505050505050565b6123ee611a91565b1515612462576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61246b81612f2c565b50565b60006301ffc9a77c0100000000000000000000000000000000000000000000000000000000027bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061253f575063d9b67a267c0100000000000000000000000000000000000000000000000000000000027bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b1561254d5760019050612552565b600090505b919050565b6060600082141561259f576040805190810160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126ab565b600082905060005b6000821415156125cd578080600101915050600a828115156125c557fe5b0491506125a7565b6060816040519080825280601f01601f1916602001820160405280156126025781602001600182028038833980820191505090505b50905060006001830390505b6000861415156126a357600a8681151561262457fe5b066030017f01000000000000000000000000000000000000000000000000000000000000000282828060019003935081518110151561265f57fe5b9060200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8681151561269b57fe5b04955061260e565b819450505050505b919050565b60008282111515156126be57fe5b818303905092915050565b600081830190508281101515156126dc57fe5b80905092915050565b600080823b905060008111915050919050565b63bc197c817c0100000000000000000000000000000000000000000000000000000000027bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168473ffffffffffffffffffffffffffffffffffffffff1663bc197c8188888787876040518663ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b8381101561283657808201518184015260208101905061281b565b50505050905001848103835286818151815260200191508051906020019060200280838360005b8381101561287857808201518184015260208101905061285d565b50505050905001848103825285818151815260200191508051906020019080838360005b838110156128b757808201518184015260208101905061289c565b50505050905090810190601f1680156128e45780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b15801561290957600080fd5b505af115801561291d573d6000803e3d6000fd5b505050506040513d602081101561293357600080fd5b81019080805190602001909291905050507bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415156129bb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603e815260200180613194603e913960400191505060405180910390fd5b505050505050565b600060076000815460010191905081905590508360008083815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360066000838152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628488604051808381526020018281526020019250505060405180910390a4807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b612af1611e80565b612afa84612557565b6040516020018083805190602001908083835b602083101515612b325780518252602082019150602081019050602083039250612b0d565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b602083101515612b855780518252602082019150602081019050602083039250612b60565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040526040518080602001828103825283818151815260200191508051906020019080838360005b83811015612bfa578082015181840152602081019050612bdf565b50505050905090810190601f168015612c275780820380516001836020036101000a031916815260200191505b509250505060405180910390a2600082511115612cdc57807fa1eec11cce81e09f263a45ff6fcd28b6a5df52f325271af8c77a5db086af5338836040518080602001828103825283818151815260200191508051906020019080838360005b83811015612ca1578082015181840152602081019050612c86565b50505050905090810190601f168015612cce5780820380516001836020036101000a031916815260200191505b509250505060405180910390a25b9392505050565b63f23a6e617c0100000000000000000000000000000000000000000000000000000000027bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168473ffffffffffffffffffffffffffffffffffffffff1663f23a6e6188888787876040518663ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015612e22578082015181840152602081019050612e07565b50505050905090810190601f168015612e4f5780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b158015612e7257600080fd5b505af1158015612e86573d6000803e3d6000fd5b505050506040513d6020811015612e9c57600080fd5b81019080805190602001909291905050507bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916141515612f24576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260398152602001806131fb6039913960400191505060405180910390fd5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614151515612fb4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061311a6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106130b557803560ff19168380011785556130e3565b828001600101855582156130e3579182015b828111156130e25782358255916020019190600101906130c7565b5b5090506130f091906130f4565b5090565b61311691905b808211156131125760008160009055506001016130fa565b5090565b9056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737364657374696e6174696f6e2061646472657373206d757374206265206e6f6e2d7a65726f2e4e656564206f70657261746f7220617070726f76616c20666f7220337264207061727479207472616e73666572732e636f6e74726163742072657475726e656420616e20756e6b6e6f776e2076616c75652066726f6d206f6e45524331313535426174636852656365697665645f69647320616e64205f76616c756573206172726179206c656e676874206d757374206d617463682e636f6e74726163742072657475726e656420616e20756e6b6e6f776e2076616c75652066726f6d206f6e455243313135355265636569766564a165627a7a72305820f3af5c04f8dee430769b9056b310254dfe9981d8f6c8aedb040d136a99a84f44002968747470733a2f2f72656365697074636861696e2e696f2f6170692f6974656d732f

Deployed Bytecode

0x608060405234801561001057600080fd5b5060043610610169576000357c0100000000000000000000000000000000000000000000000000000000900480638dfde339116100e0578063c87b56dd11610099578063c87b56dd146109cb578063cda4ed0814610a72578063d547cfb714610b29578063e985e9c514610bac578063f242432a14610c28578063f2fde38b14610cf557610169565b80638dfde339146108585780638f32d59b1461087657806395d89b4114610898578063a22cb4651461091b578063affed0e01461096b578063bd85b0391461098957610169565b80634e1273f4116101325780634e1273f4146104c25780634ee5c2ee146105e557806355f804b314610668578063715018a6146106e1578063847e7809146106eb5780638da5cb5b1461080e57610169565b8062fdd58e1461016e57806301ffc9a7146101d057806306fdde03146102355780630e89341c146102b85780632eb2c2d61461035f575b600080fd5b6101ba6004803603604081101561018457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d39565b6040518082815260200191505060405180910390f35b61021b600480360360208110156101e657600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050610d93565b604051808215151515815260200191505060405180910390f35b61023d610e18565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561027d578082015181840152602081019050610262565b50505050905090810190601f1680156102aa5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102e4600480360360208110156102ce57600080fd5b8101908080359060200190929190505050610eba565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610324578082015181840152602081019050610309565b50505050905090810190601f1680156103515780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6104c0600480360360a081101561037557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001906401000000008111156103d257600080fd5b8201836020820111156103e457600080fd5b8035906020019184602083028401116401000000008311171561040657600080fd5b90919293919293908035906020019064010000000081111561042757600080fd5b82018360208201111561043957600080fd5b8035906020019184602083028401116401000000008311171561045b57600080fd5b90919293919293908035906020019064010000000081111561047c57600080fd5b82018360208201111561048e57600080fd5b803590602001918460018302840111640100000000831117156104b057600080fd5b9091929391929390505050610fb4565b005b61058e600480360360408110156104d857600080fd5b81019080803590602001906401000000008111156104f557600080fd5b82018360208201111561050757600080fd5b8035906020019184602083028401116401000000008311171561052957600080fd5b90919293919293908035906020019064010000000081111561054a57600080fd5b82018360208201111561055c57600080fd5b8035906020019184602083028401116401000000008311171561057e57600080fd5b909192939192939050505061155a565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b838110156105d15780820151818401526020810190506105b6565b505050509050019250505060405180910390f35b610666600480360360408110156105fb57600080fd5b810190808035906020019064010000000081111561061857600080fd5b82018360208201111561062a57600080fd5b8035906020019184600183028401116401000000008311171561064c57600080fd5b90919293919293908035906020019092919050505061167a565b005b6106df6004803603602081101561067e57600080fd5b810190808035906020019064010000000081111561069b57600080fd5b8201836020820111156106ad57600080fd5b803590602001918460018302840111640100000000831117156106cf57600080fd5b909192939192939050505061175f565b005b6106e96117f1565b005b61080c6004803603606081101561070157600080fd5b810190808035906020019064010000000081111561071e57600080fd5b82018360208201111561073057600080fd5b8035906020019184602083028401116401000000008311171561075257600080fd5b90919293919293908035906020019064010000000081111561077357600080fd5b82018360208201111561078557600080fd5b803590602001918460208302840111640100000000831117156107a757600080fd5b9091929391929390803590602001906401000000008111156107c857600080fd5b8201836020820111156107da57600080fd5b803590602001918460018302840111640100000000831117156107fc57600080fd5b909192939192939050505061192e565b005b610816611a5d565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610860611a87565b6040518082815260200191505060405180910390f35b61087e611a91565b604051808215151515815260200191505060405180910390f35b6108a0611ae9565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156108e05780820151818401526020810190506108c5565b50505050905090810190601f16801561090d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6109696004803603604081101561093157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611b8b565b005b610973611c8c565b6040518082815260200191505060405180910390f35b6109b56004803603602081101561099f57600080fd5b8101908080359060200190929190505050611c92565b6040518082815260200191505060405180910390f35b6109f7600480360360208110156109e157600080fd5b8101908080359060200190929190505050611caf565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a37578082015181840152602081019050610a1c565b50505050905090810190601f168015610a645780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610b1360048036036060811015610a8857600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190640100000000811115610acf57600080fd5b820183602082011115610ae157600080fd5b80359060200191846001830284011164010000000083111715610b0357600080fd5b9091929391929390505050611da9565b6040518082815260200191505060405180910390f35b610b31611e80565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610b71578082015181840152602081019050610b56565b50505050905090810190601f168015610b9e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610c0e60048036036040811015610bc257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f22565b604051808215151515815260200191505060405180910390f35b610cf3600480360360a0811015610c3e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019092919080359060200190640100000000811115610caf57600080fd5b820183602082011115610cc157600080fd5b80359060200191846001830284011164010000000083111715610ce357600080fd5b9091929391929390505050611fb6565b005b610d3760048036036020811015610d0b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506123e6565b005b600080600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000630e89341c7c0100000000000000000000000000000000000000000000000000000000027bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415610e075760019050610e13565b610e108261246e565b90505b919050565b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610eb05780601f10610e8557610100808354040283529160200191610eb0565b820191906000526020600020905b815481529060010190602001808311610e9357829003601f168201915b5050505050905090565b60606000600660008481526020019081526020016000205414151515610edc57fe5b610ee4611e80565b610eed83612557565b6040516020018083805190602001908083835b602083101515610f255780518252602082019150602081019050602083039250610f00565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b602083101515610f785780518252602082019150602081019050602083039250610f53565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040529050919050565b600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff161415151561103c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806131406025913960400191505060405180910390fd5b838390508686905014151561109c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806131d26029913960400191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff161480611163575060011515600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b15156111ba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180613165602f913960400191505060405180910390fd5b60008090505b8686905081101561137457600087878381811015156111db57fe5b905060200201359050600086868481811015156111f457fe5b90506020020135905061125f8160008085815260200190815260200160002060008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126b090919063ffffffff16565b60008084815260200190815260200160002060008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061131460008084815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826126c990919063ffffffff16565b60008084815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050508060010190506111c0565b508673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb898989896040518080602001806020018381038352878782818152602001925060200280828437600081840152601f19601f8201169050808301925050508381038252858582818152602001925060200280828437600081840152601f19601f820116905080830192505050965050505050505060405180910390a46114768773ffffffffffffffffffffffffffffffffffffffff166126e5565b156115505761154f338989898980806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050888880806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505087878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506126f8565b5b5050505050505050565b6060828290508585905014151561157057600080fd5b6060858590506040519080825280602002602001820160405280156115a45781602001602082028038833980820191505090505b50905060008090505b8686905081101561166d5760008086868481811015156115c957fe5b905060200201358152602001908152602001600020600088888481811015156115ee57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054828281518110151561165457fe5b90602001906020020181815250508060010190506115ad565b5080915050949350505050565b611682611a91565b15156116f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b807f68569b533bfdeb53ee0f87318e7aa1ad56335f80086c45dfaa733c24fa43ea7b848460405180806020018281038252848482818152602001925080828437600081840152601f19601f820116905080830192505050935050505060405180910390a2505050565b611767611a91565b15156117db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8181600591906117ec929190613074565b505050565b6117f9611a91565b151561186d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611936611a91565b15156119aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008090505b84849050811015611a5457611a4887878381811015156119cc57fe5b9050602002013586868481811015156119e157fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1685858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506129c3565b508060010190506119b0565b50505050505050565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600754905090565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611b815780601f10611b5657610100808354040283529160200191611b81565b820191906000526020600020905b815481529060010190602001808311611b6457829003601f168201915b5050505050905090565b80600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b60075481565b600060066000838152602001908152602001600020549050919050565b60606000600660008481526020019081526020016000205414151515611cd157fe5b611cd9611e80565b611ce283612557565b6040516020018083805190602001908083835b602083101515611d1a5780518252602082019150602081019050602083039250611cf5565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b602083101515611d6d5780518252602082019150602081019050602083039250611d48565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040529050919050565b6000611db3611a91565b1515611e27576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611e76858585858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506129c3565b9050949350505050565b606060058054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611f185780601f10611eed57610100808354040283529160200191611f18565b820191906000526020600020905b815481529060010190602001808311611efb57829003601f168201915b5050505050905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415151561205b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f5f746f206d757374206265206e6f6e2d7a65726f2e000000000000000000000081525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161480612122575060011515600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b1515612179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180613165602f913960400191505060405180910390fd5b6121db8360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126b090919063ffffffff16565b60008086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061229060008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846126c990919063ffffffff16565b60008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051808381526020018281526020019250505060405180910390a46123868573ffffffffffffffffffffffffffffffffffffffff166126e5565b156123de576123dd338787878787878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612ce3565b5b505050505050565b6123ee611a91565b1515612462576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61246b81612f2c565b50565b60006301ffc9a77c0100000000000000000000000000000000000000000000000000000000027bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061253f575063d9b67a267c0100000000000000000000000000000000000000000000000000000000027bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b1561254d5760019050612552565b600090505b919050565b6060600082141561259f576040805190810160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126ab565b600082905060005b6000821415156125cd578080600101915050600a828115156125c557fe5b0491506125a7565b6060816040519080825280601f01601f1916602001820160405280156126025781602001600182028038833980820191505090505b50905060006001830390505b6000861415156126a357600a8681151561262457fe5b066030017f01000000000000000000000000000000000000000000000000000000000000000282828060019003935081518110151561265f57fe5b9060200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8681151561269b57fe5b04955061260e565b819450505050505b919050565b60008282111515156126be57fe5b818303905092915050565b600081830190508281101515156126dc57fe5b80905092915050565b600080823b905060008111915050919050565b63bc197c817c0100000000000000000000000000000000000000000000000000000000027bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168473ffffffffffffffffffffffffffffffffffffffff1663bc197c8188888787876040518663ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b8381101561283657808201518184015260208101905061281b565b50505050905001848103835286818151815260200191508051906020019060200280838360005b8381101561287857808201518184015260208101905061285d565b50505050905001848103825285818151815260200191508051906020019080838360005b838110156128b757808201518184015260208101905061289c565b50505050905090810190601f1680156128e45780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b15801561290957600080fd5b505af115801561291d573d6000803e3d6000fd5b505050506040513d602081101561293357600080fd5b81019080805190602001909291905050507bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415156129bb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603e815260200180613194603e913960400191505060405180910390fd5b505050505050565b600060076000815460010191905081905590508360008083815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360066000838152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628488604051808381526020018281526020019250505060405180910390a4807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b612af1611e80565b612afa84612557565b6040516020018083805190602001908083835b602083101515612b325780518252602082019150602081019050602083039250612b0d565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b602083101515612b855780518252602082019150602081019050602083039250612b60565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040526040518080602001828103825283818151815260200191508051906020019080838360005b83811015612bfa578082015181840152602081019050612bdf565b50505050905090810190601f168015612c275780820380516001836020036101000a031916815260200191505b509250505060405180910390a2600082511115612cdc57807fa1eec11cce81e09f263a45ff6fcd28b6a5df52f325271af8c77a5db086af5338836040518080602001828103825283818151815260200191508051906020019080838360005b83811015612ca1578082015181840152602081019050612c86565b50505050905090810190601f168015612cce5780820380516001836020036101000a031916815260200191505b509250505060405180910390a25b9392505050565b63f23a6e617c0100000000000000000000000000000000000000000000000000000000027bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168473ffffffffffffffffffffffffffffffffffffffff1663f23a6e6188888787876040518663ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015612e22578082015181840152602081019050612e07565b50505050905090810190601f168015612e4f5780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b158015612e7257600080fd5b505af1158015612e86573d6000803e3d6000fd5b505050506040513d6020811015612e9c57600080fd5b81019080805190602001909291905050507bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916141515612f24576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260398152602001806131fb6039913960400191505060405180910390fd5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614151515612fb4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061311a6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106130b557803560ff19168380011785556130e3565b828001600101855582156130e3579182015b828111156130e25782358255916020019190600101906130c7565b5b5090506130f091906130f4565b5090565b61311691905b808211156131125760008160009055506001016130fa565b5090565b9056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737364657374696e6174696f6e2061646472657373206d757374206265206e6f6e2d7a65726f2e4e656564206f70657261746f7220617070726f76616c20666f7220337264207061727479207472616e73666572732e636f6e74726163742072657475726e656420616e20756e6b6e6f776e2076616c75652066726f6d206f6e45524331313535426174636852656365697665645f69647320616e64205f76616c756573206172726179206c656e676874206d757374206d617463682e636f6e74726163742072657475726e656420616e20756e6b6e6f776e2076616c75652066726f6d206f6e455243313135355265636569766564a165627a7a72305820f3af5c04f8dee430769b9056b310254dfe9981d8f6c8aedb040d136a99a84f440029

Deployed Bytecode Sourcemap

30808:4124:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30808:4124:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21616:374;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21616:374:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31637:268;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;31637:268:0;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;33983:93;;;:::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;33983:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33445:207;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;33445:207: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;33445:207:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19566:1798;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;19566:1798:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;19566:1798:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;19566:1798: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;19566:1798:0;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;19566:1798:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;19566:1798: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;19566:1798:0;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;19566:1798:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;19566:1798: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;19566:1798:0;;;;;;;;;;;;:::i;:::-;;22298:405;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22298:405:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;22298:405:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;22298:405: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;22298:405:0;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;22298:405:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;22298:405: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;22298:405: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;22298:405:0;;;;;;;;;;;;;;;;;33218:117;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;33218:117:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;33218:117:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;33218:117: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;33218:117:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33117:93;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;33117:93:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;33117:93:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;33117:93: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;33117:93:0;;;;;;;;;;;;:::i;:::-;;27847:140;;;:::i;:::-;;32843:266;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;32843:266:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;32843:266:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;32843:266: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;32843:266:0;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;32843:266:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;32843:266: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;32843:266:0;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;32843:266:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;32843:266: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;32843:266:0;;;;;;;;;;;;:::i;:::-;;27036:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;34839:90;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27402:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;34191:89;;;:::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;34191:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23065:205;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23065:205:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31296:20;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34561:111;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;34561:111:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33660:212;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;33660:212: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;33660:212:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31983:182;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;31983:182:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;31983:182:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;31983:182: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;31983:182:0;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33343:94;;;:::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;33343:94:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23557:151;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23557:151:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;16973:945;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;16973:945:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;16973:945:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;16973:945: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;16973:945:0;;;;;;;;;;;;:::i;:::-;;28142:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28142:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;21616:374;21687:7;21961:8;:13;21970:3;21961:13;;;;;;;;;;;:21;21975:6;21961:21;;;;;;;;;;;;;;;;21954:28;;21616:374;;;;:::o;31637:268::-;31721:4;30907:10;31758:23;;31742:39;;;:12;:39;;;;31738:160;;;31805:4;31798:11;;;;31738:160;31849:37;31873:12;31849:23;:37::i;:::-;31842:44;;31637:268;;;;:::o;33983:93::-;34022:13;34055;34048:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33983:93;:::o;33445:207::-;33494:13;33560:1;33537:14;:19;33552:3;33537:19;;;;;;;;;;;;:24;;33530:32;;;;;;33606:14;:12;:14::i;:::-;33621:21;33638:3;33621:16;:21::i;:::-;33589:54;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;51:19;36:153;;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;33589:54:0;;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;51:19;36:153;;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;33589:54:0;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;33589:54:0;;;33575:69;;33445:207;;;:::o;19566:1798::-;19778:3;19763:19;;:3;:19;;;;19755:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19858:7;;:14;;19843:4;;:11;;:29;19835:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19946:10;19937:19;;:5;:19;;;:66;;;;19999:4;19960:43;;:16;:23;19977:5;19960:23;;;;;;;;;;;;;;;:35;19984:10;19960:35;;;;;;;;;;;;;;;;;;;;;;;;;:43;;;19937:66;19929:126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20073:9;20085:1;20073:13;;20068:388;20092:4;;:11;;20088:1;:15;20068:388;;;20125:10;20138:4;;20143:1;20138:7;;;;;;;;;;;;;;;20125:20;;20160:13;20176:7;;20184:1;20176:10;;;;;;;;;;;;;;;20160:26;;20349:30;20373:5;20349:8;:12;20358:2;20349:12;;;;;;;;;;;:19;20362:5;20349:19;;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;20327:8;:12;20336:2;20327:12;;;;;;;;;;;:19;20340:5;20327:19;;;;;;;;;;;;;;;:52;;;;20416:28;20426:8;:12;20435:2;20426:12;;;;;;;;;;;:17;20439:3;20426:17;;;;;;;;;;;;;;;;20416:5;:9;;:28;;;;:::i;:::-;20394:8;:12;20403:2;20394:12;;;;;;;;;;;:17;20407:3;20394:17;;;;;;;;;;;;;;;:50;;;;20068:388;;20105:3;;;;;20068:388;;;;21047:3;21014:52;;21040:5;21014:52;;21028:10;21014:52;;;21052:4;;21058:7;;21014:52;;;;;;;;;;;;;;;;;;;;;;;;;;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;;21014:52:0;;;;;;;;;;;;;;;;;;;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;;21014:52:0;;;;;;;;;;;;;;;;;21231:16;:3;:14;;;:16::i;:::-;21227:130;;;21264:81;21300:10;21312:5;21319:3;21324:4;;21264:81;;;;;;;;;;;;;;;;;;;;;;;;;;;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;;21264:81:0;;;;;;21330:7;;21264:81;;;;;;;;;;;;;;;;;;;;;;;;;;;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;;21264:81:0;;;;;;21339:5;;21264:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;;21264:81:0;;;;;;:35;:81::i;:::-;21227:130;19566:1798;;;;;;;;:::o;22298:405::-;22398:16;22455:4;;:11;;22437:7;;:14;;:29;22429:38;;;;;;;;22480:26;22523:7;;:14;;22509:29;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;148:4;140:6;136:17;126:27;;0:157;22509:29:0;;;;22480:58;;22556:9;22568:1;22556:13;;22551:116;22575:7;;:14;;22571:1;:18;22551:116;;;22626:8;:17;22635:4;;22640:1;22635:7;;;;;;;;;;;;;;;22626:17;;;;;;;;;;;:29;22644:7;;22652:1;22644:10;;;;;;;;;;;;;;;;;22626:29;;;;;;;;;;;;;;;;22611:9;22621:1;22611:12;;;;;;;;;;;;;;;;;:44;;;;;22591:3;;;;;22551:116;;;;22686:9;22679:16;;;22298:405;;;;;;:::o;33218:117::-;27248:9;:7;:9::i;:::-;27240:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33323:3;33307:20;33314:7;;33307:20;;;;;;;;;;;;;;;;;;;;;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;;33307:20:0;;;;;;;;;;;;;;33218:117;;;:::o;33117:93::-;27248:9;:7;:9::i;:::-;27240:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33199:3;;33188:8;:14;;;;;;;:::i;:::-;;33117:93;;:::o;27847:140::-;27248:9;:7;:9::i;:::-;27240:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27946:1;27909:40;;27930:6;;;;;;;;;;;27909:40;;;;;;;;;;;;27977:1;27960:6;;:19;;;;;;;;;;;;;;;;;;27847:140::o;32843:266::-;27248:9;:7;:9::i;:::-;27240:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32993:9;33005:1;32993:13;;32988:112;33012:3;;:10;;33008:1;:14;32988:112;;;33044:43;33052:16;;33069:1;33052:19;;;;;;;;;;;;;;;33073:3;;33077:1;33073:6;;;;;;;;;;;;;;;;;33081:5;;33044:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;;33044:43:0;;;;;;:7;:43::i;:::-;;33024:3;;;;;32988:112;;;;32843:266;;;;;;:::o;27036:79::-;27074:7;27101:6;;;;;;;;;;;27094:13;;27036:79;:::o;34839:90::-;34889:7;34916:5;;34909:12;;34839:90;:::o;27402:92::-;27442:4;27480:6;;;;;;;;;;;27466:20;;:10;:20;;;27459:27;;27402:92;:::o;34191:89::-;34232:13;34265:7;34258:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34191:89;:::o;23065:205::-;23189:9;23147:16;:28;23164:10;23147:28;;;;;;;;;;;;;;;:39;23176:9;23147:39;;;;;;;;;;;;;;;;:51;;;;;;;;;;;;;;;;;;23241:9;23214:48;;23229:10;23214:48;;;23252:9;23214:48;;;;;;;;;;;;;;;;;;;;;;23065:205;;:::o;31296:20::-;;;;:::o;34561:111::-;34618:7;34645:14;:19;34660:3;34645:19;;;;;;;;;;;;34638:26;;34561:111;;;:::o;33660:212::-;33714:13;33780:1;33757:14;:19;33772:3;33757:19;;;;;;;;;;;;:24;;33750:32;;;;;;33826:14;:12;:14::i;:::-;33841:21;33858:3;33841:16;:21::i;:::-;33809:54;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;51:19;36:153;;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;33809:54:0;;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;51:19;36:153;;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;33809:54:0;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;33809:54:0;;;33795:69;;33660:212;;;:::o;31983:182::-;32087:11;27248:9;:7;:9::i;:::-;27240:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32119:35;32127:14;32143:3;32148:5;;32119:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;;32119:35:0;;;;;;:7;:35::i;:::-;32113:41;;31983:182;;;;;;:::o;33343:94::-;33388:13;33421:8;33414:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33343:94;:::o;23557:151::-;23641:4;23665:16;:24;23682:6;23665:24;;;;;;;;;;;;;;;:35;23690:9;23665:35;;;;;;;;;;;;;;;;;;;;;;;;;23658:42;;23557:151;;;;:::o;16973:945::-;17123:3;17108:19;;:3;:19;;;;17100:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17181:10;17172:19;;:5;:19;;;:66;;;;17234:4;17195:43;;:16;:23;17212:5;17195:23;;;;;;;;;;;;;;;:35;17219:10;17195:35;;;;;;;;;;;;;;;;;;;;;;;;;:43;;;17172:66;17164:126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17442:32;17467:6;17442:8;:13;17451:3;17442:13;;;;;;;;;;;:20;17456:5;17442:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;17419:8;:13;17428:3;17419:13;;;;;;;;;;;:20;17433:5;17419:20;;;;;;;;;;;;;;;:55;;;;17508:30;17519:8;:13;17528:3;17519:13;;;;;;;;;;;:18;17533:3;17519:18;;;;;;;;;;;;;;;;17508:6;:10;;:30;;;;:::i;:::-;17485:8;:13;17494:3;17485:13;;;;;;;;;;;:18;17499:3;17485:18;;;;;;;;;;;;;;;:53;;;;17618:3;17584:51;;17611:5;17584:51;;17599:10;17584:51;;;17623:3;17628:6;17584:51;;;;;;;;;;;;;;;;;;;;;;;;17792:16;:3;:14;;;:16::i;:::-;17788:123;;;17825:74;17856:10;17868:5;17875:3;17880;17885:6;17893:5;;17825:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;;17825:74:0;;;;;;:30;:74::i;:::-;17788:123;16973:945;;;;;;:::o;28142:109::-;27248:9;:7;:9::i;:::-;27240:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28215:28;28234:8;28215:18;:28::i;:::-;28142:109;:::o;15432:283::-;15516:4;14883:10;15554:26;;15538:42;;;:12;:42;;;;:103;;;;15413:10;15614:27;;15598:43;;;:12;:43;;;;15538:103;15534:148;;;15665:4;15658:11;;;;15534:148;15702:5;15695:12;;15432:283;;;;:::o;30160:482::-;30210:27;30260:1;30254:2;:7;30250:50;;;30278:10;;;;;;;;;;;;;;;;;;;;;;30250:50;30310:6;30319:2;30310:11;;30332:8;30351:69;30363:1;30358;:6;;30351:69;;;30381:5;;;;;;;30406:2;30401:7;;;;;;;;;;;30351:69;;;30430:17;30460:3;30450:14;;;;;;;;;;;;;;;;;;;;;;;;;29:1:-1;21:6;17:14;116:4;104:10;96:6;87:34;147:4;139:6;135:17;125:27;;0:156;30450:14:0;;;;30430:34;;30475:6;30490:1;30484:3;:7;30475:16;;30502:103;30515:1;30509:2;:7;;30502:103;;;30566:2;30561;:7;;;;;;;;30556:2;:12;30545:25;;30533:4;30538:3;;;;;;;30533:9;;;;;;;;;;;;;;:37;;;;;;;;;;;30591:2;30585:8;;;;;;;;;;;30502:103;;;30629:4;30615:19;;;;;;30160:482;;;;:::o;1196:123::-;1254:7;1286:1;1281;:6;;1274:14;;;;;;1310:1;1306;:5;1299:12;;1196:123;;;;:::o;1394:141::-;1452:9;1482:1;1478;:5;1474:9;;1506:1;1501;:6;;1494:14;;;;;;1526:1;1519:8;;1394:141;;;;:::o;2056:635::-;2116:4;2133:12;2648:7;2636:20;2628:28;;2682:1;2675:4;:8;2668:15;;;2056:635;;;:::o;24964:1189::-;3052:10;26056:22;;25964:114;;;25985:3;25964:48;;;26013:9;26024:5;26031:4;26037:7;26046:5;25964:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;25964:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;25964:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;25964:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25964:88:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;25964:88:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;25964:88:0;;;;;;;;;;;;;;;;:114;;;;25956:189;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24964:1189;;;;;;:::o;32243:539::-;32336:11;32370:5;;32368:7;;;;;;;;;;32362:13;;32407:14;32386:8;:13;32395:3;32386:13;;;;;;;;;;;:18;32400:3;32386:18;;;;;;;;;;;;;;;:35;;;;32454:14;32432;:19;32447:3;32432:19;;;;;;;;;;;:36;;;;32573:3;32532:66;;32567:3;32532:66;;32547:10;32532:66;;;32578:3;32583:14;32532:66;;;;;;;;;;;;;;;;;;;;;;;;32684:3;32616:72;32644:14;:12;:14::i;:::-;32659:21;32676:3;32659:16;:21::i;:::-;32627:54;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;51:19;36:153;;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;32627:54:0;;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;51:19;36:153;;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;32627:54:0;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;32627:54:0;;;32616:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;32616:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32727:1;32711:5;32705:19;:23;32701:71;;;32768:3;32748:24;32761:5;32748:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;32748:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32701:71;32243:539;;;;;:::o;23819:1137::-;2904:10;24870:16;;24785:101;;;24806:3;24785:43;;;24829:9;24840:5;24847:3;24852:6;24860:5;24785:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;24785:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24785:81:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;24785:81:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;24785:81:0;;;;;;;;;;;;;;;;:101;;;;24777:171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23819:1137;;;;;;:::o;28357:229::-;28451:1;28431:22;;:8;:22;;;;28423:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28541:8;28512:38;;28533:6;;;;;;;;;;;28512:38;;;;;;;;;;;;28570:8;28561:6;;:17;;;;;;;;;;;;;;;;;;28357:229;:::o;30808:4124::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

bzzr://f3af5c04f8dee430769b9056b310254dfe9981d8f6c8aedb040d136a99a84f44

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.