ETH Price: $3,174.85 (-8.25%)
Gas: 3 Gwei

Token

Twu Coin (TWU)
 

Overview

Max Total Supply

847,704,066.382056866686709126 TWU

Holders

67

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,173,853.66562071575462955 TWU

Value
$0.00
0x4b616ab04c84af1f12e2d794e7d41878b182cd6a
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TwuToken

Compiler Version
v0.6.10+commit.00c0fcaf

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-07-02
*/

pragma solidity ^0.6.10;
pragma experimental ABIEncoderV2;

// Dummy contract only used to emit to end-user they are using wrong solc
abstract contract solcChecker {
/* INCOMPATIBLE SOLC: import the following instead: "github.com/oraclize/ethereum-api/oraclizeAPI_0.4.sol" */ function f(bytes calldata x) virtual external;
}

interface ProvableI {

    function cbAddress() external returns (address _cbAddress);
    function setProofType(byte _proofType) external;
    function setCustomGasPrice(uint _gasPrice) external;
    function getPrice(string calldata _datasource) external returns (uint _dsprice);
    function randomDS_getSessionPubKeyHash() external view returns (bytes32 _sessionKeyHash);
    function getPrice(string calldata _datasource, uint _gasLimit)  external returns (uint _dsprice);
    function queryN(uint _timestamp, string calldata _datasource, bytes calldata _argN) external payable returns (bytes32 _id);
    function query(uint _timestamp, string calldata _datasource, string calldata _arg) external payable returns (bytes32 _id);
    function query2(uint _timestamp, string calldata _datasource, string calldata _arg1, string calldata _arg2) external payable returns (bytes32 _id);
    function query_withGasLimit(uint _timestamp, string calldata _datasource, string calldata _arg, uint _gasLimit) external payable returns (bytes32 _id);
    function queryN_withGasLimit(uint _timestamp, string calldata _datasource, bytes calldata _argN, uint _gasLimit) external payable returns (bytes32 _id);
    function query2_withGasLimit(uint _timestamp, string calldata _datasource, string calldata _arg1, string calldata _arg2, uint _gasLimit) external payable returns (bytes32 _id);
}

interface OracleAddrResolverI {
    function getAddress() external returns (address _address);
}
/*
Begin solidity-cborutils
https://github.com/smartcontractkit/solidity-cborutils
MIT License
Copyright (c) 2018 SmartContract ChainLink, Ltd.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
library Buffer {

    struct buffer {
        bytes buf;
        uint capacity;
    }

    function init(buffer memory _buf, uint _capacity) internal pure {
        uint capacity = _capacity;
        if (capacity % 32 != 0) {
            capacity += 32 - (capacity % 32);
        }
        _buf.capacity = capacity; // Allocate space for the buffer data
        assembly {
            let ptr := mload(0x40)
            mstore(_buf, ptr)
            mstore(ptr, 0)
            mstore(0x40, add(ptr, capacity))
        }
    }

    function resize(buffer memory _buf, uint _capacity) private pure {
        bytes memory oldbuf = _buf.buf;
        init(_buf, _capacity);
        append(_buf, oldbuf);
    }

    function max(uint _a, uint _b) private pure returns (uint _max) {
        if (_a > _b) {
            return _a;
        }
        return _b;
    }
    /**
      * @dev Appends a byte array to the end of the buffer. Resizes if doing so
      *      would exceed the capacity of the buffer.
      * @param _buf The buffer to append to.
      * @param _data The data to append.
      * @return _buffer The original buffer.
      *
      */
    function append(buffer memory _buf, bytes memory _data) internal pure returns (buffer memory _buffer) {
        if (_data.length + _buf.buf.length > _buf.capacity) {
            resize(_buf, max(_buf.capacity, _data.length) * 2);
        }
        uint dest;
        uint src;
        uint len = _data.length;
        assembly {
            let bufptr := mload(_buf) // Memory address of the buffer data
            let buflen := mload(bufptr) // Length of existing buffer data
            dest := add(add(bufptr, buflen), 32) // Start address = buffer address + buffer length + sizeof(buffer length)
            mstore(bufptr, add(buflen, mload(_data))) // Update buffer length
            src := add(_data, 32)
        }
        for(; len >= 32; len -= 32) { // Copy word-length chunks while possible
            assembly {
                mstore(dest, mload(src))
            }
            dest += 32;
            src += 32;
        }
        uint mask = 256 ** (32 - len) - 1; // Copy remaining bytes
        assembly {
            let srcpart := and(mload(src), not(mask))
            let destpart := and(mload(dest), mask)
            mstore(dest, or(destpart, srcpart))
        }
        return _buf;
    }
    /**
      *
      * @dev Appends a byte to the end of the buffer. Resizes if doing so would
      * exceed the capacity of the buffer.
      * @param _buf The buffer to append to.
      * @param _data The data to append.
      *
      */
    function append(buffer memory _buf, uint8 _data) internal pure {
        if (_buf.buf.length + 1 > _buf.capacity) {
            resize(_buf, _buf.capacity * 2);
        }
        assembly {
            let bufptr := mload(_buf) // Memory address of the buffer data
            let buflen := mload(bufptr) // Length of existing buffer data
            let dest := add(add(bufptr, buflen), 32) // Address = buffer address + buffer length + sizeof(buffer length)
            mstore8(dest, _data)
            mstore(bufptr, add(buflen, 1)) // Update buffer length
        }
    }
    /**
      *
      * @dev Appends a byte to the end of the buffer. Resizes if doing so would
      * exceed the capacity of the buffer.
      * @param _buf The buffer to append to.
      * @param _data The data to append.
      * @return _buffer The original buffer.
      *
      */
    function appendInt(buffer memory _buf, uint _data, uint _len) internal pure returns (buffer memory _buffer) {
        if (_len + _buf.buf.length > _buf.capacity) {
            resize(_buf, max(_buf.capacity, _len) * 2);
        }
        uint mask = 256 ** _len - 1;
        assembly {
            let bufptr := mload(_buf) // Memory address of the buffer data
            let buflen := mload(bufptr) // Length of existing buffer data
            let dest := add(add(bufptr, buflen), _len) // Address = buffer address + buffer length + sizeof(buffer length) + len
            mstore(dest, or(and(mload(dest), not(mask)), _data))
            mstore(bufptr, add(buflen, _len)) // Update buffer length
        }
        return _buf;
    }
}

library CBOR {

    using Buffer for Buffer.buffer;

    uint8 private constant MAJOR_TYPE_INT = 0;
    uint8 private constant MAJOR_TYPE_MAP = 5;
    uint8 private constant MAJOR_TYPE_BYTES = 2;
    uint8 private constant MAJOR_TYPE_ARRAY = 4;
    uint8 private constant MAJOR_TYPE_STRING = 3;
    uint8 private constant MAJOR_TYPE_NEGATIVE_INT = 1;
    uint8 private constant MAJOR_TYPE_CONTENT_FREE = 7;

    function encodeType(Buffer.buffer memory _buf, uint8 _major, uint _value) private pure {
        if (_value <= 23) {
            _buf.append(uint8((_major << 5) | _value));
        } else if (_value <= 0xFF) {
            _buf.append(uint8((_major << 5) | 24));
            _buf.appendInt(_value, 1);
        } else if (_value <= 0xFFFF) {
            _buf.append(uint8((_major << 5) | 25));
            _buf.appendInt(_value, 2);
        } else if (_value <= 0xFFFFFFFF) {
            _buf.append(uint8((_major << 5) | 26));
            _buf.appendInt(_value, 4);
        } else if (_value <= 0xFFFFFFFFFFFFFFFF) {
            _buf.append(uint8((_major << 5) | 27));
            _buf.appendInt(_value, 8);
        }
    }

    function encodeIndefiniteLengthType(Buffer.buffer memory _buf, uint8 _major) private pure {
        _buf.append(uint8((_major << 5) | 31));
    }

    function encodeUInt(Buffer.buffer memory _buf, uint _value) internal pure {
        encodeType(_buf, MAJOR_TYPE_INT, _value);
    }

    function encodeInt(Buffer.buffer memory _buf, int _value) internal pure {
        if (_value >= 0) {
            encodeType(_buf, MAJOR_TYPE_INT, uint(_value));
        } else {
            encodeType(_buf, MAJOR_TYPE_NEGATIVE_INT, uint(-1 - _value));
        }
    }

    function encodeBytes(Buffer.buffer memory _buf, bytes memory _value) internal pure {
        encodeType(_buf, MAJOR_TYPE_BYTES, _value.length);
        _buf.append(_value);
    }

    function encodeString(Buffer.buffer memory _buf, string memory _value) internal pure {
        encodeType(_buf, MAJOR_TYPE_STRING, bytes(_value).length);
        _buf.append(bytes(_value));
    }

    function startArray(Buffer.buffer memory _buf) internal pure {
        encodeIndefiniteLengthType(_buf, MAJOR_TYPE_ARRAY);
    }

    function startMap(Buffer.buffer memory _buf) internal pure {
        encodeIndefiniteLengthType(_buf, MAJOR_TYPE_MAP);
    }

    function endSequence(Buffer.buffer memory _buf) internal pure {
        encodeIndefiniteLengthType(_buf, MAJOR_TYPE_CONTENT_FREE);
    }
}
/*
End solidity-cborutils
*/
contract usingProvable {

    using CBOR for Buffer.buffer;

    ProvableI provable;
    OracleAddrResolverI OAR;

    uint constant day = 60 * 60 * 24;
    uint constant week = 60 * 60 * 24 * 7;
    uint constant month = 60 * 60 * 24 * 30;

    byte constant proofType_NONE = 0x00;
    byte constant proofType_Ledger = 0x30;
    byte constant proofType_Native = 0xF0;
    byte constant proofStorage_IPFS = 0x01;
    byte constant proofType_Android = 0x40;
    byte constant proofType_TLSNotary = 0x10;

    string provable_network_name;
    uint8 constant networkID_auto = 0;
    uint8 constant networkID_morden = 2;
    uint8 constant networkID_mainnet = 1;
    uint8 constant networkID_testnet = 2;
    uint8 constant networkID_consensys = 161;

    mapping(bytes32 => bytes32) provable_randomDS_args;
    mapping(bytes32 => bool) provable_randomDS_sessionKeysHashVerified;

    modifier provableAPI {
        if ((address(OAR) == address(0)) || (getCodeSize(address(OAR)) == 0)) {
            provable_setNetwork(networkID_auto);
        }
        if (address(provable) != OAR.getAddress()) {
            provable = ProvableI(OAR.getAddress());
        }
        _;
    }

    modifier provable_randomDS_proofVerify(bytes32 _queryId, string memory _result, bytes memory _proof) {
        // RandomDS Proof Step 1: The prefix has to match 'LP\x01' (Ledger Proof version 1)
        require((_proof[0] == "L") && (_proof[1] == "P") && (uint8(_proof[2]) == uint8(1)));
        bool proofVerified = provable_randomDS_proofVerify__main(_proof, _queryId, bytes(_result), provable_getNetworkName());
        require(proofVerified);
        _;
    }

    function provable_setNetwork(uint8 _networkID) internal returns (bool _networkSet) {
      _networkID; // NOTE: Silence the warning and remain backwards compatible
      return provable_setNetwork();
    }

    function provable_setNetworkName(string memory _network_name) internal {
        provable_network_name = _network_name;
    }

    function provable_getNetworkName() internal view returns (string memory _networkName) {
        return provable_network_name;
    }

    function provable_setNetwork() internal returns (bool _networkSet) {
        if (getCodeSize(0x1d3B2638a7cC9f2CB3D298A3DA7a90B67E5506ed) > 0) { //mainnet
            OAR = OracleAddrResolverI(0x1d3B2638a7cC9f2CB3D298A3DA7a90B67E5506ed);
            provable_setNetworkName("eth_mainnet");
            return true;
        }
        if (getCodeSize(0xc03A2615D5efaf5F49F60B7BB6583eaec212fdf1) > 0) { //ropsten testnet
            OAR = OracleAddrResolverI(0xc03A2615D5efaf5F49F60B7BB6583eaec212fdf1);
            provable_setNetworkName("eth_ropsten3");
            return true;
        }
        if (getCodeSize(0xB7A07BcF2Ba2f2703b24C0691b5278999C59AC7e) > 0) { //kovan testnet
            OAR = OracleAddrResolverI(0xB7A07BcF2Ba2f2703b24C0691b5278999C59AC7e);
            provable_setNetworkName("eth_kovan");
            return true;
        }
        if (getCodeSize(0x146500cfd35B22E4A392Fe0aDc06De1a1368Ed48) > 0) { //rinkeby testnet
            OAR = OracleAddrResolverI(0x146500cfd35B22E4A392Fe0aDc06De1a1368Ed48);
            provable_setNetworkName("eth_rinkeby");
            return true;
        }
        if (getCodeSize(0xa2998EFD205FB9D4B4963aFb70778D6354ad3A41) > 0) { //goerli testnet
            OAR = OracleAddrResolverI(0xa2998EFD205FB9D4B4963aFb70778D6354ad3A41);
            provable_setNetworkName("eth_goerli");
            return true;
        }
        if (getCodeSize(0x6f485C8BF6fc43eA212E93BBF8ce046C7f1cb475) > 0) { //ethereum-bridge
            OAR = OracleAddrResolverI(0x6f485C8BF6fc43eA212E93BBF8ce046C7f1cb475);
            return true;
        }
        if (getCodeSize(0x20e12A1F859B3FeaE5Fb2A0A32C18F5a65555bBF) > 0) { //ether.camp ide
            OAR = OracleAddrResolverI(0x20e12A1F859B3FeaE5Fb2A0A32C18F5a65555bBF);
            return true;
        }
        if (getCodeSize(0x51efaF4c8B3C9AfBD5aB9F4bbC82784Ab6ef8fAA) > 0) { //browser-solidity
            OAR = OracleAddrResolverI(0x51efaF4c8B3C9AfBD5aB9F4bbC82784Ab6ef8fAA);
            return true;
        }
        return false;
    }
    /**
     * @dev The following `__callback` functions are just placeholders ideally
     *      meant to be defined in child contract when proofs are used.
     *      The function bodies simply silence compiler warnings.
     */
    function __callback(bytes32 _myid, string memory _result) virtual public {
        __callback(_myid, _result, new bytes(0));
    }

    function __callback(bytes32 _myid, string memory _result, bytes memory _proof) virtual public {
      _myid; _result; _proof;
      provable_randomDS_args[bytes32(0)] = bytes32(0);
    }

    function provable_getPrice(string memory _datasource) provableAPI internal returns (uint _queryPrice) {
        return provable.getPrice(_datasource);
    }

    function provable_getPrice(string memory _datasource, uint _gasLimit) provableAPI internal returns (uint _queryPrice) {
        return provable.getPrice(_datasource, _gasLimit);
    }

    function provable_query(string memory _datasource, string memory _arg) provableAPI internal returns (bytes32 _id) {
        uint price = provable.getPrice(_datasource);
        if (price > 1 ether + tx.gasprice * 200000) {
            return 0; // Unexpectedly high price
        }
        return provable.query{value: price}(0, _datasource, _arg);
    }

    function provable_query(uint _timestamp, string memory _datasource, string memory _arg) provableAPI internal returns (bytes32 _id) {
        uint price = provable.getPrice(_datasource);
        if (price > 1 ether + tx.gasprice * 200000) {
            return 0; // Unexpectedly high price
        }
        return provable.query{value: price}(_timestamp, _datasource, _arg);
    }

    function provable_query(uint _timestamp, string memory _datasource, string memory _arg, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        uint price = provable.getPrice(_datasource,_gasLimit);
        if (price > 1 ether + tx.gasprice * _gasLimit) {
            return 0; // Unexpectedly high price
        }
        return provable.query_withGasLimit{value: price}(_timestamp, _datasource, _arg, _gasLimit);
    }

    function provable_query(string memory _datasource, string memory _arg, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        uint price = provable.getPrice(_datasource, _gasLimit);
        if (price > 1 ether + tx.gasprice * _gasLimit) {
           return 0; // Unexpectedly high price
        }
        return provable.query_withGasLimit{value: price}(0, _datasource, _arg, _gasLimit);
    }

    function provable_query(string memory _datasource, string memory _arg1, string memory _arg2) provableAPI internal returns (bytes32 _id) {
        uint price = provable.getPrice(_datasource);
        if (price > 1 ether + tx.gasprice * 200000) {
            return 0; // Unexpectedly high price
        }
        return provable.query2{value: price}(0, _datasource, _arg1, _arg2);
    }

    function provable_query(uint _timestamp, string memory _datasource, string memory _arg1, string memory _arg2) provableAPI internal returns (bytes32 _id) {
        uint price = provable.getPrice(_datasource);
        if (price > 1 ether + tx.gasprice * 200000) {
            return 0; // Unexpectedly high price
        }
        return provable.query2{value: price}(_timestamp, _datasource, _arg1, _arg2);
    }

    function provable_query(uint _timestamp, string memory _datasource, string memory _arg1, string memory _arg2, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        uint price = provable.getPrice(_datasource, _gasLimit);
        if (price > 1 ether + tx.gasprice * _gasLimit) {
            return 0; // Unexpectedly high price
        }
        return provable.query2_withGasLimit{value: price}(_timestamp, _datasource, _arg1, _arg2, _gasLimit);
    }

    function provable_query(string memory _datasource, string memory _arg1, string memory _arg2, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        uint price = provable.getPrice(_datasource, _gasLimit);
        if (price > 1 ether + tx.gasprice * _gasLimit) {
            return 0; // Unexpectedly high price
        }
        return provable.query2_withGasLimit{value: price}(0, _datasource, _arg1, _arg2, _gasLimit);
    }

    function provable_query(string memory _datasource, string[] memory _argN) provableAPI internal returns (bytes32 _id) {
        uint price = provable.getPrice(_datasource);
        if (price > 1 ether + tx.gasprice * 200000) {
            return 0; // Unexpectedly high price
        }
        bytes memory args = stra2cbor(_argN);
        return provable.queryN{value: price}(0, _datasource, args);
    }

    function provable_query(uint _timestamp, string memory _datasource, string[] memory _argN) provableAPI internal returns (bytes32 _id) {
        uint price = provable.getPrice(_datasource);
        if (price > 1 ether + tx.gasprice * 200000) {
            return 0; // Unexpectedly high price
        }
        bytes memory args = stra2cbor(_argN);
        return provable.queryN{value: price}(_timestamp, _datasource, args);
    }

    function provable_query(uint _timestamp, string memory _datasource, string[] memory _argN, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        uint price = provable.getPrice(_datasource, _gasLimit);
        if (price > 1 ether + tx.gasprice * _gasLimit) {
            return 0; // Unexpectedly high price
        }
        bytes memory args = stra2cbor(_argN);
        return provable.queryN_withGasLimit{value: price}(_timestamp, _datasource, args, _gasLimit);
    }

    function provable_query(string memory _datasource, string[] memory _argN, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        uint price = provable.getPrice(_datasource, _gasLimit);
        if (price > 1 ether + tx.gasprice * _gasLimit) {
            return 0; // Unexpectedly high price
        }
        bytes memory args = stra2cbor(_argN);
        return provable.queryN_withGasLimit{value: price}(0, _datasource, args, _gasLimit);
    }

    function provable_query(string memory _datasource, string[1] memory _args) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](1);
        dynargs[0] = _args[0];
        return provable_query(_datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, string[1] memory _args) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](1);
        dynargs[0] = _args[0];
        return provable_query(_timestamp, _datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, string[1] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](1);
        dynargs[0] = _args[0];
        return provable_query(_timestamp, _datasource, dynargs, _gasLimit);
    }

    function provable_query(string memory _datasource, string[1] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](1);
        dynargs[0] = _args[0];
        return provable_query(_datasource, dynargs, _gasLimit);
    }

    function provable_query(string memory _datasource, string[2] memory _args) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](2);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        return provable_query(_datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, string[2] memory _args) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](2);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        return provable_query(_timestamp, _datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, string[2] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](2);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        return provable_query(_timestamp, _datasource, dynargs, _gasLimit);
    }

    function provable_query(string memory _datasource, string[2] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](2);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        return provable_query(_datasource, dynargs, _gasLimit);
    }

    function provable_query(string memory _datasource, string[3] memory _args) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](3);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        return provable_query(_datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, string[3] memory _args) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](3);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        return provable_query(_timestamp, _datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, string[3] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](3);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        return provable_query(_timestamp, _datasource, dynargs, _gasLimit);
    }

    function provable_query(string memory _datasource, string[3] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](3);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        return provable_query(_datasource, dynargs, _gasLimit);
    }

    function provable_query(string memory _datasource, string[4] memory _args) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](4);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        return provable_query(_datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, string[4] memory _args) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](4);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        return provable_query(_timestamp, _datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, string[4] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](4);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        return provable_query(_timestamp, _datasource, dynargs, _gasLimit);
    }

    function provable_query(string memory _datasource, string[4] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](4);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        return provable_query(_datasource, dynargs, _gasLimit);
    }

    function provable_query(string memory _datasource, string[5] memory _args) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](5);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        dynargs[4] = _args[4];
        return provable_query(_datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, string[5] memory _args) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](5);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        dynargs[4] = _args[4];
        return provable_query(_timestamp, _datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, string[5] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](5);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        dynargs[4] = _args[4];
        return provable_query(_timestamp, _datasource, dynargs, _gasLimit);
    }

    function provable_query(string memory _datasource, string[5] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](5);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        dynargs[4] = _args[4];
        return provable_query(_datasource, dynargs, _gasLimit);
    }

    function provable_query(string memory _datasource, bytes[] memory _argN) provableAPI internal returns (bytes32 _id) {
        uint price = provable.getPrice(_datasource);
        if (price > 1 ether + tx.gasprice * 200000) {
            return 0; // Unexpectedly high price
        }
        bytes memory args = ba2cbor(_argN);
        return provable.queryN{value: price}(0, _datasource, args);
    }

    function provable_query(uint _timestamp, string memory _datasource, bytes[] memory _argN) provableAPI internal returns (bytes32 _id) {
        uint price = provable.getPrice(_datasource);
        if (price > 1 ether + tx.gasprice * 200000) {
            return 0; // Unexpectedly high price
        }
        bytes memory args = ba2cbor(_argN);
        return provable.queryN{value: price}(_timestamp, _datasource, args);
    }

    function provable_query(uint _timestamp, string memory _datasource, bytes[] memory _argN, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        uint price = provable.getPrice(_datasource, _gasLimit);
        if (price > 1 ether + tx.gasprice * _gasLimit) {
            return 0; // Unexpectedly high price
        }
        bytes memory args = ba2cbor(_argN);
        return provable.queryN_withGasLimit{value: price}(_timestamp, _datasource, args, _gasLimit);
    }

    function provable_query(string memory _datasource, bytes[] memory _argN, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        uint price = provable.getPrice(_datasource, _gasLimit);
        if (price > 1 ether + tx.gasprice * _gasLimit) {
            return 0; // Unexpectedly high price
        }
        bytes memory args = ba2cbor(_argN);
        return provable.queryN_withGasLimit{value: price}(0, _datasource, args, _gasLimit);
    }

    function provable_query(string memory _datasource, bytes[1] memory _args) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](1);
        dynargs[0] = _args[0];
        return provable_query(_datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, bytes[1] memory _args) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](1);
        dynargs[0] = _args[0];
        return provable_query(_timestamp, _datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, bytes[1] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](1);
        dynargs[0] = _args[0];
        return provable_query(_timestamp, _datasource, dynargs, _gasLimit);
    }

    function provable_query(string memory _datasource, bytes[1] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](1);
        dynargs[0] = _args[0];
        return provable_query(_datasource, dynargs, _gasLimit);
    }

    function provable_query(string memory _datasource, bytes[2] memory _args) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](2);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        return provable_query(_datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, bytes[2] memory _args) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](2);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        return provable_query(_timestamp, _datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, bytes[2] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](2);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        return provable_query(_timestamp, _datasource, dynargs, _gasLimit);
    }

    function provable_query(string memory _datasource, bytes[2] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](2);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        return provable_query(_datasource, dynargs, _gasLimit);
    }

    function provable_query(string memory _datasource, bytes[3] memory _args) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](3);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        return provable_query(_datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, bytes[3] memory _args) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](3);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        return provable_query(_timestamp, _datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, bytes[3] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](3);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        return provable_query(_timestamp, _datasource, dynargs, _gasLimit);
    }

    function provable_query(string memory _datasource, bytes[3] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](3);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        return provable_query(_datasource, dynargs, _gasLimit);
    }

    function provable_query(string memory _datasource, bytes[4] memory _args) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](4);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        return provable_query(_datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, bytes[4] memory _args) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](4);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        return provable_query(_timestamp, _datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, bytes[4] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](4);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        return provable_query(_timestamp, _datasource, dynargs, _gasLimit);
    }

    function provable_query(string memory _datasource, bytes[4] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](4);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        return provable_query(_datasource, dynargs, _gasLimit);
    }

    function provable_query(string memory _datasource, bytes[5] memory _args) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](5);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        dynargs[4] = _args[4];
        return provable_query(_datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, bytes[5] memory _args) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](5);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        dynargs[4] = _args[4];
        return provable_query(_timestamp, _datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, bytes[5] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](5);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        dynargs[4] = _args[4];
        return provable_query(_timestamp, _datasource, dynargs, _gasLimit);
    }

    function provable_query(string memory _datasource, bytes[5] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](5);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        dynargs[4] = _args[4];
        return provable_query(_datasource, dynargs, _gasLimit);
    }

    function provable_setProof(byte _proofP) provableAPI internal {
        return provable.setProofType(_proofP);
    }


    function provable_cbAddress() provableAPI internal returns (address _callbackAddress) {
        return provable.cbAddress();
    }

    function getCodeSize(address _addr) view internal returns (uint _size) {
        assembly {
            _size := extcodesize(_addr)
        }
    }

    function provable_setCustomGasPrice(uint _gasPrice) provableAPI internal {
        return provable.setCustomGasPrice(_gasPrice);
    }

    function provable_randomDS_getSessionPubKeyHash() provableAPI internal returns (bytes32 _sessionKeyHash) {
        return provable.randomDS_getSessionPubKeyHash();
    }

    function parseAddr(string memory _a) internal pure returns (address _parsedAddress) {
        bytes memory tmp = bytes(_a);
        uint160 iaddr = 0;
        uint160 b1;
        uint160 b2;
        for (uint i = 2; i < 2 + 2 * 20; i += 2) {
            iaddr *= 256;
            b1 = uint160(uint8(tmp[i]));
            b2 = uint160(uint8(tmp[i + 1]));
            if ((b1 >= 97) && (b1 <= 102)) {
                b1 -= 87;
            } else if ((b1 >= 65) && (b1 <= 70)) {
                b1 -= 55;
            } else if ((b1 >= 48) && (b1 <= 57)) {
                b1 -= 48;
            }
            if ((b2 >= 97) && (b2 <= 102)) {
                b2 -= 87;
            } else if ((b2 >= 65) && (b2 <= 70)) {
                b2 -= 55;
            } else if ((b2 >= 48) && (b2 <= 57)) {
                b2 -= 48;
            }
            iaddr += (b1 * 16 + b2);
        }
        return address(iaddr);
    }

    function strCompare(string memory _a, string memory _b) internal pure returns (int _returnCode) {
        bytes memory a = bytes(_a);
        bytes memory b = bytes(_b);
        uint minLength = a.length;
        if (b.length < minLength) {
            minLength = b.length;
        }
        for (uint i = 0; i < minLength; i ++) {
            if (a[i] < b[i]) {
                return -1;
            } else if (a[i] > b[i]) {
                return 1;
            }
        }
        if (a.length < b.length) {
            return -1;
        } else if (a.length > b.length) {
            return 1;
        } else {
            return 0;
        }
    }

    function indexOf(string memory _haystack, string memory _needle) internal pure returns (int _returnCode) {
        bytes memory h = bytes(_haystack);
        bytes memory n = bytes(_needle);
        if (h.length < 1 || n.length < 1 || (n.length > h.length)) {
            return -1;
        } else if (h.length > (2 ** 128 - 1)) {
            return -1;
        } else {
            uint subindex = 0;
            for (uint i = 0; i < h.length; i++) {
                if (h[i] == n[0]) {
                    subindex = 1;
                    while(subindex < n.length && (i + subindex) < h.length && h[i + subindex] == n[subindex]) {
                        subindex++;
                    }
                    if (subindex == n.length) {
                        return int(i);
                    }
                }
            }
            return -1;
        }
    }

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

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

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

    function strConcat(string memory _a, string memory _b, string memory _c, string memory _d, string memory _e) internal pure returns (string memory _concatenatedString) {
        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;
        uint i = 0;
        for (i = 0; i < _ba.length; i++) {
            babcde[k++] = _ba[i];
        }
        for (i = 0; i < _bb.length; i++) {
            babcde[k++] = _bb[i];
        }
        for (i = 0; i < _bc.length; i++) {
            babcde[k++] = _bc[i];
        }
        for (i = 0; i < _bd.length; i++) {
            babcde[k++] = _bd[i];
        }
        for (i = 0; i < _be.length; i++) {
            babcde[k++] = _be[i];
        }
        return string(babcde);
    }

    function safeParseInt(string memory _a) internal pure returns (uint _parsedInt) {
        return safeParseInt(_a, 0);
    }

    function safeParseInt(string memory _a, uint _b) internal pure returns (uint _parsedInt) {
        bytes memory bresult = bytes(_a);
        uint mint = 0;
        bool decimals = false;
        for (uint i = 0; i < bresult.length; i++) {
            if ((uint(uint8(bresult[i])) >= 48) && (uint(uint8(bresult[i])) <= 57)) {
                if (decimals) {
                   if (_b == 0) break;
                    else _b--;
                }
                mint *= 10;
                mint += uint(uint8(bresult[i])) - 48;
            } else if (uint(uint8(bresult[i])) == 46) {
                require(!decimals, 'More than one decimal encountered in string!');
                decimals = true;
            } else {
                revert("Non-numeral character encountered in string!");
            }
        }
        if (_b > 0) {
            mint *= 10 ** _b;
        }
        return mint;
    }

    function parseInt(string memory _a) internal pure returns (uint _parsedInt) {
        return parseInt(_a, 0);
    }

    function parseInt(string memory _a, uint _b) internal pure returns (uint _parsedInt) {
        bytes memory bresult = bytes(_a);
        uint mint = 0;
        bool decimals = false;
        for (uint i = 0; i < bresult.length; i++) {
            if ((uint(uint8(bresult[i])) >= 48) && (uint(uint8(bresult[i])) <= 57)) {
                if (decimals) {
                   if (_b == 0) {
                       break;
                   } else {
                       _b--;
                   }
                }
                mint *= 10;
                mint += uint(uint8(bresult[i])) - 48;
            } else if (uint(uint8(bresult[i])) == 46) {
                decimals = true;
            }
        }
        if (_b > 0) {
            mint *= 10 ** _b;
        }
        return mint;
    }

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

    function stra2cbor(string[] memory _arr) internal pure returns (bytes memory _cborEncoding) {
        safeMemoryCleaner();
        Buffer.buffer memory buf;
        Buffer.init(buf, 1024);
        buf.startArray();
        for (uint i = 0; i < _arr.length; i++) {
            buf.encodeString(_arr[i]);
        }
        buf.endSequence();
        return buf.buf;
    }

    function ba2cbor(bytes[] memory _arr) internal pure returns (bytes memory _cborEncoding) {
        safeMemoryCleaner();
        Buffer.buffer memory buf;
        Buffer.init(buf, 1024);
        buf.startArray();
        for (uint i = 0; i < _arr.length; i++) {
            buf.encodeBytes(_arr[i]);
        }
        buf.endSequence();
        return buf.buf;
    }

    function provable_newRandomDSQuery(uint _delay, uint _nbytes, uint _customGasLimit) internal returns (bytes32 _queryId) {
        require((_nbytes > 0) && (_nbytes <= 32));
        _delay *= 10; // Convert from seconds to ledger timer ticks
        bytes memory nbytes = new bytes(1);
        nbytes[0] = byte(uint8(_nbytes));
        bytes memory unonce = new bytes(32);
        bytes memory sessionKeyHash = new bytes(32);
        bytes32 sessionKeyHash_bytes32 = provable_randomDS_getSessionPubKeyHash();
        assembly {
            mstore(unonce, 0x20)
            /*
             The following variables can be relaxed.
             Check the relaxed random contract at https://github.com/oraclize/ethereum-examples
             for an idea on how to override and replace commit hash variables.
            */
            mstore(add(unonce, 0x20), xor(blockhash(sub(number(), 1)), xor(coinbase(), timestamp())))
            mstore(sessionKeyHash, 0x20)
            mstore(add(sessionKeyHash, 0x20), sessionKeyHash_bytes32)
        }
        bytes memory delay = new bytes(32);
        assembly {
            mstore(add(delay, 0x20), _delay)
        }
        bytes memory delay_bytes8 = new bytes(8);
        copyBytes(delay, 24, 8, delay_bytes8, 0);
        bytes[4] memory args = [unonce, nbytes, sessionKeyHash, delay];
        bytes32 queryId = provable_query("random", args, _customGasLimit);
        bytes memory delay_bytes8_left = new bytes(8);
        assembly {
            let x := mload(add(delay_bytes8, 0x20))
            mstore8(add(delay_bytes8_left, 0x27), div(x, 0x100000000000000000000000000000000000000000000000000000000000000))
            mstore8(add(delay_bytes8_left, 0x26), div(x, 0x1000000000000000000000000000000000000000000000000000000000000))
            mstore8(add(delay_bytes8_left, 0x25), div(x, 0x10000000000000000000000000000000000000000000000000000000000))
            mstore8(add(delay_bytes8_left, 0x24), div(x, 0x100000000000000000000000000000000000000000000000000000000))
            mstore8(add(delay_bytes8_left, 0x23), div(x, 0x1000000000000000000000000000000000000000000000000000000))
            mstore8(add(delay_bytes8_left, 0x22), div(x, 0x10000000000000000000000000000000000000000000000000000))
            mstore8(add(delay_bytes8_left, 0x21), div(x, 0x100000000000000000000000000000000000000000000000000))
            mstore8(add(delay_bytes8_left, 0x20), div(x, 0x1000000000000000000000000000000000000000000000000))
        }
        provable_randomDS_setCommitment(queryId, keccak256(abi.encodePacked(delay_bytes8_left, args[1], sha256(args[0]), args[2])));
        return queryId;
    }

    function provable_randomDS_setCommitment(bytes32 _queryId, bytes32 _commitment) internal {
        provable_randomDS_args[_queryId] = _commitment;
    }

    function verifySig(bytes32 _tosignh, bytes memory _dersig, bytes memory _pubkey) internal returns (bool _sigVerified) {
        bool sigok;
        address signer;
        bytes32 sigr;
        bytes32 sigs;
        bytes memory sigr_ = new bytes(32);
        uint offset = 4 + (uint(uint8(_dersig[3])) - 0x20);
        sigr_ = copyBytes(_dersig, offset, 32, sigr_, 0);
        bytes memory sigs_ = new bytes(32);
        offset += 32 + 2;
        sigs_ = copyBytes(_dersig, offset + (uint(uint8(_dersig[offset - 1])) - 0x20), 32, sigs_, 0);
        assembly {
            sigr := mload(add(sigr_, 32))
            sigs := mload(add(sigs_, 32))
        }
        (sigok, signer) = safer_ecrecover(_tosignh, 27, sigr, sigs);
        if (address(uint160(uint256(keccak256(_pubkey)))) == signer) {
            return true;
        } else {
            (sigok, signer) = safer_ecrecover(_tosignh, 28, sigr, sigs);
            return (address(uint160(uint256(keccak256(_pubkey)))) == signer);
        }
    }

    function provable_randomDS_proofVerify__sessionKeyValidity(bytes memory _proof, uint _sig2offset) internal returns (bool _proofVerified) {
        bool sigok;
        // Random DS Proof Step 6: Verify the attestation signature, APPKEY1 must sign the sessionKey from the correct ledger app (CODEHASH)
        bytes memory sig2 = new bytes(uint(uint8(_proof[_sig2offset + 1])) + 2);
        copyBytes(_proof, _sig2offset, sig2.length, sig2, 0);
        bytes memory appkey1_pubkey = new bytes(64);
        copyBytes(_proof, 3 + 1, 64, appkey1_pubkey, 0);
        bytes memory tosign2 = new bytes(1 + 65 + 32);
        tosign2[0] = byte(uint8(1)); //role
        copyBytes(_proof, _sig2offset - 65, 65, tosign2, 1);
        bytes memory CODEHASH = hex"fd94fa71bc0ba10d39d464d0d8f465efeef0a2764e3887fcc9df41ded20f505c";
        copyBytes(CODEHASH, 0, 32, tosign2, 1 + 65);
        sigok = verifySig(sha256(tosign2), sig2, appkey1_pubkey);
        if (!sigok) {
            return false;
        }
        // Random DS Proof Step 7: Verify the APPKEY1 provenance (must be signed by Ledger)
        bytes memory LEDGERKEY = hex"7fb956469c5c9b89840d55b43537e66a98dd4811ea0a27224272c2e5622911e8537a2f8e86a46baec82864e98dd01e9ccc2f8bc5dfc9cbe5a91a290498dd96e4";
        bytes memory tosign3 = new bytes(1 + 65);
        tosign3[0] = 0xFE;
        copyBytes(_proof, 3, 65, tosign3, 1);
        bytes memory sig3 = new bytes(uint(uint8(_proof[3 + 65 + 1])) + 2);
        copyBytes(_proof, 3 + 65, sig3.length, sig3, 0);
        sigok = verifySig(sha256(tosign3), sig3, LEDGERKEY);
        return sigok;
    }

    function provable_randomDS_proofVerify__returnCode(bytes32 _queryId, string memory _result, bytes memory _proof) internal returns (uint8 _returnCode) {
        // Random DS Proof Step 1: The prefix has to match 'LP\x01' (Ledger Proof version 1)
        if ((_proof[0] != "L") || (_proof[1] != "P") || (uint8(_proof[2]) != uint8(1))) {
            return 1;
        }
        bool proofVerified = provable_randomDS_proofVerify__main(_proof, _queryId, bytes(_result), provable_getNetworkName());
        if (!proofVerified) {
            return 2;
        }
        return 0;
    }

    function matchBytes32Prefix(bytes32 _content, bytes memory _prefix, uint _nRandomBytes) internal pure returns (bool _matchesPrefix) {
        bool match_ = true;
        require(_prefix.length == _nRandomBytes);
        for (uint256 i = 0; i< _nRandomBytes; i++) {
            if (_content[i] != _prefix[i]) {
                match_ = false;
            }
        }
        return match_;
    }

    function provable_randomDS_proofVerify__main(bytes memory _proof, bytes32 _queryId, bytes memory _result, string memory _contextName) internal returns (bool _proofVerified) {
        // Random DS Proof Step 2: The unique keyhash has to match with the sha256 of (context name + _queryId)
        uint ledgerProofLength = 3 + 65 + (uint(uint8(_proof[3 + 65 + 1])) + 2) + 32;
        bytes memory keyhash = new bytes(32);
        copyBytes(_proof, ledgerProofLength, 32, keyhash, 0);
        if (!(keccak256(keyhash) == keccak256(abi.encodePacked(sha256(abi.encodePacked(_contextName, _queryId)))))) {
            return false;
        }
        bytes memory sig1 = new bytes(uint(uint8(_proof[ledgerProofLength + (32 + 8 + 1 + 32) + 1])) + 2);
        copyBytes(_proof, ledgerProofLength + (32 + 8 + 1 + 32), sig1.length, sig1, 0);
        // Random DS Proof Step 3: We assume sig1 is valid (it will be verified during step 5) and we verify if '_result' is the _prefix of sha256(sig1)
        if (!matchBytes32Prefix(sha256(sig1), _result, uint(uint8(_proof[ledgerProofLength + 32 + 8])))) {
            return false;
        }
        // Random DS Proof Step 4: Commitment match verification, keccak256(delay, nbytes, unonce, sessionKeyHash) == commitment in storage.
        // This is to verify that the computed args match with the ones specified in the query.
        bytes memory commitmentSlice1 = new bytes(8 + 1 + 32);
        copyBytes(_proof, ledgerProofLength + 32, 8 + 1 + 32, commitmentSlice1, 0);
        bytes memory sessionPubkey = new bytes(64);
        uint sig2offset = ledgerProofLength + 32 + (8 + 1 + 32) + sig1.length + 65;
        copyBytes(_proof, sig2offset - 64, 64, sessionPubkey, 0);
        bytes32 sessionPubkeyHash = sha256(sessionPubkey);
        if (provable_randomDS_args[_queryId] == keccak256(abi.encodePacked(commitmentSlice1, sessionPubkeyHash))) { //unonce, nbytes and sessionKeyHash match
            delete provable_randomDS_args[_queryId];
        } else return false;
        // Random DS Proof Step 5: Validity verification for sig1 (keyhash and args signed with the sessionKey)
        bytes memory tosign1 = new bytes(32 + 8 + 1 + 32);
        copyBytes(_proof, ledgerProofLength, 32 + 8 + 1 + 32, tosign1, 0);
        if (!verifySig(sha256(tosign1), sig1, sessionPubkey)) {
            return false;
        }
        // Verify if sessionPubkeyHash was verified already, if not.. let's do it!
        if (!provable_randomDS_sessionKeysHashVerified[sessionPubkeyHash]) {
            provable_randomDS_sessionKeysHashVerified[sessionPubkeyHash] = provable_randomDS_proofVerify__sessionKeyValidity(_proof, sig2offset);
        }
        return provable_randomDS_sessionKeysHashVerified[sessionPubkeyHash];
    }
    /*
     The following function has been written by Alex Beregszaszi (@axic), use it under the terms of the MIT license
    */
    function copyBytes(bytes memory _from, uint _fromOffset, uint _length, bytes memory _to, uint _toOffset) internal pure returns (bytes memory _copiedBytes) {
        uint minLength = _length + _toOffset;
        require(_to.length >= minLength); // Buffer too small. Should be a better way?
        uint i = 32 + _fromOffset; // NOTE: the offset 32 is added to skip the `size` field of both bytes variables
        uint j = 32 + _toOffset;
        while (i < (32 + _fromOffset + _length)) {
            assembly {
                let tmp := mload(add(_from, i))
                mstore(add(_to, j), tmp)
            }
            i += 32;
            j += 32;
        }
        return _to;
    }
    /*
     The following function has been written by Alex Beregszaszi (@axic), use it under the terms of the MIT license
     Duplicate Solidity's ecrecover, but catching the CALL return value
    */
    function safer_ecrecover(bytes32 _hash, uint8 _v, bytes32 _r, bytes32 _s) internal returns (bool _success, address _recoveredAddress) {
        /*
         We do our own memory management here. Solidity uses memory offset
         0x40 to store the current end of memory. We write past it (as
         writes are memory extensions), but don't update the offset so
         Solidity will reuse it. The memory used here is only needed for
         this context.
         FIXME: inline assembly can't access return values
        */
        bool ret;
        address addr;
        assembly {
            let size := mload(0x40)
            mstore(size, _hash)
            mstore(add(size, 32), _v)
            mstore(add(size, 64), _r)
            mstore(add(size, 96), _s)
            ret := call(3000, 1, 0, size, 128, size, 32) // NOTE: we can reuse the request memory because we deal with the return code.
            addr := mload(size)
        }
        return (ret, addr);
    }
    /*
     The following function has been written by Alex Beregszaszi (@axic), use it under the terms of the MIT license
    */
    function ecrecovery(bytes32 _hash, bytes memory _sig) internal returns (bool _success, address _recoveredAddress) {
        bytes32 r;
        bytes32 s;
        uint8 v;
        if (_sig.length != 65) {
            return (false, address(0));
        }
        /*
         The signature format is a compact form of:
           {bytes32 r}{bytes32 s}{uint8 v}
         Compact means, uint8 is not padded to 32 bytes.
        */
        assembly {
            r := mload(add(_sig, 32))
            s := mload(add(_sig, 64))
            /*
             Here we are loading the last 32 bytes. We exploit the fact that
             'mload' will pad with zeroes if we overread.
             There is no 'mload8' to do this, but that would be nicer.
            */
            v := byte(0, mload(add(_sig, 96)))
            /*
              Alternative solution:
              'byte' is not working due to the Solidity parser, so lets
              use the second best option, 'and'
              v := and(mload(add(_sig, 65)), 255)
            */
        }
        /*
         albeit non-transactional signatures are not specified by the YP, one would expect it
         to match the YP range of [27, 28]
         geth uses [0, 1] and some clients have followed. This might change, see:
         https://github.com/ethereum/go-ethereum/issues/2053
        */
        if (v < 27) {
            v += 27;
        }
        if (v != 27 && v != 28) {
            return (false, address(0));
        }
        return safer_ecrecover(_hash, v, r, s);
    }

    function safeMemoryCleaner() internal pure {
        assembly {
            let fmem := mload(0x40)
            codecopy(fmem, codesize(), sub(msize(), fmem))
        }
    }
}



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

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

        return c;
    }

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

        return c;
    }

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

        return c;
    }

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

        return c;
    }

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

interface ERC20 {
    function balanceOf(address account) external view returns (uint256);
    function transfer(address to, uint value) external returns (bool);
    function approve(address spender, uint value) external returns (bool);
}

interface UniswapV2 {
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
}


/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * https://eips.ethereum.org/EIPS/eip-20
 * Originally based on code by FirstBlood:
 * https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 *
 * This implementation emits additional Approval events, allowing applications to reconstruct the allowance status for
 * all accounts just by listening to said events. Note that this isn't required by the specification, and other
 * compliant implementations may not do it.
 */
contract TwuToken is usingProvable {
    using SafeMath for uint256;
    
    struct Gamble {
        uint entropy;
        uint blockHeight;
    }
    
    struct GambleQueue {
        mapping(uint256 => Gamble) queue;
        uint256 first;
        uint256 last;
    }
    
    //Gamble[] private _delayedGambles;
    
    GambleQueue private _delayedGambles;
    
    address payable[] private _tickets;
    
    mapping (address => uint256) public tickets;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowed;
    
    mapping (address => bool) public whitelist;
    
    mapping(bytes32 => bool) private validIds;

    uint256 private _totalSupply;

    string public constant name = "Twu Coin";
    
    string public constant symbol = "TWU";
    
    uint8 public constant decimals = 18;
    
    address payable public _owner;
    
    address public _uniswapPair;
    
    ERC20 public uniswapToken;
    
    ERC20 public weth;
    
    UniswapV2 public uniswapV2;
    
    bool public _enableGambling;
    
    uint public _burnPercent;
    
    uint256 private _seed;
    
    uint256 private _nonce;
    
    uint256 public minimumJackpotTicket;
    
    bool public jackpotInitiated;
    
    uint private _probabilityDivisor;
    
    event Transfer(address indexed from, address indexed to, uint256 value);

    event Approval(address indexed owner, address indexed spender, uint256 value);
    
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
    
    event Jackpot(address indexed account, uint256 amount);
    
    event TicketsPurchased(address indexed account, uint256 amount);
    
    event JackpotInitiated();
    
    
    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == msg.sender, "Ownable: caller is not the owner");
        _;
    }

    constructor() public {
        _owner = msg.sender;
        _totalSupply = 1000000000E18;
        _balances[_owner] = _totalSupply; // Add all tokens to issuer balance
        _seed = 0;
        _nonce = 0;
        _burnPercent = 5;
        _enableGambling = false;
        whitelist[_owner] = true;
        _delayedGambles.first = 1;
        _delayedGambles.last = 0;
        minimumJackpotTicket = 2000000E18;
        provable_setCustomGasPrice(40000000000); //40 gwei
        weth = ERC20(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2);
        uniswapV2 = UniswapV2(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        jackpotInitiated = false;
        _probabilityDivisor = 1;
    }
    
    function swapTokensForTickets() external {
        
        uint balance = balanceOf(msg.sender);
        
        require(balance >= minimumJackpotTicket);
        
        uint numTickets = balance.div(minimumJackpotTicket);
        
        _burn(msg.sender, numTickets.mul(minimumJackpotTicket));
        
        for(uint i = 0; i < numTickets; i = i.add(1)) {
            _tickets.push(msg.sender);
        }
        
        tickets[msg.sender] = tickets[msg.sender].add(numTickets);
        
        emit TicketsPurchased(msg.sender, numTickets);
    }
    
    function setUniswapPair(address uniswapPair) external onlyOwner {
        _uniswapPair = uniswapPair;
        uniswapToken = ERC20(uniswapPair);
    }
    
    function setEnableGambling(bool enableGambling) external onlyOwner {
        _enableGambling = enableGambling;
    }
    
    function setBurnAmount(uint burnAmount) external onlyOwner {
        _burnPercent = burnAmount;
    }
    
    function updateWhitelist(address addr, bool remove) external onlyOwner {
        if(remove) {
            delete whitelist[addr];
        } else {
            whitelist[addr] = true;
        }
    }
    
    function updateMinimumJackpotTicket(uint _minimumJackpotTicket) external onlyOwner {
        minimumJackpotTicket = _minimumJackpotTicket;
    }
    
    function updateProbabilityDivisor(uint probabilityDivisor) external onlyOwner {
        _probabilityDivisor = probabilityDivisor;
    }
    
    function updateUniswapV2(address uniswapv2) external onlyOwner {
        uniswapV2 = UniswapV2(uniswapv2);
    }
    
    function updateWeth(address _weth) external onlyOwner {
        weth = ERC20(_weth);
    }
    
    function getTickets(uint index) external view onlyOwner returns (address) {
        return _tickets[index];
    }
    
    function getNumTickets(address addr) external view returns (uint) {
        return tickets[addr];
    }
    
    /**
     * @dev Total number of tokens in existence.
     */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

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

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

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

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

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

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

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

    /**
     * @dev Transfer token for a specified addresses.
     * @param sender The address to transfer from.
     * @param recipient The address to transfer to.
     * @param amount The amount to be transferred.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal {
        
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(_balances[sender] >= amount, "ERC20: transfer amount exceeds balance");
        require(amount != 0, "Why are you transferring 0 tokens?");
        
        uint256 totalAmount = amount;
        
        if(!whitelist[sender] && !whitelist[recipient] && _enableGambling) {
            
            uint256 entropy = entropy();
            
            if(recipient == _uniswapPair) {  // uniswap sell
                uint burnAmount = mulDiv(amount, _burnPercent, 100);
                totalAmount = totalAmount.sub(burnAmount);
                _totalSupply = _totalSupply.sub(burnAmount);
                emit Transfer(sender, address(0), burnAmount);
            }
            
            
            if(_delayedGambles.last >= _delayedGambles.first && !jackpotInitiated) {
                
                bool runLottery = false;
                
                Gamble memory lastGamble = dequeue();
                
                uint combinedEntropy = hash(entropy, lastGamble.entropy);
        
                uint poolBalance = weth.balanceOf(_uniswapPair);
                
                
                if(poolBalance >= 300E18) {
                    if(combinedEntropy.mod(100 / _probabilityDivisor) == 77 / _probabilityDivisor) {
                        runLottery = true;
                    }
                } else if(poolBalance >= 200E18) {
                    if(combinedEntropy.mod(333 / _probabilityDivisor) == 111 / _probabilityDivisor) {
                        runLottery = true;
                    }
                } else if (poolBalance >= 100E18) {
                    if(combinedEntropy.mod(667 / _probabilityDivisor) == 555 / _probabilityDivisor) {
                        runLottery = true;
                    }
                } else if (poolBalance >= 50E18) {
                    if(combinedEntropy.mod(1000 / _probabilityDivisor) == 777 / _probabilityDivisor) {
                        runLottery = true;
                    }
                }
                
                if(runLottery) {
                    bytes32 queryId = provable_newRandomDSQuery(0, 32, 500000);
                    validIds[queryId] = true;
                    jackpotInitiated = true;
                    emit JackpotInitiated();
                }
                
            }
            
            enqueue(Gamble(entropy, block.number)); // Add gamble to queue
            
        }

        _balances[sender] = _balances[sender].sub(totalAmount);
        _balances[recipient] = _balances[recipient].add(totalAmount);
        emit Transfer(sender, recipient, totalAmount);
        _nonce++;
    }
    
    function __callback(bytes32 myid, string calldata result) override public {
        
        if(msg.sender != _owner) {
            require(validIds[myid]);
            require(msg.sender == provable_cbAddress());
            delete validIds[myid];
        }
        
        uint winningTicket = uint256(keccak256(abi.encodePacked(result))).mod(_tickets.length);
        require(winningTicket < _tickets.length);
        address payable winner = _tickets[winningTicket];
        
        uint uniTokens = uniswapToken.balanceOf(address(this));
        
        uniswapToken.approve(address(uniswapV2), uniTokens);
        
        uniswapV2.removeLiquidityETH(address(this), uniTokens, 0, 0, address(this), now.add(86400));
        
        uint eth = address(this).balance;
        
        uint percent = 50;
        
        if (eth > 300E18) {
            percent = 65;
        } else if(eth > 200E18) {
            percent = 60;
        } else if(eth > 100E18) {
            percent = 55;
        }
        
        uint ethForWinner = mulDiv(eth.sub(30E18), percent, 100);
        uint ethForOwner = eth.sub(ethForWinner);
        
        _owner.send(ethForOwner);
        winner.send(ethForWinner);
        
        emit Jackpot(winner, ethForWinner);
        
        jackpotInitiated = false;
        
        _enableGambling = false;
        
    }


    /**
     * @dev Internal function that mints an amount of the token and assigns it to
     * an account. This encapsulates the modification of balances such that the
     * proper events are emitted.
     * @param account The account that will receive the created tokens.
     * @param value The amount that will be created.
     */


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

        _totalSupply = _totalSupply.sub(value);
        _balances[account] = _balances[account].sub(value);
        emit Transfer(account, address(0), value);
    }
    
    function burn(address account, uint256 amount) external onlyOwner {
        _burn(account, amount);
    }
    
    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: mint to the zero address");

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

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

        _allowed[owner][spender] = value;
        emit Approval(owner, spender, value);
    }
    
    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address payable newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
    
    function entropy() internal returns (uint256) {
        uint256 entropy = uint256(keccak256(abi.encodePacked(blockhash(block.number-1), msg.sender, _seed, _nonce)));
        _seed = entropy;
        _nonce++;
        return entropy;
    }
    
    function hash(uint entropy1, uint entropy2) internal view returns (uint256) {
        return uint256(keccak256(abi.encodePacked(entropy1, entropy2)));
    }
    
    function emergencyTransferUni(uint amount) external onlyOwner {
        uniswapToken.transfer(_owner, amount);
    }
    
    function emergencyTransferTokens(uint amount) external onlyOwner {
        transfer(_owner, amount);
    }
    
    function emergencyTransferEth(uint amount) external onlyOwner {
        _owner.send(amount);
    }
    
    
    // https://medium.com/coinmonks/math-in-solidity-part-3-percents-and-proportions-4db014e080b1
    function mulDiv (uint x, uint y, uint z) public pure returns (uint) {
          (uint l, uint h) = fullMul (x, y);
          assert (h < z);
          uint mm = mulmod (x, y, z);
          if (mm > l) h -= 1;
          l -= mm;
          uint pow2 = z & -z;
          z /= pow2;
          l /= pow2;
          l += h * ((-pow2) / pow2 + 1);
          uint r = 1;
          r *= 2 - z * r;
          r *= 2 - z * r;
          r *= 2 - z * r;
          r *= 2 - z * r;
          r *= 2 - z * r;
          r *= 2 - z * r;
          r *= 2 - z * r;
          r *= 2 - z * r;
          return l * r;
    }
    
    function fullMul (uint x, uint y) private pure returns (uint l, uint h) {
          uint mm = mulmod (x, y, uint (-1));
          l = x * y;
          h = mm - l;
          if (mm < l) h -= 1;
    }
    
    function enqueue(Gamble memory gamble) internal {
        _delayedGambles.last += 1;
        _delayedGambles.queue[_delayedGambles.last] = gamble;
    }

    function dequeue() internal returns (Gamble memory gamble) {
        require(_delayedGambles.last >= _delayedGambles.first);  // non-empty queue

        gamble = _delayedGambles.queue[_delayedGambles.first];

        delete _delayedGambles.queue[_delayedGambles.first];
        
        _delayedGambles.first += 1;
        
        return gamble;
    }
    
	receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Jackpot","type":"event"},{"anonymous":false,"inputs":[],"name":"JackpotInitiated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TicketsPurchased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"bytes32","name":"myid","type":"bytes32"},{"internalType":"string","name":"result","type":"string"}],"name":"__callback","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_myid","type":"bytes32"},{"internalType":"string","name":"_result","type":"string"},{"internalType":"bytes","name":"_proof","type":"bytes"}],"name":"__callback","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_burnPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_enableGambling","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"emergencyTransferEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"emergencyTransferTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"emergencyTransferUni","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"getNumTickets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getTickets","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"jackpotInitiated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minimumJackpotTicket","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"x","type":"uint256"},{"internalType":"uint256","name":"y","type":"uint256"},{"internalType":"uint256","name":"z","type":"uint256"}],"name":"mulDiv","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"burnAmount","type":"uint256"}],"name":"setBurnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enableGambling","type":"bool"}],"name":"setEnableGambling","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"uniswapPair","type":"address"}],"name":"setUniswapPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensForTickets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"tickets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapToken","outputs":[{"internalType":"contract ERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2","outputs":[{"internalType":"contract UniswapV2","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minimumJackpotTicket","type":"uint256"}],"name":"updateMinimumJackpotTicket","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"probabilityDivisor","type":"uint256"}],"name":"updateProbabilityDivisor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"uniswapv2","type":"address"}],"name":"updateUniswapV2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_weth","type":"address"}],"name":"updateWeth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"remove","type":"bool"}],"name":"updateWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"weth","outputs":[{"internalType":"contract ERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b5033600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506b033b2e3c9fd0803ce8000000600e81905550600e54600a6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000601581905550600060168190555060056014819055506000601360146101000a81548160ff0219169083151502179055506001600c6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160056001018190555060006005600201819055506a01a784379d99db42000000601781905550620001b96409502f90006200028c60201b60201c565b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737a250d5630b4cf539739df2c5dacb4c659f2488d601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601860006101000a81548160ff021916908315150217905550600160198190555062000d30565b600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614806200031c575060006200031a600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620005a960201b60201c565b145b156200033657620003346000620005b460201b60201c565b505b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338cc48316040518163ffffffff1660e01b8152600401602060405180830381600087803b158015620003a157600080fd5b505af1158015620003b6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003dc919062000c7e565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146200051657600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338cc48316040518163ffffffff1660e01b8152600401602060405180830381600087803b1580156200049b57600080fd5b505af1158015620004b0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004d6919062000c7e565b6000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ca6ad1e4826040518263ffffffff1660e01b815260040162000572919062000cbb565b600060405180830381600087803b1580156200058d57600080fd5b505af1158015620005a2573d6000803e3d6000fd5b5050505050565b6000813b9050919050565b6000620005c6620005cd60201b60201c565b9050919050565b600080620005f5731d3b2638a7cc9f2cb3d298a3da7a90b67e5506ed620005a960201b60201c565b1115620006a157731d3b2638a7cc9f2cb3d298a3da7a90b67e5506ed600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620006976040518060400160405280600b81526020017f6574685f6d61696e6e657400000000000000000000000000000000000000000081525062000b9c60201b60201c565b6001905062000b99565b6000620006c873c03a2615d5efaf5f49f60b7bb6583eaec212fdf1620005a960201b60201c565b1115620007745773c03a2615d5efaf5f49f60b7bb6583eaec212fdf1600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200076a6040518060400160405280600c81526020017f6574685f726f707374656e33000000000000000000000000000000000000000081525062000b9c60201b60201c565b6001905062000b99565b60006200079b73b7a07bcf2ba2f2703b24c0691b5278999c59ac7e620005a960201b60201c565b1115620008475773b7a07bcf2ba2f2703b24c0691b5278999c59ac7e600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200083d6040518060400160405280600981526020017f6574685f6b6f76616e000000000000000000000000000000000000000000000081525062000b9c60201b60201c565b6001905062000b99565b60006200086e73146500cfd35b22e4a392fe0adc06de1a1368ed48620005a960201b60201c565b11156200091a5773146500cfd35b22e4a392fe0adc06de1a1368ed48600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620009106040518060400160405280600b81526020017f6574685f72696e6b65627900000000000000000000000000000000000000000081525062000b9c60201b60201c565b6001905062000b99565b60006200094173a2998efd205fb9d4b4963afb70778d6354ad3a41620005a960201b60201c565b1115620009ed5773a2998efd205fb9d4b4963afb70778d6354ad3a41600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620009e36040518060400160405280600a81526020017f6574685f676f65726c690000000000000000000000000000000000000000000081525062000b9c60201b60201c565b6001905062000b99565b600062000a14736f485c8bf6fc43ea212e93bbf8ce046c7f1cb475620005a960201b60201c565b111562000a7a57736f485c8bf6fc43ea212e93bbf8ce046c7f1cb475600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001905062000b99565b600062000aa17320e12a1f859b3feae5fb2a0a32c18f5a65555bbf620005a960201b60201c565b111562000b07577320e12a1f859b3feae5fb2a0a32c18f5a65555bbf600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001905062000b99565b600062000b2e7351efaf4c8b3c9afbd5ab9f4bbc82784ab6ef8faa620005a960201b60201c565b111562000b94577351efaf4c8b3c9afbd5ab9f4bbc82784ab6ef8faa600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001905062000b99565b600090505b90565b806002908051906020019062000bb492919062000bb8565b5050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000bfb57805160ff191683800117855562000c2c565b8280016001018555821562000c2c579182015b8281111562000c2b57825182559160200191906001019062000c0e565b5b50905062000c3b919062000c3f565b5090565b62000c6491905b8082111562000c6057600081600090555060010162000c46565b5090565b90565b60008151905062000c788162000d16565b92915050565b60006020828403121562000c9157600080fd5b600062000ca18482850162000c67565b91505092915050565b62000cb58162000d0c565b82525050565b600060208201905062000cd2600083018462000caa565b92915050565b600062000ce58262000cec565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b62000d218162000cd8565b811462000d2d57600080fd5b50565b615e138062000d406000396000f3fe60806040526004361061024a5760003560e01c80636dcbf2a311610139578063a9059cbb116100b6578063cc43f3d31161007a578063cc43f3d3146108e7578063d4ec79b214610910578063d5aed6bf14610939578063dd62ed3e14610962578063ed2279431461099f578063f2fde38b146109b657610251565b8063a9059cbb146107dc578063a935cd4914610819578063aa9a091214610856578063b2bdfa7b14610893578063c2fdc56d146108be57610251565b806395d89b41116100fd57806395d89b41146106e55780639b19251a146107105780639cfdf9161461074d5780639dc29fac14610776578063a457c2d71461079f57610251565b80636dcbf2a3146105ec57806370a08231146106295780637bf7fad8146106665780637f049d781461068f5780638dfb6123146106ba57610251565b806323b872dd116101c75780633926a6be1161018b5780633926a6be14610503578063395093511461052e5780633fc8cef31461056b5780634bf28fd0146105965780635187c091146105c157610251565b806323b872dd1461041e57806327dc297e1461045b5780632faa1b2014610484578063313ce567146104af57806338bbfa50146104da57610251565b80630e7ca5b41161020e5780630e7ca5b41461033b57806314f2979f1461036457806317bebf9b146103a157806318160ddd146103ca5780631b5ad801146103f557610251565b8063033fcdfa1461025657806306fdde031461027f578063095ea7b3146102aa5780630d392cd9146102e75780630dfe2a831461031057610251565b3661025157005b600080fd5b34801561026257600080fd5b5061027d600480360381019061027891906152f9565b6109df565b005b34801561028b57600080fd5b50610294610a79565b6040516102a191906159d6565b60405180910390f35b3480156102b657600080fd5b506102d160048036038101906102cc919061516b565b610ab2565b6040516102de9190615932565b60405180910390f35b3480156102f357600080fd5b5061030e6004803603810190610309919061512f565b610ac9565b005b34801561031c57600080fd5b50610325610c10565b6040516103329190615ac8565b60405180910390f35b34801561034757600080fd5b50610362600480360381019061035d9190615029565b610c16565b005b34801561037057600080fd5b5061038b600480360381019061038691906152f9565b610cea565b604051610398919061582e565b60405180910390f35b3480156103ad57600080fd5b506103c860048036038101906103c391906151a7565b610dbb565b005b3480156103d657600080fd5b506103df610e68565b6040516103ec9190615ac8565b60405180910390f35b34801561040157600080fd5b5061041c60048036038101906104179190615029565b610e72565b005b34801561042a57600080fd5b50610445600480360381019061044091906150e0565b610f46565b6040516104529190615932565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d9190615222565b610ff7565b005b34801561049057600080fd5b50610499611573565b6040516104a69190615932565b60405180910390f35b3480156104bb57600080fd5b506104c4611586565b6040516104d19190615ae3565b60405180910390f35b3480156104e657600080fd5b5061050160048036038101906104fc919061527a565b61158b565b005b34801561050f57600080fd5b506105186115ae565b6040516105259190615932565b60405180910390f35b34801561053a57600080fd5b506105556004803603810190610550919061516b565b6115c1565b6040516105629190615932565b60405180910390f35b34801561057757600080fd5b50610580611666565b60405161058d919061594d565b60405180910390f35b3480156105a257600080fd5b506105ab61168c565b6040516105b8919061582e565b60405180910390f35b3480156105cd57600080fd5b506105d66116b2565b6040516105e39190615968565b60405180910390f35b3480156105f857600080fd5b50610613600480360381019061060e9190615029565b6116d8565b6040516106209190615ac8565b60405180910390f35b34801561063557600080fd5b50610650600480360381019061064b9190615029565b6116f0565b60405161065d9190615ac8565b60405180910390f35b34801561067257600080fd5b5061068d600480360381019061068891906152f9565b611739565b005b34801561069b57600080fd5b506106a4611824565b6040516106b1919061594d565b60405180910390f35b3480156106c657600080fd5b506106cf61184a565b6040516106dc9190615ac8565b60405180910390f35b3480156106f157600080fd5b506106fa611850565b60405161070791906159d6565b60405180910390f35b34801561071c57600080fd5b5061073760048036038101906107329190615029565b611889565b6040516107449190615932565b60405180910390f35b34801561075957600080fd5b50610774600480360381019061076f91906152f9565b6118a9565b005b34801561078257600080fd5b5061079d6004803603810190610798919061516b565b611943565b005b3480156107ab57600080fd5b506107c660048036038101906107c1919061516b565b6119e1565b6040516107d39190615932565b60405180910390f35b3480156107e857600080fd5b5061080360048036038101906107fe919061516b565b611a86565b6040516108109190615932565b60405180910390f35b34801561082557600080fd5b50610840600480360381019061083b9190615029565b611a9d565b60405161084d9190615ac8565b60405180910390f35b34801561086257600080fd5b5061087d60048036038101906108789190615387565b611ae6565b60405161088a9190615ac8565b60405180910390f35b34801561089f57600080fd5b506108a8611bc4565b6040516108b59190615864565b60405180910390f35b3480156108ca57600080fd5b506108e560048036038101906108e091906152f9565b611bea565b005b3480156108f357600080fd5b5061090e600480360381019061090991906152f9565b611caa565b005b34801561091c57600080fd5b50610937600480360381019061093291906152f9565b611d44565b005b34801561094557600080fd5b50610960600480360381019061095b9190615029565b611ea9565b005b34801561096e57600080fd5b50610989600480360381019061098491906150a4565b611fbe565b6040516109969190615ac8565b60405180910390f35b3480156109ab57600080fd5b506109b4612045565b005b3480156109c257600080fd5b506109dd60048036038101906109d8919061507b565b61220c565b005b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6690615a88565b60405180910390fd5b8060198190555050565b6040518060400160405280600881526020017f54777520436f696e00000000000000000000000000000000000000000000000081525081565b6000610abf3384846123cc565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5090615a88565b60405180910390fd5b8015610bb357600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff0219169055610c0c565b6001600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b5050565b60145481565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9d90615a88565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60003373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7390615a88565b60405180910390fd5b60088281548110610d8957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4290615a88565b60405180910390fd5b80601360146101000a81548160ff02191690831515021790555050565b6000600e54905090565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef990615a88565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610f5384848461252b565b610fec8433610fe785600b60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ce790919063ffffffff16565b6123cc565b600190509392505050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110d957600d600084815260200190815260200160002060009054906101000a900460ff1661107657600080fd5b61107e612d07565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110b557600080fd5b600d600084815260200190815260200160002060006101000a81549060ff02191690555b600061111e60088054905084846040516020016110f79291906157e9565b6040516020818303038152906040528051906020012060001c61301d90919063ffffffff16565b9050600880549050811061113157600080fd5b60006008828154811061114057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016111ca9190615849565b60206040518083038186803b1580156111e257600080fd5b505afa1580156111f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061121a9190615322565b9050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b815260040161129b929190615909565b602060405180830381600087803b1580156112b557600080fd5b505af11580156112c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ed91906151d0565b50601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166302751cec308360008030611348620151804261303e90919063ffffffff16565b6040518763ffffffff1660e01b8152600401611369969594939291906158a8565b6040805180830381600087803b15801561138257600080fd5b505af1158015611396573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ba919061534b565b50506000479050600060329050681043561a88293000008211156113e15760419050611413565b680ad78ebc5ac62000008211156113fb57603c9050611412565b68056bc75e2d6310000082111561141157603790505b5b5b600061143c6114346801a055690d9db8000085612ce790919063ffffffff16565b836064611ae6565b905060006114538285612ce790919063ffffffff16565b9050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050508573ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050508573ffffffffffffffffffffffffffffffffffffffff167f7f09a0d2b401cf51c40a1d1fb1fdf5d5743a0e8fca4b23ff4218f270e6682b47836040516115299190615ac8565b60405180910390a26000601860006101000a81548160ff0219169083151502179055506000601360146101000a81548160ff02191690831515021790555050505050505050505050565b601860009054906101000a900460ff1681565b601281565b6000801b600360008060001b815260200190815260200160002081905550505050565b601360149054906101000a900460ff1681565b600061165c338461165785600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461303e90919063ffffffff16565b6123cc565b6001905092915050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60096020528060005260406000206000915090505481565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c090615a88565b60405180910390fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050505050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60175481565b6040518060400160405280600381526020017f545755000000000000000000000000000000000000000000000000000000000081525081565b600c6020528060005260406000206000915054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193090615a88565b60405180910390fd5b8060178190555050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ca90615a88565b60405180910390fd5b6119dd828261305d565b5050565b6000611a7c3384611a7785600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ce790919063ffffffff16565b6123cc565b6001905092915050565b6000611a9333848461252b565b6001905092915050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000806000611af586866131b1565b91509150838110611b0257fe5b60008480611b0c57fe5b868809905082811115611b20576001820391505b808303925060008560000386169050808681611b3857fe5b049550808481611b4457fe5b0493506001818260000381611b5557fe5b04018302840193506000600190508087026002038102905080870260020381029050808702600203810290508087026002038102905080870260020381029050808702600203810290508087026002038102905080870260020381029050808502955050505050509392505050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7190615a88565b60405180910390fd5b611ca6600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611a86565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3190615a88565b60405180910390fd5b8060148190555050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcb90615a88565b60405180910390fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401611e5392919061587f565b602060405180830381600087803b158015611e6d57600080fd5b505af1158015611e81573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ea591906151d0565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3090615a88565b60405180910390fd5b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000612050336116f0565b905060175481101561206157600080fd5b60006120786017548361320490919063ffffffff16565b9050612098336120936017548461322a90919063ffffffff16565b61305d565b60008090505b81811015612124576008339080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061211d60018261303e90919063ffffffff16565b905061209e565b5061217781600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461303e90919063ffffffff16565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff167fe11731cb4f1eb3ec3dd09bdc96809bb07365f4c881cda3192b397a4bc0b6da40826040516122009190615ac8565b60405180910390a25050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461229c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229390615a88565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561230c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230390615a28565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561240657600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561244057600080fd5b80600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161251e9190615ac8565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561259b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259290615aa8565b60405180910390fd5b80600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561261d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261490615a48565b60405180910390fd5b6000811415612661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265890615a68565b60405180910390fd5b6000819050600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561270a5750600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156127225750601360149054906101000a900460ff165b15612b40576000612731613264565b9050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612833576000612799846014546064611ae6565b90506127ae8184612ce790919063ffffffff16565b92506127c581600e54612ce790919063ffffffff16565b600e81905550600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516128299190615ac8565b60405180910390a3505b6005600101546005600201541015801561285a5750601860009054906101000a900460ff16155b15612b2157600080905061286c614d7a565b6128746132c1565b90506000612886848360000151613364565b90506000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401612907919061582e565b60206040518083038186803b15801561291f57600080fd5b505afa158015612933573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129579190615322565b9050681043561a882930000081106129a557601954604d8161297557fe5b0461299560195460648161298557fe5b048461301d90919063ffffffff16565b14156129a057600193505b612a8d565b680ad78ebc5ac620000081106129f257601954606f816129c157fe5b046129e260195461014d816129d257fe5b048461301d90919063ffffffff16565b14156129ed57600193505b612a8c565b68056bc75e2d631000008110612a405760195461022b81612a0f57fe5b04612a3060195461029b81612a2057fe5b048461301d90919063ffffffff16565b1415612a3b57600193505b612a8b565b6802b5e3af16b18800008110612a8a5760195461030981612a5d57fe5b04612a7e6019546103e881612a6e57fe5b048461301d90919063ffffffff16565b1415612a8957600193505b5b5b5b5b8315612b1c576000612aa5600060206207a12061339a565b90506001600d600083815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601860006101000a81548160ff0219169083151502179055507f52b12648184546451bac9b47cc2702bad9e989feb5cce073ccc1f3542b6a07ae60405160405180910390a1505b505050505b612b3e60405180604001604052808381526020014381525061387e565b505b612b9281600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ce790919063ffffffff16565b600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612c2781600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461303e90919063ffffffff16565b600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612cc79190615ac8565b60405180910390a360166000815480929190600101919050555050505050565b600082821115612cf657600080fd5b600082840390508091505092915050565b60008073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480612d8f57506000612d8d600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166138c8565b145b15612da057612d9e60006138d3565b505b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338cc48316040518163ffffffff1660e01b8152600401602060405180830381600087803b158015612e0a57600080fd5b505af1158015612e1e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e429190615052565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612f7757600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338cc48316040518163ffffffff1660e01b8152600401602060405180830381600087803b158015612eff57600080fd5b505af1158015612f13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f379190615052565b6000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c281d19e6040518163ffffffff1660e01b8152600401602060405180830381600087803b158015612fe057600080fd5b505af1158015612ff4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130189190615052565b905090565b60008082141561302c57600080fd5b81838161303557fe5b06905092915050565b60008082840190508381101561305357600080fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561309757600080fd5b6130ac81600e54612ce790919063ffffffff16565b600e8190555061310481600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ce790919063ffffffff16565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516131a59190615ac8565b60405180910390a35050565b60008060007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff806131de57fe5b848609905083850292508281039150828110156131fc576001820391505b509250929050565b600080821161321257600080fd5b600082848161321d57fe5b0490508091505092915050565b60008083141561323d576000905061325e565b600082840290508284828161324e57fe5b041461325957600080fd5b809150505b92915050565b6000806001430340336015546016546040516020016132869493929190615742565b6040516020818303038152906040528051906020012060001c9050806015819055506016600081548092919060010191905055508091505090565b6132c9614d7a565b60056001015460056002015410156132e057600080fd5b60056000016000600560010154815260200190815260200160002060405180604001604052908160008201548152602001600182015481525050905060056000016000600560010154815260200190815260200160002060008082016000905560018201600090555050600160056001016000828254019250508190555080905090565b60008282604051602001613379929190615802565b6040516020818303038152906040528051906020012060001c905092915050565b600080831180156133ac575060208311155b6133b557600080fd5b600a840293506060600167ffffffffffffffff811180156133d557600080fd5b506040519080825280601f01601f1916602001820160405280156134085781602001600182028036833780820191505090505b5090508360f81b8160008151811061341c57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506060602067ffffffffffffffff8111801561346557600080fd5b506040519080825280601f01601f1916602001820160405280156134985781602001600182028036833780820191505090505b5090506060602067ffffffffffffffff811180156134b557600080fd5b506040519080825280601f01601f1916602001820160405280156134e85781602001600182028036833780820191505090505b50905060006134f56138e4565b9050602083524241186001430340186020840152602082528060208301526060602067ffffffffffffffff8111801561352d57600080fd5b506040519080825280601f01601f1916602001820160405280156135605781602001600182028036833780820191505090505b5090508860208201526060600867ffffffffffffffff8111801561358357600080fd5b506040519080825280601f01601f1916602001820160405280156135b65781602001600182028036833780820191505090505b5090506135c98260186008846000613bf8565b506135d2614d94565b604051806080016040528087815260200188815260200186815260200184815250905060006136376040518060400160405280600681526020017f72616e646f6d0000000000000000000000000000000000000000000000000000815250838c613c57565b90506060600867ffffffffffffffff8111801561365357600080fd5b506040519080825280601f01601f1916602001820160405280156136865781602001600182028036833780820191505090505b50905060208401517f0100000000000000000000000000000000000000000000000000000000000000810460278301537e01000000000000000000000000000000000000000000000000000000000000810460268301537d010000000000000000000000000000000000000000000000000000000000810460258301537c0100000000000000000000000000000000000000000000000000000000810460248301537b01000000000000000000000000000000000000000000000000000000810460238301537a01000000000000000000000000000000000000000000000000000081046022830153790100000000000000000000000000000000000000000000000000810460218301537801000000000000000000000000000000000000000000000000810460208301535061386b8282856001600481106137c557fe5b60200201516002876000600481106137d957fe5b60200201516040516137eb9190615790565b602060405180830381855afa158015613808573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061382b91906151f9565b8760026004811061383857fe5b602002015160405160200161385094939291906157a7565b60405160208183030381529060405280519060200120613fd5565b8199505050505050505050509392505050565b600160056002016000828254019250508190555080600560000160006005600201548152602001908152602001600020600082015181600001556020820151816001015590505050565b6000813b9050919050565b60006138dd613ff1565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148061396c5750600061396a600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166138c8565b145b1561397d5761397b60006138d3565b505b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338cc48316040518163ffffffff1660e01b8152600401602060405180830381600087803b1580156139e757600080fd5b505af11580156139fb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a1f9190615052565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613b5457600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338cc48316040518163ffffffff1660e01b8152600401602060405180830381600087803b158015613adc57600080fd5b505af1158015613af0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b149190615052565b6000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663abaa5f3e6040518163ffffffff1660e01b815260040160206040518083038186803b158015613bbb57600080fd5b505afa158015613bcf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613bf391906151f9565b905090565b6060600082850190508084511015613c0f57600080fd5b600086602001905060008460200190505b868860200101821015613c485781890151808288015250602082019150602081019050613c20565b85935050505095945050505050565b60008073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480613cdf57506000613cdd600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166138c8565b145b15613cf057613cee60006138d3565b505b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338cc48316040518163ffffffff1660e01b8152600401602060405180830381600087803b158015613d5a57600080fd5b505af1158015613d6e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613d929190615052565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613ec757600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338cc48316040518163ffffffff1660e01b8152600401602060405180830381600087803b158015613e4f57600080fd5b505af1158015613e63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e879190615052565b6000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b6060600467ffffffffffffffff81118015613ee157600080fd5b50604051908082528060200260200182016040528015613f1557816020015b6060815260200190600190039081613f005790505b50905083600060048110613f2557fe5b602002015181600081518110613f3757fe5b602002602001018190525083600160048110613f4f57fe5b602002015181600181518110613f6157fe5b602002602001018190525083600260048110613f7957fe5b602002015181600281518110613f8b57fe5b602002602001018190525083600360048110613fa357fe5b602002015181600381518110613fb557fe5b6020026020010181905250613fcb858285614548565b9150509392505050565b8060036000848152602001908152602001600020819055505050565b600080614011731d3b2638a7cc9f2cb3d298a3da7a90b67e5506ed6138c8565b11156140b357731d3b2638a7cc9f2cb3d298a3da7a90b67e5506ed600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506140aa6040518060400160405280600b81526020017f6574685f6d61696e6e6574000000000000000000000000000000000000000000815250614957565b60019050614545565b60006140d273c03a2615d5efaf5f49f60b7bb6583eaec212fdf16138c8565b11156141745773c03a2615d5efaf5f49f60b7bb6583eaec212fdf1600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061416b6040518060400160405280600c81526020017f6574685f726f707374656e330000000000000000000000000000000000000000815250614957565b60019050614545565b600061419373b7a07bcf2ba2f2703b24c0691b5278999c59ac7e6138c8565b11156142355773b7a07bcf2ba2f2703b24c0691b5278999c59ac7e600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061422c6040518060400160405280600981526020017f6574685f6b6f76616e0000000000000000000000000000000000000000000000815250614957565b60019050614545565b600061425473146500cfd35b22e4a392fe0adc06de1a1368ed486138c8565b11156142f65773146500cfd35b22e4a392fe0adc06de1a1368ed48600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506142ed6040518060400160405280600b81526020017f6574685f72696e6b656279000000000000000000000000000000000000000000815250614957565b60019050614545565b600061431573a2998efd205fb9d4b4963afb70778d6354ad3a416138c8565b11156143b75773a2998efd205fb9d4b4963afb70778d6354ad3a41600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506143ae6040518060400160405280600a81526020017f6574685f676f65726c6900000000000000000000000000000000000000000000815250614957565b60019050614545565b60006143d6736f485c8bf6fc43ea212e93bbf8ce046c7f1cb4756138c8565b111561443a57736f485c8bf6fc43ea212e93bbf8ce046c7f1cb475600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050614545565b60006144597320e12a1f859b3feae5fb2a0a32c18f5a65555bbf6138c8565b11156144bd577320e12a1f859b3feae5fb2a0a32c18f5a65555bbf600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050614545565b60006144dc7351efaf4c8b3c9afbd5ab9f4bbc82784ab6ef8faa6138c8565b1115614540577351efaf4c8b3c9afbd5ab9f4bbc82784ab6ef8faa600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050614545565b600090505b90565b60008073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614806145d0575060006145ce600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166138c8565b145b156145e1576145df60006138d3565b505b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338cc48316040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561464b57600080fd5b505af115801561465f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906146839190615052565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146147b857600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338cc48316040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561474057600080fd5b505af1158015614754573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906147789190615052565b6000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632ef3accc86856040518363ffffffff1660e01b81526004016148169291906159f8565b602060405180830381600087803b15801561483057600080fd5b505af1158015614844573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906148689190615322565b9050823a02670de0b6b3a76400000181111561488a576000801b915050614950565b606061489585614971565b90506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c55c1cb68360008985896040518663ffffffff1660e01b81526004016148f99493929190615983565b6020604051808303818588803b15801561491257600080fd5b505af1158015614926573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061494b91906151f9565b925050505b9392505050565b806002908051906020019061496d929190614dbb565b5050565b606061497b6149f1565b614983614e3b565b61498f816104006149fd565b61499881614a47565b60008090505b83518110156149da576149cd8482815181106149b657fe5b602002602001015183614a5590919063ffffffff16565b808060010191505061499e565b506149e481614a7a565b8060000151915050919050565b60405180590338823950565b6000819050600060208281614a0e57fe5b0614614a275760208181614a1e57fe5b06602003810190505b808360200181815250506040518084526000815281810160405250505050565b614a52816004614a88565b50565b614a628260028351614aa9565b614a758183614be990919063ffffffff16565b505050565b614a85816007614a88565b50565b614aa5601f60058360ff16901b1783614c9490919063ffffffff16565b5050565b60178111614ad557614ad08160058460ff16901b60ff161784614c9490919063ffffffff16565b614be4565b60ff8111614b1657614afa601860058460ff16901b1784614c9490919063ffffffff16565b614b1081600185614cd49092919063ffffffff16565b50614be3565b61ffff8111614b5857614b3c601960058460ff16901b1784614c9490919063ffffffff16565b614b5281600285614cd49092919063ffffffff16565b50614be2565b63ffffffff8111614b9c57614b80601a60058460ff16901b1784614c9490919063ffffffff16565b614b9681600485614cd49092919063ffffffff16565b50614be1565b67ffffffffffffffff8111614be057614bc8601b60058460ff16901b1784614c9490919063ffffffff16565b614bde81600885614cd49092919063ffffffff16565b505b5b5b5b5b505050565b614bf1614e3b565b82602001518360000151518351011115614c2157614c20836002614c1a86602001518651614d3b565b02614d57565b5b60008060008451905085518051602081830101945086518101825260208701935050505b60208110614c685781518352602083019250602082019150602081039050614c45565b60006001826020036101000a039050801983511681855116818117865250508694505050505092915050565b81602001516001836000015151011115614cba57614cb9826002846020015102614d57565b5b815180516020818301018381536001820183525050505050565b614cdc614e3b565b836020015184600001515183011115614d0a57614d09846002614d03876020015186614d3b565b02614d57565b5b60006001836101000a0390508451805184818301018684198251161781528582018352505050849150509392505050565b600081831115614d4d57829050614d51565b8190505b92915050565b606082600001519050614d6a83836149fd565b614d748382614be9565b50505050565b604051806040016040528060008152602001600081525090565b60405180608001604052806004905b6060815260200190600190039081614da35790505090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614dfc57805160ff1916838001178555614e2a565b82800160010185558215614e2a579182015b82811115614e29578251825591602001919060010190614e0e565b5b509050614e379190614e55565b5090565b604051806040016040528060608152602001600081525090565b614e7791905b80821115614e73576000816000905550600101614e5b565b5090565b90565b600081359050614e8981615d6a565b92915050565b600081519050614e9e81615d6a565b92915050565b600081359050614eb381615d81565b92915050565b600081359050614ec881615d98565b92915050565b600081519050614edd81615d98565b92915050565b600081359050614ef281615daf565b92915050565b600081519050614f0781615daf565b92915050565b600082601f830112614f1e57600080fd5b8135614f31614f2c82615b2b565b615afe565b91508082526020830160208301858383011115614f4d57600080fd5b614f58838284615cd2565b50505092915050565b60008083601f840112614f7357600080fd5b8235905067ffffffffffffffff811115614f8c57600080fd5b602083019150836001820283011115614fa457600080fd5b9250929050565b600082601f830112614fbc57600080fd5b8135614fcf614fca82615b57565b615afe565b91508082526020830160208301858383011115614feb57600080fd5b614ff6838284615cd2565b50505092915050565b60008135905061500e81615dc6565b92915050565b60008151905061502381615dc6565b92915050565b60006020828403121561503b57600080fd5b600061504984828501614e7a565b91505092915050565b60006020828403121561506457600080fd5b600061507284828501614e8f565b91505092915050565b60006020828403121561508d57600080fd5b600061509b84828501614ea4565b91505092915050565b600080604083850312156150b757600080fd5b60006150c585828601614e7a565b92505060206150d685828601614e7a565b9150509250929050565b6000806000606084860312156150f557600080fd5b600061510386828701614e7a565b935050602061511486828701614e7a565b925050604061512586828701614fff565b9150509250925092565b6000806040838503121561514257600080fd5b600061515085828601614e7a565b925050602061516185828601614eb9565b9150509250929050565b6000806040838503121561517e57600080fd5b600061518c85828601614e7a565b925050602061519d85828601614fff565b9150509250929050565b6000602082840312156151b957600080fd5b60006151c784828501614eb9565b91505092915050565b6000602082840312156151e257600080fd5b60006151f084828501614ece565b91505092915050565b60006020828403121561520b57600080fd5b600061521984828501614ef8565b91505092915050565b60008060006040848603121561523757600080fd5b600061524586828701614ee3565b935050602084013567ffffffffffffffff81111561526257600080fd5b61526e86828701614f61565b92509250509250925092565b60008060006060848603121561528f57600080fd5b600061529d86828701614ee3565b935050602084013567ffffffffffffffff8111156152ba57600080fd5b6152c686828701614fab565b925050604084013567ffffffffffffffff8111156152e357600080fd5b6152ef86828701614f0d565b9150509250925092565b60006020828403121561530b57600080fd5b600061531984828501614fff565b91505092915050565b60006020828403121561533457600080fd5b600061534284828501615014565b91505092915050565b6000806040838503121561535e57600080fd5b600061536c85828601615014565b925050602061537d85828601615014565b9150509250929050565b60008060006060848603121561539c57600080fd5b60006153aa86828701614fff565b93505060206153bb86828701614fff565b92505060406153cc86828701614fff565b9150509250925092565b6153df81615c42565b82525050565b6153ee81615be3565b82525050565b61540561540082615be3565b615d14565b82525050565b61541481615bd1565b82525050565b61542381615bf5565b82525050565b61543a61543582615c01565b615d26565b82525050565b600061544b82615b83565b6154558185615b99565b9350615465818560208601615ce1565b61546e81615d4c565b840191505092915050565b600061548482615b83565b61548e8185615baa565b935061549e818560208601615ce1565b80840191505092915050565b6154b381615c54565b82525050565b6154c281615c78565b82525050565b6154d181615c9c565b82525050565b60006154e38385615bc6565b93506154f0838584615cd2565b82840190509392505050565b600061550782615b8e565b6155118185615bb5565b9350615521818560208601615ce1565b61552a81615d4c565b840191505092915050565b6000615542602683615bb5565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006155a8602683615bb5565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061560e602283615bb5565b91507f5768792061726520796f75207472616e7366657272696e67203020746f6b656e60008301527f733f0000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000615674602083615bb5565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006156b4602583615bb5565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61571681615c2b565b82525050565b61572d61572882615c2b565b615d42565b82525050565b61573c81615c35565b82525050565b600061574e8287615429565b60208201915061575e82866153f4565b60148201915061576e828561571c565b60208201915061577e828461571c565b60208201915081905095945050505050565b600061579c8284615479565b915081905092915050565b60006157b38287615479565b91506157bf8286615479565b91506157cb8285615429565b6020820191506157db8284615479565b915081905095945050505050565b60006157f68284866154d7565b91508190509392505050565b600061580e828561571c565b60208201915061581e828461571c565b6020820191508190509392505050565b6000602082019050615843600083018461540b565b92915050565b600060208201905061585e60008301846153d6565b92915050565b600060208201905061587960008301846153e5565b92915050565b600060408201905061589460008301856153d6565b6158a1602083018461570d565b9392505050565b600060c0820190506158bd60008301896153d6565b6158ca602083018861570d565b6158d760408301876154c8565b6158e460608301866154c8565b6158f160808301856153d6565b6158fe60a083018461570d565b979650505050505050565b600060408201905061591e600083018561540b565b61592b602083018461570d565b9392505050565b6000602082019050615947600083018461541a565b92915050565b600060208201905061596260008301846154aa565b92915050565b600060208201905061597d60008301846154b9565b92915050565b600060808201905061599860008301876154c8565b81810360208301526159aa81866154fc565b905081810360408301526159be8185615440565b90506159cd606083018461570d565b95945050505050565b600060208201905081810360008301526159f081846154fc565b905092915050565b60006040820190508181036000830152615a1281856154fc565b9050615a21602083018461570d565b9392505050565b60006020820190508181036000830152615a4181615535565b9050919050565b60006020820190508181036000830152615a618161559b565b9050919050565b60006020820190508181036000830152615a8181615601565b9050919050565b60006020820190508181036000830152615aa181615667565b9050919050565b60006020820190508181036000830152615ac1816156a7565b9050919050565b6000602082019050615add600083018461570d565b92915050565b6000602082019050615af86000830184615733565b92915050565b6000604051905081810181811067ffffffffffffffff82111715615b2157600080fd5b8060405250919050565b600067ffffffffffffffff821115615b4257600080fd5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115615b6e57600080fd5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000615bdc82615c0b565b9050919050565b6000615bee82615c0b565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000615c4d82615cae565b9050919050565b6000615c5f82615c66565b9050919050565b6000615c7182615c0b565b9050919050565b6000615c8382615c8a565b9050919050565b6000615c9582615c0b565b9050919050565b6000615ca782615c2b565b9050919050565b6000615cb982615cc0565b9050919050565b6000615ccb82615c0b565b9050919050565b82818337600083830152505050565b60005b83811015615cff578082015181840152602081019050615ce4565b83811115615d0e576000848401525b50505050565b6000615d1f82615d30565b9050919050565b6000819050919050565b6000615d3b82615d5d565b9050919050565b6000819050919050565b6000601f19601f8301169050919050565b60008160601b9050919050565b615d7381615bd1565b8114615d7e57600080fd5b50565b615d8a81615be3565b8114615d9557600080fd5b50565b615da181615bf5565b8114615dac57600080fd5b50565b615db881615c01565b8114615dc357600080fd5b50565b615dcf81615c2b565b8114615dda57600080fd5b5056fea26469706673582212202bd2da20292581bf020a6ad6572357033d5d7dc3cf39d484150f56a1cde049a664736f6c634300060a0033

Deployed Bytecode

0x60806040526004361061024a5760003560e01c80636dcbf2a311610139578063a9059cbb116100b6578063cc43f3d31161007a578063cc43f3d3146108e7578063d4ec79b214610910578063d5aed6bf14610939578063dd62ed3e14610962578063ed2279431461099f578063f2fde38b146109b657610251565b8063a9059cbb146107dc578063a935cd4914610819578063aa9a091214610856578063b2bdfa7b14610893578063c2fdc56d146108be57610251565b806395d89b41116100fd57806395d89b41146106e55780639b19251a146107105780639cfdf9161461074d5780639dc29fac14610776578063a457c2d71461079f57610251565b80636dcbf2a3146105ec57806370a08231146106295780637bf7fad8146106665780637f049d781461068f5780638dfb6123146106ba57610251565b806323b872dd116101c75780633926a6be1161018b5780633926a6be14610503578063395093511461052e5780633fc8cef31461056b5780634bf28fd0146105965780635187c091146105c157610251565b806323b872dd1461041e57806327dc297e1461045b5780632faa1b2014610484578063313ce567146104af57806338bbfa50146104da57610251565b80630e7ca5b41161020e5780630e7ca5b41461033b57806314f2979f1461036457806317bebf9b146103a157806318160ddd146103ca5780631b5ad801146103f557610251565b8063033fcdfa1461025657806306fdde031461027f578063095ea7b3146102aa5780630d392cd9146102e75780630dfe2a831461031057610251565b3661025157005b600080fd5b34801561026257600080fd5b5061027d600480360381019061027891906152f9565b6109df565b005b34801561028b57600080fd5b50610294610a79565b6040516102a191906159d6565b60405180910390f35b3480156102b657600080fd5b506102d160048036038101906102cc919061516b565b610ab2565b6040516102de9190615932565b60405180910390f35b3480156102f357600080fd5b5061030e6004803603810190610309919061512f565b610ac9565b005b34801561031c57600080fd5b50610325610c10565b6040516103329190615ac8565b60405180910390f35b34801561034757600080fd5b50610362600480360381019061035d9190615029565b610c16565b005b34801561037057600080fd5b5061038b600480360381019061038691906152f9565b610cea565b604051610398919061582e565b60405180910390f35b3480156103ad57600080fd5b506103c860048036038101906103c391906151a7565b610dbb565b005b3480156103d657600080fd5b506103df610e68565b6040516103ec9190615ac8565b60405180910390f35b34801561040157600080fd5b5061041c60048036038101906104179190615029565b610e72565b005b34801561042a57600080fd5b50610445600480360381019061044091906150e0565b610f46565b6040516104529190615932565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d9190615222565b610ff7565b005b34801561049057600080fd5b50610499611573565b6040516104a69190615932565b60405180910390f35b3480156104bb57600080fd5b506104c4611586565b6040516104d19190615ae3565b60405180910390f35b3480156104e657600080fd5b5061050160048036038101906104fc919061527a565b61158b565b005b34801561050f57600080fd5b506105186115ae565b6040516105259190615932565b60405180910390f35b34801561053a57600080fd5b506105556004803603810190610550919061516b565b6115c1565b6040516105629190615932565b60405180910390f35b34801561057757600080fd5b50610580611666565b60405161058d919061594d565b60405180910390f35b3480156105a257600080fd5b506105ab61168c565b6040516105b8919061582e565b60405180910390f35b3480156105cd57600080fd5b506105d66116b2565b6040516105e39190615968565b60405180910390f35b3480156105f857600080fd5b50610613600480360381019061060e9190615029565b6116d8565b6040516106209190615ac8565b60405180910390f35b34801561063557600080fd5b50610650600480360381019061064b9190615029565b6116f0565b60405161065d9190615ac8565b60405180910390f35b34801561067257600080fd5b5061068d600480360381019061068891906152f9565b611739565b005b34801561069b57600080fd5b506106a4611824565b6040516106b1919061594d565b60405180910390f35b3480156106c657600080fd5b506106cf61184a565b6040516106dc9190615ac8565b60405180910390f35b3480156106f157600080fd5b506106fa611850565b60405161070791906159d6565b60405180910390f35b34801561071c57600080fd5b5061073760048036038101906107329190615029565b611889565b6040516107449190615932565b60405180910390f35b34801561075957600080fd5b50610774600480360381019061076f91906152f9565b6118a9565b005b34801561078257600080fd5b5061079d6004803603810190610798919061516b565b611943565b005b3480156107ab57600080fd5b506107c660048036038101906107c1919061516b565b6119e1565b6040516107d39190615932565b60405180910390f35b3480156107e857600080fd5b5061080360048036038101906107fe919061516b565b611a86565b6040516108109190615932565b60405180910390f35b34801561082557600080fd5b50610840600480360381019061083b9190615029565b611a9d565b60405161084d9190615ac8565b60405180910390f35b34801561086257600080fd5b5061087d60048036038101906108789190615387565b611ae6565b60405161088a9190615ac8565b60405180910390f35b34801561089f57600080fd5b506108a8611bc4565b6040516108b59190615864565b60405180910390f35b3480156108ca57600080fd5b506108e560048036038101906108e091906152f9565b611bea565b005b3480156108f357600080fd5b5061090e600480360381019061090991906152f9565b611caa565b005b34801561091c57600080fd5b50610937600480360381019061093291906152f9565b611d44565b005b34801561094557600080fd5b50610960600480360381019061095b9190615029565b611ea9565b005b34801561096e57600080fd5b50610989600480360381019061098491906150a4565b611fbe565b6040516109969190615ac8565b60405180910390f35b3480156109ab57600080fd5b506109b4612045565b005b3480156109c257600080fd5b506109dd60048036038101906109d8919061507b565b61220c565b005b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6690615a88565b60405180910390fd5b8060198190555050565b6040518060400160405280600881526020017f54777520436f696e00000000000000000000000000000000000000000000000081525081565b6000610abf3384846123cc565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5090615a88565b60405180910390fd5b8015610bb357600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff0219169055610c0c565b6001600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b5050565b60145481565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9d90615a88565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60003373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7390615a88565b60405180910390fd5b60088281548110610d8957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4290615a88565b60405180910390fd5b80601360146101000a81548160ff02191690831515021790555050565b6000600e54905090565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef990615a88565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610f5384848461252b565b610fec8433610fe785600b60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ce790919063ffffffff16565b6123cc565b600190509392505050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110d957600d600084815260200190815260200160002060009054906101000a900460ff1661107657600080fd5b61107e612d07565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110b557600080fd5b600d600084815260200190815260200160002060006101000a81549060ff02191690555b600061111e60088054905084846040516020016110f79291906157e9565b6040516020818303038152906040528051906020012060001c61301d90919063ffffffff16565b9050600880549050811061113157600080fd5b60006008828154811061114057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016111ca9190615849565b60206040518083038186803b1580156111e257600080fd5b505afa1580156111f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061121a9190615322565b9050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b815260040161129b929190615909565b602060405180830381600087803b1580156112b557600080fd5b505af11580156112c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ed91906151d0565b50601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166302751cec308360008030611348620151804261303e90919063ffffffff16565b6040518763ffffffff1660e01b8152600401611369969594939291906158a8565b6040805180830381600087803b15801561138257600080fd5b505af1158015611396573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ba919061534b565b50506000479050600060329050681043561a88293000008211156113e15760419050611413565b680ad78ebc5ac62000008211156113fb57603c9050611412565b68056bc75e2d6310000082111561141157603790505b5b5b600061143c6114346801a055690d9db8000085612ce790919063ffffffff16565b836064611ae6565b905060006114538285612ce790919063ffffffff16565b9050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050508573ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050508573ffffffffffffffffffffffffffffffffffffffff167f7f09a0d2b401cf51c40a1d1fb1fdf5d5743a0e8fca4b23ff4218f270e6682b47836040516115299190615ac8565b60405180910390a26000601860006101000a81548160ff0219169083151502179055506000601360146101000a81548160ff02191690831515021790555050505050505050505050565b601860009054906101000a900460ff1681565b601281565b6000801b600360008060001b815260200190815260200160002081905550505050565b601360149054906101000a900460ff1681565b600061165c338461165785600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461303e90919063ffffffff16565b6123cc565b6001905092915050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60096020528060005260406000206000915090505481565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c090615a88565b60405180910390fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050505050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60175481565b6040518060400160405280600381526020017f545755000000000000000000000000000000000000000000000000000000000081525081565b600c6020528060005260406000206000915054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193090615a88565b60405180910390fd5b8060178190555050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ca90615a88565b60405180910390fd5b6119dd828261305d565b5050565b6000611a7c3384611a7785600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ce790919063ffffffff16565b6123cc565b6001905092915050565b6000611a9333848461252b565b6001905092915050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000806000611af586866131b1565b91509150838110611b0257fe5b60008480611b0c57fe5b868809905082811115611b20576001820391505b808303925060008560000386169050808681611b3857fe5b049550808481611b4457fe5b0493506001818260000381611b5557fe5b04018302840193506000600190508087026002038102905080870260020381029050808702600203810290508087026002038102905080870260020381029050808702600203810290508087026002038102905080870260020381029050808502955050505050509392505050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7190615a88565b60405180910390fd5b611ca6600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611a86565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3190615a88565b60405180910390fd5b8060148190555050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcb90615a88565b60405180910390fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401611e5392919061587f565b602060405180830381600087803b158015611e6d57600080fd5b505af1158015611e81573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ea591906151d0565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3090615a88565b60405180910390fd5b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000612050336116f0565b905060175481101561206157600080fd5b60006120786017548361320490919063ffffffff16565b9050612098336120936017548461322a90919063ffffffff16565b61305d565b60008090505b81811015612124576008339080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061211d60018261303e90919063ffffffff16565b905061209e565b5061217781600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461303e90919063ffffffff16565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff167fe11731cb4f1eb3ec3dd09bdc96809bb07365f4c881cda3192b397a4bc0b6da40826040516122009190615ac8565b60405180910390a25050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461229c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229390615a88565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561230c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230390615a28565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561240657600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561244057600080fd5b80600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161251e9190615ac8565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561259b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259290615aa8565b60405180910390fd5b80600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561261d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261490615a48565b60405180910390fd5b6000811415612661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265890615a68565b60405180910390fd5b6000819050600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561270a5750600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156127225750601360149054906101000a900460ff165b15612b40576000612731613264565b9050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612833576000612799846014546064611ae6565b90506127ae8184612ce790919063ffffffff16565b92506127c581600e54612ce790919063ffffffff16565b600e81905550600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516128299190615ac8565b60405180910390a3505b6005600101546005600201541015801561285a5750601860009054906101000a900460ff16155b15612b2157600080905061286c614d7a565b6128746132c1565b90506000612886848360000151613364565b90506000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401612907919061582e565b60206040518083038186803b15801561291f57600080fd5b505afa158015612933573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129579190615322565b9050681043561a882930000081106129a557601954604d8161297557fe5b0461299560195460648161298557fe5b048461301d90919063ffffffff16565b14156129a057600193505b612a8d565b680ad78ebc5ac620000081106129f257601954606f816129c157fe5b046129e260195461014d816129d257fe5b048461301d90919063ffffffff16565b14156129ed57600193505b612a8c565b68056bc75e2d631000008110612a405760195461022b81612a0f57fe5b04612a3060195461029b81612a2057fe5b048461301d90919063ffffffff16565b1415612a3b57600193505b612a8b565b6802b5e3af16b18800008110612a8a5760195461030981612a5d57fe5b04612a7e6019546103e881612a6e57fe5b048461301d90919063ffffffff16565b1415612a8957600193505b5b5b5b5b8315612b1c576000612aa5600060206207a12061339a565b90506001600d600083815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601860006101000a81548160ff0219169083151502179055507f52b12648184546451bac9b47cc2702bad9e989feb5cce073ccc1f3542b6a07ae60405160405180910390a1505b505050505b612b3e60405180604001604052808381526020014381525061387e565b505b612b9281600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ce790919063ffffffff16565b600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612c2781600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461303e90919063ffffffff16565b600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612cc79190615ac8565b60405180910390a360166000815480929190600101919050555050505050565b600082821115612cf657600080fd5b600082840390508091505092915050565b60008073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480612d8f57506000612d8d600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166138c8565b145b15612da057612d9e60006138d3565b505b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338cc48316040518163ffffffff1660e01b8152600401602060405180830381600087803b158015612e0a57600080fd5b505af1158015612e1e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e429190615052565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612f7757600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338cc48316040518163ffffffff1660e01b8152600401602060405180830381600087803b158015612eff57600080fd5b505af1158015612f13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f379190615052565b6000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c281d19e6040518163ffffffff1660e01b8152600401602060405180830381600087803b158015612fe057600080fd5b505af1158015612ff4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130189190615052565b905090565b60008082141561302c57600080fd5b81838161303557fe5b06905092915050565b60008082840190508381101561305357600080fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561309757600080fd5b6130ac81600e54612ce790919063ffffffff16565b600e8190555061310481600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ce790919063ffffffff16565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516131a59190615ac8565b60405180910390a35050565b60008060007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff806131de57fe5b848609905083850292508281039150828110156131fc576001820391505b509250929050565b600080821161321257600080fd5b600082848161321d57fe5b0490508091505092915050565b60008083141561323d576000905061325e565b600082840290508284828161324e57fe5b041461325957600080fd5b809150505b92915050565b6000806001430340336015546016546040516020016132869493929190615742565b6040516020818303038152906040528051906020012060001c9050806015819055506016600081548092919060010191905055508091505090565b6132c9614d7a565b60056001015460056002015410156132e057600080fd5b60056000016000600560010154815260200190815260200160002060405180604001604052908160008201548152602001600182015481525050905060056000016000600560010154815260200190815260200160002060008082016000905560018201600090555050600160056001016000828254019250508190555080905090565b60008282604051602001613379929190615802565b6040516020818303038152906040528051906020012060001c905092915050565b600080831180156133ac575060208311155b6133b557600080fd5b600a840293506060600167ffffffffffffffff811180156133d557600080fd5b506040519080825280601f01601f1916602001820160405280156134085781602001600182028036833780820191505090505b5090508360f81b8160008151811061341c57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506060602067ffffffffffffffff8111801561346557600080fd5b506040519080825280601f01601f1916602001820160405280156134985781602001600182028036833780820191505090505b5090506060602067ffffffffffffffff811180156134b557600080fd5b506040519080825280601f01601f1916602001820160405280156134e85781602001600182028036833780820191505090505b50905060006134f56138e4565b9050602083524241186001430340186020840152602082528060208301526060602067ffffffffffffffff8111801561352d57600080fd5b506040519080825280601f01601f1916602001820160405280156135605781602001600182028036833780820191505090505b5090508860208201526060600867ffffffffffffffff8111801561358357600080fd5b506040519080825280601f01601f1916602001820160405280156135b65781602001600182028036833780820191505090505b5090506135c98260186008846000613bf8565b506135d2614d94565b604051806080016040528087815260200188815260200186815260200184815250905060006136376040518060400160405280600681526020017f72616e646f6d0000000000000000000000000000000000000000000000000000815250838c613c57565b90506060600867ffffffffffffffff8111801561365357600080fd5b506040519080825280601f01601f1916602001820160405280156136865781602001600182028036833780820191505090505b50905060208401517f0100000000000000000000000000000000000000000000000000000000000000810460278301537e01000000000000000000000000000000000000000000000000000000000000810460268301537d010000000000000000000000000000000000000000000000000000000000810460258301537c0100000000000000000000000000000000000000000000000000000000810460248301537b01000000000000000000000000000000000000000000000000000000810460238301537a01000000000000000000000000000000000000000000000000000081046022830153790100000000000000000000000000000000000000000000000000810460218301537801000000000000000000000000000000000000000000000000810460208301535061386b8282856001600481106137c557fe5b60200201516002876000600481106137d957fe5b60200201516040516137eb9190615790565b602060405180830381855afa158015613808573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061382b91906151f9565b8760026004811061383857fe5b602002015160405160200161385094939291906157a7565b60405160208183030381529060405280519060200120613fd5565b8199505050505050505050509392505050565b600160056002016000828254019250508190555080600560000160006005600201548152602001908152602001600020600082015181600001556020820151816001015590505050565b6000813b9050919050565b60006138dd613ff1565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148061396c5750600061396a600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166138c8565b145b1561397d5761397b60006138d3565b505b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338cc48316040518163ffffffff1660e01b8152600401602060405180830381600087803b1580156139e757600080fd5b505af11580156139fb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a1f9190615052565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613b5457600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338cc48316040518163ffffffff1660e01b8152600401602060405180830381600087803b158015613adc57600080fd5b505af1158015613af0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b149190615052565b6000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663abaa5f3e6040518163ffffffff1660e01b815260040160206040518083038186803b158015613bbb57600080fd5b505afa158015613bcf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613bf391906151f9565b905090565b6060600082850190508084511015613c0f57600080fd5b600086602001905060008460200190505b868860200101821015613c485781890151808288015250602082019150602081019050613c20565b85935050505095945050505050565b60008073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480613cdf57506000613cdd600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166138c8565b145b15613cf057613cee60006138d3565b505b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338cc48316040518163ffffffff1660e01b8152600401602060405180830381600087803b158015613d5a57600080fd5b505af1158015613d6e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613d929190615052565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613ec757600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338cc48316040518163ffffffff1660e01b8152600401602060405180830381600087803b158015613e4f57600080fd5b505af1158015613e63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e879190615052565b6000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b6060600467ffffffffffffffff81118015613ee157600080fd5b50604051908082528060200260200182016040528015613f1557816020015b6060815260200190600190039081613f005790505b50905083600060048110613f2557fe5b602002015181600081518110613f3757fe5b602002602001018190525083600160048110613f4f57fe5b602002015181600181518110613f6157fe5b602002602001018190525083600260048110613f7957fe5b602002015181600281518110613f8b57fe5b602002602001018190525083600360048110613fa357fe5b602002015181600381518110613fb557fe5b6020026020010181905250613fcb858285614548565b9150509392505050565b8060036000848152602001908152602001600020819055505050565b600080614011731d3b2638a7cc9f2cb3d298a3da7a90b67e5506ed6138c8565b11156140b357731d3b2638a7cc9f2cb3d298a3da7a90b67e5506ed600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506140aa6040518060400160405280600b81526020017f6574685f6d61696e6e6574000000000000000000000000000000000000000000815250614957565b60019050614545565b60006140d273c03a2615d5efaf5f49f60b7bb6583eaec212fdf16138c8565b11156141745773c03a2615d5efaf5f49f60b7bb6583eaec212fdf1600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061416b6040518060400160405280600c81526020017f6574685f726f707374656e330000000000000000000000000000000000000000815250614957565b60019050614545565b600061419373b7a07bcf2ba2f2703b24c0691b5278999c59ac7e6138c8565b11156142355773b7a07bcf2ba2f2703b24c0691b5278999c59ac7e600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061422c6040518060400160405280600981526020017f6574685f6b6f76616e0000000000000000000000000000000000000000000000815250614957565b60019050614545565b600061425473146500cfd35b22e4a392fe0adc06de1a1368ed486138c8565b11156142f65773146500cfd35b22e4a392fe0adc06de1a1368ed48600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506142ed6040518060400160405280600b81526020017f6574685f72696e6b656279000000000000000000000000000000000000000000815250614957565b60019050614545565b600061431573a2998efd205fb9d4b4963afb70778d6354ad3a416138c8565b11156143b75773a2998efd205fb9d4b4963afb70778d6354ad3a41600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506143ae6040518060400160405280600a81526020017f6574685f676f65726c6900000000000000000000000000000000000000000000815250614957565b60019050614545565b60006143d6736f485c8bf6fc43ea212e93bbf8ce046c7f1cb4756138c8565b111561443a57736f485c8bf6fc43ea212e93bbf8ce046c7f1cb475600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050614545565b60006144597320e12a1f859b3feae5fb2a0a32c18f5a65555bbf6138c8565b11156144bd577320e12a1f859b3feae5fb2a0a32c18f5a65555bbf600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050614545565b60006144dc7351efaf4c8b3c9afbd5ab9f4bbc82784ab6ef8faa6138c8565b1115614540577351efaf4c8b3c9afbd5ab9f4bbc82784ab6ef8faa600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050614545565b600090505b90565b60008073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614806145d0575060006145ce600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166138c8565b145b156145e1576145df60006138d3565b505b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338cc48316040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561464b57600080fd5b505af115801561465f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906146839190615052565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146147b857600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338cc48316040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561474057600080fd5b505af1158015614754573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906147789190615052565b6000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632ef3accc86856040518363ffffffff1660e01b81526004016148169291906159f8565b602060405180830381600087803b15801561483057600080fd5b505af1158015614844573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906148689190615322565b9050823a02670de0b6b3a76400000181111561488a576000801b915050614950565b606061489585614971565b90506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c55c1cb68360008985896040518663ffffffff1660e01b81526004016148f99493929190615983565b6020604051808303818588803b15801561491257600080fd5b505af1158015614926573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061494b91906151f9565b925050505b9392505050565b806002908051906020019061496d929190614dbb565b5050565b606061497b6149f1565b614983614e3b565b61498f816104006149fd565b61499881614a47565b60008090505b83518110156149da576149cd8482815181106149b657fe5b602002602001015183614a5590919063ffffffff16565b808060010191505061499e565b506149e481614a7a565b8060000151915050919050565b60405180590338823950565b6000819050600060208281614a0e57fe5b0614614a275760208181614a1e57fe5b06602003810190505b808360200181815250506040518084526000815281810160405250505050565b614a52816004614a88565b50565b614a628260028351614aa9565b614a758183614be990919063ffffffff16565b505050565b614a85816007614a88565b50565b614aa5601f60058360ff16901b1783614c9490919063ffffffff16565b5050565b60178111614ad557614ad08160058460ff16901b60ff161784614c9490919063ffffffff16565b614be4565b60ff8111614b1657614afa601860058460ff16901b1784614c9490919063ffffffff16565b614b1081600185614cd49092919063ffffffff16565b50614be3565b61ffff8111614b5857614b3c601960058460ff16901b1784614c9490919063ffffffff16565b614b5281600285614cd49092919063ffffffff16565b50614be2565b63ffffffff8111614b9c57614b80601a60058460ff16901b1784614c9490919063ffffffff16565b614b9681600485614cd49092919063ffffffff16565b50614be1565b67ffffffffffffffff8111614be057614bc8601b60058460ff16901b1784614c9490919063ffffffff16565b614bde81600885614cd49092919063ffffffff16565b505b5b5b5b5b505050565b614bf1614e3b565b82602001518360000151518351011115614c2157614c20836002614c1a86602001518651614d3b565b02614d57565b5b60008060008451905085518051602081830101945086518101825260208701935050505b60208110614c685781518352602083019250602082019150602081039050614c45565b60006001826020036101000a039050801983511681855116818117865250508694505050505092915050565b81602001516001836000015151011115614cba57614cb9826002846020015102614d57565b5b815180516020818301018381536001820183525050505050565b614cdc614e3b565b836020015184600001515183011115614d0a57614d09846002614d03876020015186614d3b565b02614d57565b5b60006001836101000a0390508451805184818301018684198251161781528582018352505050849150509392505050565b600081831115614d4d57829050614d51565b8190505b92915050565b606082600001519050614d6a83836149fd565b614d748382614be9565b50505050565b604051806040016040528060008152602001600081525090565b60405180608001604052806004905b6060815260200190600190039081614da35790505090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614dfc57805160ff1916838001178555614e2a565b82800160010185558215614e2a579182015b82811115614e29578251825591602001919060010190614e0e565b5b509050614e379190614e55565b5090565b604051806040016040528060608152602001600081525090565b614e7791905b80821115614e73576000816000905550600101614e5b565b5090565b90565b600081359050614e8981615d6a565b92915050565b600081519050614e9e81615d6a565b92915050565b600081359050614eb381615d81565b92915050565b600081359050614ec881615d98565b92915050565b600081519050614edd81615d98565b92915050565b600081359050614ef281615daf565b92915050565b600081519050614f0781615daf565b92915050565b600082601f830112614f1e57600080fd5b8135614f31614f2c82615b2b565b615afe565b91508082526020830160208301858383011115614f4d57600080fd5b614f58838284615cd2565b50505092915050565b60008083601f840112614f7357600080fd5b8235905067ffffffffffffffff811115614f8c57600080fd5b602083019150836001820283011115614fa457600080fd5b9250929050565b600082601f830112614fbc57600080fd5b8135614fcf614fca82615b57565b615afe565b91508082526020830160208301858383011115614feb57600080fd5b614ff6838284615cd2565b50505092915050565b60008135905061500e81615dc6565b92915050565b60008151905061502381615dc6565b92915050565b60006020828403121561503b57600080fd5b600061504984828501614e7a565b91505092915050565b60006020828403121561506457600080fd5b600061507284828501614e8f565b91505092915050565b60006020828403121561508d57600080fd5b600061509b84828501614ea4565b91505092915050565b600080604083850312156150b757600080fd5b60006150c585828601614e7a565b92505060206150d685828601614e7a565b9150509250929050565b6000806000606084860312156150f557600080fd5b600061510386828701614e7a565b935050602061511486828701614e7a565b925050604061512586828701614fff565b9150509250925092565b6000806040838503121561514257600080fd5b600061515085828601614e7a565b925050602061516185828601614eb9565b9150509250929050565b6000806040838503121561517e57600080fd5b600061518c85828601614e7a565b925050602061519d85828601614fff565b9150509250929050565b6000602082840312156151b957600080fd5b60006151c784828501614eb9565b91505092915050565b6000602082840312156151e257600080fd5b60006151f084828501614ece565b91505092915050565b60006020828403121561520b57600080fd5b600061521984828501614ef8565b91505092915050565b60008060006040848603121561523757600080fd5b600061524586828701614ee3565b935050602084013567ffffffffffffffff81111561526257600080fd5b61526e86828701614f61565b92509250509250925092565b60008060006060848603121561528f57600080fd5b600061529d86828701614ee3565b935050602084013567ffffffffffffffff8111156152ba57600080fd5b6152c686828701614fab565b925050604084013567ffffffffffffffff8111156152e357600080fd5b6152ef86828701614f0d565b9150509250925092565b60006020828403121561530b57600080fd5b600061531984828501614fff565b91505092915050565b60006020828403121561533457600080fd5b600061534284828501615014565b91505092915050565b6000806040838503121561535e57600080fd5b600061536c85828601615014565b925050602061537d85828601615014565b9150509250929050565b60008060006060848603121561539c57600080fd5b60006153aa86828701614fff565b93505060206153bb86828701614fff565b92505060406153cc86828701614fff565b9150509250925092565b6153df81615c42565b82525050565b6153ee81615be3565b82525050565b61540561540082615be3565b615d14565b82525050565b61541481615bd1565b82525050565b61542381615bf5565b82525050565b61543a61543582615c01565b615d26565b82525050565b600061544b82615b83565b6154558185615b99565b9350615465818560208601615ce1565b61546e81615d4c565b840191505092915050565b600061548482615b83565b61548e8185615baa565b935061549e818560208601615ce1565b80840191505092915050565b6154b381615c54565b82525050565b6154c281615c78565b82525050565b6154d181615c9c565b82525050565b60006154e38385615bc6565b93506154f0838584615cd2565b82840190509392505050565b600061550782615b8e565b6155118185615bb5565b9350615521818560208601615ce1565b61552a81615d4c565b840191505092915050565b6000615542602683615bb5565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006155a8602683615bb5565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061560e602283615bb5565b91507f5768792061726520796f75207472616e7366657272696e67203020746f6b656e60008301527f733f0000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000615674602083615bb5565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006156b4602583615bb5565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61571681615c2b565b82525050565b61572d61572882615c2b565b615d42565b82525050565b61573c81615c35565b82525050565b600061574e8287615429565b60208201915061575e82866153f4565b60148201915061576e828561571c565b60208201915061577e828461571c565b60208201915081905095945050505050565b600061579c8284615479565b915081905092915050565b60006157b38287615479565b91506157bf8286615479565b91506157cb8285615429565b6020820191506157db8284615479565b915081905095945050505050565b60006157f68284866154d7565b91508190509392505050565b600061580e828561571c565b60208201915061581e828461571c565b6020820191508190509392505050565b6000602082019050615843600083018461540b565b92915050565b600060208201905061585e60008301846153d6565b92915050565b600060208201905061587960008301846153e5565b92915050565b600060408201905061589460008301856153d6565b6158a1602083018461570d565b9392505050565b600060c0820190506158bd60008301896153d6565b6158ca602083018861570d565b6158d760408301876154c8565b6158e460608301866154c8565b6158f160808301856153d6565b6158fe60a083018461570d565b979650505050505050565b600060408201905061591e600083018561540b565b61592b602083018461570d565b9392505050565b6000602082019050615947600083018461541a565b92915050565b600060208201905061596260008301846154aa565b92915050565b600060208201905061597d60008301846154b9565b92915050565b600060808201905061599860008301876154c8565b81810360208301526159aa81866154fc565b905081810360408301526159be8185615440565b90506159cd606083018461570d565b95945050505050565b600060208201905081810360008301526159f081846154fc565b905092915050565b60006040820190508181036000830152615a1281856154fc565b9050615a21602083018461570d565b9392505050565b60006020820190508181036000830152615a4181615535565b9050919050565b60006020820190508181036000830152615a618161559b565b9050919050565b60006020820190508181036000830152615a8181615601565b9050919050565b60006020820190508181036000830152615aa181615667565b9050919050565b60006020820190508181036000830152615ac1816156a7565b9050919050565b6000602082019050615add600083018461570d565b92915050565b6000602082019050615af86000830184615733565b92915050565b6000604051905081810181811067ffffffffffffffff82111715615b2157600080fd5b8060405250919050565b600067ffffffffffffffff821115615b4257600080fd5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115615b6e57600080fd5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000615bdc82615c0b565b9050919050565b6000615bee82615c0b565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000615c4d82615cae565b9050919050565b6000615c5f82615c66565b9050919050565b6000615c7182615c0b565b9050919050565b6000615c8382615c8a565b9050919050565b6000615c9582615c0b565b9050919050565b6000615ca782615c2b565b9050919050565b6000615cb982615cc0565b9050919050565b6000615ccb82615c0b565b9050919050565b82818337600083830152505050565b60005b83811015615cff578082015181840152602081019050615ce4565b83811115615d0e576000848401525b50505050565b6000615d1f82615d30565b9050919050565b6000819050919050565b6000615d3b82615d5d565b9050919050565b6000819050919050565b6000601f19601f8301169050919050565b60008160601b9050919050565b615d7381615bd1565b8114615d7e57600080fd5b50565b615d8a81615be3565b8114615d9557600080fd5b50565b615da181615bf5565b8114615dac57600080fd5b50565b615db881615c01565b8114615dc357600080fd5b50565b615dcf81615c2b565b8114615dda57600080fd5b5056fea26469706673582212202bd2da20292581bf020a6ad6572357033d5d7dc3cf39d484150f56a1cde049a664736f6c634300060a0033

Deployed Bytecode Sourcemap

61067:18347:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65199:137;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;61831:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;67738:148;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;64825:204;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;62211:24;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;65348:114;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;65578:115;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;64580:118;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;65890:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;65474:92;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;68359:228;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;73191:1402;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;62365:28;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;61934:35;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;14584:189;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;62171:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;69113:203;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;62102:17;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;62024:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;62132:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;61503:43;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;66200:106;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;77783:100;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;62064:25;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;62317:35;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;61884:37;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;61689:42;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;65041:146;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;75458:107;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;69847:213;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;66951:140;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;65705:105;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;78000:620;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;61982:29;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;77663:108;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;64710:103;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;77533:118;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;64415:153;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;66645:131;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;63826:577;;;;;;;;;;;;;:::i;:::-;;76844:252;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;65199:137;63038:10;63028:20;;:6;;;;;;;;;;;:20;;;63020:65;;;;;;;;;;;;;;;;;;;;;;65310:18:::1;65288:19;:40;;;;65199:137:::0;:::o;61831:40::-;;;;;;;;;;;;;;;;;;;:::o;67738:148::-;67803:4;67820:36;67829:10;67841:7;67850:5;67820:8;:36::i;:::-;67874:4;67867:11;;67738:148;;;;:::o;64825:204::-;63038:10;63028:20;;:6;;;;;;;;;;;:20;;;63020:65;;;;;;;;;;;;;;;;;;;;;;64910:6:::1;64907:115;;;64940:9;:15;64950:4;64940:15;;;;;;;;;;;;;;;;64933:22;;;;;;;;;;;64907:115;;;65006:4;64988:9;:15;64998:4;64988:15;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;64907:115;64825:204:::0;;:::o;62211:24::-;;;;:::o;65348:114::-;63038:10;63028:20;;:6;;;;;;;;;;;:20;;;63020:65;;;;;;;;;;;;;;;;;;;;;;65444:9:::1;65422;;:32;;;;;;;;;;;;;;;;;;65348:114:::0;:::o;65578:115::-;65643:7;63038:10;63028:20;;:6;;;;;;;;;;;:20;;;63020:65;;;;;;;;;;;;;;;;;;;;;;65670:8:::1;65679:5;65670:15;;;;;;;;;;;;;;;;;;;;;;;;;65663:22;;65578:115:::0;;;:::o;64580:118::-;63038:10;63028:20;;:6;;;;;;;;;;;:20;;;63020:65;;;;;;;;;;;;;;;;;;;;;;64676:14:::1;64658:15;;:32;;;;;;;;;;;;;;;;;;64580:118:::0;:::o;65890:91::-;65934:7;65961:12;;65954:19;;65890:91;:::o;65474:92::-;63038:10;63028:20;;:6;;;;;;;;;;;:20;;;63020:65;;;;;;;;;;;;;;;;;;;;;;65552:5:::1;65539:4;;:19;;;;;;;;;;;;;;;;;;65474:92:::0;:::o;68359:228::-;68438:4;68455:26;68465:4;68471:2;68475:5;68455:9;:26::i;:::-;68492:65;68501:4;68507:10;68519:37;68550:5;68519:8;:14;68528:4;68519:14;;;;;;;;;;;;;;;:26;68534:10;68519:26;;;;;;;;;;;;;;;;:30;;:37;;;;:::i;:::-;68492:8;:65::i;:::-;68575:4;68568:11;;68359:228;;;;;:::o;73191:1402::-;73303:6;;;;;;;;;;;73289:20;;:10;:20;;;73286:169;;73334:8;:14;73343:4;73334:14;;;;;;;;;;;;;;;;;;;;;73326:23;;;;;;73386:20;:18;:20::i;:::-;73372:34;;:10;:34;;;73364:43;;;;;;73429:8;:14;73438:4;73429:14;;;;;;;;;;;;73422:21;;;;;;;;;;;73286:169;73475:18;73496:65;73545:8;:15;;;;73531:6;;73514:24;;;;;;;;;;;;;;;;;;;;;;;73504:35;;;;;;73496:44;;:48;;:65;;;;:::i;:::-;73475:86;;73596:8;:15;;;;73580:13;:31;73572:40;;;;;;73623:22;73648:8;73657:13;73648:23;;;;;;;;;;;;;;;;;;;;;;;;;73623:48;;73692:14;73709:12;;;;;;;;;;;:22;;;73740:4;73709:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73692:54;;73767:12;;;;;;;;;;;:20;;;73796:9;;;;;;;;;;;73808;73767:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73839:9;;;;;;;;;;;:28;;;73876:4;73883:9;73894:1;73897;73908:4;73915:14;73923:5;73915:3;:7;;:14;;;;:::i;:::-;73839:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73951:8;73962:21;73951:32;;74004:12;74019:2;74004:17;;74052:6;74046:3;:12;74042:181;;;74085:2;74075:12;;74042:181;;;74114:6;74108:3;:12;74105:118;;;74147:2;74137:12;;74105:118;;;74176:6;74170:3;:12;74167:56;;;74209:2;74199:12;;74167:56;74105:118;74042:181;74243:17;74263:36;74270:14;74278:5;74270:3;:7;;:14;;;;:::i;:::-;74286:7;74295:3;74263:6;:36::i;:::-;74243:56;;74310:16;74329:21;74337:12;74329:3;:7;;:21;;;;:::i;:::-;74310:40;;74371:6;;;;;;;;;;;:11;;:24;74383:11;74371:24;;;;;;;;;;;;;;;;;;;;;;;;74406:6;:11;;:25;74418:12;74406:25;;;;;;;;;;;;;;;;;;;;;;;;74465:6;74457:29;;;74473:12;74457:29;;;;;;;;;;;;;;;74526:5;74507:16;;:24;;;;;;;;;;;;;;;;;;74570:5;74552:15;;:23;;;;;;;;;;;;;;;;;;73191:1402;;;;;;;;;;:::o;62365:28::-;;;;;;;;;;;;;:::o;61934:35::-;61967:2;61934:35;:::o;14584:189::-;14763:1;14755:10;;14718:22;:34;14749:1;14741:10;;14718:34;;;;;;;;;;;:47;;;;14584:189;;;:::o;62171:27::-;;;;;;;;;;;;;:::o;69113:203::-;69193:4;69210:76;69219:10;69231:7;69240:45;69274:10;69240:8;:20;69249:10;69240:20;;;;;;;;;;;;;;;:29;69261:7;69240:29;;;;;;;;;;;;;;;;:33;;:45;;;;:::i;:::-;69210:8;:76::i;:::-;69304:4;69297:11;;69113:203;;;;:::o;62102:17::-;;;;;;;;;;;;;:::o;62024:27::-;;;;;;;;;;;;;:::o;62132:26::-;;;;;;;;;;;;;:::o;61503:43::-;;;;;;;;;;;;;;;;;:::o;66200:106::-;66255:7;66282:9;:16;66292:5;66282:16;;;;;;;;;;;;;;;;66275:23;;66200:106;;;:::o;77783:100::-;63038:10;63028:20;;:6;;;;;;;;;;;:20;;;63020:65;;;;;;;;;;;;;;;;;;;;;;77856:6:::1;;;;;;;;;;;:11;;:19;77868:6;77856:19;;;;;;;;;;;;;;;;;;;;;;;;77783:100:::0;:::o;62064:25::-;;;;;;;;;;;;;:::o;62317:35::-;;;;:::o;61884:37::-;;;;;;;;;;;;;;;;;;;:::o;61689:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;65041:146::-;63038:10;63028:20;;:6;;;;;;;;;;;:20;;;63020:65;;;;;;;;;;;;;;;;;;;;;;65158:21:::1;65135:20;:44;;;;65041:146:::0;:::o;75458:107::-;63038:10;63028:20;;:6;;;;;;;;;;;:20;;;63020:65;;;;;;;;;;;;;;;;;;;;;;75535:22:::1;75541:7;75550:6;75535:5;:22::i;:::-;75458:107:::0;;:::o;69847:213::-;69932:4;69949:81;69958:10;69970:7;69979:50;70013:15;69979:8;:20;69988:10;69979:20;;;;;;;;;;;;;;;:29;70000:7;69979:29;;;;;;;;;;;;;;;;:33;;:50;;;;:::i;:::-;69949:8;:81::i;:::-;70048:4;70041:11;;69847:213;;;;:::o;66951:140::-;67012:4;67029:32;67039:10;67051:2;67055:5;67029:9;:32::i;:::-;67079:4;67072:11;;66951:140;;;;:::o;65705:105::-;65765:4;65789:7;:13;65797:4;65789:13;;;;;;;;;;;;;;;;65782:20;;65705:105;;;:::o;78000:620::-;78062:4;78082:6;78090;78100:14;78109:1;78112;78100:7;:14::i;:::-;78081:33;;;;78139:1;78135;:5;78127:14;;;;78154:7;78178:1;78164:16;;;;;78175:1;78172;78164:16;78154:26;;78202:1;78197:2;:6;78193:18;;;78210:1;78205:6;;;;78193:18;78229:2;78224:7;;;;78244:9;78261:1;78260:2;;78256:1;:6;78244:18;;78280:4;78275:9;;;;;;;;;78302:4;78297:9;;;;;;;;;78346:1;78339:4;78331;78330:5;;78329:14;;;;;;:18;78324:1;:24;78319:29;;;;78361:6;78370:1;78361:10;;78397:1;78393;:5;78389:1;:9;78384:14;;;;78424:1;78420;:5;78416:1;:9;78411:14;;;;78451:1;78447;:5;78443:1;:9;78438:14;;;;78478:1;78474;:5;78470:1;:9;78465:14;;;;78505:1;78501;:5;78497:1;:9;78492:14;;;;78532:1;78528;:5;78524:1;:9;78519:14;;;;78559:1;78555;:5;78551:1;:9;78546:14;;;;78586:1;78582;:5;78578:1;:9;78573:14;;;;78611:1;78607;:5;78600:12;;;;;;;78000:620;;;;;:::o;61982:29::-;;;;;;;;;;;;;:::o;77663:108::-;63038:10;63028:20;;:6;;;;;;;;;;;:20;;;63020:65;;;;;;;;;;;;;;;;;;;;;;77739:24:::1;77748:6;;;;;;;;;;;77756;77739:8;:24::i;:::-;;77663:108:::0;:::o;64710:103::-;63038:10;63028:20;;:6;;;;;;;;;;;:20;;;63020:65;;;;;;;;;;;;;;;;;;;;;;64795:10:::1;64780:12;:25;;;;64710:103:::0;:::o;77533:118::-;63038:10;63028:20;;:6;;;;;;;;;;;:20;;;63020:65;;;;;;;;;;;;;;;;;;;;;;77606:12:::1;;;;;;;;;;;:21;;;77628:6;;;;;;;;;;;77636;77606:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77533:118:::0;:::o;64415:153::-;63038:10;63028:20;;:6;;;;;;;;;;;:20;;;63020:65;;;;;;;;;;;;;;;;;;;;;;64505:11:::1;64490:12;;:26;;;;;;;;;;;;;;;;;;64548:11;64527:12;;:33;;;;;;;;;;;;;;;;;;64415:153:::0;:::o;66645:131::-;66717:7;66744:8;:15;66753:5;66744:15;;;;;;;;;;;;;;;:24;66760:7;66744:24;;;;;;;;;;;;;;;;66737:31;;66645:131;;;;:::o;63826:577::-;63888:12;63903:21;63913:10;63903:9;:21::i;:::-;63888:36;;63964:20;;63953:7;:31;;63945:40;;;;;;64006:15;64024:33;64036:20;;64024:7;:11;;:33;;;;:::i;:::-;64006:51;;64078:55;64084:10;64096:36;64111:20;;64096:10;:14;;:36;;;;:::i;:::-;64078:5;:55::i;:::-;64158:6;64167:1;64158:10;;64154:98;64174:10;64170:1;:14;64154:98;;;64215:8;64229:10;64215:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64190:8;64196:1;64190;:5;;:8;;;;:::i;:::-;64186:12;;64154:98;;;;64294:35;64318:10;64294:7;:19;64302:10;64294:19;;;;;;;;;;;;;;;;:23;;:35;;;;:::i;:::-;64272:7;:19;64280:10;64272:19;;;;;;;;;;;;;;;:57;;;;64372:10;64355:40;;;64384:10;64355:40;;;;;;;;;;;;;;;63826:577;;:::o;76844:252::-;63038:10;63028:20;;:6;;;;;;;;;;;:20;;;63020:65;;;;;;;;;;;;;;;;;;;;;;76961:1:::1;76941:22;;:8;:22;;;;76933:73;;;;;;;;;;;;;;;;;;;;;;77051:8;77022:38;;77043:6;;;;;;;;;;;77022:38;;;;;;;;;;;;77080:8;77071:6;;:17;;;;;;;;;;;;;;;;;;76844:252:::0;:::o;76431:254::-;76543:1;76524:21;;:7;:21;;;;76516:30;;;;;;76582:1;76565:19;;:5;:19;;;;76557:28;;;;;;76625:5;76598:8;:15;76607:5;76598:15;;;;;;;;;;;;;;;:24;76614:7;76598:24;;;;;;;;;;;;;;;:32;;;;76662:7;76646:31;;76655:5;76646:31;;;76671:5;76646:31;;;;;;;;;;;;;;;76431:254;;;:::o;70298:2881::-;70424:1;70406:20;;:6;:20;;;;70398:70;;;;;;;;;;;;;;;;;;;;;;70508:6;70487:9;:17;70497:6;70487:17;;;;;;;;;;;;;;;;:27;;70479:78;;;;;;;;;;;;;;;;;;;;;;70586:1;70576:6;:11;;70568:58;;;;;;;;;;;;;;;;;;;;;;70647:19;70669:6;70647:28;;70700:9;:17;70710:6;70700:17;;;;;;;;;;;;;;;;;;;;;;;;;70699:18;:43;;;;;70722:9;:20;70732:9;70722:20;;;;;;;;;;;;;;;;;;;;;;;;;70721:21;70699:43;:62;;;;;70746:15;;;;;;;;;;;70699:62;70696:2263;;;70792:15;70810:9;:7;:9::i;:::-;70792:27;;70864:12;;;;;;;;;;;70851:25;;:9;:25;;;70848:319;;;70914:15;70932:33;70939:6;70947:12;;70961:3;70932:6;:33::i;:::-;70914:51;;70998:27;71014:10;70998:11;:15;;:27;;;;:::i;:::-;70984:41;;71059:28;71076:10;71059:12;;:16;;:28;;;;:::i;:::-;71044:12;:43;;;;71136:1;71111:40;;71120:6;71111:40;;;71140:10;71111:40;;;;;;;;;;;;;;;70848:319;;71236:15;:21;;;71212:15;:20;;;:45;;:66;;;;;71262:16;;;;;;;;;;;71261:17;71212:66;71209:1635;;;71317:15;71335:5;71317:23;;71377:24;;:::i;:::-;71404:9;:7;:9::i;:::-;71377:36;;71450:20;71473:33;71478:7;71487:10;:18;;;71473:4;:33::i;:::-;71450:56;;71535:16;71554:4;;;;;;;;;;;:14;;;71569:12;;;;;;;;;;;71554:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71535:47;;71655:6;71640:11;:21;71637:883;;71744:19;;71739:2;:24;;;;;;71689:46;71715:19;;71709:3;:25;;;;;;71689:15;:19;;:46;;;;:::i;:::-;:74;71686:147;;;71805:4;71792:17;;71686:147;71637:883;;;71876:6;71861:11;:21;71858:662;;71966:19;;71960:3;:25;;;;;;71910:46;71936:19;;71930:3;:25;;;;;;71910:15;:19;;:46;;;;:::i;:::-;:75;71907:148;;;72027:4;72014:17;;71907:148;71858:662;;;72099:6;72084:11;:21;72080:440;;72189:19;;72183:3;:25;;;;;;72133:46;72159:19;;72153:3;:25;;;;;;72133:15;:19;;:46;;;;:::i;:::-;:75;72130:148;;;72250:4;72237:17;;72130:148;72080:440;;;72322:5;72307:11;:20;72303:217;;72412:19;;72406:3;:25;;;;;;72355:47;72382:19;;72375:4;:26;;;;;;72355:15;:19;;:47;;;;:::i;:::-;:76;72352:149;;;72473:4;72460:17;;72352:149;72303:217;72080:440;71858:662;71637:883;72559:10;72556:255;;;72594:15;72612:40;72638:1;72641:2;72645:6;72612:25;:40::i;:::-;72594:58;;72695:4;72675:8;:17;72684:7;72675:17;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;72741:4;72722:16;;:23;;;;;;;;;;;;;;;;;;72773:18;;;;;;;;;;72556:255;;71209:1635;;;;;72872:38;72880:29;;;;;;;;72887:7;72880:29;;;;72896:12;72880:29;;;72872:7;:38::i;:::-;70696:2263;;72991:34;73013:11;72991:9;:17;73001:6;72991:17;;;;;;;;;;;;;;;;:21;;:34;;;;:::i;:::-;72971:9;:17;72981:6;72971:17;;;;;;;;;;;;;;;:54;;;;73059:37;73084:11;73059:9;:20;73069:9;73059:20;;;;;;;;;;;;;;;;:24;;:37;;;;:::i;:::-;73036:9;:20;73046:9;73036:20;;;;;;;;;;;;;;;:60;;;;73129:9;73112:40;;73121:6;73112:40;;;73140:11;73112:40;;;;;;;;;;;;;;;73163:6;;:8;;;;;;;;;;;;;70298:2881;;;;:::o;59310:150::-;59368:7;59401:1;59396;:6;;59388:15;;;;;;59414:9;59430:1;59426;:5;59414:17;;59451:1;59444:8;;;59310:150;;;;:::o;36814:132::-;36874:24;10913:1;10889:26;;10897:3;;;;;;;;;;;10889:26;;;10888:64;;;;10950:1;10921:25;10941:3;;;;;;;;;;;10921:11;:25::i;:::-;:30;10888:64;10884:132;;;10969:35;10535:1;10969:19;:35::i;:::-;;10884:132;11051:3;;;;;;;;;;;:14;;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11030:37;;11038:8;;;;;;;;;;;11030:37;;;11026:108;;11105:3;;;;;;;;;;;:14;;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11084:8;;:38;;;;;;;;;;;;;;;;;;11026:108;36918:8:::1;::::0;::::1;;;;;;;;;:18;;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36911:27;;36814:132:::0;:::o;59859:124::-;59917:7;59950:1;59945;:6;;59937:15;;;;;;59974:1;59970;:5;;;;;;59963:12;;59859:124;;;;:::o;59548:150::-;59606:7;59626:9;59642:1;59638;:5;59626:17;;59667:1;59662;:6;;59654:15;;;;;;59689:1;59682:8;;;59548:150;;;;:::o;75177:269::-;75271:1;75252:21;;:7;:21;;;;75244:30;;;;;;75302:23;75319:5;75302:12;;:16;;:23;;;;:::i;:::-;75287:12;:38;;;;75357:29;75380:5;75357:9;:18;75367:7;75357:18;;;;;;;;;;;;;;;;:22;;:29;;;;:::i;:::-;75336:9;:18;75346:7;75336:18;;;;;;;;;;;;;;;:50;;;;75428:1;75402:36;;75411:7;75402:36;;;75432:5;75402:36;;;;;;;;;;;;;;;75177:269;;:::o;78632:203::-;78688:6;78696;78717:7;78747:2;78727:24;;;;;78738:1;78735;78727:24;78717:34;;78772:1;78768;:5;78764:9;;78795:1;78790:2;:6;78786:10;;78818:1;78813:2;:6;78809:18;;;78826:1;78821:6;;;;78809:18;78632:203;;;;;;:::o;58869:303::-;58927:7;59026:1;59022;:5;59014:14;;;;;;59039:9;59055:1;59051;:5;;;;;;59039:17;;59163:1;59156:8;;;58869:303;;;;:::o;58301:433::-;58359:7;58608:1;58603;:6;58599:47;;;58633:1;58626:8;;;;58599:47;58658:9;58674:1;58670;:5;58658:17;;58703:1;58698;58694;:5;;;;;;:10;58686:19;;;;;;58725:1;58718:8;;;58301:433;;;;;:::o;77108:243::-;77145:7;77165:15;77241:1;77228:12;:14;77218:25;77245:10;77257:5;;77264:6;;77201:70;;;;;;;;;;;;;;;;;;;;;;;;;77191:81;;;;;;77183:90;;77165:108;;77292:7;77284:5;:15;;;;77310:6;;:8;;;;;;;;;;;;;77336:7;77329:14;;;77108:243;:::o;79010:363::-;79047:20;;:::i;:::-;79112:15;:21;;;79088:15;:20;;;:45;;79080:54;;;;;;79176:15;:21;;:44;79198:15;:21;;;79176:44;;;;;;;;;;;79167:53;;;;;;;;;;;;;;;;;;;;;;;;;;;79240:15;:21;;:44;79262:15;:21;;;79240:44;;;;;;;;;;;;79233:51;;;;;;;;;;;;;;79330:1;79305:15;:21;;;:26;;;;;;;;;;;79359:6;79352:13;;79010:363;:::o;77363:158::-;77430:7;77492:8;77502;77475:36;;;;;;;;;;;;;;;;;;;;;;;77465:47;;;;;;77457:56;;77450:63;;77363:158;;;;:::o;44887:2689::-;44989:16;45037:1;45027:7;:11;45026:32;;;;;45055:2;45044:7;:13;;45026:32;45018:41;;;;;;45080:2;45070:12;;;;45139:19;45171:1;45161:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45139:34;;45207:7;45196:20;;45184:6;45191:1;45184:9;;;;;;;;;;;:32;;;;;;;;;;;45227:19;45259:2;45249:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45227:35;;45273:27;45313:2;45303:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45273:43;;45327:30;45360:40;:38;:40::i;:::-;45327:73;;45450:4;45442:6;45435:20;45807:11;45795:10;45791:28;45786:1;45776:8;45772:16;45762:27;45758:62;45751:4;45743:6;45739:17;45732:89;45858:4;45842:14;45835:28;45911:22;45904:4;45888:14;45884:25;45877:57;45955:18;45986:2;45976:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45955:34;;46049:6;46042:4;46035:5;46031:16;46024:32;46077:25;46115:1;46105:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46077:40;;46128;46138:5;46145:2;46149:1;46152:12;46166:1;46128:9;:40::i;:::-;;46179:20;;:::i;:::-;:62;;;;;;;;46203:6;46179:62;;;;46211:6;46179:62;;;;46219:14;46179:62;;;;46235:5;46179:62;;;;;46252:15;46270:47;;;;;;;;;;;;;;;;;;46295:4;46301:15;46270:14;:47::i;:::-;46252:65;;46328:30;46371:1;46361:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46328:45;;46441:4;46427:12;46423:23;46417:30;46506:65;46503:1;46499:73;46492:4;46473:17;46469:28;46461:112;46632:63;46629:1;46625:71;46618:4;46599:17;46595:28;46587:110;46756:61;46753:1;46749:69;46742:4;46723:17;46719:28;46711:108;46878:59;46875:1;46871:67;46864:4;46845:17;46841:28;46833:106;46998:57;46995:1;46991:65;46984:4;46965:17;46961:28;46953:104;47116:55;47113:1;47109:63;47102:4;47083:17;47079:28;47071:102;47232:53;47229:1;47225:61;47218:4;47199:17;47195:28;47187:100;47346:51;47343:1;47339:59;47332:4;47313:17;47309:28;47301:98;46393:1017;47420:123;47452:7;47488:17;47507:4;47512:1;47507:7;;;;;;;;;;;47516:15;47523:4;47528:1;47523:7;;;;;;;;;;;47516:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47533:4;47538:1;47533:7;;;;;;;;;;;47471:70;;;;;;;;;;;;;;;;;;;;;;;;;47461:81;;;;;;47420:31;:123::i;:::-;47561:7;47554:14;;;;;;;;;;;44887:2689;;;;;:::o;78847:155::-;78930:1;78906:15;:20;;;:25;;;;;;;;;;;78988:6;78942:15;:21;;:43;78964:15;:20;;;78942:43;;;;;;;;;;;:52;;;;;;;;;;;;;;;;;;;78847:155;:::o;36954:151::-;37013:10;37081:5;37069:18;37060:27;;37045:53;;;:::o;11638:208::-;11703:16;11817:21;:19;:21::i;:::-;11810:28;;11638:208;;;:::o;37257:171::-;37337:23;10913:1;10889:26;;10897:3;;;;;;;;;;;10889:26;;;10888:64;;;;10950:1;10921:25;10941:3;;;;;;;;;;;10921:11;:25::i;:::-;:30;10888:64;10884:132;;;10969:35;10535:1;10969:19;:35::i;:::-;;10884:132;11051:3;;;;;;;;;;;:14;;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11030:37;;11038:8;;;;;;;;;;;11030:37;;;11026:108;;11105:3;;;;;;;;;;;:14;;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11084:8;;:38;;;;;;;;;;;;;;;;;;11026:108;37380:8:::1;::::0;::::1;;;;;;;;;:38;;;:40;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37373:47;;37257:171:::0;:::o;54347:707::-;54475:25;54513:14;54540:9;54530:7;:19;54513:36;;54582:9;54568:3;:10;:23;;54560:32;;;;;;54648:6;54662:11;54657:2;:16;54648:25;;54765:6;54779:9;54774:2;:14;54765:23;;54799:227;54830:7;54816:11;54811:2;:16;:26;54806:1;:32;54799:227;;;54911:1;54904:5;54900:13;54894:20;54952:3;54948:1;54943:3;54939:11;54932:24;54864:107;54990:2;54985:7;;;;55012:2;55007:7;;;;54799:227;;;55043:3;55036:10;;;;;54347:707;;;;;;;:::o;34594:384::-;34714:11;10913:1;10889:26;;10897:3;;;;;;;;;;;10889:26;;;10888:64;;;;10950:1;10921:25;10941:3;;;;;;;;;;;10921:11;:25::i;:::-;:30;10888:64;10884:132;;;10969:35;10535:1;10969:19;:35::i;:::-;;10884:132;11051:3;;;;;;;;;;;:14;;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11030:37;;11038:8;;;;;;;;;;;11030:37;;;11026:108;;11105:3;;;;;;;;;;;:14;;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11084:8;;:38;;;;;;;;;;;;;;;;;;11026:108;34738:22:::1;34775:1;34763:14;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34738:39;;34801:5;34807:1;34801:8;;;;;;;;;;;34788:7;34796:1;34788:10;;;;;;;;;;;;;:21;;;;34833:5;34839:1;34833:8;;;;;;;;;;;34820:7;34828:1;34820:10;;;;;;;;;;;;;:21;;;;34865:5;34871:1;34865:8;;;;;;;;;;;34852:7;34860:1;34852:10;;;;;;;;;;;;;:21;;;;34897:5;34903:1;34897:8;;;;;;;;;;;34884:7;34892:1;34884:10;;;;;;;;;;;;;:21;;;;34923:47;34938:11;34951:7;34960:9;34923:14;:47::i;:::-;34916:54;;;34594:384:::0;;;;;:::o;47584:154::-;47719:11;47684:22;:32;47707:8;47684:32;;;;;;;;;;;:46;;;;47584:154;;:::o;12130:2070::-;12179:16;12270:1;12212:55;12224:42;12212:11;:55::i;:::-;:59;12208:250;;;12324:42;12298:3;;:69;;;;;;;;;;;;;;;;;;12382:38;;;;;;;;;;;;;;;;;;:23;:38::i;:::-;12442:4;12435:11;;;;12208:250;12530:1;12472:55;12484:42;12472:11;:55::i;:::-;:59;12468:259;;;12592:42;12566:3;;:69;;;;;;;;;;;;;;;;;;12650:39;;;;;;;;;;;;;;;;;;:23;:39::i;:::-;12711:4;12704:11;;;;12468:259;12799:1;12741:55;12753:42;12741:11;:55::i;:::-;:59;12737:254;;;12859:42;12833:3;;:69;;;;;;;;;;;;;;;;;;12917:36;;;;;;;;;;;;;;;;;;:23;:36::i;:::-;12975:4;12968:11;;;;12737:254;13063:1;13005:55;13017:42;13005:11;:55::i;:::-;:59;13001:258;;;13125:42;13099:3;;:69;;;;;;;;;;;;;;;;;;13183:38;;;;;;;;;;;;;;;;;;:23;:38::i;:::-;13243:4;13236:11;;;;13001:258;13331:1;13273:55;13285:42;13273:11;:55::i;:::-;:59;13269:256;;;13392:42;13366:3;;:69;;;;;;;;;;;;;;;;;;13450:37;;;;;;;;;;;;;;;;;;:23;:37::i;:::-;13509:4;13502:11;;;;13269:256;13597:1;13539:55;13551:42;13539:11;:55::i;:::-;:59;13535:205;;;13659:42;13633:3;;:69;;;;;;;;;;;;;;;;;;13724:4;13717:11;;;;13535:205;13812:1;13754:55;13766:42;13754:11;:55::i;:::-;:59;13750:204;;;13873:42;13847:3;;:69;;;;;;;;;;;;;;;;;;13938:4;13931:11;;;;13750:204;14026:1;13968:55;13980:42;13968:11;:55::i;:::-;:59;13964:206;;;14089:42;14063:3;;:69;;;;;;;;;;;;;;;;;;14154:4;14147:11;;;;13964:206;14187:5;14180:12;;12130:2070;;:::o;28996:462::-;29115:11;10913:1;10889:26;;10897:3;;;;;;;;;;;10889:26;;;10888:64;;;;10950:1;10921:25;10941:3;;;;;;;;;;;10921:11;:25::i;:::-;:30;10888:64;10884:132;;;10969:35;10535:1;10969:19;:35::i;:::-;;10884:132;11051:3;;;;;;;;;;;:14;;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11030:37;;11038:8;;;;;;;;;;;11030:37;;;11026:108;;11105:3;;;;;;;;;;;:14;;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11084:8;;:38;;;;;;;;;;;;;;;;;;11026:108;29139:10:::1;29152:8:::0;::::1;;;;;;;;;;:17;;;29170:11;29183:9;29152:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29139:54;;29240:9;29226:11;:23;29216:7;:33;29208:5;:41;29204:109;;;29273:1;29266:8:::0;::::1;;;;;;29204:109;29323:17;29343:14;29351:5;29343:7;:14::i;:::-;29323:34;;29375:8;::::0;::::1;;;;;;;;;:28;;;29411:5;29418:1;29421:11;29434:4;29440:9;29375:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29368:82;;;;11144:1;28996:462:::0;;;;;:::o;11854:127::-;11960:13;11936:21;:37;;;;;;;;;;;;:::i;:::-;;11854:127;:::o;44504:375::-;44565:26;44604:19;:17;:19::i;:::-;44634:24;;:::i;:::-;44669:22;44681:3;44686:4;44669:11;:22::i;:::-;44702:16;:3;:14;:16::i;:::-;44734:6;44743:1;44734:10;;44729:90;44750:4;:11;44746:1;:15;44729:90;;;44783:24;44799:4;44804:1;44799:7;;;;;;;;;;;;;;44783:3;:15;;:24;;;;:::i;:::-;44763:3;;;;;;;44729:90;;;;44829:17;:3;:15;:17::i;:::-;44864:3;:7;;;44857:14;;;44504:375;;;:::o;58001:179::-;58097:4;58091:11;58156:4;58147:7;58143:18;58131:10;58125:4;58116:46;58064:109;:::o;3119:446::-;3194:13;3210:9;3194:25;;3251:1;3245:2;3234:8;:13;;;;;;:18;3230:83;;3298:2;3287:8;:13;;;;;;3281:2;:20;3269:32;;;;3230:83;3339:8;3323:4;:13;;:24;;;;;3437:4;3431:11;3469:3;3463:4;3456:17;3499:1;3494:3;3487:14;3537:8;3532:3;3528:18;3522:4;3515:32;3405:153;;;;:::o;9495:130::-;9567:50;9594:4;7602:1;9567:26;:50::i;:::-;9495:130;:::o;9100:181::-;9194:49;9205:4;7552:1;9229:6;:13;9194:10;:49::i;:::-;9254:19;9266:6;9254:4;:11;;:19;;;;:::i;:::-;;9100:181;;:::o;9767:138::-;9840:57;9867:4;7767:1;9840:26;:57::i;:::-;9767:138;:::o;8523:147::-;8624:38;8658:2;8653:1;8643:6;:11;;;;8642:18;8624:4;:11;;:38;;;;:::i;:::-;8523:147;;:::o;7777:738::-;7889:2;7879:6;:12;7875:633;;7908:42;7942:6;7937:1;7927:6;:11;;;;7926:22;;;7908:4;:11;;:42;;;;:::i;:::-;7875:633;;;7982:4;7972:6;:14;7968:540;;8003:38;8037:2;8032:1;8022:6;:11;;;;8021:18;8003:4;:11;;:38;;;;:::i;:::-;8056:25;8071:6;8079:1;8056:4;:14;;:25;;;;;:::i;:::-;;7968:540;;;8113:6;8103;:16;8099:409;;8136:38;8170:2;8165:1;8155:6;:11;;;;8154:18;8136:4;:11;;:38;;;;:::i;:::-;8189:25;8204:6;8212:1;8189:4;:14;;:25;;;;;:::i;:::-;;8099:409;;;8246:10;8236:6;:20;8232:276;;8273:38;8307:2;8302:1;8292:6;:11;;;;8291:18;8273:4;:11;;:38;;;;:::i;:::-;8326:25;8341:6;8349:1;8326:4;:14;;:25;;;;;:::i;:::-;;8232:276;;;8383:18;8373:6;:28;8369:139;;8418:38;8452:2;8447:1;8437:6;:11;;;;8436:18;8418:4;:11;;:38;;;;:::i;:::-;8471:25;8486:6;8494:1;8471:4;:14;;:25;;;;;:::i;:::-;;8369:139;8232:276;8099:409;7968:540;7875:633;7777:738;;;:::o;4213:1241::-;4292:21;;:::i;:::-;4363:4;:13;;;4345:4;:8;;;:15;4330:5;:12;:30;:46;4326:129;;;4393:50;4400:4;4441:1;4406:32;4410:4;:13;;;4425:5;:12;4406:3;:32::i;:::-;:36;4393:6;:50::i;:::-;4326:129;4465:9;4485:8;4504;4515:5;:12;4504:23;;4582:4;4576:11;4658:6;4652:13;4746:2;4737:6;4729;4725:19;4721:28;4713:36;;4870:5;4864:12;4856:6;4852:25;4844:6;4837:41;4934:2;4927:5;4923:14;4916:21;;4547:401;;4958:212;4971:2;4964:3;:9;4958:212;;5090:3;5084:10;5078:4;5071:24;5132:2;5124:10;;;;5156:2;5149:9;;;;4982:2;4975:9;;;;4958:212;;;5180:9;5212:1;5205:3;5200:2;:8;5192:3;:17;:21;5180:33;;5307:4;5303:9;5297:3;5291:10;5287:26;5360:4;5353;5347:11;5343:22;5405:7;5395:8;5392:21;5386:4;5379:35;5257:168;;5442:4;5435:11;;;;;;4213:1241;;;;:::o;5710:586::-;5810:4;:13;;;5806:1;5788:4;:8;;;:15;:19;:35;5784:99;;;5840:31;5847:4;5869:1;5853:4;:13;;;:17;5840:6;:31::i;:::-;5784:99;5937:4;5931:11;6013:6;6007:13;6105:2;6096:6;6088;6084:19;6080:28;6204:5;6198:4;6190:20;6251:1;6243:6;6239:14;6231:6;6224:30;5902:387;;;;;:::o;6598:748::-;6683:21;;:::i;:::-;6746:4;:13;;;6728:4;:8;;;:15;6721:4;:22;:38;6717:113;;;6776:42;6783:4;6816:1;6789:24;6793:4;:13;;;6808:4;6789:3;:24::i;:::-;:28;6776:6;:42::i;:::-;6717:113;6840:9;6866:1;6859:4;6852:3;:11;:15;6840:27;;6922:4;6916:11;6998:6;6992:13;7090:4;7081:6;7073;7069:19;7065:30;7228:5;7220:4;7216:9;7209:4;7203:11;7199:27;7196:38;7190:4;7183:52;7276:4;7268:6;7264:17;7256:6;7249:33;6887:430;;;7334:4;7327:11;;;6598:748;;;;;:::o;3758:151::-;3811:9;3842:2;3837;:7;3833:49;;;3868:2;3861:9;;;;3833:49;3899:2;3892:9;;3758:151;;;;;:::o;3573:177::-;3649:19;3671:4;:8;;;3649:30;;3690:21;3695:4;3701:9;3690:4;:21::i;:::-;3722:20;3729:4;3735:6;3722;:20::i;:::-;;3573:177;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5:130::-;;85:6;72:20;63:29;;97:33;124:5;97:33;;;57:78;;;;;142:134;;226:6;220:13;211:22;;238:33;265:5;238:33;;;205:71;;;;;283:146;;371:6;358:20;349:29;;383:41;418:5;383:41;;;343:86;;;;;436:124;;513:6;500:20;491:29;;525:30;549:5;525:30;;;485:75;;;;;567:128;;648:6;642:13;633:22;;660:30;684:5;660:30;;;627:68;;;;;702:130;;782:6;769:20;760:29;;794:33;821:5;794:33;;;754:78;;;;;839:134;;923:6;917:13;908:22;;935:33;962:5;935:33;;;902:71;;;;;981:440;;1082:3;1075:4;1067:6;1063:17;1059:27;1049:2;;1100:1;1097;1090:12;1049:2;1137:6;1124:20;1159:64;1174:48;1215:6;1174:48;;;1159:64;;;1150:73;;1243:6;1236:5;1229:21;1279:4;1271:6;1267:17;1312:4;1305:5;1301:16;1347:3;1338:6;1333:3;1329:16;1326:25;1323:2;;;1364:1;1361;1354:12;1323:2;1374:41;1408:6;1403:3;1398;1374:41;;;1042:379;;;;;;;;1444:337;;;1559:3;1552:4;1544:6;1540:17;1536:27;1526:2;;1577:1;1574;1567:12;1526:2;1610:6;1597:20;1587:30;;1637:18;1629:6;1626:30;1623:2;;;1669:1;1666;1659:12;1623:2;1703:4;1695:6;1691:17;1679:29;;1754:3;1746:4;1738:6;1734:17;1724:8;1720:32;1717:41;1714:2;;;1771:1;1768;1761:12;1714:2;1519:262;;;;;;1790:442;;1892:3;1885:4;1877:6;1873:17;1869:27;1859:2;;1910:1;1907;1900:12;1859:2;1947:6;1934:20;1969:65;1984:49;2026:6;1984:49;;;1969:65;;;1960:74;;2054:6;2047:5;2040:21;2090:4;2082:6;2078:17;2123:4;2116:5;2112:16;2158:3;2149:6;2144:3;2140:16;2137:25;2134:2;;;2175:1;2172;2165:12;2134:2;2185:41;2219:6;2214:3;2209;2185:41;;;1852:380;;;;;;;;2240:130;;2320:6;2307:20;2298:29;;2332:33;2359:5;2332:33;;;2292:78;;;;;2377:134;;2461:6;2455:13;2446:22;;2473:33;2500:5;2473:33;;;2440:71;;;;;2518:241;;2622:2;2610:9;2601:7;2597:23;2593:32;2590:2;;;2638:1;2635;2628:12;2590:2;2673:1;2690:53;2735:7;2726:6;2715:9;2711:22;2690:53;;;2680:63;;2652:97;2584:175;;;;;2766:263;;2881:2;2869:9;2860:7;2856:23;2852:32;2849:2;;;2897:1;2894;2887:12;2849:2;2932:1;2949:64;3005:7;2996:6;2985:9;2981:22;2949:64;;;2939:74;;2911:108;2843:186;;;;;3036:257;;3148:2;3136:9;3127:7;3123:23;3119:32;3116:2;;;3164:1;3161;3154:12;3116:2;3199:1;3216:61;3269:7;3260:6;3249:9;3245:22;3216:61;;;3206:71;;3178:105;3110:183;;;;;3300:366;;;3421:2;3409:9;3400:7;3396:23;3392:32;3389:2;;;3437:1;3434;3427:12;3389:2;3472:1;3489:53;3534:7;3525:6;3514:9;3510:22;3489:53;;;3479:63;;3451:97;3579:2;3597:53;3642:7;3633:6;3622:9;3618:22;3597:53;;;3587:63;;3558:98;3383:283;;;;;;3673:491;;;;3811:2;3799:9;3790:7;3786:23;3782:32;3779:2;;;3827:1;3824;3817:12;3779:2;3862:1;3879:53;3924:7;3915:6;3904:9;3900:22;3879:53;;;3869:63;;3841:97;3969:2;3987:53;4032:7;4023:6;4012:9;4008:22;3987:53;;;3977:63;;3948:98;4077:2;4095:53;4140:7;4131:6;4120:9;4116:22;4095:53;;;4085:63;;4056:98;3773:391;;;;;;4171:360;;;4289:2;4277:9;4268:7;4264:23;4260:32;4257:2;;;4305:1;4302;4295:12;4257:2;4340:1;4357:53;4402:7;4393:6;4382:9;4378:22;4357:53;;;4347:63;;4319:97;4447:2;4465:50;4507:7;4498:6;4487:9;4483:22;4465:50;;;4455:60;;4426:95;4251:280;;;;;;4538:366;;;4659:2;4647:9;4638:7;4634:23;4630:32;4627:2;;;4675:1;4672;4665:12;4627:2;4710:1;4727:53;4772:7;4763:6;4752:9;4748:22;4727:53;;;4717:63;;4689:97;4817:2;4835:53;4880:7;4871:6;4860:9;4856:22;4835:53;;;4825:63;;4796:98;4621:283;;;;;;4911:235;;5012:2;5000:9;4991:7;4987:23;4983:32;4980:2;;;5028:1;5025;5018:12;4980:2;5063:1;5080:50;5122:7;5113:6;5102:9;5098:22;5080:50;;;5070:60;;5042:94;4974:172;;;;;5153:257;;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5281:1;5278;5271:12;5233:2;5316:1;5333:61;5386:7;5377:6;5366:9;5362:22;5333:61;;;5323:71;;5295:105;5227:183;;;;;5417:263;;5532:2;5520:9;5511:7;5507:23;5503:32;5500:2;;;5548:1;5545;5538:12;5500:2;5583:1;5600:64;5656:7;5647:6;5636:9;5632:22;5600:64;;;5590:74;;5562:108;5494:186;;;;;5687:492;;;;5828:2;5816:9;5807:7;5803:23;5799:32;5796:2;;;5844:1;5841;5834:12;5796:2;5879:1;5896:53;5941:7;5932:6;5921:9;5917:22;5896:53;;;5886:63;;5858:97;6014:2;6003:9;5999:18;5986:32;6038:18;6030:6;6027:30;6024:2;;;6070:1;6067;6060:12;6024:2;6098:65;6155:7;6146:6;6135:9;6131:22;6098:65;;;6088:75;;;;5965:204;5790:389;;;;;;6186:701;;;;6343:2;6331:9;6322:7;6318:23;6314:32;6311:2;;;6359:1;6356;6349:12;6311:2;6394:1;6411:53;6456:7;6447:6;6436:9;6432:22;6411:53;;;6401:63;;6373:97;6529:2;6518:9;6514:18;6501:32;6553:18;6545:6;6542:30;6539:2;;;6585:1;6582;6575:12;6539:2;6605:63;6660:7;6651:6;6640:9;6636:22;6605:63;;;6595:73;;6480:194;6733:2;6722:9;6718:18;6705:32;6757:18;6749:6;6746:30;6743:2;;;6789:1;6786;6779:12;6743:2;6809:62;6863:7;6854:6;6843:9;6839:22;6809:62;;;6799:72;;6684:193;6305:582;;;;;;6894:241;;6998:2;6986:9;6977:7;6973:23;6969:32;6966:2;;;7014:1;7011;7004:12;6966:2;7049:1;7066:53;7111:7;7102:6;7091:9;7087:22;7066:53;;;7056:63;;7028:97;6960:175;;;;;7142:263;;7257:2;7245:9;7236:7;7232:23;7228:32;7225:2;;;7273:1;7270;7263:12;7225:2;7308:1;7325:64;7381:7;7372:6;7361:9;7357:22;7325:64;;;7315:74;;7287:108;7219:186;;;;;7412:399;;;7544:2;7532:9;7523:7;7519:23;7515:32;7512:2;;;7560:1;7557;7550:12;7512:2;7595:1;7612:64;7668:7;7659:6;7648:9;7644:22;7612:64;;;7602:74;;7574:108;7713:2;7731:64;7787:7;7778:6;7767:9;7763:22;7731:64;;;7721:74;;7692:109;7506:305;;;;;;7818:491;;;;7956:2;7944:9;7935:7;7931:23;7927:32;7924:2;;;7972:1;7969;7962:12;7924:2;8007:1;8024:53;8069:7;8060:6;8049:9;8045:22;8024:53;;;8014:63;;7986:97;8114:2;8132:53;8177:7;8168:6;8157:9;8153:22;8132:53;;;8122:63;;8093:98;8222:2;8240:53;8285:7;8276:6;8265:9;8261:22;8240:53;;;8230:63;;8201:98;7918:391;;;;;;8316:142;8407:45;8446:5;8407:45;;;8402:3;8395:58;8389:69;;;8465:137;8564:32;8590:5;8564:32;;;8559:3;8552:45;8546:56;;;8609:184;8726:61;8754:32;8780:5;8754:32;;;8726:61;;;8721:3;8714:74;8708:85;;;8800:113;8883:24;8901:5;8883:24;;;8878:3;8871:37;8865:48;;;8920:104;8997:21;9012:5;8997:21;;;8992:3;8985:34;8979:45;;;9031:152;9132:45;9152:24;9170:5;9152:24;;;9132:45;;;9127:3;9120:58;9114:69;;;9190:343;;9300:38;9332:5;9300:38;;;9350:70;9413:6;9408:3;9350:70;;;9343:77;;9425:52;9470:6;9465:3;9458:4;9451:5;9447:16;9425:52;;;9498:29;9520:6;9498:29;;;9493:3;9489:39;9482:46;;9280:253;;;;;;9540:356;;9668:38;9700:5;9668:38;;;9718:88;9799:6;9794:3;9718:88;;;9711:95;;9811:52;9856:6;9851:3;9844:4;9837:5;9833:16;9811:52;;;9884:6;9879:3;9875:16;9868:23;;9648:248;;;;;;9903:154;10000:51;10045:5;10000:51;;;9995:3;9988:64;9982:75;;;10064:162;10165:55;10214:5;10165:55;;;10160:3;10153:68;10147:79;;;10233:142;10324:45;10363:5;10324:45;;;10319:3;10312:58;10306:69;;;10407:313;;10541:89;10623:6;10618:3;10541:89;;;10534:96;;10642:43;10678:6;10673:3;10666:5;10642:43;;;10707:6;10702:3;10698:16;10691:23;;10527:193;;;;;;10728:347;;10840:39;10873:5;10840:39;;;10891:71;10955:6;10950:3;10891:71;;;10884:78;;10967:52;11012:6;11007:3;11000:4;10993:5;10989:16;10967:52;;;11040:29;11062:6;11040:29;;;11035:3;11031:39;11024:46;;10820:255;;;;;;11083:375;;11243:67;11307:2;11302:3;11243:67;;;11236:74;;11343:34;11339:1;11334:3;11330:11;11323:55;11412:8;11407:2;11402:3;11398:12;11391:30;11449:2;11444:3;11440:12;11433:19;;11229:229;;;;11467:375;;11627:67;11691:2;11686:3;11627:67;;;11620:74;;11727:34;11723:1;11718:3;11714:11;11707:55;11796:8;11791:2;11786:3;11782:12;11775:30;11833:2;11828:3;11824:12;11817:19;;11613:229;;;;11851:371;;12011:67;12075:2;12070:3;12011:67;;;12004:74;;12111:34;12107:1;12102:3;12098:11;12091:55;12180:4;12175:2;12170:3;12166:12;12159:26;12213:2;12208:3;12204:12;12197:19;;11997:225;;;;12231:332;;12391:67;12455:2;12450:3;12391:67;;;12384:74;;12491:34;12487:1;12482:3;12478:11;12471:55;12554:2;12549:3;12545:12;12538:19;;12377:186;;;;12572:374;;12732:67;12796:2;12791:3;12732:67;;;12725:74;;12832:34;12828:1;12823:3;12819:11;12812:55;12901:7;12896:2;12891:3;12887:12;12880:29;12937:2;12932:3;12928:12;12921:19;;12718:228;;;;12954:113;13037:24;13055:5;13037:24;;;13032:3;13025:37;13019:48;;;13074:152;13175:45;13195:24;13213:5;13195:24;;;13175:45;;;13170:3;13163:58;13157:69;;;13233:107;13312:22;13328:5;13312:22;;;13307:3;13300:35;13294:46;;;13347:702;;13575:75;13646:3;13637:6;13575:75;;;13672:2;13667:3;13663:12;13656:19;;13686:91;13773:3;13764:6;13686:91;;;13799:2;13794:3;13790:12;13783:19;;13813:75;13884:3;13875:6;13813:75;;;13910:2;13905:3;13901:12;13894:19;;13924:75;13995:3;13986:6;13924:75;;;14021:2;14016:3;14012:12;14005:19;;14041:3;14034:10;;13563:486;;;;;;;;14056:271;;14209:93;14298:3;14289:6;14209:93;;;14202:100;;14319:3;14312:10;;14190:137;;;;;14334:724;;14607:93;14696:3;14687:6;14607:93;;;14600:100;;14718:93;14807:3;14798:6;14718:93;;;14711:100;;14822:75;14893:3;14884:6;14822:75;;;14919:2;14914:3;14910:12;14903:19;;14940:93;15029:3;15020:6;14940:93;;;14933:100;;15050:3;15043:10;;14588:470;;;;;;;;15065:295;;15230:105;15331:3;15322:6;15314;15230:105;;;15223:112;;15352:3;15345:10;;15211:149;;;;;;15367:392;;15523:75;15594:3;15585:6;15523:75;;;15620:2;15615:3;15611:12;15604:19;;15634:75;15705:3;15696:6;15634:75;;;15731:2;15726:3;15722:12;15715:19;;15751:3;15744:10;;15511:248;;;;;;15766:222;;15893:2;15882:9;15878:18;15870:26;;15907:71;15975:1;15964:9;15960:17;15951:6;15907:71;;;15864:124;;;;;15995:238;;16130:2;16119:9;16115:18;16107:26;;16144:79;16220:1;16209:9;16205:17;16196:6;16144:79;;;16101:132;;;;;16240:254;;16383:2;16372:9;16368:18;16360:26;;16397:87;16481:1;16470:9;16466:17;16457:6;16397:87;;;16354:140;;;;;16501:349;;16664:2;16653:9;16649:18;16641:26;;16678:79;16754:1;16743:9;16739:17;16730:6;16678:79;;;16768:72;16836:2;16825:9;16821:18;16812:6;16768:72;;;16635:215;;;;;;16857:844;;17156:3;17145:9;17141:19;17133:27;;17171:79;17247:1;17236:9;17232:17;17223:6;17171:79;;;17261:72;17329:2;17318:9;17314:18;17305:6;17261:72;;;17344:80;17420:2;17409:9;17405:18;17396:6;17344:80;;;17435;17511:2;17500:9;17496:18;17487:6;17435:80;;;17526:81;17602:3;17591:9;17587:19;17578:6;17526:81;;;17618:73;17686:3;17675:9;17671:19;17662:6;17618:73;;;17127:574;;;;;;;;;;17708:333;;17863:2;17852:9;17848:18;17840:26;;17877:71;17945:1;17934:9;17930:17;17921:6;17877:71;;;17959:72;18027:2;18016:9;18012:18;18003:6;17959:72;;;17834:207;;;;;;18048:210;;18169:2;18158:9;18154:18;18146:26;;18183:65;18245:1;18234:9;18230:17;18221:6;18183:65;;;18140:118;;;;;18265:250;;18406:2;18395:9;18391:18;18383:26;;18420:85;18502:1;18491:9;18487:17;18478:6;18420:85;;;18377:138;;;;;18522:258;;18667:2;18656:9;18652:18;18644:26;;18681:89;18767:1;18756:9;18752:17;18743:6;18681:89;;;18638:142;;;;;18787:744;;19044:3;19033:9;19029:19;19021:27;;19059:79;19135:1;19124:9;19120:17;19111:6;19059:79;;;19186:9;19180:4;19176:20;19171:2;19160:9;19156:18;19149:48;19211:78;19284:4;19275:6;19211:78;;;19203:86;;19337:9;19331:4;19327:20;19322:2;19311:9;19307:18;19300:48;19362:76;19433:4;19424:6;19362:76;;;19354:84;;19449:72;19517:2;19506:9;19502:18;19493:6;19449:72;;;19015:516;;;;;;;;19538:310;;19685:2;19674:9;19670:18;19662:26;;19735:9;19729:4;19725:20;19721:1;19710:9;19706:17;19699:47;19760:78;19833:4;19824:6;19760:78;;;19752:86;;19656:192;;;;;19855:421;;20030:2;20019:9;20015:18;20007:26;;20080:9;20074:4;20070:20;20066:1;20055:9;20051:17;20044:47;20105:78;20178:4;20169:6;20105:78;;;20097:86;;20194:72;20262:2;20251:9;20247:18;20238:6;20194:72;;;20001:275;;;;;;20283:416;;20483:2;20472:9;20468:18;20460:26;;20533:9;20527:4;20523:20;20519:1;20508:9;20504:17;20497:47;20558:131;20684:4;20558:131;;;20550:139;;20454:245;;;;20706:416;;20906:2;20895:9;20891:18;20883:26;;20956:9;20950:4;20946:20;20942:1;20931:9;20927:17;20920:47;20981:131;21107:4;20981:131;;;20973:139;;20877:245;;;;21129:416;;21329:2;21318:9;21314:18;21306:26;;21379:9;21373:4;21369:20;21365:1;21354:9;21350:17;21343:47;21404:131;21530:4;21404:131;;;21396:139;;21300:245;;;;21552:416;;21752:2;21741:9;21737:18;21729:26;;21802:9;21796:4;21792:20;21788:1;21777:9;21773:17;21766:47;21827:131;21953:4;21827:131;;;21819:139;;21723:245;;;;21975:416;;22175:2;22164:9;22160:18;22152:26;;22225:9;22219:4;22215:20;22211:1;22200:9;22196:17;22189:47;22250:131;22376:4;22250:131;;;22242:139;;22146:245;;;;22398:222;;22525:2;22514:9;22510:18;22502:26;;22539:71;22607:1;22596:9;22592:17;22583:6;22539:71;;;22496:124;;;;;22627:214;;22750:2;22739:9;22735:18;22727:26;;22764:67;22828:1;22817:9;22813:17;22804:6;22764:67;;;22721:120;;;;;22848:256;;22910:2;22904:9;22894:19;;22948:4;22940:6;22936:17;23047:6;23035:10;23032:22;23011:18;22999:10;22996:34;22993:62;22990:2;;;23068:1;23065;23058:12;22990:2;23088:10;23084:2;23077:22;22888:216;;;;;23111:321;;23254:18;23246:6;23243:30;23240:2;;;23286:1;23283;23276:12;23240:2;23353:4;23349:9;23342:4;23334:6;23330:17;23326:33;23318:41;;23417:4;23411;23407:15;23399:23;;23177:255;;;;23439:322;;23583:18;23575:6;23572:30;23569:2;;;23615:1;23612;23605:12;23569:2;23682:4;23678:9;23671:4;23663:6;23659:17;23655:33;23647:41;;23746:4;23740;23736:15;23728:23;;23506:255;;;;23768:121;;23861:5;23855:12;23845:22;;23826:63;;;;23896:122;;23990:5;23984:12;23974:22;;23955:63;;;;24026:162;;24140:6;24135:3;24128:19;24177:4;24172:3;24168:14;24153:29;;24121:67;;;;;24197:144;;24332:3;24317:18;;24310:31;;;;;24350:163;;24465:6;24460:3;24453:19;24502:4;24497:3;24493:14;24478:29;;24446:67;;;;;24522:145;;24658:3;24643:18;;24636:31;;;;;24675:91;;24737:24;24755:5;24737:24;;;24726:35;;24720:46;;;;24773:99;;24843:24;24861:5;24843:24;;;24832:35;;24826:46;;;;24879:85;;24952:5;24945:13;24938:21;24927:32;;24921:43;;;;24971:72;;25033:5;25022:16;;25016:27;;;;25050:121;;25123:42;25116:5;25112:54;25101:65;;25095:76;;;;25178:72;;25240:5;25229:16;;25223:27;;;;25257:81;;25328:4;25321:5;25317:16;25306:27;;25300:38;;;;25345:129;;25432:37;25463:5;25432:37;;;25419:50;;25413:61;;;;25481:149;;25574:51;25619:5;25574:51;;;25561:64;;25555:75;;;;25637:122;;25730:24;25748:5;25730:24;;;25717:37;;25711:48;;;;25766:157;;25863:55;25912:5;25863:55;;;25850:68;;25844:79;;;;25930:126;;26027:24;26045:5;26027:24;;;26014:37;;26008:48;;;;26063:116;;26150:24;26168:5;26150:24;;;26137:37;;26131:48;;;;26186:121;;26265:37;26296:5;26265:37;;;26252:50;;26246:61;;;;26314:108;;26393:24;26411:5;26393:24;;;26380:37;;26374:48;;;;26430:145;26511:6;26506:3;26501;26488:30;26567:1;26558:6;26553:3;26549:16;26542:27;26481:94;;;;26584:268;26649:1;26656:101;26670:6;26667:1;26664:13;26656:101;;;26746:1;26741:3;26737:11;26731:18;26727:1;26722:3;26718:11;26711:39;26692:2;26689:1;26685:10;26680:15;;26656:101;;;26772:6;26769:1;26766:13;26763:2;;;26837:1;26828:6;26823:3;26819:16;26812:27;26763:2;26633:219;;;;;26860:103;;26932:26;26952:5;26932:26;;;26921:37;;26915:48;;;;26970:74;;27034:5;27023:16;;27017:27;;;;27051:89;;27115:20;27129:5;27115:20;;;27104:31;;27098:42;;;;27147:74;;27211:5;27200:16;;27194:27;;;;27228:97;;27316:2;27312:7;27307:2;27300:5;27296:14;27292:28;27282:38;;27276:49;;;;27333:94;;27411:5;27407:2;27403:14;27381:36;;27375:52;;;;27435:117;27504:24;27522:5;27504:24;;;27497:5;27494:35;27484:2;;27543:1;27540;27533:12;27484:2;27478:74;;27559:133;27636:32;27662:5;27636:32;;;27629:5;27626:43;27616:2;;27683:1;27680;27673:12;27616:2;27610:82;;27699:111;27765:21;27780:5;27765:21;;;27758:5;27755:32;27745:2;;27801:1;27798;27791:12;27745:2;27739:71;;27817:117;27886:24;27904:5;27886:24;;;27879:5;27876:35;27866:2;;27925:1;27922;27915:12;27866:2;27860:74;;27941:117;28010:24;28028:5;28010:24;;;28003:5;28000:35;27990:2;;28049:1;28046;28039:12;27990:2;27984:74;

Swarm Source

ipfs://2bd2da20292581bf020a6ad6572357033d5d7dc3cf39d484150f56a1cde049a6
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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