ETH Price: $3,425.72 (-0.43%)
Gas: 2 Gwei

Token

B2E NFT (B2ENFT)
 

Overview

Max Total Supply

69 B2ENFT

Holders

29

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
cybourgeoisie.eth
Balance
1 B2ENFT
0x9eE5E3Ff06425CF972E77c195F70Ecb18aC23d7f
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:
NFT_Token

Compiler Version
v0.5.11+commit.c082d0b4

Optimization Enabled:
Yes with 200 runs

Other Settings:
petersburg EvmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-11-13
*/

pragma solidity ^0.5.10;

// Helps manage OpenSea trading
contract OwnableDelegateProxy { }
contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies;}

// Helps interact with the Nexium contract without including it in this file.
interface NxcInterface { function transfer(address _to, uint256 _value) external returns(bool);
	function transferFrom(address _from, address _to, uint256 _value) external returns(bool);
	function totalSupply() external view returns(uint256);}
 
// Checks overflow and more 
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot 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-contracts/pull/522
        if (a == 0) {
            return 0;
        }

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

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, "SafeMath: division by zero");
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0, "SafeMath: modulo by zero");
        return a % b;
    }
}

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * [EIP](https://eips.ethereum.org/EIPS/eip-165).
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others (`ERC165Checker`).
 *
 * For an implementation, see `ERC165`.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

contract tokenSpender { 
    function receiveApproval(address _from, uint256 _value, address _token, bytes memory _extraData) public;
    }

/**
 * @dev Collection of functions related to the address type,
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * This test is non-exhaustive, and there may be false-negatives: during the
     * execution of a contract's constructor, its address will be reported as
     * not containing a contract.
     *
     * > It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }
}

/**
 * @dev Implementation of the `IERC165` interface.
 *
 * Contracts may inherit from this and call `_registerInterface` to declare
 * their support of an interface.
 */
contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () internal {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See `IERC165.supportsInterface`.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See `IERC165.supportsInterface`.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
contract IERC721Receiver {
    /**
     * @notice Handle the receipt of an NFT
     * @dev The ERC721 smart contract calls this function on the recipient
     * after a `safeTransfer`. This function MUST return the function selector,
     * otherwise the caller will revert the transaction. The selector to be
     * returned can be obtained as `this.onERC721Received.selector`. This
     * function MAY throw to revert and reject the transfer.
     * Note: the ERC721 contract address is always the message sender.
     * @param operator The address which called `safeTransferFrom` function
     * @param from The address which previously owned the token
     * @param tokenId The NFT identifier which is being transferred
     * @param data Additional data with no specified format
     * @return bytes4 `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
     */
    function onERC721Received(address operator, address from, uint256 tokenId, bytes memory data)
    public returns (bytes4);
}

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

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

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

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

    function uint2str(uint i) internal pure returns (string memory) {
        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);
    }
}

contract IProxyContractForMetaTxs {
// Interface taken from the implementation by Austin Griffith
// https://github.com/austintgriffith/bouncer-proxy/blob/master/BouncerProxy/BouncerProxy.sol

  function updateWhitelist(address _account, bool _value) public returns(bool);
  
  event UpdateWhitelist(address _account, bool _value);
  // copied from https://github.com/uport-project/uport-identity/blob/develop/contracts/Proxy.sol
  
  function () external payable;
  
  event Received (address indexed sender, uint value);

  function getHash(address signer, address destination, uint value, bytes memory data, address rewardToken, uint rewardAmount) public view returns(bytes32);
  
  // original forward function copied from https://github.com/uport-project/uport-identity/blob/develop/contracts/Proxy.sol
  function forward(bytes memory sig, address signer, address destination, uint value, bytes memory data, address rewardToken, uint rewardAmount) public;
  
  // when some frontends see that a tx is made from a bouncerproxy, they may want to parse through these events to find out who the signer was etc
  event Forwarded (bytes sig, address signer, address destination, uint value, bytes data,address rewardToken, uint rewardAmount,bytes32 _hash);

  // copied from https://github.com/uport-project/uport-identity/blob/develop/contracts/Proxy.sol
  // which was copied from GnosisSafe
  // https://github.com/gnosis/gnosis-safe-contracts/blob/master/contracts/GnosisSafe.sol
  function executeCall(address to, uint256 value, bytes memory data) internal returns (bool success);

  //borrowed from OpenZeppelin's ESDA stuff:
  //https://github.com/OpenZeppelin/openzeppelin-solidity/blob/master/contracts/cryptography/ECDSA.sol
  function signerIsWhitelisted(bytes32 _hash, bytes memory _signature) internal view returns (bool);
}

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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * > Note: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

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

/**
 * This is a generic factory contract that can be used to mint tokens. The configuration
 * for minting is specified by an _optionId, which can be used to delineate various 
 * ways of minting.
 */
interface Factory {
  /**
   * Returns the name of this factory.
   */
  function name() external view returns (string memory);

  /**
   * Returns the symbol for this factory.
   */
  function symbol() external view returns (string memory);

  /**
   * Number of options the factory supports.
   */
  function numOptions() external view returns (uint256);

  /**
   * @dev Returns whether the option ID can be minted. Can return false if the developer wishes to
   * restrict a total supply per option ID (or overall).
   */
  function canMint(uint256 _optionId) external view returns (bool);

  /**
   * @dev Returns a URL specifying some metadata about the option. This metadata can be of the
   * same structure as the ERC721 metadata.
   */
  function tokenURI(uint256 _optionId) external view returns (string memory);

  /**
   * Indicates that this is a factory contract. Ideally would use EIP 165 supportsInterface()
   */
  function supportsFactoryInterface() external view returns (bool);

  /**
    * @dev Mints asset(s) in accordance to a specific address with a particular "option". This should be 
    * callable only by the contract owner or the owner's Wyvern Proxy (later universal login will solve this).
    * Options should also be delineated 0 - (numOptions() - 1) for convenient indexing.
    * @param _optionId the option id
    * @param _toAddress address of the future owner of the asset(s)
    */
  function mint(uint256 _optionId, address _toAddress) external;
}

contract IProxyContractForBurn {
    function setnxcAddress(address new_address) public;
    function burnNxCtoMintAssets(uint256 nbOfAsset, string[] memory keys, string[] memory values) public view returns (uint256);
}

library Helpers {
  function parseBytesToStringArr(bytes memory b, uint256 globalOffset) internal pure returns (string[] memory)
  {
	uint256 nbOfStrings = sliceUint(b, globalOffset);
	string[] memory stringArr = new string[](nbOfStrings);
	
	uint256[] memory offsetArr = new uint256[](nbOfStrings);
	uint256[] memory stringLengths = new uint256[](nbOfStrings);
	
	for (uint256 i = 0; i < nbOfStrings; i++)
	{
		offsetArr[i] = sliceUint(b, globalOffset + 32 + 32 * i);
	}
	
	for (uint256 i = 0; i < nbOfStrings; i++)
	{
		stringLengths[i] = sliceUint(b, globalOffset + 32 + offsetArr[i]);
		require(stringLengths[i] <= 32); // No string more than a bytes32

		stringArr[i] = bytes32ToString(bytesToBytes32(b, globalOffset + 64 + offsetArr[i]),stringLengths[i]);
	}
	
	return stringArr;
  }  
  
	function bytesToBytes32(bytes memory b, uint offset) internal pure returns (bytes32) {
	  bytes32 out;

	  for (uint i = 0; i < 32; i++) {
		out |= bytes32(b[offset + i] & 0xFF) >> (i * 8);
	  }
	  return out;
	}
	
    function uintToBytes32(uint v) internal pure returns (bytes32 ret) {
    if (v == 0) {
        ret = '0';
    }
    else {
        while (v > 0) {
            ret = bytes32(uint(ret) / (2 ** 8));
            ret |= bytes32(((v % 10) + 48) * 2 ** (8 * 31));
            v /= 10;
        }
    }
    return ret;
    }
    
    function bytes32ToString(bytes32 data) internal pure returns (string memory) {
		bytes memory bytesString = new bytes(32);
		for (uint j=0; j<32; j++) {
			byte char = byte(bytes32(uint(data) * 2 ** (8 * j)));
			if (char != 0) {
				bytesString[j] = char;
			}
		}
		return string(bytesString);
	}
	
    function bytes32ToString(bytes32 data, uint _length) internal pure returns (string memory) {
		bytes memory bytesString = new bytes(_length);
		for (uint j=0; j<_length; j++) {
			byte char = byte(bytes32(uint(data) * 2 ** (8 * j)));
			if (char != 0) {
				bytesString[j] = char;
			}
		}
		return string(bytesString);
	}
	
	function bytesToUint(bytes memory b)  internal pure returns (uint256){
        uint256 number;
        for(uint i=0;i<b.length;i++){
            number = number + uint256(uint8(b[i]))*(2**(8*(b.length-(i+1))));
        }
        return number;
    }

    function sliceUint(bytes memory bs, uint start) internal pure returns (uint) {
    require(bs.length >= start + 32, "slicing out of range");
    uint x;
    assembly {
        x := mload(add(bs, add(0x20, start)))
    }
    return x;
	}
    
    function strConcat(string memory _a, string memory _b) internal pure returns (string memory) {
    bytes memory _ba = bytes(_a);
    bytes memory _bb = bytes(_b);
    string memory ab = new string(_ba.length + _bb.length);
    bytes memory babc = bytes(ab);
    uint k = 0;
    for (uint i = 0; i < _ba.length; i++) babc[k++] = _ba[i];
    for (uint i = 0; i < _bb.length; i++) babc[k++] = _bb[i];
    return string(babc); }
	
	function uint256ArrayConcat(uint256[] memory _a, uint256[] memory _b) internal pure returns (uint256[] memory)
	{
		uint256[] memory _c = new uint256[](_a.length + _b.length);
		
		for (uint256 i=0; i < _a.length; i++) {
            _c[i] = _a[i];
        }
		for (uint256 i=0; i < _b.length; i++) {
            _c[_a.length+i] = _b[i];
        }
		
		return _c;
	}
}

/* Contract used for alloing shared ownership of a contract
* Can be configured to have 1 or many approvals needed for a tx to execute.
* (i.e. works like any multisig wallet)
*/
contract MultiSigOwnable {

    uint256 private nbApprovalsNeeded;
    address[] private ownerList;
    
    bytes4[] private functionSignatureHashList;
    bytes32 private Current_functionCallHash;
    bytes private Current_functionCall;
    bytes4 private Current_functionSig;
    
    address[] private Current_Approvals;

    event MultiSigOwnerTransactionCleared(bytes4 FuncSelector);
    
    modifier onlyMultiSigOwners() {
      require(msg.sender == address(this));
    
      bytes4 funcSelector;
      bytes memory msg_data = msg.data;
      assembly {
              funcSelector := mload(add(msg_data, 32))
          }
          
      if(!isRegistered(funcSelector))
      {
        registerMultiOwnableFunction(funcSelector);
      }
      
      _;
    }
    
    constructor (uint256 _nbApprovalsNeeded, address[] memory _ownerList) internal {
      require(_ownerList.length >= 1);
      require(_nbApprovalsNeeded >=1);
      
      for (uint256 i = 0; i < _ownerList.length; i++)
      {
          if(!isInOwnerList(_ownerList[i]))
          {
              ownerList.push(_ownerList[i]);
          }
      }
      
      nbApprovalsNeeded = _nbApprovalsNeeded;
      }
    
    function isInOwnerList(address _sender) view public returns (bool)	{
      
      for (uint256 i = 0; i < ownerList.length; i++)
      {
        if (_sender == ownerList[i])
          return true;
      }
      return false;	
    }
    
    function addOwnerToList(address _addOwner) public onlyMultiSigOwners() {
      ownerList.push(_addOwner);
    }
    
    function updateApprovalsNeeded(uint256 _nbApprovalsNeeded) public onlyMultiSigOwners() {
      nbApprovalsNeeded = _nbApprovalsNeeded;
    }
    
    function isInApprovalList(address _sender) view internal returns (bool) {
      
      for (uint256 i = 0; i < Current_Approvals.length; i++)
      {
        if (_sender == Current_Approvals[i])
          return true;
      }
      return false;	
    }
    
    function registerMultiOwnableFunction(bytes4 _functionSignatureHash) public
    {
      functionSignatureHashList.push(_functionSignatureHash);
    }
    
    function removeOwner(address _ownerToRemove) public onlyMultiSigOwners() {
        require(isInOwnerList(_ownerToRemove), "Remove owner - Not in owner list");
      
        bool _ownerToRemoveFound = false;
      
        for (uint256 i = 0; i < ownerList.length - 1; i++)
      {
        if (ownerList[i] == _ownerToRemove)
        {
          _ownerToRemoveFound = true;
        }
        if (_ownerToRemoveFound)
        {
          ownerList[i] = ownerList[i+1];
        }
      }
      ownerList.length--;
    }
    
    function initialCall(bytes memory functionCall) public returns (bytes32) {
      require(isInOwnerList(msg.sender), "Initial call - Not in owner list");
      
      Current_functionCallHash = keccak256(functionCall);
      Current_functionCall = functionCall;
      
      delete Current_Approvals;

      Current_Approvals.push(msg.sender);
      
      bytes4 funcSelector;

      assembly {
        funcSelector := mload(add(functionCall, 32))
      }
          
      Current_functionSig = funcSelector;
        
      
      if(nbApprovalsNeeded == 1)
      {
        address(this).call(functionCall);
        
        if (!isRegistered(funcSelector))
        {
          revert("initialCall - Called a function without the onlyMultiSigOwners modifier");
        }
        
        emit MultiSigOwnerTransactionCleared(funcSelector);
      }
      
      return Current_functionCallHash;
    }
    
    function isRegistered(bytes4 _functionSignatureHash) public view returns (bool) {

      for (uint256 i = 0; i < functionSignatureHashList.length; i++)
      {
        if (functionSignatureHashList[i] == _functionSignatureHash)
        {
          return true;
        }
      }
      return false;
    }
    
    function approve_tx(bytes32 _callDataHash) public {
      require(isInOwnerList(msg.sender), "Approve - Not in owner list");
        require(!isInApprovalList(msg.sender));
    
      if (_callDataHash == Current_functionCallHash)
      {
        Current_Approvals.push(msg.sender);
      }
      
      if (Current_Approvals.length >= nbApprovalsNeeded)
      {
        address(this).call(Current_functionCall);
        
        if (!isRegistered(Current_functionSig))
        {
          revert("approve - Called a function without the onlyMultiSigOwners modifier");
        }
        
        emit MultiSigOwnerTransactionCleared(Current_functionSig);
      }
    }
}

interface IProxyForKYCWhitelist {
	function isWhitelisted(address _addr) external view returns (bool);
}

contract ProxyForKYCWhitelistEveryoneIsWhitelisted is IProxyForKYCWhitelist {
	
	// By default, allow everyone to buy LTR assets
	function isWhitelisted(address _addr) public view returns (bool)
	{
		return true;
	}
}

contract ProxyForKYCWhitelistOnlySpecifiedPeopleAreWhitelisted is IProxyForKYCWhitelist, MultiSigOwnable {
  mapping(address => bool) whitelisted;

  constructor (uint256 nbApprovalsNeeded, address[] memory _ownerList) MultiSigOwnable(nbApprovalsNeeded, _ownerList) public
  {
    for (uint256 i = 0; i < _ownerList.length; i++)
    {
      whitelisted[_ownerList[i]] = true;
    }
  }

	function setWhitelistedStatus(address _addr, bool whitelisted_status) public onlyMultiSigOwners() {
    whitelisted[_addr] = whitelisted_status;
  }
  
	function setNWhitelistedStatus(address[] memory _addresses, bool whitelisted_status) public onlyMultiSigOwners() {
    for (uint256 i = 0; i < _addresses.length; i++)
    {
      whitelisted[_addresses[i]] = whitelisted_status;
    }
  }

	function isWhitelisted(address _addr) public view returns (bool)
	{
		return whitelisted[_addr];
	}
}

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
contract IERC721 is IERC165 {
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of NFTs in `owner`'s account.
     */
    function balanceOf(address owner) public view returns (uint256 balance);

    /**
     * @dev Returns the owner of the NFT specified by `tokenId`.
     */
    function ownerOf(uint256 tokenId) public view returns (address owner);

    /**
     * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to
     * another (`to`).
     *
     * 
     *
     * Requirements:
     * - `from`, `to` cannot be zero.
     * - `tokenId` must be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this
     * NFT by either `approve` or `setApproveForAll`.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public;
    /**
     * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to
     * another (`to`).
     *
     * Requirements:
     * - If the caller is not `from`, it must be approved to move this NFT by
     * either `approve` or `setApproveForAll`.
     */
    function transferFrom(address from, address to, uint256 tokenId) public;
    function approve(address to, uint256 tokenId) public;
    function getApproved(uint256 tokenId) public view returns (address operator);

    function setApprovalForAll(address operator, bool _approved) public;
    function isApprovedForAll(address owner, address operator) public view returns (bool);


    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public;
}

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 * Since it is not possible to overflow a 256 bit integer with increments of one, `increment` can skip the SafeMath
 * overflow check, thereby saving gas. This does assume however correct usage, in that the underlying `_value` is never
 * directly accessed.
 */
library Counters {
    using SafeMath for uint256;

    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        counter._value += 1;
    }

    function decrement(Counter storage counter) internal {
        counter._value = counter._value.sub(1);
    }
}

/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721 is ERC165, IERC721 {
    using SafeMath for uint256;
    using Address for address;
    using Counters for Counters.Counter;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

    // Mapping from token ID to owner
    mapping (uint256 => address) private _tokenOwner;

    // Mapping from token ID to approved address
    mapping (uint256 => address) private _tokenApprovals;

    // Mapping from owner to number of owned token
    mapping (address => Counters.Counter) private _ownedTokensCount;

    // Mapping from owner to operator approvals
    mapping (address => mapping (address => bool)) private _operatorApprovals;

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    constructor () public {
        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
    }

    /**
     * @dev Gets the balance of the specified address.
     * @param owner address to query the balance of
     * @return uint256 representing the amount owned by the passed address
     */
    function balanceOf(address owner) public view returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");

        return _ownedTokensCount[owner].current();
    }

    /**
     * @dev Gets the owner of the specified token ID.
     * @param tokenId uint256 ID of the token to query the owner of
     * @return address currently marked as the owner of the given token ID
     */
    function ownerOf(uint256 tokenId) public view returns (address) {
        address owner = _tokenOwner[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");

        return owner;
    }

    /**
     * @dev Approves another address to transfer the given token ID
     * The zero address indicates there is no approved address.
     * There can only be one approved address per token at a given time.
     * Can only be called by the token owner or an approved operator.
     * @param to address to be approved for the given token ID
     * @param tokenId uint256 ID of the token to be approved
     */
    function approve(address to, uint256 tokenId) public {
        address owner = ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(msg.sender == owner || isApprovedForAll(owner, msg.sender),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Gets the approved address for a token ID, or zero if no address set
     * Reverts if the token ID does not exist.
     * @param tokenId uint256 ID of the token to query the approval of
     * @return address currently approved for the given token ID
     */
    function getApproved(uint256 tokenId) public view returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev Sets or unsets the approval of a given operator
     * An operator is allowed to transfer all tokens of the sender on their behalf.
     * @param to operator address to set the approval
     * @param approved representing the status of the approval to be set
     */
    function setApprovalForAll(address to, bool approved) public {
        require(to != msg.sender, "ERC721: approve to caller");

        _operatorApprovals[msg.sender][to] = approved;
        emit ApprovalForAll(msg.sender, to, approved);
    }

    /**
     * @dev Tells whether an operator is approved by a given owner.
     * @param owner owner address which you want to query the approval of
     * @param operator operator address which you want to query the approval of
     * @return bool whether the given operator is approved by the given owner
     */
    function isApprovedForAll(address owner, address operator) public view returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev Transfers the ownership of a given token ID to another address.
     * Usage of this method is discouraged, use `safeTransferFrom` whenever possible.
     * Requires the msg.sender to be the owner, approved, or operator.
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     */
    function transferFrom(address from, address to, uint256 tokenId) public {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(msg.sender, tokenId), "ERC721: transfer caller is not owner nor approved");

        _transferFrom(from, to, tokenId);
    }

    /**
     * @dev Safely transfers the ownership of a given token ID to another address
     * If the target address is a contract, it must implement `onERC721Received`,
     * which is called upon a safe transfer, and return the magic value
     * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
     * the transfer is reverted.
     * Requires the msg.sender to be the owner, approved, or operator
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev Safely transfers the ownership of a given token ID to another address
     * If the target address is a contract, it must implement `onERC721Received`,
     * which is called upon a safe transfer, and return the magic value
     * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
     * the transfer is reverted.
     * Requires the msg.sender to be the owner, approved, or operator
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes data to send along with a safe transfer check
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public {
        transferFrom(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether the specified token exists.
     * @param tokenId uint256 ID of the token to query the existence of
     * @return bool whether the token exists
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        address owner = _tokenOwner[tokenId];
        return owner != address(0);
    }

    /**
     * @dev Returns whether the given spender can transfer a given token ID.
     * @param spender address of the spender to query
     * @param tokenId uint256 ID of the token to be transferred
     * @return bool whether the msg.sender is approved for the given token ID,
     * is an operator of the owner, or is the owner of the token
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Internal function to mint a new token.
     * Reverts if the given token ID already exists.
     * @param to The address that will own the minted token
     * @param tokenId uint256 ID of the token to be minted
     */
    function _mint(address to, uint256 tokenId) internal {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _tokenOwner[tokenId] = to;
        _ownedTokensCount[to].increment();

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * Deprecated, use _burn(uint256) instead.
     * @param owner owner of the token to burn
     * @param tokenId uint256 ID of the token being burned
     */
    function _burn(address owner, uint256 tokenId) internal {
        require(ownerOf(tokenId) == owner, "ERC721: burn of token that is not own");

        _clearApproval(tokenId);

        _ownedTokensCount[owner].decrement();
        _tokenOwner[tokenId] = address(0);

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * @param tokenId uint256 ID of the token being burned
     */
    function _burn(uint256 tokenId) internal {
        _burn(ownerOf(tokenId), tokenId);
    }

    /**
     * @dev Internal function to transfer ownership of a given token ID to another address.
     * As opposed to transferFrom, this imposes no restrictions on msg.sender.
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     */
    function _transferFrom(address from, address to, uint256 tokenId) internal {
        require(ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _clearApproval(tokenId);

        _ownedTokensCount[from].decrement();
        _ownedTokensCount[to].increment();

        _tokenOwner[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Internal function to invoke `onERC721Received` on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * This function is deprecated.
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        internal returns (bool)
    {
        if (!to.isContract()) {
            return true;
        }

        bytes4 retval = IERC721Receiver(to).onERC721Received(msg.sender, from, tokenId, _data);
        return (retval == _ERC721_RECEIVED);
    }

    /**
     * @dev Private function to clear current approval of a given token ID.
     * @param tokenId uint256 ID of the token to be transferred
     */
    function _clearApproval(uint256 tokenId) private {
        if (_tokenApprovals[tokenId] != address(0)) {
            _tokenApprovals[tokenId] = address(0);
        }
    }
}

contract NFT_Factory is Factory, Ownable, MultiSigOwnable {
  using Strings for string;

  address payable nftAddress;
  address public listingAddress;
  
  address public proxyRegistryAddress;
  address public proxyContractForBurnAddress;
  address public proxyContractForMetatxsAddress;
  mapping(uint256 => uint256) public nbAssetMaxPerOptionID;
  mapping(uint256 => uint256) public nbAssetPerOptionID;
  mapping(uint256 => address) public minterForOptionID;
  mapping(uint256 => address) public addressForUGCForOptionID;
  mapping(uint256 => uint256) public tokenIDsToNonUniqueTokenID;

  address public nexiumAddress;
  string public baseURI;
  uint256 NUM_OPTIONS;
  
  struct KeyValue {
	uint256 _index;
	string _key;
	string _value;}
  
  mapping (uint256 => KeyValue[]) public KeyValueArrayOptionID;
  mapping (uint256 => mapping(string => KeyValue)) public KeyValueMappingOptionID;
  mapping (uint256 => KeyValue[]) public KeyValueArrayOptionIDOnCreation;
  mapping (uint256 => mapping(string => KeyValue)) public KeyValueMappingOptionIDOnCreation;
  mapping (uint256 => KeyValue[]) public KeyValueArrayTokenID;
  mapping (uint256 => mapping(string => KeyValue)) public KeyValueMappingTokenID;
  
  mapping(uint256 => address) whitelistContractAddresses;
  address public defaultWhitelistContractAddresses;
  mapping(uint256 => uint256[]) public bundlesDefinition;
  mapping(uint256 => bool) public isBundle;
	
  event NewAssetCreated(address minter, uint256 optionID, uint256 nbAssetMintedMax);
  event NewAssetMinted(address minter, address _to, uint256 optionID, uint256 tokenID);
  
  constructor(address _proxyRegistryAddress, address payable _nftAddress, address _listingAddress, string memory _baseURI, address _proxyContractForBurnAddress, address _proxyContractForMetatxsAddress, address _nexiumAddress, address _defaultWhitelistContractAddresses, uint256 _nbApprovalNeeded, address[] memory _ownerList) 
	Ownable() MultiSigOwnable(_nbApprovalNeeded, _ownerList) public {
	proxyContractForBurnAddress =  _proxyContractForBurnAddress;
    proxyContractForMetatxsAddress = _proxyContractForMetatxsAddress;
	proxyRegistryAddress = _proxyRegistryAddress;
    nftAddress = _nftAddress;
	baseURI = _baseURI;    
	listingAddress = _listingAddress;
	nexiumAddress = _nexiumAddress;
	NUM_OPTIONS = 0;
	defaultWhitelistContractAddresses = _defaultWhitelistContractAddresses;
  }
  
  function setProxyContractForBurnAddress (address _new_address) public onlyMultiSigOwners() {
      proxyContractForBurnAddress = _new_address;
  }
  
  function setdefaultWhitelistContractAddresses (address _new_address) public onlyMultiSigOwners() {
      defaultWhitelistContractAddresses = _new_address;
  }
  
  function setProxyContractForMetatxsAddress (address _new_address) public onlyMultiSigOwners() {
      proxyContractForMetatxsAddress = _new_address;
  }
  
  function setnftAddress (address payable _new_address) public onlyMultiSigOwners() {
      nftAddress = _new_address;
  }
  
   function setnxcAddress(address _new_address) public onlyMultiSigOwners() {
		nexiumAddress = _new_address;
  }
	
  function setlistingAddress (address _new_address) public onlyMultiSigOwners() {
      listingAddress = _new_address;
  }
    
  function setbaseURI (string memory _new_baseURI) public onlyMultiSigOwners() {
      baseURI = _new_baseURI;
  }
 
  function name() external view returns (string memory) {
    return "B2E NFT Sale";
  }

  function symbol() external view returns (string memory) {
    return "B2ENFTS";
  }

  function supportsFactoryInterface() public view returns (bool) {
    return true;
  }

  function numOptions() public view returns (uint256) {
    return NUM_OPTIONS;
  }

  function receiveApproval(address _from, uint256 _value, address _token, bytes memory _extraData) public  {
	   require(_token == nexiumAddress);
	   require(_extraData.length >= 4); // We need at least the functionSelector;
	   
	    bytes4 funcSelector = 0x0;
	    
        if (_extraData.length == 0) {
            funcSelector = 0x0;
        }

        assembly {
            funcSelector := mload(add(_extraData, 32))
        }
        
        if (funcSelector == bytes4(keccak256("createNewOptionID(uint256,address)")))
        {
			revert("Please put empty keys and values args");
			/*uint256 nbOfAsset = Helpers.sliceUint(_extraData, 4);
			address _minter = address(Helpers.sliceUint(_extraData, 36));

			createNewOptionID(nbOfAsset, _minter);
			
			NxcInterface nexiumContract = NxcInterface(address(nexiumAddress));

			require(_value >= CallProxyForNxCBurn(nbOfAsset), "Not enough NXC!");*/
        }
		else if (funcSelector == bytes4(keccak256("createNewOptionID(uint256,address,string[],string[])")))
		{

			// Check extraData length
			
			uint256 nbOfAsset = Helpers.sliceUint(_extraData, 4);
			address _minter = address(Helpers.sliceUint(_extraData, 36));
			
			uint256 keysOffset = Helpers.sliceUint(_extraData, 68) + 4; // we have to account for the bytes4 selector
			uint256 valuesOffset = Helpers.sliceUint(_extraData, 100) + 4;
			
			uint256 nbOfKeys = Helpers.sliceUint(_extraData, keysOffset);
			uint256 nbOfValues = Helpers.sliceUint(_extraData, valuesOffset);
			
			require(nbOfValues == nbOfKeys);
			
			string[] memory keys = Helpers.parseBytesToStringArr(_extraData, keysOffset);
			string[] memory values = Helpers.parseBytesToStringArr(_extraData, valuesOffset);
			
			createNewOptionID(nbOfAsset, _minter, keys, values);
			
			require(_value >= CallProxyForNxCBurn(nbOfAsset, keys, values), "Not enough NXC!");
        }
        else
        {
            revert("Unknown function called through receiveApproval");
        }
		
		NxcInterface nexiumContract = NxcInterface(address(nexiumAddress));
		if(!nexiumContract.transferFrom(_from, address(this), _value))
		{
			revert("notEnoughNxCSent");
		}
			
	    return;
  }

  // Retrieves the formula for the number of NxC to burn to create a new asset type:

    function CallProxyForNxCBurn(uint256 nbOfAsset, string[] memory keys, string[] memory values) public view returns (uint256) {
		
      ProxyContractForBurn _proxyContractForBurn = ProxyContractForBurn(proxyContractForBurnAddress);
      
      uint256 nbNxCToBurn = _proxyContractForBurn.burnNxCtoMintAssets(nbOfAsset, keys, values);
	    
      return nbNxCToBurn;
  }
 

    // As we need to burn NxC, you can't call this function directly
  function createNewOptionID(uint256 nbAssetMaxToMint, address _minter, string[] memory keys, string[] memory values) internal {
  
      uint256 _optionID = NUM_OPTIONS;
      require(nbAssetMaxPerOptionID[_optionID] == 0);
      
	  nbAssetPerOptionID[_optionID] = 0;
      nbAssetMaxPerOptionID[_optionID] = nbAssetMaxToMint;
	  minterForOptionID[_optionID] = _minter;

		require(keys.length == values.length);
		
		for (uint256 i = 0; i < keys.length; i++)
		{
			string memory _key = keys[i];
			string memory _value = values[i];
		
		
		    KeyValue memory keyValueForThisKey = KeyValueMappingOptionIDOnCreation[_optionID][_key];

			uint256 index;
			KeyValue memory newKeyValue;
			
			// Check if the key already set or not
			if (bytes(keyValueForThisKey._key).length == 0)
			{
			  index = KeyValueArrayOptionIDOnCreation[_optionID].length;
			  newKeyValue = KeyValue(index, _key, _value);
			  KeyValueArrayOptionIDOnCreation[_optionID].push(newKeyValue);
			}	
			else
			{
			  index = keyValueForThisKey._index;
			  newKeyValue = KeyValue(index, _key, _value);
			  KeyValueArrayOptionIDOnCreation[_optionID][index] = newKeyValue;
			}
			
			KeyValueMappingOptionIDOnCreation[_optionID][_key] = newKeyValue;
		}
    
      
	  emit NewAssetCreated(_minter, _optionID, nbAssetMaxToMint);
	  
	  whitelistContractAddresses[_optionID] = defaultWhitelistContractAddresses;
	  
      NUM_OPTIONS = NUM_OPTIONS + 1;
  }
  
  function setWhitelistContractAddressForOptionID(uint256 _optionID, address _new_address) public {
	require(msg.sender == minterForOptionID[_optionID]);
	
	whitelistContractAddresses[_optionID] = _new_address;
  }
  
  
   function transferMintership(uint256 _optionID, address _new_minter) public {
	require(msg.sender == minterForOptionID[_optionID]);
	minterForOptionID[_optionID] = _new_minter;
  }
  
   function ownerOf(uint256 _optionID) public view returns (address) {
	return minterForOptionID[_optionID];
	//return owner();
  }
  
  function mintWithTokenURI(uint256 _optionId, address _toAddress, uint256 _category, string calldata _tokenURI) external returns (uint256)
  {
	uint256 tokenID = this.mintCat(_optionId, _toAddress, _category);
	
    NFT_Token itemContract = NFT_Token(nftAddress);

	itemContract.setTokenURI(tokenID, _tokenURI);
  }
  
	// Lets the asset creator to store onchain some properties for the asset
  function setOptionIdPropriety(uint256 _optionID, string memory _key, string memory _value) public
  {
    require(msg.sender == minterForOptionID[_optionID]);
    require(bytes(_key).length > 0);
    
    KeyValue memory keyValueForThisKey = KeyValueMappingOptionID[_optionID][_key];

    uint256 index;
    KeyValue memory newKeyValue;
    
    // Check if the key already set or not
    if (bytes(keyValueForThisKey._key).length == 0)
    {
      index = KeyValueArrayOptionID[_optionID].length;
      newKeyValue = KeyValue(index, _key, _value);
      KeyValueArrayOptionID[_optionID].push(newKeyValue);
    }	
    else
    {
      index = keyValueForThisKey._index;
      newKeyValue = KeyValue(index, _key, _value);
      KeyValueArrayOptionID[_optionID][index] = newKeyValue;
    }
    
    KeyValueMappingOptionID[_optionID][_key] = newKeyValue;
  }

  function deleteOptionIdPropriety(uint256 _optionID, string memory _key) public
  {
    require(msg.sender == minterForOptionID[_optionID]);

    KeyValue memory keyValueForThisKey = KeyValueMappingOptionID[_optionID][_key];

    uint256 index = keyValueForThisKey._index;
    uint256 length = KeyValueArrayOptionID[_optionID].length;
    
    KeyValueArrayOptionID[_optionID][index] = KeyValueArrayOptionID[_optionID][length-1];
    delete KeyValueArrayOptionID[_optionID][length-1];
    delete KeyValueMappingOptionID[_optionID][_key];
  }

  function setTokenIdPropriety(uint256 _TokenID, string memory _key, string memory _value) public
  {	
    NFT_Token itemContract = NFT_Token(nftAddress);
    
    uint256 _optionId = itemContract.itemTypes(_TokenID);
    require(msg.sender == minterForOptionID[_optionId]);
    
    require(bytes(_key).length > 0);
      
    KeyValue memory keyValueForThisKey = KeyValueMappingTokenID[_TokenID][_key];

    uint256 index;
    KeyValue memory newKeyValue;
    
    // Check if the key already set or not
    
    if (bytes(keyValueForThisKey._key).length == 0)
    {
      index = KeyValueArrayTokenID[_TokenID].length;
      newKeyValue = KeyValue(index, _key, _value);
      KeyValueArrayTokenID[_TokenID].push(newKeyValue);
    }	
    else
    {
      index = keyValueForThisKey._index;
      newKeyValue = KeyValue(index, _key, _value);
      KeyValueArrayTokenID[_TokenID][index] = newKeyValue;
    }
    
    KeyValueMappingTokenID[_TokenID][_key] = newKeyValue;
  }

  function deleteTokenIdPropriety(uint256 _TokenID, string memory _key) public
  {
    NFT_Token itemContract = NFT_Token(nftAddress);
    
    uint256 _optionId = itemContract.itemTypes(_TokenID);
    require(msg.sender == minterForOptionID[_optionId]);

    KeyValue memory keyValueForThisKey = KeyValueMappingTokenID[_TokenID][_key];

    uint256 index = keyValueForThisKey._index;
    uint256 length = KeyValueArrayTokenID[_TokenID].length;
    
    KeyValueArrayTokenID[_TokenID][index] = KeyValueArrayTokenID[_TokenID][length-1];
    delete KeyValueArrayTokenID[_TokenID][length-1];
    delete KeyValueMappingTokenID[_TokenID][_key];
  }

  function setTokenURI(uint256 tokenID, string memory _tokenURI) public
    {
      NFT_Token itemContract = NFT_Token(nftAddress);
      
      uint256 optionID = itemContract.itemTypes(tokenID);
      
    require(msg.sender == minterForOptionID[optionID]);
    
    itemContract.setTokenURI(tokenID, _tokenURI);
    }

    function setUGCAddress(uint256 _optionId, address _new_address) public {
      require(msg.sender == minterForOptionID[_optionId]);
      
      addressForUGCForOptionID[_optionId] = _new_address;
    }
 
  function tokenURI(uint256 _optionId) external view returns (string memory) {
      return Helpers.strConcat(
                              baseURI,
                              Helpers.strConcat(Helpers.bytes32ToString(Helpers.uintToBytes32(_optionId)), "/")
              );
    }
  /**
   * Hack to get things to work automatically on OpenSea.
   * Use transferFrom so the frontend doesn't have to worry about different method names.
   */
  function transferFrom(address _from, address _to, uint256 _tokenId) public {
    mint(_tokenId, _to);
  }

  /**
   * Hack to get things to work automatically on OpenSea.
   * Use isApprovedForAll so the frontend doesn't have to worry about different method names.
   */
  function isApprovedForAll(
    address _owner,
    address _operator
  )
    public
    view
    returns (bool)
  {
    if (owner() == _owner && _owner == _operator) {
      return true;
    }

    ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
    if (owner() == _owner && address(proxyRegistry.proxies(_owner)) == _operator) {
      return true;
    }

    return false;
  }
  
    function mint(uint256 _optionId, address _toAddress) public {
		  
		ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
		require(address(proxyRegistry.proxies(minterForOptionID[_optionId])) == msg.sender || minterForOptionID[_optionId] == msg.sender);
		  
		this.mintCat(_optionId, _toAddress, 0);
    }
    
    function MintN(uint256 _optionId, uint256 N, address _to, uint256 _cat) external returns (uint256[] memory) {
      require(msg.sender == minterForOptionID[_optionId], "msg.sender isn't minter for the asset");
      
      uint256[] memory currentTokenIds = new uint256[](N);
      for (uint256 i = 0; i < N; i++)
      {
        uint256 new_tokenID = this.mintCat(_optionId, _to, _cat);
        currentTokenIds[i] = new_tokenID;
      }
      return currentTokenIds;
    }
	
	
	function DefineBundle(uint256 optionID, uint256[] memory optionIDList) public 
	{
		require(minterForOptionID[optionID] == msg.sender);
		for (uint256 i = 0; i < optionIDList.length; i++)
		{
			require(minterForOptionID[optionIDList[i]] == msg.sender);
		}
		bundlesDefinition[optionID] = optionIDList;
		isBundle[optionID] = true;
	}
	
    function mintCat(uint256 _optionId, address _toAddress, uint256 _category) external returns (uint256) {
		require(this.canMint(_optionId), "Not available for minting");
		require(msg.sender == minterForOptionID[_optionId] || msg.sender == address(this), "msg.sender isn't minter for the asset (mint(3)");

		// Check if whitelisted
		IProxyForKYCWhitelist _ProxyForKYCWhitelistContract = IProxyForKYCWhitelist(whitelistContractAddresses[_optionId]);
		require(_ProxyForKYCWhitelistContract.isWhitelisted(_toAddress));

		nbAssetPerOptionID[_optionId] = nbAssetPerOptionID[_optionId] + 1;
		uint256 _tokenID = 0;
		
		/*if (_optionId >= 51 && _optionId <= 56) // Bundles
		{
			if (_optionId == 51) // Urumi bundle
			{
				uint256[] memory UrumiOptionIds = new uint256[](13);
				UrumiOptionIds[0] = 1;
				UrumiOptionIds[1] = 3;
				UrumiOptionIds[2] = 7;
				UrumiOptionIds[3] = 11;
				UrumiOptionIds[4] = 15;
				UrumiOptionIds[5] = 19;
				UrumiOptionIds[6] = 23;
				UrumiOptionIds[7] = 27;
				UrumiOptionIds[8] = 31;
				UrumiOptionIds[9] = 35;
				UrumiOptionIds[10] = 39;
				UrumiOptionIds[11] = 43;
				UrumiOptionIds[12] = 47;
				
				for (uint256 i = 0; i < UrumiOptionIds.length; i++)
				{
					this.mintCat(UrumiOptionIds[i], _toAddress,0);
				}
				
			}
			else if (_optionId == 52) // Merlin bundle
			{
				uint256[] memory MerlinOptionIds = new uint256[](13);
				MerlinOptionIds[0] = 1;
				MerlinOptionIds[2] = 4;
				MerlinOptionIds[3] = 8;
				MerlinOptionIds[4] = 12;
				MerlinOptionIds[5] = 16;
				MerlinOptionIds[6] = 20;
				MerlinOptionIds[7] = 24;
				MerlinOptionIds[8] = 28;
				MerlinOptionIds[9] = 32;
				MerlinOptionIds[10] = 36;
				MerlinOptionIds[11] = 40;
				MerlinOptionIds[12] = 44;
				MerlinOptionIds[12] = 48;
				
				for (uint256 i = 0; i < MerlinOptionIds.length; i++)
				{
					this.mintCat(MerlinOptionIds[i], _toAddress,0);
				}
			}
			else if (_optionId == 53) // Goliath bundle
			{
				uint256[] memory GoliathOptionIds = new uint256[](13);
				GoliathOptionIds[0] = 1;
				GoliathOptionIds[1] = 5;
				GoliathOptionIds[2] = 9;
				GoliathOptionIds[3] = 13;
				GoliathOptionIds[4] = 17;
				GoliathOptionIds[5] = 21;
				GoliathOptionIds[6] = 25;
				GoliathOptionIds[7] = 29;
				GoliathOptionIds[8] = 33;
				GoliathOptionIds[9] = 37;
				GoliathOptionIds[10] = 41;
				GoliathOptionIds[11] = 45;
				GoliathOptionIds[12] = 49;
				
				for (uint256 i = 0; i < GoliathOptionIds.length; i++)
				{
					this.mintCat(GoliathOptionIds[i], _toAddress,0);
				}
			}
			else if (_optionId == 54) // Firebird bundle
			{
				uint256[] memory FirebirdOptionIds = new uint256[](13);
				FirebirdOptionIds[0] = 1;
				FirebirdOptionIds[1] = 6;
				FirebirdOptionIds[2] = 10;
				FirebirdOptionIds[3] = 14;
				FirebirdOptionIds[4] = 18;
				FirebirdOptionIds[5] = 22;
				FirebirdOptionIds[6] = 26;
				FirebirdOptionIds[7] = 30;
				FirebirdOptionIds[8] = 34;
				FirebirdOptionIds[9] = 38;
				FirebirdOptionIds[10] = 42;
				FirebirdOptionIds[11] = 46;
				FirebirdOptionIds[12] = 50;
				
				for (uint256 i = 0; i < FirebirdOptionIds.length; i++)
				{
					this.mintCat(FirebirdOptionIds[i], _toAddress,0);
				}
			}
			else if (_optionId == 55) // All skins bundle
			{
				this.mintCat(1, _toAddress,0);
				for (uint256 i = 3; i < 51; i++)
				{
					this.mintCat(i, _toAddress,0);
				}
			}
		}*/
		if(isBundle[_optionId])
		{
			for (uint i = 0; i < bundlesDefinition[_optionId].length; i++)
			{
				this.mintCat(bundlesDefinition[_optionId][i], _toAddress,0);
			}
		}
		else	// Regular mint
		{
			NFT_Token itemContract = NFT_Token(nftAddress);
			bytes4 _functionSignatureHash = bytes4(keccak256("mintTo(address,uint256,uint256)"));
			bytes memory _extraData = abi.encodeWithSelector(_functionSignatureHash,_toAddress, _optionId, _category);
			/*bytes32 CallDataHash = */itemContract.initialCall(_extraData);
			_tokenID = itemContract.totalSupply();
			tokenIDsToNonUniqueTokenID[_tokenID] = nbAssetPerOptionID[_optionId];
			
			emit NewAssetMinted(msg.sender, _toAddress, _optionId, _tokenID);		
		}
		
		return _tokenID;
    }

    function canMint(uint256 _optionId) external view returns (bool) {
        
      bool isOptionAvailable = (_optionId <= NUM_OPTIONS);
      bool enoughNxCBurned = (nbAssetMaxPerOptionID[_optionId] > nbAssetPerOptionID[_optionId]);

      return (isOptionAvailable && enoughNxCBurned);
    }
}

contract ProxyContractForMetaTxs is IProxyContractForMetaTxs {}

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
contract ERC721Receiver {
  /**
   * @dev Magic value to be returned upon successful reception of an NFT
   *  Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`,
   *  which can be also obtained as `ERC721Receiver(0).onERC721Received.selector`
   */
  bytes4 internal constant ERC721_RECEIVED = 0x150b7a02;

  /**
   * @notice Handle the receipt of an NFT
   * @dev The ERC721 smart contract calls this function on the recipient
   * after a `safetransfer`. This function MAY throw to revert and reject the
   * transfer. Return of other than the magic value MUST result in the
   * transaction being reverted.
   * Note: the contract address is always the message sender.
   * @param _operator The address which called `safeTransferFrom` function
   * @param _from The address which previously owned the token
   * @param _tokenId The NFT identifier which is being transferred
   * @param _data Additional data with no specified format
   * @return `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
   */
  function onERC721Received(
    address _operator,
    address _from,
    uint256 _tokenId,
    bytes memory _data
  )
    public
    returns(bytes4);
}

contract IERC721Enumerable is IERC721 {
    function totalSupply() public view returns (uint256);
    function tokenOfOwnerByIndex(address owner, uint256 index) public view returns (uint256 tokenId);

    function tokenByIndex(uint256 index) public view returns (uint256);
}

contract ERC721Enumerable is ERC165, ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => uint256[]) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

    /**
     * @dev Constructor function.
     */
    constructor () public {
        // register the supported interface to conform to ERC721Enumerable via ERC165
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

    /**
     * @dev Gets the token ID at a given index of the tokens list of the requested owner.
     * @param owner address owning the tokens list to be accessed
     * @param index uint256 representing the index to be accessed of the requested tokens list
     * @return uint256 token ID at the given index of the tokens list owned by the requested address
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view returns (uint256) {
        require(index < balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev Gets the total amount of tokens stored by the contract.
     * @return uint256 representing the total amount of tokens
     */
    function totalSupply() public view returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev Gets the token ID at a given index of all the tokens in this contract
     * Reverts if the index is greater or equal to the total number of tokens.
     * @param index uint256 representing the index to be accessed of the tokens list
     * @return uint256 token ID at the given index of the tokens list
     */
    function tokenByIndex(uint256 index) public view returns (uint256) {
        require(index < totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Internal function to transfer ownership of a given token ID to another address.
     * As opposed to transferFrom, this imposes no restrictions on msg.sender.
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     */
    function _transferFrom(address from, address to, uint256 tokenId) internal {
        super._transferFrom(from, to, tokenId);

        _removeTokenFromOwnerEnumeration(from, tokenId);

        _addTokenToOwnerEnumeration(to, tokenId);
    }

    /**
     * @dev Internal function to mint a new token.
     * Reverts if the given token ID already exists.
     * @param to address the beneficiary that will own the minted token
     * @param tokenId uint256 ID of the token to be minted
     */
    function _mint(address to, uint256 tokenId) internal {
        super._mint(to, tokenId);

        _addTokenToOwnerEnumeration(to, tokenId);

        _addTokenToAllTokensEnumeration(tokenId);
    }

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * Deprecated, use _burn(uint256) instead.
     * @param owner owner of the token to burn
     * @param tokenId uint256 ID of the token being burned
     */
    function _burn(address owner, uint256 tokenId) internal {
        super._burn(owner, tokenId);

        _removeTokenFromOwnerEnumeration(owner, tokenId);
        // Since tokenId will be deleted, we can clear its slot in _ownedTokensIndex to trigger a gas refund
        _ownedTokensIndex[tokenId] = 0;

        _removeTokenFromAllTokensEnumeration(tokenId);
    }

    /**
     * @dev Gets the list of token IDs of the requested owner.
     * @param owner address owning the tokens
     * @return uint256[] List of token IDs owned by the requested address
     */
    function _tokensOfOwner(address owner) internal view returns (uint256[] storage) {
        return _ownedTokens[owner];
    }
	
	function tokensOfOwner(address owner) public view returns (uint256[] memory) {
        return _ownedTokens[owner];
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        _ownedTokensIndex[tokenId] = _ownedTokens[to].length;
        _ownedTokens[to].push(tokenId);
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the _ownedTokensIndex mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _ownedTokens[from].length.sub(1);
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        _ownedTokens[from].length--;

        // Note that _ownedTokensIndex[tokenId] hasn't been cleared: it still points to the old slot (now occupied by
        // lastTokenId, or just over the end of the array if the token was the last one).
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length.sub(1);
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        _allTokens.length--;
        _allTokensIndex[tokenId] = 0;
    }
}

contract IERC721Metadata is IERC721 {
    function name() external view returns (string memory);
    function symbol() external view returns (string memory);
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

contract ERC721Metadata is ERC165, ERC721, IERC721Metadata {
    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

    /**
     * @dev Constructor function
     */
    constructor (string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
    }

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

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

    /**
     * @dev Returns an URI for a given token ID.
     * Throws if the token ID does not exist. May return an empty string.
     * @param tokenId uint256 ID of the token to query
     */
    function tokenURI(uint256 tokenId) external view returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        return _tokenURIs[tokenId];
    }

    /**
     * @dev Internal function to set the token URI for a given token.
     * Reverts if the token ID does not exist.
     * @param tokenId uint256 ID of the token to set its URI
     * @param uri string URI to assign
     */
    function _setTokenURI(uint256 tokenId, string memory uri) internal {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
        _tokenURIs[tokenId] = uri;
    }

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * Deprecated, use _burn(uint256) instead.
     * @param owner owner of the token to burn
     * @param tokenId uint256 ID of the token being burned by the msg.sender
     */
    function _burn(address owner, uint256 tokenId) internal {
        super._burn(owner, tokenId);

        // Clear metadata (if any)
        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

contract ERC721Full is ERC721, ERC721Enumerable, ERC721Metadata {
    constructor (string memory name, string memory symbol) public ERC721Metadata(name, symbol) {
        // solhint-disable-previous-line no-empty-blocks
    }
}

/**
 * @title TradeableERC721Token
 * TradeableERC721Token - ERC721 contract that whitelists a trading address, and has minting functionality.
 */
contract TradeableERC721Token is ERC721Full, Ownable, MultiSigOwnable {
  using Strings for string;

  // Mapping from token ID to item type.
  mapping (uint256 => uint256) public itemTypes;
  mapping (uint256 => uint256) public itemCategory;

	address proxyRegistryAddress;
  
  constructor(string memory _name, string memory _symbol, address _proxyRegistryAddress) ERC721Full(_name, _symbol) public 
  { 
	proxyRegistryAddress = _proxyRegistryAddress;  
  }

  /**
    * @dev Mints a token to an address with a tokenURI.
    * @param _to address of the future owner of the token
  */
	
  function mintTo(address _to, uint256 _itemType, uint256 _itemCategory) onlyMultiSigOwners() public {
  
    uint256 newTokenId = _getNextTokenId();
    _mint(_to, newTokenId);
    itemTypes[newTokenId] = _itemType;
    
    itemCategory[newTokenId] = _itemCategory;
    
  }

  /**
    * @dev calculates the next token ID based on totalSupply
    * @return uint256 for the next token ID
    */
  function _getNextTokenId() private view returns (uint256) {
    return totalSupply().add(1);
  }

  function baseTokenURI() public pure returns (string memory) {
    return "";
  }

  function tokenURI(uint256 _tokenId) public view returns (string memory) {
    return Strings.strConcat(
        baseTokenURI(),
        Strings.uint2str(itemTypes[_tokenId]),
        "/",
        Strings.uint2str(_tokenId)
    );
  }
  
  /**
   * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
   */
  function isApprovedForAll(
    address owner,
    address operator
  )
    public
    view
    returns (bool)
  {
    // Whitelist OpenSea proxy contract for easy trading.
    ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
    if (address(proxyRegistry.proxies(owner)) == operator) {
        return true;
    }

    return super.isApprovedForAll(owner, operator);
  }
}

/* Should be Ownable for OpenSea StoreFront customizations*/
contract NFT_Token is TradeableERC721Token/*, Ownable *//*, NexiumReceiver*/ {

	event Grouping(address groupOwner, uint256 tokenID);
	event Ungrouping(address groupOwner, uint256 tokenID);

  // BEGIN ATTRIBUTE

  address private NexiumAddress;
  address private FactoryAddress;

	mapping(address => uint256) groupOwners;
	mapping(uint256 => uint256) public NexiumPerTokenId;
	mapping(uint256 => uint256) public EtherPerTokenId;

    string private _name;
    string private _symbol;
    uint256 private _total_supply;
    string private _uri_prefix;
    string private _route;

    // The last asset id
    uint256 private _last_id;
	
	mapping(uint256 => string) tokenURIs;

    // Locked status
    mapping(uint256 => bool) private _locked;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

    /**
     * @dev Constructor function
     */
    constructor (address _proxyRegistryAddress, string memory name, string memory symbol, string memory uri_prefix, address _NexiumAddress, address _FactoryAddress, uint256 _nbApprovalNeeded, address[] memory _ownerList) 
    TradeableERC721Token("LTR Item", "LTRI", _proxyRegistryAddress)
    Ownable() MultiSigOwnable(_nbApprovalNeeded, _ownerList) public {
        NexiumAddress = _NexiumAddress;
        FactoryAddress = _FactoryAddress;
        _name = name;
        _symbol = symbol;
        _uri_prefix = uri_prefix;
		_route = "";
        _total_supply = 0;
        _last_id = 0;

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
    }

  // END ATTRIBUTE

  function setnexiumAddress (address _new_address) public onlyMultiSigOwners() {
      NexiumAddress = _new_address;
  }
  
  function setfactoryAddress (address _new_address) public onlyMultiSigOwners() {
      FactoryAddress = _new_address;
  }

  // BEGIN RECEIVE ETH AND NXC

	function receiveApproval(address _from, uint256 _value, address _token, bytes memory _extraData) public {

	    require(_token == NexiumAddress);
	    require(_extraData.length == 32);

	    uint256 tokenId = Helpers.bytesToUint(_extraData);

	    NxcInterface nexiumContract = NxcInterface(NexiumAddress);

	    if(nexiumContract.transferFrom(_from, address(this), _value) == false)
	    {
	        revert();
	    }
	    
	    NexiumPerTokenId[tokenId] = NexiumPerTokenId[tokenId].add(_value);

	    return;
	}

	function recoverNexium(uint256 _valueToRecover, uint256 tokenId) public {

		require(msg.sender == ownerOf(tokenId), "You need to own the asset");
		require(NexiumPerTokenId[tokenId] >= _valueToRecover);

	    NxcInterface nexiumContract = NxcInterface(NexiumAddress);

	    NexiumPerTokenId[tokenId] = NexiumPerTokenId[tokenId].sub(_valueToRecover);
	    
	    if(nexiumContract.transfer(msg.sender, _valueToRecover) == false)
	    {
	        revert();
	    }
	}

	function receiveETH (uint256 tokenId) public payable returns (bool) {
	    EtherPerTokenId[tokenId] = EtherPerTokenId[tokenId].add(msg.value);

	    return true;
	}

	function recoverETH(uint256 tokenId, uint256 _valueToRecover) public returns (bool) {

		require(msg.sender == ownerOf(tokenId), "You need to own the asset");
		require(EtherPerTokenId[tokenId] >= _valueToRecover);

	    EtherPerTokenId[tokenId] = EtherPerTokenId[tokenId].sub(_valueToRecover);
	    if(msg.sender.send(_valueToRecover) == true)
	    {
	        return true;
	    }
	    else
	    {
	        revert();
	    }
	}

  // END RECEIVE ETH AND NXC

  // BEGIN GROUP HANDLING
	mapping(uint256 => uint256[]) groupMapping;

	function groupAssets(uint256[] memory tokenIds) public returns (uint256) {

	    uint256 tokenId = totalSupply().add(1);
        _mint(msg.sender, tokenId);

	    for (uint256 i = 0; i < tokenIds.length; i++) {
	          transferFrom(msg.sender, address(this), tokenIds[i]);
	    }

	    groupMapping[tokenId] = tokenIds;

		emit Grouping(msg.sender, tokenId);

	    return tokenId;
	}

	function ungroupAssets(uint256 tokenId) public returns (uint256[] memory) {
        
        require(ownerOf(tokenId) == msg.sender);
        require(groupMapping[tokenId].length > 0);
        
        uint256[] memory retValue = new uint256[](groupMapping[tokenId].length);
        
        for (uint256 i = 0; i < groupMapping[tokenId].length; i++) {
	          this.transferFrom(address(this), msg.sender, groupMapping[tokenId][i]);
	          retValue[i] = groupMapping[tokenId][i];
	    } 
	    
	    groupMapping[tokenId].length = 0;
        
        //burn the group
        _burn(msg.sender, tokenId);

		emit Ungrouping(msg.sender, tokenId);
	
        return retValue;
	}

	function getGroupContent(uint256 tokenId) public view returns (uint256[] memory)
	{
		uint256[] memory currentArray;
			
		if (!isGroup(tokenId))
		{
			currentArray = new uint256[](1);
			currentArray[0] = tokenId;
		}
		else
		{

			for (uint256 i = 0; i < groupMapping[tokenId].length; i++)
			{
				currentArray = Helpers.uint256ArrayConcat(currentArray, getGroupContent(groupMapping[tokenId][i]));
			}
		}
		return currentArray;
	}
	
	function getGroupContentFirstLevel(uint256 tokenId) public view returns (uint256[] memory)
	{
		uint256[] memory currentArray;
			
		if (!isGroup(tokenId))
		{
			currentArray = new uint256[](1);
			currentArray[0] = tokenId;
		}
		else
		{
			currentArray = groupMapping[tokenId];
			
		}
		return currentArray;
	}
	
	function isGroup(uint256 tokenId) internal view returns (bool) {
	    return (groupMapping[tokenId].length == 0);
	}

  // END GROUP HANDLING

  // BEGIN BASIC ERC721 HANDLING

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

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

  // END BASIC ERC721 HANDLING

  // BEGIN COMPLEX ERC721 HANDLING

    /**
     * @dev Returns an URI for a given token ID.
     * Throws if the token ID does not exist. May return an empty string.
     * @param tokenId uint256 ID of the token to query
     */
    function tokenURI(uint256 tokenId) public view returns (string memory) {
        require(_exists(tokenId));
		
		bytes memory TokenURIAsBytes = bytes(tokenURIs[tokenId]); 
 
		if (TokenURIAsBytes.length == 0)
		{
		    return 	Helpers.strConcat(
						Helpers.strConcat(
                            Helpers.strConcat(
								_uri_prefix, 
								_route),
                            Helpers.strConcat(
								Helpers.bytes32ToString(Helpers.uintToBytes32(itemTypes[tokenId])), 
								"/")),
						Helpers.strConcat(
							Helpers.bytes32ToString(Helpers.uintToBytes32(tokenId)), 
							"/"));
		}
		else
		{
			return tokenURIs[tokenId];
		}
    }
	
    function setURI_Prefix(string memory _new_uri_prefix) public onlyMultiSigOwners() returns (bool) {
        _uri_prefix = _new_uri_prefix;
        return true;
    }
	
    function setRoute(string memory _new_route) public onlyMultiSigOwners() returns (bool) {
        _route = _new_route;
        return true;
    }
	
	// Used to provide a specific URI for one tokenID
	function setTokenURI(uint256 tokenID, string memory _tokenURI) public returns (bool) {
		require(msg.sender == FactoryAddress);
		
		tokenURIs[tokenID] = _tokenURI;
		return true;
	}

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * Deprecated, use _burn(uint256) instead.
     * @param owner owner of the token to burn
     * @param tokenId uint256 ID of the token being burned by the msg.sender
     */
    function _burn(address owner, uint256 tokenId) internal {
        super._burn(owner, tokenId);
    }

  // END COMPLEX ERC721 HANDLING


  // BEGIN META_TXS PROXY HANDLING
  
	// Pass through the proxy implementation:
	
    address payable ProxyContractForMetaTxsAddress;

    function setProxyContractForMetaTxsAddress(address payable _newAddress) public onlyMultiSigOwners() returns (bool) {
        ProxyContractForMetaTxsAddress = _newAddress;
    }

	  function updateWhitelist(address _account, bool _value) public returns(bool)
	  {
		ProxyContractForMetaTxs _proxy_contract_MetaTx = ProxyContractForMetaTxs(ProxyContractForMetaTxsAddress);
		return _proxy_contract_MetaTx.updateWhitelist(_account, _value);
	  }
	  
	  event UpdateWhitelist(address _account, bool _value);
	  	  
	  function () external payable
	  {
		ProxyContractForMetaTxsAddress.call.value(msg.value)("");
	  }
	  
	  event Received (address indexed sender, uint value);

	  function getHash(address signer, address destination, uint value, bytes memory data, address rewardToken, uint rewardAmount) public view returns(bytes32)
	  {
	  	ProxyContractForMetaTxs _proxy_contract_MetaTx = ProxyContractForMetaTxs(ProxyContractForMetaTxsAddress);
		return _proxy_contract_MetaTx.getHash(signer, destination, value, data, rewardToken, rewardAmount);
	  }
	  
	  // original forward function copied from https://github.com/uport-project/uport-identity/blob/develop/contracts/Proxy.sol
	  function forward(bytes memory sig, address signer, address destination, uint value, bytes memory data, address rewardToken, uint rewardAmount) public
	  {
	  	ProxyContractForMetaTxs _proxy_contract_MetaTx = ProxyContractForMetaTxs(ProxyContractForMetaTxsAddress);
		return _proxy_contract_MetaTx.forward(sig, signer, destination, value, data, rewardToken, rewardAmount);
	  }
	  
	  // when some frontends see that a tx is made from a bouncerproxy, they may want to parse through these events to find out who the signer was etc
	  event Forwarded (bytes sig, address signer, address destination, uint value, bytes data,address rewardToken, uint rewardAmount,bytes32 _hash);
	
  // END META_TXS PROXY HANDLING
}

pragma experimental ABIEncoderV2;
contract NFT_B2E_Listing is MultiSigOwnable {
    
	event RegisterNewAsset(uint256 optionID, string name);
	event RegisterNewBBA(bytes32 hash, uint256 optionID);
	    
	event UpdateAsset(uint256 optionID, string name);
	event UpdateBBA(bytes32 prevhash, bytes32 newhash, uint256 optionID);
	
    address public NFTFactoryAddress;
    address payable NFTTokenAddress;

    struct TokenType {
        uint256 optionID;
        string name;
		    address minter;
    }
	
   struct BBA_Registry_entry {
       uint256 optionID;
       uint256 version;
       address creator;
       bytes32 hash;
    }
   
    mapping(bytes32 => uint256) hashToOptionId;
    mapping(uint256 => TokenType) _tokenTypes;
    mapping(uint256 => BBA_Registry_entry) BBA_Registry;
   
   constructor(address _factory, address payable _nft, uint256 _nbApprovalNeeded, address[] memory _ownerList) MultiSigOwnable(_nbApprovalNeeded, _ownerList) public {
		NFTFactoryAddress = _factory;
		NFTTokenAddress = _nft;
   }

   function setNFTFactoryAddress(address _new_address) public onlyMultiSigOwners() {
		NFTFactoryAddress = _new_address;
   }
   
   function setNFTTokenAddress(address payable _new_address) public onlyMultiSigOwners() {
		NFTTokenAddress = _new_address;
    }
    
   function newAsset(uint256 optionID, string memory name, address minter) public {
		_tokenTypes[optionID] = TokenType(optionID, name, minter);
		emit RegisterNewAsset(optionID, name);
    }
   
   function replaceAsset(uint256 optionID, string memory name, address minter) public {
		delete _tokenTypes[optionID];
		_tokenTypes[optionID] = TokenType(optionID, name, minter);
		emit UpdateAsset(optionID, name);
    }

   function query(bytes32 hash) public view returns (uint256) {
		return hashToOptionId[hash];
    }
   
    function queryBBA(uint256 optionID) public view returns (BBA_Registry_entry memory) {
		  return BBA_Registry[optionID];
    }
   
   function registerBBA(bytes32 hash, uint256 optionID) public onlyMultiSigOwners() returns (bool) {
		emit RegisterNewBBA(hash, optionID);
		
		require(hashToOptionId[hash] == 0, "BBA Already exists");
		hashToOptionId[hash] = optionID;
		
		return true;
    }
   
   function updateBBA(bytes32 prevhash, bytes32 newhash, uint256 optionID, address creator, uint256 version) public onlyMultiSigOwners() returns (bool) {
	   require(optionID == hashToOptionId[prevhash]);
	   require(creator == BBA_Registry[optionID].creator);
	   require(version == BBA_Registry[optionID].version + 1);
	   
       BBA_Registry_entry memory _bba = BBA_Registry_entry(optionID, version, creator, newhash);
       BBA_Registry[optionID] = _bba;
	   
       emit UpdateBBA(prevhash, newhash, optionID);
	   return true;
    }
   
   	function getAllTokenIds(address addr) public view returns (uint256[] memory)
	{
		NFT_Token ItemContract = NFT_Token(NFTTokenAddress);
		return ItemContract.tokensOfOwner(addr);
	}
	
	function getAllOptionIds(address addr) public view returns (uint256[] memory)
	{
		NFT_Token ItemContract = NFT_Token(NFTTokenAddress);
		
		uint256[] memory tokenIDs = ItemContract.tokensOfOwner(addr);
		
		for (uint256 i = 0; i < tokenIDs.length; i++)
		{
			uint256 currentOptionID = ItemContract.itemTypes(tokenIDs[i]);
			tokenIDs[i] = currentOptionID;
		}
		return tokenIDs;
	}
}

contract ProxyContractForBurn is IProxyContractForBurn {
	 using SafeMath for uint256;
	 
	address public nxcAddress;
			
	uint256 minimum = 100;
	uint256 divisor = 4;
	
	constructor(address _nxcAddress) public {
		nxcAddress = _nxcAddress;
	}
	
	function setnxcAddress(address new_address) public
	{
		nxcAddress = new_address;
	}
	
	function burnNxCtoMintAssets(uint256 nbOfAsset, string[] memory keys, string[] memory values) public view returns (uint256)
	{
		require (keys.length == values.length);
		
		NxcInterface nxcContract = NxcInterface(nxcAddress);
		
		uint256 nxcTotalSupply = nxcContract.totalSupply();
		
		// N = (100+NOMBRE_ASSET) * TOTAL_SUPPLY / 1 000 000 / 4
	    uint256 ret = ((nbOfAsset.add(minimum)).mul((nxcTotalSupply).div(1000))).div(divisor.mul(1000000)).mul(1000);
	    
		return ret;
	}
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getGroupContentFirstLevel","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes4","name":"_functionSignatureHash","type":"bytes4"}],"name":"registerMultiOwnableFunction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"updateWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"destination","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"address","name":"rewardToken","type":"address"},{"internalType":"uint256","name":"rewardAmount","type":"uint256"}],"name":"getHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_nbApprovalsNeeded","type":"uint256"}],"name":"updateApprovalsNeeded","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_ownerToRemove","type":"address"}],"name":"removeOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"_valueToRecover","type":"uint256"}],"name":"recoverETH","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_itemType","type":"uint256"},{"internalType":"uint256","name":"_itemCategory","type":"uint256"}],"name":"mintTo","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_new_address","type":"address"}],"name":"setnexiumAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes","name":"functionCall","type":"bytes"}],"name":"initialCall","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_sender","type":"address"}],"name":"isInOwnerList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"EtherPerTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes","name":"sig","type":"bytes"},{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"destination","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"address","name":"rewardToken","type":"address"},{"internalType":"uint256","name":"rewardAmount","type":"uint256"}],"name":"forward","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes4","name":"_functionSignatureHash","type":"bytes4"}],"name":"isRegistered","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_new_address","type":"address"}],"name":"setfactoryAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_addOwner","type":"address"}],"name":"addOwnerToList","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ungroupAssets","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"address","name":"_token","type":"address"},{"internalType":"bytes","name":"_extraData","type":"bytes"}],"name":"receiveApproval","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"itemTypes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"NexiumPerTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address payable","name":"_newAddress","type":"address"}],"name":"setProxyContractForMetaTxsAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_valueToRecover","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"recoverNexium","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"_new_uri_prefix","type":"string"}],"name":"setURI_Prefix","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"_new_route","type":"string"}],"name":"setRoute","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes32","name":"_callDataHash","type":"bytes32"}],"name":"approve_tx","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"itemCategory","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"groupAssets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"receiveETH","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getGroupContent","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"uri_prefix","type":"string"},{"internalType":"address","name":"_NexiumAddress","type":"address"},{"internalType":"address","name":"_FactoryAddress","type":"address"},{"internalType":"uint256","name":"_nbApprovalNeeded","type":"uint256"},{"internalType":"address[]","name":"_ownerList","type":"address[]"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"groupOwner","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"Grouping","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"groupOwner","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"Ungrouping","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_account","type":"address"},{"indexed":false,"internalType":"bool","name":"_value","type":"bool"}],"name":"UpdateWhitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Received","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes","name":"sig","type":"bytes"},{"indexed":false,"internalType":"address","name":"signer","type":"address"},{"indexed":false,"internalType":"address","name":"destination","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"address","name":"rewardToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"rewardAmount","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"_hash","type":"bytes32"}],"name":"Forwarded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes4","name":"FuncSelector","type":"bytes4"}],"name":"MultiSigOwnerTransactionCleared","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"}]

60806040523480156200001157600080fd5b5060405162004eed38038062004eed833981016040819052620000349162000630565b604080518082018252600881527f4c5452204974656d0000000000000000000000000000000000000000000000006020808301919091528251808401909352600483527f4c54524900000000000000000000000000000000000000000000000000000000908301529089848484848181620000d87f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b036200038b16565b6200010c7f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b036200038b16565b620001407f780e9d63000000000000000000000000000000000000000000000000000000006001600160e01b036200038b16565b8151620001559060099060208501906200048c565b5080516200016b90600a9060208401906200048c565b50620001a07f5b5e139f000000000000000000000000000000000000000000000000000000006001600160e01b036200038b16565b5050600c80546001600160a01b0319163317908190556040516001600160a01b03919091169250600091507f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a36001815110156200020057600080fd5b60018210156200020f57600080fd5b60005b81518110156200029a57620002418282815181106200022d57fe5b60200260200101516200043060201b60201c565b6200029157600e8282815181106200025557fe5b60209081029190910181015182546001810184556000938452919092200180546001600160a01b0319166001600160a01b039092169190911790555b60010162000212565b5050600d55601680546001600160a01b03199081166001600160a01b03938416179091556017805482168984161790556018805490911691871691909117905550508651620002f190601c9060208a01906200048c565b5085516200030790601d9060208901906200048c565b5084516200031d90601f9060208801906200048c565b50604080516020808201928390526000918290526200033e9290916200048c565b506000601e8190556021556200037d7f5b5e139f000000000000000000000000000000000000000000000000000000006001600160e01b036200038b16565b505050505050505062000881565b7fffffffff000000000000000000000000000000000000000000000000000000008082161415620003f3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003ea906200078c565b60405180910390fd5b7fffffffff00000000000000000000000000000000000000000000000000000000166000908152602081905260409020805460ff19166001179055565b6000805b600e548110156200048157600e81815481106200044d57fe5b6000918252602090912001546001600160a01b03848116911614156200047857600191505062000487565b60010162000434565b50600090505b919050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004cf57805160ff1916838001178555620004ff565b82800160010185558215620004ff579182015b82811115620004ff578251825591602001919060010190620004e2565b506200050d92915062000511565b5090565b6200052e91905b808211156200050d576000815560010162000518565b90565b80516200053e816200085c565b92915050565b600082601f8301126200055657600080fd5b81516200056d6200056782620007c5565b6200079e565b915081818352602084019350602081019050838560208402820111156200059357600080fd5b60005b83811015620005c35781620005ac888262000531565b845250602092830192919091019060010162000596565b5050505092915050565b600082601f830112620005df57600080fd5b8151620005f06200056782620007e6565b915080825260208301602083018583830111156200060d57600080fd5b6200061a83828462000829565b50505092915050565b80516200053e8162000876565b600080600080600080600080610100898b0312156200064e57600080fd5b60006200065c8b8b62000531565b98505060208901516001600160401b038111156200067957600080fd5b620006878b828c01620005cd565b97505060408901516001600160401b03811115620006a457600080fd5b620006b28b828c01620005cd565b96505060608901516001600160401b03811115620006cf57600080fd5b620006dd8b828c01620005cd565b9550506080620006f08b828c0162000531565b94505060a0620007038b828c0162000531565b93505060c0620007168b828c0162000623565b92505060e08901516001600160401b038111156200073357600080fd5b620007418b828c0162000544565b9150509295985092959890939650565b600062000760601c836200080e565b7f4552433136353a20696e76616c696420696e7465726661636520696400000000815260200192915050565b602080825281016200053e8162000751565b6040518181016001600160401b0381118282101715620007bd57600080fd5b604052919050565b60006001600160401b03821115620007dc57600080fd5b5060209081020190565b60006001600160401b03821115620007fd57600080fd5b506020601f91909101601f19160190565b90815260200190565b60006001600160a01b0382166200053e565b60005b83811015620008465781810151838201526020016200082c565b8381111562000856576000848401525b50505050565b620008678162000817565b81146200087357600080fd5b50565b62000867816200052e565b61465c80620008916000396000f3fe6080604052600436106102fe5760003560e01c8063756928ec11610190578063b88d4fde116100dc578063e985e9c511610095578063f080b8471161006f578063f080b84714610961578063f2fde38b14610981578063f52cc913146109a1578063fbc5a75f146109b4576102fe565b8063e985e9c514610901578063e9fb606514610921578063eb52e86314610941576102fe565b8063b88d4fde1461084c578063c6df79bd1461086c578063c87b56dd1461088c578063d547cfb7146108ac578063d6ea0a51146108c1578063e76b87cf146108e1576102fe565b80638f32d59b116101495780639acf878c116101235780639acf878c146107cc578063a22cb465146107ec578063adaeb6fc1461080c578063af27d8091461082c576102fe565b80638f32d59b146107825780638f4ffcb11461079757806395d89b41146107b7576102fe565b8063756928ec146106cd5780637a2a48fb146106ed578063809073561461070d57806383fca1241461072d5780638462151c1461074d5780638da5cb5b1461076d576102fe565b806323b872dd1161024f57806345757b7e11610208578063622f9730116101e2578063622f9730146106585780636352211e1461067857806370a0823114610698578063715018a6146106b8576102fe565b806345757b7e146105f85780634f6ccce7146106185780635608f92c14610638576102fe565b806323b872dd146105385780632baf2acb146105585780632f745c591461057857806333c31c5d1461059857806338c8df22146105b857806342842e0e146105d8576102fe565b80630d392cd9116102bc578063162094c411610296578063162094c4146104c3578063173825d9146104e357806318160ddd1461050357806322dae45a14610518576102fe565b80630d392cd9146104565780630ee02d9d14610476578063144381c0146104a3576102fe565b806215f2291461036257806301ffc9a714610398578063042e1ac9146103c557806306fdde03146103e7578063081812fc14610409578063095ea7b314610436575b6025546040516001600160a01b0390911690349061031b90614153565b60006040518083038185875af1925050503d8060008114610358576040519150601f19603f3d011682016040523d82523d6000602084013e61035d565b606091505b505050005b34801561036e57600080fd5b5061038261037d366004613658565b6109d4565b60405161038f919061427d565b60405180910390f35b3480156103a457600080fd5b506103b86103b3366004613694565b610a87565b60405161038f919061428e565b3480156103d157600080fd5b506103e56103e0366004613694565b610aa6565b005b3480156103f357600080fd5b506103fc610b06565b60405161038f9190614320565b34801561041557600080fd5b50610429610424366004613658565b610b9d565b60405161038f919061415e565b34801561044257600080fd5b506103e561045136600461355f565b610be9565b34801561046257600080fd5b506103b861047136600461352f565b610cbc565b34801561048257600080fd5b50610496610491366004613490565b610d4d565b60405161038f919061429c565b3480156104af57600080fd5b506103e56104be366004613658565b610de6565b3480156104cf57600080fd5b506103b86104de3660046137ee565b610e53565b3480156104ef57600080fd5b506103e56104fe366004613372565b610e96565b34801561050f57600080fd5b50610496610ff8565b34801561052457600080fd5b506103b8610533366004613836565b610ffe565b34801561054457600080fd5b506103e56105533660046133ca565b6110b8565b34801561056457600080fd5b506103e56105733660046135d3565b6110ee565b34801561058457600080fd5b5061049661059336600461355f565b611190565b3480156105a457600080fd5b506103e56105b3366004613372565b6111f0565b3480156105c457600080fd5b506104966105d33660046136d0565b61127a565b3480156105e457600080fd5b506103e56105f33660046133ca565b6113eb565b34801561060457600080fd5b506103b8610613366004613372565b611406565b34801561062457600080fd5b50610496610633366004613658565b61145b565b34801561064457600080fd5b50610496610653366004613658565b6114a2565b34801561066457600080fd5b506103e5610673366004613705565b6114b4565b34801561068457600080fd5b50610429610693366004613658565b61152e565b3480156106a457600080fd5b506104966106b3366004613372565b611563565b3480156106c457600080fd5b506103e56115ac565b3480156106d957600080fd5b506103b86106e8366004613694565b61161a565b3480156106f957600080fd5b506103e5610708366004613372565b611685565b34801561071957600080fd5b506103e5610728366004613372565b61170f565b34801561073957600080fd5b50610382610748366004613658565b6117c9565b34801561075957600080fd5b50610382610768366004613372565b611982565b34801561077957600080fd5b506104296119ee565b34801561078e57600080fd5b506103b86119fd565b3480156107a357600080fd5b506103e56107b236600461358f565b611a0e565b3480156107c357600080fd5b506103fc611b0d565b3480156107d857600080fd5b506104966107e7366004613658565b611b6e565b3480156107f857600080fd5b506103e561080736600461352f565b611b80565b34801561081857600080fd5b50610496610827366004613658565b611c18565b34801561083857600080fd5b506103b8610847366004613372565b611c2a565b34801561085857600080fd5b506103e5610867366004613417565b611cb8565b34801561087857600080fd5b506103e5610887366004613836565b611ceb565b34801561089857600080fd5b506103fc6108a7366004613658565b611e08565b3480156108b857600080fd5b506103fc6120e9565b3480156108cd57600080fd5b506103b86108dc3660046136d0565b6120fb565b3480156108ed57600080fd5b506103b86108fc3660046136d0565b612181565b34801561090d57600080fd5b506103b861091c366004613390565b6121fb565b34801561092d57600080fd5b506103e561093c366004613658565b6122a7565b34801561094d57600080fd5b5061049661095c366004613658565b6123fc565b34801561096d57600080fd5b5061049661097c366004613605565b61240e565b34801561098d57600080fd5b506103e561099c366004613372565b6124ba565b6103b86109af366004613658565b6124e7565b3480156109c057600080fd5b506103826109cf366004613658565b61251d565b6060806109e0836125bf565b610a235760408051600180825281830190925290602080830190803883390190505090508281600081518110610a1257fe5b602002602001018181525050610a7f565b60008381526024602090815260409182902080548351818402810184019094528084529091830182828015610a7757602002820191906000526020600020905b815481526020019060010190808311610a63575b505050505090505b90505b919050565b6001600160e01b03191660009081526020819052604090205460ff1690565b600f80546001810182556000919091527f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8026008820401805463ffffffff60079093166004026101000a928302191660e09390931c91909102919091179055565b601c8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b925780601f10610b6757610100808354040283529160200191610b92565b820191906000526020600020905b815481529060010190602001808311610b7557829003601f168201915b505050505090505b90565b6000610ba8826125d2565b610bcd5760405162461bcd60e51b8152600401610bc490614441565b60405180910390fd5b506000908152600260205260409020546001600160a01b031690565b6000610bf48261152e565b9050806001600160a01b0316836001600160a01b03161415610c285760405162461bcd60e51b8152600401610bc490614491565b336001600160a01b0382161480610c445750610c4481336121fb565b610c605760405162461bcd60e51b8152600401610bc4906143d1565b60008281526002602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b602554604051630d392cd960e01b81526000916001600160a01b0316908190630d392cd990610cf19087908790600401614262565b602060405180830381600087803b158015610d0b57600080fd5b505af1158015610d1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610d43919081019061363a565b9150505b92915050565b602554604051630ee02d9d60e01b81526000916001600160a01b0316908190630ee02d9d90610d8a908b908b908b908b908b908b90600401614201565b60206040518083038186803b158015610da257600080fd5b505afa158015610db6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610dda9190810190613676565b98975050505050505050565b333014610df257600080fd5b600060606000368080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250505050602081015192509050610e3f8261161a565b610e4c57610e4c82610aa6565b5050600d55565b6018546000906001600160a01b03163314610e6d57600080fd5b60008381526022602090815260409091208351610e8c928501906130f8565b5060019392505050565b333014610ea257600080fd5b600060606000368080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250505050602081015192509050610eef8261161a565b610efc57610efc82610aa6565b610f0583611406565b610f215760405162461bcd60e51b8152600401610bc490614411565b6000805b600e5460001901811015610fdd57846001600160a01b0316600e8281548110610f4a57fe5b6000918252602090912001546001600160a01b03161415610f6a57600191505b8115610fd557600e8160010181548110610f8057fe5b600091825260209091200154600e80546001600160a01b039092169183908110610fa657fe5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055505b600101610f25565b50600e805490610ff1906000198301613176565b5050505050565b60075490565b60006110098361152e565b6001600160a01b0316336001600160a01b0316146110395760405162461bcd60e51b8152600401610bc490614461565b6000838152601b602052604090205482111561105457600080fd5b6000838152601b6020526040902054611073908363ffffffff6125ef16565b6000848152601b6020526040808220929092559051339184156108fc02918591818181858888f1935050505015156001151514156110b357506001610d47565b600080fd5b6110c23382612617565b6110de5760405162461bcd60e51b8152600401610bc4906144a1565b6110e9838383612694565b505050565b3330146110fa57600080fd5b600060606000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050506020810151925090506111478261161a565b6111545761115482610aa6565b600061115e6126b3565b905061116a86826126c7565b600090815260146020908152604080832096909655601590529390932091909155505050565b600061119b83611563565b82106111b95760405162461bcd60e51b8152600401610bc490614341565b6001600160a01b03831660009081526005602052604090208054839081106111dd57fe5b9060005260206000200154905092915050565b3330146111fc57600080fd5b600060606000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050506020810151925090506112498261161a565b6112565761125682610aa6565b5050601780546001600160a01b0319166001600160a01b0392909216919091179055565b600061128533611406565b6112a15760405162461bcd60e51b8152600401610bc4906143e1565b8151602083018181206010556112ba91601191906130f8565b506112c76013600061319a565b60138054600181810183556000929092527f66de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a0900180546001600160a01b0319163317905560208301516012805460e083901c63ffffffff19909116179055600d54909114156113e157604051309061133f90859061413b565b6000604051808303816000865af19150503d806000811461137c576040519150601f19603f3d011682016040523d82523d6000602084013e611381565b606091505b50505061138d8161161a565b6113a95760405162461bcd60e51b8152600401610bc490614331565b7f4d65f8c6a6ca4efe15b7a4093a93d6d3b48d13d1d6ad488d00a54b1989c3e6cd816040516113d891906142aa565b60405180910390a15b5050601054919050565b6110e983838360405180602001604052806000815250611cb8565b6000805b600e5481101561145257600e818154811061142157fe5b6000918252602090912001546001600160a01b038481169116141561144a576001915050610a82565b60010161140a565b50600092915050565b6000611465610ff8565b82106114835760405162461bcd60e51b8152600401610bc4906144b1565b6007828154811061149057fe5b90600052602060002001549050919050565b601b6020526000908152604090205481565b602554604051630622f97360e41b81526001600160a01b0390911690819063622f9730906114f2908b908b908b908b908b908b908b906004016142b8565b600060405180830381600087803b15801561150c57600080fd5b505af1158015611520573d6000803e3d6000fd5b505050505050505050505050565b6000818152600160205260408120546001600160a01b031680610a7f5760405162461bcd60e51b8152600401610bc490614401565b60006001600160a01b03821661158b5760405162461bcd60e51b8152600401610bc4906143f1565b6001600160a01b0382166000908152600360205260409020610a7f906126e8565b6115b46119fd565b6115d05760405162461bcd60e51b8152600401610bc490614451565b600c546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600c80546001600160a01b0319169055565b6000805b600f5481101561145257826001600160e01b031916600f828154811061164057fe5b90600052602060002090600891828204019190066004029054906101000a900460e01b6001600160e01b031916141561167d576001915050610a82565b60010161161e565b33301461169157600080fd5b600060606000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050506020810151925090506116de8261161a565b6116eb576116eb82610aa6565b5050601880546001600160a01b0319166001600160a01b0392909216919091179055565b33301461171b57600080fd5b600060606000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050506020810151925090506117688261161a565b6117755761177582610aa6565b5050600e80546001810182556000919091527fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0180546001600160a01b0319166001600160a01b0392909216919091179055565b6060336117d58361152e565b6001600160a01b0316146117e857600080fd5b60008281526024602052604090205461180057600080fd5b6000828152602460209081526040918290205482518181528183028101909201909252606091801561183c578160200160208202803883390190505b50905060005b60008481526024602052604090205481101561191f576000848152602460205260409020805430916323b872dd91839133918690811061187e57fe5b90600052602060002001546040518463ffffffff1660e01b81526004016118a79392919061416c565b600060405180830381600087803b1580156118c157600080fd5b505af11580156118d5573d6000803e3d6000fd5b50505060008581526024602052604090208054909150829081106118f557fe5b906000526020600020015482828151811061190c57fe5b6020908102919091010152600101611842565b5060008381526024602052604081206119389082613176565b5061194333846126ec565b7fc3b04070c3412821b93935b4cda141f6d47c3a92b81adf9c79b71f61eb07955633846040516119749291906141d8565b60405180910390a192915050565b6001600160a01b0381166000908152600560209081526040918290208054835181840281018401909452808452606093928301828280156119e257602002820191906000526020600020905b8154815260200190600101908083116119ce575b50505050509050919050565b600c546001600160a01b031690565b600c546001600160a01b0316331490565b6017546001600160a01b03838116911614611a2857600080fd5b8051602014611a3657600080fd5b6000611a41826126f6565b6017546040516323b872dd60e01b81529192506001600160a01b03169081906323b872dd90611a7890899030908a906004016141f3565b602060405180830381600087803b158015611a9257600080fd5b505af1158015611aa6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250611aca919081019061363a565b611ad357600080fd5b6000828152601a6020526040902054611af2908663ffffffff61273316565b6000928352601a602052604090922091909155505b50505050565b601d8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b925780601f10610b6757610100808354040283529160200191610b92565b60146020526000908152604090205481565b6001600160a01b038216331415611ba95760405162461bcd60e51b8152600401610bc4906143a1565b3360008181526004602090815260408083206001600160a01b038716808552925291829020805460ff191685151517905590519091907f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611c0c90859061428e565b60405180910390a35050565b601a6020526000908152604090205481565b6000333014611c3857600080fd5b600060606000368080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250505050602081015192509050611c858261161a565b611c9257611c9282610aa6565b5050602580546001600160a01b0319166001600160a01b03939093169290921790915590565b611cc38484846110b8565b611ccf8484848461275f565b611b075760405162461bcd60e51b8152600401610bc490614351565b611cf48161152e565b6001600160a01b0316336001600160a01b031614611d245760405162461bcd60e51b8152600401610bc490614461565b6000818152601a6020526040902054821115611d3f57600080fd5b6017546000828152601a60205260409020546001600160a01b0390911690611d6d908463ffffffff6125ef16565b6000838152601a602052604090819020919091555163a9059cbb60e01b81526001600160a01b0382169063a9059cbb90611dad90339087906004016141d8565b602060405180830381600087803b158015611dc757600080fd5b505af1158015611ddb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250611dff919081019061363a565b6110e957600080fd5b6060611e13826125d2565b611e1c57600080fd5b60008281526022602090815260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845260609392830182828015611eb15780601f10611e8657610100808354040283529160200191611eb1565b820191906000526020600020905b815481529060010190602001808311611e9457829003601f168201915b5050505050905080516000141561204957601f8054604080516020600260001961010060018716150201909416939093048085018490048402820184019092528181526120419361203293611fe99390830182828015611f525780601f10611f2757610100808354040283529160200191611f52565b820191906000526020600020905b815481529060010190602001808311611f3557829003601f168201915b50506020805460408051601f600260001961010060018716150201909416939093049283018490048402810184019091528181529450909250905082820182828015611fdf5780601f10611fb457610100808354040283529160200191611fdf565b820191906000526020600020905b815481529060010190602001808311611fc257829003601f168201915b5050505050612825565b60008681526014602052604090205461202d9061200e906120099061291c565b612961565b604051806040016040528060018152602001602f60f81b815250612825565b612825565b61202d61200e6120098761291c565b915050610a82565b60008381526022602090815260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845290918301828280156120dc5780601f106120b1576101008083540402835291602001916120dc565b820191906000526020600020905b8154815290600101906020018083116120bf57829003601f168201915b5050505050915050610a82565b60408051602081019091526000815290565b600033301461210957600080fd5b600060606000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050506020810151925090506121568261161a565b6121635761216382610aa6565b835161217690601f9060208701906130f8565b506001949350505050565b600033301461218f57600080fd5b600060606000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050506020810151925090506121dc8261161a565b6121e9576121e982610aa6565b835161217690602090818701906130f8565b60165460405163c455279160e01b81526000916001600160a01b039081169190841690829063c45527919061223490889060040161415e565b60206040518083038186803b15801561224c57600080fd5b505afa158015612260573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061228491908101906137d0565b6001600160a01b0316141561229d576001915050610d47565b610d4384846129d8565b6122b033611406565b6122cc5760405162461bcd60e51b8152600401610bc490614471565b6122d533612a06565b156122df57600080fd5b60105481141561232c57601380546001810182556000919091527f66de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a0900180546001600160a01b031916331790555b600d54601354106123f957604051309061234890601190614147565b6000604051808303816000865af19150503d8060008114612385576040519150601f19603f3d011682016040523d82523d6000602084013e61238a565b606091505b505060125461239c915060e01b61161a565b6123b85760405162461bcd60e51b8152600401610bc490614421565b6012546040517f4d65f8c6a6ca4efe15b7a4093a93d6d3b48d13d1d6ad488d00a54b1989c3e6cd916123f09160e09190911b906142aa565b60405180910390a15b50565b60156020526000908152604090205481565b60008061242a600161241e610ff8565b9063ffffffff61273316565b905061243633826126c7565b60005b835181101561246857612460333086848151811061245357fe5b60200260200101516110b8565b600101612439565b5060008181526024602090815260409091208451612488928601906131b8565b507f5cdc298d65b7467e834257592ceff0c579a6aad6f7712798366d16b146ba58fc33826040516119749291906141d8565b6124c26119fd565b6124de5760405162461bcd60e51b8152600401610bc490614451565b6123f981612a52565b6000818152601b6020526040812054612506903463ffffffff61273316565b6000838152601b6020526040902055506001919050565b606080612529836125bf565b61255b5760408051600180825281830190925290602080830190803883390190505090508281600081518110610a1257fe5b60005b6000848152602460205260409020548110156125b8576125ae826125a960246000888152602001908152602001600020848154811061259957fe5b906000526020600020015461251d565b612ad4565b915060010161255e565b5092915050565b6000908152602460205260409020541590565b6000908152600160205260409020546001600160a01b0316151590565b6000828211156126115760405162461bcd60e51b8152600401610bc4906143b1565b50900390565b6000612622826125d2565b61263e5760405162461bcd60e51b8152600401610bc4906143c1565b60006126498361152e565b9050806001600160a01b0316846001600160a01b031614806126845750836001600160a01b031661267984610b9d565b6001600160a01b0316145b80610d435750610d4381856121fb565b61269f838383612b92565b6126a98382612c98565b6110e98282612d86565b60006126c2600161241e610ff8565b905090565b6126d18282612dc4565b6126db8282612d86565b6126e481612e8b565b5050565b5490565b6126e48282612ecf565b600080805b83518110156125b8578060010184510360080260020a84828151811061271d57fe5b016020015160f81c0291909101906001016126fb565b6000828201838110156127585760405162461bcd60e51b8152600401610bc490614381565b9392505050565b6000612773846001600160a01b0316612f17565b61277f5750600161281d565b604051630a85bd0160e11b81526000906001600160a01b0386169063150b7a02906127b49033908a9089908990600401614194565b602060405180830381600087803b1580156127ce57600080fd5b505af11580156127e2573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061280691908101906136b2565b6001600160e01b031916630a85bd0160e11b149150505b949350505050565b6060808390506060839050606081518351016040519080825280601f01601f191660200182016040528015612861576020820181803883390190505b509050806000805b85518110156128ba5785818151811061287e57fe5b602001015160f81c60f81b83838060010194508151811061289b57fe5b60200101906001600160f81b031916908160001a905350600101612869565b5060005b845181101561290f578481815181106128d357fe5b602001015160f81c60f81b8383806001019450815181106128f057fe5b60200101906001600160f81b031916908160001a9053506001016128be565b5090979650505050505050565b60008161292e5750600360fc1b610a82565b8115610a825761010081049050600a8206603001600160f81b0260001b81179050600a828161295957fe5b04915061292e565b60408051602080825281830190925260609182919060208201818038833901905050905060005b60208110156125b8576008810260020a84026001600160f81b03198116156129cf57808383815181106129b757fe5b60200101906001600160f81b031916908160001a9053505b50600101612988565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b6000805b6013548110156114525760138181548110612a2157fe5b6000918252602090912001546001600160a01b0384811691161415612a4a576001915050610a82565b600101612a0a565b6001600160a01b038116612a785760405162461bcd60e51b8152600401610bc490614361565b600c546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6060808251845101604051908082528060200260200182016040528015612b05578160200160208202803883390190505b50905060005b8451811015612b4757848181518110612b2057fe5b6020026020010151828281518110612b3457fe5b6020908102919091010152600101612b0b565b5060005b8351811015612b8a57838181518110612b6057fe5b6020026020010151828287510181518110612b7757fe5b6020908102919091010152600101612b4b565b509392505050565b826001600160a01b0316612ba58261152e565b6001600160a01b031614612bcb5760405162461bcd60e51b8152600401610bc490614481565b6001600160a01b038216612bf15760405162461bcd60e51b8152600401610bc490614391565b612bfa81612f1d565b6001600160a01b0383166000908152600360205260409020612c1b90612f58565b6001600160a01b0382166000908152600360205260409020612c3c90612f6f565b60008181526001602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b038216600090815260056020526040812054612cc290600163ffffffff6125ef16565b600083815260066020526040902054909150808214612d5d576001600160a01b0384166000908152600560205260408120805484908110612cff57fe5b906000526020600020015490508060056000876001600160a01b03166001600160a01b031681526020019081526020016000208381548110612d3d57fe5b600091825260208083209091019290925591825260069052604090208190555b6001600160a01b0384166000908152600560205260409020805490610ff1906000198301613176565b6001600160a01b0390911660009081526005602081815260408084208054868652600684529185208290559282526001810183559183529091200155565b6001600160a01b038216612dea5760405162461bcd60e51b8152600401610bc490614431565b612df3816125d2565b15612e105760405162461bcd60e51b8152600401610bc490614371565b600081815260016020908152604080832080546001600160a01b0319166001600160a01b038716908117909155835260039091529020612e4f90612f6f565b60405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600780546000838152600860205260408120829055600182018355919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880155565b612ed98282612f78565b6000818152600b602052604090205460026000196101006001841615020190911604156126e4576000818152600b602052604081206126e4916131f2565b3b151590565b6000818152600260205260409020546001600160a01b0316156123f957600090815260026020526040902080546001600160a01b0319169055565b8054612f6b90600163ffffffff6125ef16565b9055565b80546001019055565b612f828282612fa4565b612f8c8282612c98565b6000818152600660205260408120556126e48161305c565b816001600160a01b0316612fb78261152e565b6001600160a01b031614612fdd5760405162461bcd60e51b8152600401610bc4906144c1565b612fe681612f1d565b6001600160a01b038216600090815260036020526040902061300790612f58565b60008181526001602052604080822080546001600160a01b0319169055518291906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60075460009061307390600163ffffffff6125ef16565b6000838152600860205260408120546007805493945090928490811061309557fe5b9060005260206000200154905080600783815481106130b057fe5b600091825260208083209091019290925582815260089091526040902082905560078054906130e3906000198301613176565b50505060009182525060086020526040812055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061313957805160ff1916838001178555613166565b82800160010185558215613166579182015b8281111561316657825182559160200191906001019061314b565b50613172929150613232565b5090565b8154818355818111156110e9576000838152602090206110e9918101908301613232565b50805460008255906000526020600020908101906123f99190613232565b828054828255906000526020600020908101928215613166579160200282018281111561316657825182559160200191906001019061314b565b50805460018160011615610100020316600290046000825580601f1061321857506123f9565b601f0160209004906000526020600020908101906123f991905b610b9a91905b808211156131725760008155600101613238565b8035610d47816145e1565b600082601f83011261326857600080fd5b813561327b613276826144f8565b6144d1565b915081818352602084019350602081019050838560208402820111156132a057600080fd5b60005b838110156132cc57816132b688826132ec565b84525060209283019291909101906001016132a3565b5050505092915050565b8035610d47816145f5565b8051610d47816145f5565b8035610d47816145fe565b8051610d47816145fe565b8035610d4781614607565b8051610d4781614607565b600082601f83011261332957600080fd5b813561333761327682614519565b9150808252602083016020830185838301111561335357600080fd5b61335e83828461459f565b50505092915050565b8051610d4781614610565b60006020828403121561338457600080fd5b6000610d43848461324c565b600080604083850312156133a357600080fd5b60006133af858561324c565b92505060206133c08582860161324c565b9150509250929050565b6000806000606084860312156133df57600080fd5b60006133eb868661324c565b93505060206133fc8682870161324c565b925050604061340d868287016132ec565b9150509250925092565b6000806000806080858703121561342d57600080fd5b6000613439878761324c565b945050602061344a8782880161324c565b935050604061345b878288016132ec565b925050606085013567ffffffffffffffff81111561347857600080fd5b61348487828801613318565b91505092959194509250565b60008060008060008060c087890312156134a957600080fd5b60006134b5898961324c565b96505060206134c689828a0161324c565b95505060406134d789828a016132ec565b945050606087013567ffffffffffffffff8111156134f457600080fd5b61350089828a01613318565b935050608061351189828a0161324c565b92505060a061352289828a016132ec565b9150509295509295509295565b6000806040838503121561354257600080fd5b600061354e858561324c565b92505060206133c0858286016132d6565b6000806040838503121561357257600080fd5b600061357e858561324c565b92505060206133c0858286016132ec565b600080600080608085870312156135a557600080fd5b60006135b1878761324c565b94505060206135c2878288016132ec565b935050604061345b8782880161324c565b6000806000606084860312156135e857600080fd5b60006135f4868661324c565b93505060206133fc868287016132ec565b60006020828403121561361757600080fd5b813567ffffffffffffffff81111561362e57600080fd5b610d4384828501613257565b60006020828403121561364c57600080fd5b6000610d4384846132e1565b60006020828403121561366a57600080fd5b6000610d4384846132ec565b60006020828403121561368857600080fd5b6000610d4384846132f7565b6000602082840312156136a657600080fd5b6000610d438484613302565b6000602082840312156136c457600080fd5b6000610d43848461330d565b6000602082840312156136e257600080fd5b813567ffffffffffffffff8111156136f957600080fd5b610d4384828501613318565b600080600080600080600060e0888a03121561372057600080fd5b873567ffffffffffffffff81111561373757600080fd5b6137438a828b01613318565b97505060206137548a828b0161324c565b96505060406137658a828b0161324c565b95505060606137768a828b016132ec565b945050608088013567ffffffffffffffff81111561379357600080fd5b61379f8a828b01613318565b93505060a06137b08a828b0161324c565b92505060c06137c18a828b016132ec565b91505092959891949750929550565b6000602082840312156137e257600080fd5b6000610d438484613367565b6000806040838503121561380157600080fd5b600061380d85856132ec565b925050602083013567ffffffffffffffff81111561382a57600080fd5b6133c085828601613318565b6000806040838503121561384957600080fd5b600061357e85856132ec565b600061386183836138e3565b505060200190565b61387281614594565b82525050565b61387281614560565b600061388c82614553565b6138968185614557565b93506138a183614541565b8060005b838110156138cf5781516138b98882613855565b97506138c483614541565b9250506001016138a5565b509495945050505050565b6138728161456b565b61387281610b9a565b61387281614570565b600061390082614553565b61390a8185614557565b935061391a8185602086016145ab565b613923816145d7565b9093019392505050565b600061393882614553565b6139428185610a82565b93506139528185602086016145ab565b9290920192915050565b600081546001811660008114613979576001811461399c576139db565b607f600283041661398a8187610a82565b60ff19841681529550850192506139db565b600282046139aa8187610a82565b95506139b585614547565b60005b828110156139d4578154888201526001909101906020016139b8565b5050850192505b505092915050565b60006139f0604783614557565b7f696e697469616c43616c6c202d2043616c6c656420612066756e6374696f6e2081527f776974686f757420746865206f6e6c794d756c74695369674f776e657273206d60208201526637b234b334b2b960c91b604082015260600192915050565b6000613a5f602b83614557565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7581526a74206f6620626f756e647360a81b602082015260400192915050565b6000613aac603283614557565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526581527131b2b4bb32b91034b6b83632b6b2b73a32b960711b602082015260400192915050565b6000613b00602683614557565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206181526564647265737360d01b602082015260400192915050565b6000613b48601c83614557565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000815260200192915050565b6000613b81601b83614557565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000815260200192915050565b6000613bba602483614557565b7f4552433732313a207472616e7366657220746f20746865207a65726f206164648152637265737360e01b602082015260400192915050565b6000613c00601983614557565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000815260200192915050565b6000613c39601e83614557565b7f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815260200192915050565b6000613c72602c83614557565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657881526b34b9ba32b73a103a37b5b2b760a11b602082015260400192915050565b6000613cc0603883614557565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7781527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015260400192915050565b6000613d1f602083614557565b7f496e697469616c2063616c6c202d204e6f7420696e206f776e6572206c697374815260200192915050565b6000613d58602a83614557565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a65815269726f206164647265737360b01b602082015260400192915050565b6000613da4602983614557565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737481526832b73a103a37b5b2b760b91b602082015260400192915050565b6000613def602083614557565b7f52656d6f7665206f776e6572202d204e6f7420696e206f776e6572206c697374815260200192915050565b6000613e28604383614557565b7f617070726f7665202d2043616c6c656420612066756e6374696f6e207769746881527f6f757420746865206f6e6c794d756c74695369674f776e657273206d6f64696660208201526234b2b960e91b604082015260600192915050565b6000613e93602083614557565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373815260200192915050565b6000613ecc602c83614557565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657881526b34b9ba32b73a103a37b5b2b760a11b602082015260400192915050565b6000613f1a602083614557565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572815260200192915050565b6000613f53601983614557565b7f596f75206e65656420746f206f776e2074686520617373657400000000000000815260200192915050565b6000613f8c601b83614557565b7f417070726f7665202d204e6f7420696e206f776e6572206c6973740000000000815260200192915050565b6000613fc5602983614557565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206981526839903737ba1037bbb760b91b602082015260400192915050565b6000614010602183614557565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e658152603960f91b602082015260400192915050565b6000610d47600083610a82565b6000614060603183614557565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f8152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b602082015260400192915050565b60006140b3602c83614557565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f81526b7574206f6620626f756e647360a01b602082015260400192915050565b6000614101602583614557565b7f4552433732313a206275726e206f6620746f6b656e2074686174206973206e6f8152643a1037bbb760d91b602082015260400192915050565b6000612758828461392d565b6000612758828461395c565b6000610d4782614046565b60208101610d478284613878565b6060810161417a8286613869565b6141876020830185613869565b61281d60408301846138e3565b608081016141a28287613869565b6141af6020830186613878565b6141bc60408301856138e3565b81810360608301526141ce81846138f5565b9695505050505050565b604081016141e68285613869565b61275860208301846138e3565b6060810161417a8286613878565b60c0810161420f8289613878565b61421c6020830188613878565b61422960408301876138e3565b818103606083015261423b81866138f5565b905061424a6080830185613878565b61425760a08301846138e3565b979650505050505050565b604081016142708285613878565b61275860208301846138da565b602080825281016127588184613881565b60208101610d4782846138da565b60208101610d4782846138e3565b60208101610d4782846138ec565b60e080825281016142c9818a6138f5565b90506142d86020830189613878565b6142e56040830188613878565b6142f260608301876138e3565b818103608083015261430481866138f5565b905061431360a0830185613878565b610dda60c08301846138e3565b6020808252810161275881846138f5565b60208082528101610a7f816139e3565b60208082528101610a7f81613a52565b60208082528101610a7f81613a9f565b60208082528101610a7f81613af3565b60208082528101610a7f81613b3b565b60208082528101610a7f81613b74565b60208082528101610a7f81613bad565b60208082528101610a7f81613bf3565b60208082528101610a7f81613c2c565b60208082528101610a7f81613c65565b60208082528101610a7f81613cb3565b60208082528101610a7f81613d12565b60208082528101610a7f81613d4b565b60208082528101610a7f81613d97565b60208082528101610a7f81613de2565b60208082528101610a7f81613e1b565b60208082528101610a7f81613e86565b60208082528101610a7f81613ebf565b60208082528101610a7f81613f0d565b60208082528101610a7f81613f46565b60208082528101610a7f81613f7f565b60208082528101610a7f81613fb8565b60208082528101610a7f81614003565b60208082528101610a7f81614053565b60208082528101610a7f816140a6565b60208082528101610a7f816140f4565b60405181810167ffffffffffffffff811182821017156144f057600080fd5b604052919050565b600067ffffffffffffffff82111561450f57600080fd5b5060209081020190565b600067ffffffffffffffff82111561453057600080fd5b506020601f91909101601f19160190565b60200190565b60009081526020902090565b5190565b90815260200190565b6000610a7f82614588565b151590565b6001600160e01b03191690565b6000610a7f82614560565b6001600160a01b031690565b6000610a7f8261457d565b82818337506000910152565b60005b838110156145c65781810151838201526020016145ae565b83811115611b075750506000910152565b601f01601f191690565b6145ea81614560565b81146123f957600080fd5b6145ea8161456b565b6145ea81610b9a565b6145ea81614570565b6145ea8161457d56fea365627a7a723158201f8aa00dbb99d8daad2c08f479f5af40a690b2143bd50e038961fc52e69e599b6c6578706572696d656e74616cf564736f6c634300050b0040000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c100000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000045e42d659d9f9466cd5df622506033145a9b89bc0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000007423245204e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064232454e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002868747470733a2f2f6232652d6e66742e6865726f6b756170702e636f6d2f6170692f746f6b656e2f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000009a27defa6dbf90963c44a55689822e2e593fdc240000000000000000000000003467446b5a31f678fcea43cf1fe88c307f750b6b000000000000000000000000c01d95868bb0db1836ae939fea4f8380a69e7c3c0000000000000000000000007f7b04b212a1c51216b795dcebf911766a602b9b

Deployed Bytecode

0x6080604052600436106102fe5760003560e01c8063756928ec11610190578063b88d4fde116100dc578063e985e9c511610095578063f080b8471161006f578063f080b84714610961578063f2fde38b14610981578063f52cc913146109a1578063fbc5a75f146109b4576102fe565b8063e985e9c514610901578063e9fb606514610921578063eb52e86314610941576102fe565b8063b88d4fde1461084c578063c6df79bd1461086c578063c87b56dd1461088c578063d547cfb7146108ac578063d6ea0a51146108c1578063e76b87cf146108e1576102fe565b80638f32d59b116101495780639acf878c116101235780639acf878c146107cc578063a22cb465146107ec578063adaeb6fc1461080c578063af27d8091461082c576102fe565b80638f32d59b146107825780638f4ffcb11461079757806395d89b41146107b7576102fe565b8063756928ec146106cd5780637a2a48fb146106ed578063809073561461070d57806383fca1241461072d5780638462151c1461074d5780638da5cb5b1461076d576102fe565b806323b872dd1161024f57806345757b7e11610208578063622f9730116101e2578063622f9730146106585780636352211e1461067857806370a0823114610698578063715018a6146106b8576102fe565b806345757b7e146105f85780634f6ccce7146106185780635608f92c14610638576102fe565b806323b872dd146105385780632baf2acb146105585780632f745c591461057857806333c31c5d1461059857806338c8df22146105b857806342842e0e146105d8576102fe565b80630d392cd9116102bc578063162094c411610296578063162094c4146104c3578063173825d9146104e357806318160ddd1461050357806322dae45a14610518576102fe565b80630d392cd9146104565780630ee02d9d14610476578063144381c0146104a3576102fe565b806215f2291461036257806301ffc9a714610398578063042e1ac9146103c557806306fdde03146103e7578063081812fc14610409578063095ea7b314610436575b6025546040516001600160a01b0390911690349061031b90614153565b60006040518083038185875af1925050503d8060008114610358576040519150601f19603f3d011682016040523d82523d6000602084013e61035d565b606091505b505050005b34801561036e57600080fd5b5061038261037d366004613658565b6109d4565b60405161038f919061427d565b60405180910390f35b3480156103a457600080fd5b506103b86103b3366004613694565b610a87565b60405161038f919061428e565b3480156103d157600080fd5b506103e56103e0366004613694565b610aa6565b005b3480156103f357600080fd5b506103fc610b06565b60405161038f9190614320565b34801561041557600080fd5b50610429610424366004613658565b610b9d565b60405161038f919061415e565b34801561044257600080fd5b506103e561045136600461355f565b610be9565b34801561046257600080fd5b506103b861047136600461352f565b610cbc565b34801561048257600080fd5b50610496610491366004613490565b610d4d565b60405161038f919061429c565b3480156104af57600080fd5b506103e56104be366004613658565b610de6565b3480156104cf57600080fd5b506103b86104de3660046137ee565b610e53565b3480156104ef57600080fd5b506103e56104fe366004613372565b610e96565b34801561050f57600080fd5b50610496610ff8565b34801561052457600080fd5b506103b8610533366004613836565b610ffe565b34801561054457600080fd5b506103e56105533660046133ca565b6110b8565b34801561056457600080fd5b506103e56105733660046135d3565b6110ee565b34801561058457600080fd5b5061049661059336600461355f565b611190565b3480156105a457600080fd5b506103e56105b3366004613372565b6111f0565b3480156105c457600080fd5b506104966105d33660046136d0565b61127a565b3480156105e457600080fd5b506103e56105f33660046133ca565b6113eb565b34801561060457600080fd5b506103b8610613366004613372565b611406565b34801561062457600080fd5b50610496610633366004613658565b61145b565b34801561064457600080fd5b50610496610653366004613658565b6114a2565b34801561066457600080fd5b506103e5610673366004613705565b6114b4565b34801561068457600080fd5b50610429610693366004613658565b61152e565b3480156106a457600080fd5b506104966106b3366004613372565b611563565b3480156106c457600080fd5b506103e56115ac565b3480156106d957600080fd5b506103b86106e8366004613694565b61161a565b3480156106f957600080fd5b506103e5610708366004613372565b611685565b34801561071957600080fd5b506103e5610728366004613372565b61170f565b34801561073957600080fd5b50610382610748366004613658565b6117c9565b34801561075957600080fd5b50610382610768366004613372565b611982565b34801561077957600080fd5b506104296119ee565b34801561078e57600080fd5b506103b86119fd565b3480156107a357600080fd5b506103e56107b236600461358f565b611a0e565b3480156107c357600080fd5b506103fc611b0d565b3480156107d857600080fd5b506104966107e7366004613658565b611b6e565b3480156107f857600080fd5b506103e561080736600461352f565b611b80565b34801561081857600080fd5b50610496610827366004613658565b611c18565b34801561083857600080fd5b506103b8610847366004613372565b611c2a565b34801561085857600080fd5b506103e5610867366004613417565b611cb8565b34801561087857600080fd5b506103e5610887366004613836565b611ceb565b34801561089857600080fd5b506103fc6108a7366004613658565b611e08565b3480156108b857600080fd5b506103fc6120e9565b3480156108cd57600080fd5b506103b86108dc3660046136d0565b6120fb565b3480156108ed57600080fd5b506103b86108fc3660046136d0565b612181565b34801561090d57600080fd5b506103b861091c366004613390565b6121fb565b34801561092d57600080fd5b506103e561093c366004613658565b6122a7565b34801561094d57600080fd5b5061049661095c366004613658565b6123fc565b34801561096d57600080fd5b5061049661097c366004613605565b61240e565b34801561098d57600080fd5b506103e561099c366004613372565b6124ba565b6103b86109af366004613658565b6124e7565b3480156109c057600080fd5b506103826109cf366004613658565b61251d565b6060806109e0836125bf565b610a235760408051600180825281830190925290602080830190803883390190505090508281600081518110610a1257fe5b602002602001018181525050610a7f565b60008381526024602090815260409182902080548351818402810184019094528084529091830182828015610a7757602002820191906000526020600020905b815481526020019060010190808311610a63575b505050505090505b90505b919050565b6001600160e01b03191660009081526020819052604090205460ff1690565b600f80546001810182556000919091527f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8026008820401805463ffffffff60079093166004026101000a928302191660e09390931c91909102919091179055565b601c8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b925780601f10610b6757610100808354040283529160200191610b92565b820191906000526020600020905b815481529060010190602001808311610b7557829003601f168201915b505050505090505b90565b6000610ba8826125d2565b610bcd5760405162461bcd60e51b8152600401610bc490614441565b60405180910390fd5b506000908152600260205260409020546001600160a01b031690565b6000610bf48261152e565b9050806001600160a01b0316836001600160a01b03161415610c285760405162461bcd60e51b8152600401610bc490614491565b336001600160a01b0382161480610c445750610c4481336121fb565b610c605760405162461bcd60e51b8152600401610bc4906143d1565b60008281526002602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b602554604051630d392cd960e01b81526000916001600160a01b0316908190630d392cd990610cf19087908790600401614262565b602060405180830381600087803b158015610d0b57600080fd5b505af1158015610d1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610d43919081019061363a565b9150505b92915050565b602554604051630ee02d9d60e01b81526000916001600160a01b0316908190630ee02d9d90610d8a908b908b908b908b908b908b90600401614201565b60206040518083038186803b158015610da257600080fd5b505afa158015610db6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610dda9190810190613676565b98975050505050505050565b333014610df257600080fd5b600060606000368080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250505050602081015192509050610e3f8261161a565b610e4c57610e4c82610aa6565b5050600d55565b6018546000906001600160a01b03163314610e6d57600080fd5b60008381526022602090815260409091208351610e8c928501906130f8565b5060019392505050565b333014610ea257600080fd5b600060606000368080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250505050602081015192509050610eef8261161a565b610efc57610efc82610aa6565b610f0583611406565b610f215760405162461bcd60e51b8152600401610bc490614411565b6000805b600e5460001901811015610fdd57846001600160a01b0316600e8281548110610f4a57fe5b6000918252602090912001546001600160a01b03161415610f6a57600191505b8115610fd557600e8160010181548110610f8057fe5b600091825260209091200154600e80546001600160a01b039092169183908110610fa657fe5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055505b600101610f25565b50600e805490610ff1906000198301613176565b5050505050565b60075490565b60006110098361152e565b6001600160a01b0316336001600160a01b0316146110395760405162461bcd60e51b8152600401610bc490614461565b6000838152601b602052604090205482111561105457600080fd5b6000838152601b6020526040902054611073908363ffffffff6125ef16565b6000848152601b6020526040808220929092559051339184156108fc02918591818181858888f1935050505015156001151514156110b357506001610d47565b600080fd5b6110c23382612617565b6110de5760405162461bcd60e51b8152600401610bc4906144a1565b6110e9838383612694565b505050565b3330146110fa57600080fd5b600060606000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050506020810151925090506111478261161a565b6111545761115482610aa6565b600061115e6126b3565b905061116a86826126c7565b600090815260146020908152604080832096909655601590529390932091909155505050565b600061119b83611563565b82106111b95760405162461bcd60e51b8152600401610bc490614341565b6001600160a01b03831660009081526005602052604090208054839081106111dd57fe5b9060005260206000200154905092915050565b3330146111fc57600080fd5b600060606000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050506020810151925090506112498261161a565b6112565761125682610aa6565b5050601780546001600160a01b0319166001600160a01b0392909216919091179055565b600061128533611406565b6112a15760405162461bcd60e51b8152600401610bc4906143e1565b8151602083018181206010556112ba91601191906130f8565b506112c76013600061319a565b60138054600181810183556000929092527f66de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a0900180546001600160a01b0319163317905560208301516012805460e083901c63ffffffff19909116179055600d54909114156113e157604051309061133f90859061413b565b6000604051808303816000865af19150503d806000811461137c576040519150601f19603f3d011682016040523d82523d6000602084013e611381565b606091505b50505061138d8161161a565b6113a95760405162461bcd60e51b8152600401610bc490614331565b7f4d65f8c6a6ca4efe15b7a4093a93d6d3b48d13d1d6ad488d00a54b1989c3e6cd816040516113d891906142aa565b60405180910390a15b5050601054919050565b6110e983838360405180602001604052806000815250611cb8565b6000805b600e5481101561145257600e818154811061142157fe5b6000918252602090912001546001600160a01b038481169116141561144a576001915050610a82565b60010161140a565b50600092915050565b6000611465610ff8565b82106114835760405162461bcd60e51b8152600401610bc4906144b1565b6007828154811061149057fe5b90600052602060002001549050919050565b601b6020526000908152604090205481565b602554604051630622f97360e41b81526001600160a01b0390911690819063622f9730906114f2908b908b908b908b908b908b908b906004016142b8565b600060405180830381600087803b15801561150c57600080fd5b505af1158015611520573d6000803e3d6000fd5b505050505050505050505050565b6000818152600160205260408120546001600160a01b031680610a7f5760405162461bcd60e51b8152600401610bc490614401565b60006001600160a01b03821661158b5760405162461bcd60e51b8152600401610bc4906143f1565b6001600160a01b0382166000908152600360205260409020610a7f906126e8565b6115b46119fd565b6115d05760405162461bcd60e51b8152600401610bc490614451565b600c546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600c80546001600160a01b0319169055565b6000805b600f5481101561145257826001600160e01b031916600f828154811061164057fe5b90600052602060002090600891828204019190066004029054906101000a900460e01b6001600160e01b031916141561167d576001915050610a82565b60010161161e565b33301461169157600080fd5b600060606000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050506020810151925090506116de8261161a565b6116eb576116eb82610aa6565b5050601880546001600160a01b0319166001600160a01b0392909216919091179055565b33301461171b57600080fd5b600060606000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050506020810151925090506117688261161a565b6117755761177582610aa6565b5050600e80546001810182556000919091527fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0180546001600160a01b0319166001600160a01b0392909216919091179055565b6060336117d58361152e565b6001600160a01b0316146117e857600080fd5b60008281526024602052604090205461180057600080fd5b6000828152602460209081526040918290205482518181528183028101909201909252606091801561183c578160200160208202803883390190505b50905060005b60008481526024602052604090205481101561191f576000848152602460205260409020805430916323b872dd91839133918690811061187e57fe5b90600052602060002001546040518463ffffffff1660e01b81526004016118a79392919061416c565b600060405180830381600087803b1580156118c157600080fd5b505af11580156118d5573d6000803e3d6000fd5b50505060008581526024602052604090208054909150829081106118f557fe5b906000526020600020015482828151811061190c57fe5b6020908102919091010152600101611842565b5060008381526024602052604081206119389082613176565b5061194333846126ec565b7fc3b04070c3412821b93935b4cda141f6d47c3a92b81adf9c79b71f61eb07955633846040516119749291906141d8565b60405180910390a192915050565b6001600160a01b0381166000908152600560209081526040918290208054835181840281018401909452808452606093928301828280156119e257602002820191906000526020600020905b8154815260200190600101908083116119ce575b50505050509050919050565b600c546001600160a01b031690565b600c546001600160a01b0316331490565b6017546001600160a01b03838116911614611a2857600080fd5b8051602014611a3657600080fd5b6000611a41826126f6565b6017546040516323b872dd60e01b81529192506001600160a01b03169081906323b872dd90611a7890899030908a906004016141f3565b602060405180830381600087803b158015611a9257600080fd5b505af1158015611aa6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250611aca919081019061363a565b611ad357600080fd5b6000828152601a6020526040902054611af2908663ffffffff61273316565b6000928352601a602052604090922091909155505b50505050565b601d8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b925780601f10610b6757610100808354040283529160200191610b92565b60146020526000908152604090205481565b6001600160a01b038216331415611ba95760405162461bcd60e51b8152600401610bc4906143a1565b3360008181526004602090815260408083206001600160a01b038716808552925291829020805460ff191685151517905590519091907f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611c0c90859061428e565b60405180910390a35050565b601a6020526000908152604090205481565b6000333014611c3857600080fd5b600060606000368080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250505050602081015192509050611c858261161a565b611c9257611c9282610aa6565b5050602580546001600160a01b0319166001600160a01b03939093169290921790915590565b611cc38484846110b8565b611ccf8484848461275f565b611b075760405162461bcd60e51b8152600401610bc490614351565b611cf48161152e565b6001600160a01b0316336001600160a01b031614611d245760405162461bcd60e51b8152600401610bc490614461565b6000818152601a6020526040902054821115611d3f57600080fd5b6017546000828152601a60205260409020546001600160a01b0390911690611d6d908463ffffffff6125ef16565b6000838152601a602052604090819020919091555163a9059cbb60e01b81526001600160a01b0382169063a9059cbb90611dad90339087906004016141d8565b602060405180830381600087803b158015611dc757600080fd5b505af1158015611ddb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250611dff919081019061363a565b6110e957600080fd5b6060611e13826125d2565b611e1c57600080fd5b60008281526022602090815260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845260609392830182828015611eb15780601f10611e8657610100808354040283529160200191611eb1565b820191906000526020600020905b815481529060010190602001808311611e9457829003601f168201915b5050505050905080516000141561204957601f8054604080516020600260001961010060018716150201909416939093048085018490048402820184019092528181526120419361203293611fe99390830182828015611f525780601f10611f2757610100808354040283529160200191611f52565b820191906000526020600020905b815481529060010190602001808311611f3557829003601f168201915b50506020805460408051601f600260001961010060018716150201909416939093049283018490048402810184019091528181529450909250905082820182828015611fdf5780601f10611fb457610100808354040283529160200191611fdf565b820191906000526020600020905b815481529060010190602001808311611fc257829003601f168201915b5050505050612825565b60008681526014602052604090205461202d9061200e906120099061291c565b612961565b604051806040016040528060018152602001602f60f81b815250612825565b612825565b61202d61200e6120098761291c565b915050610a82565b60008381526022602090815260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845290918301828280156120dc5780601f106120b1576101008083540402835291602001916120dc565b820191906000526020600020905b8154815290600101906020018083116120bf57829003601f168201915b5050505050915050610a82565b60408051602081019091526000815290565b600033301461210957600080fd5b600060606000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050506020810151925090506121568261161a565b6121635761216382610aa6565b835161217690601f9060208701906130f8565b506001949350505050565b600033301461218f57600080fd5b600060606000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050506020810151925090506121dc8261161a565b6121e9576121e982610aa6565b835161217690602090818701906130f8565b60165460405163c455279160e01b81526000916001600160a01b039081169190841690829063c45527919061223490889060040161415e565b60206040518083038186803b15801561224c57600080fd5b505afa158015612260573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061228491908101906137d0565b6001600160a01b0316141561229d576001915050610d47565b610d4384846129d8565b6122b033611406565b6122cc5760405162461bcd60e51b8152600401610bc490614471565b6122d533612a06565b156122df57600080fd5b60105481141561232c57601380546001810182556000919091527f66de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a0900180546001600160a01b031916331790555b600d54601354106123f957604051309061234890601190614147565b6000604051808303816000865af19150503d8060008114612385576040519150601f19603f3d011682016040523d82523d6000602084013e61238a565b606091505b505060125461239c915060e01b61161a565b6123b85760405162461bcd60e51b8152600401610bc490614421565b6012546040517f4d65f8c6a6ca4efe15b7a4093a93d6d3b48d13d1d6ad488d00a54b1989c3e6cd916123f09160e09190911b906142aa565b60405180910390a15b50565b60156020526000908152604090205481565b60008061242a600161241e610ff8565b9063ffffffff61273316565b905061243633826126c7565b60005b835181101561246857612460333086848151811061245357fe5b60200260200101516110b8565b600101612439565b5060008181526024602090815260409091208451612488928601906131b8565b507f5cdc298d65b7467e834257592ceff0c579a6aad6f7712798366d16b146ba58fc33826040516119749291906141d8565b6124c26119fd565b6124de5760405162461bcd60e51b8152600401610bc490614451565b6123f981612a52565b6000818152601b6020526040812054612506903463ffffffff61273316565b6000838152601b6020526040902055506001919050565b606080612529836125bf565b61255b5760408051600180825281830190925290602080830190803883390190505090508281600081518110610a1257fe5b60005b6000848152602460205260409020548110156125b8576125ae826125a960246000888152602001908152602001600020848154811061259957fe5b906000526020600020015461251d565b612ad4565b915060010161255e565b5092915050565b6000908152602460205260409020541590565b6000908152600160205260409020546001600160a01b0316151590565b6000828211156126115760405162461bcd60e51b8152600401610bc4906143b1565b50900390565b6000612622826125d2565b61263e5760405162461bcd60e51b8152600401610bc4906143c1565b60006126498361152e565b9050806001600160a01b0316846001600160a01b031614806126845750836001600160a01b031661267984610b9d565b6001600160a01b0316145b80610d435750610d4381856121fb565b61269f838383612b92565b6126a98382612c98565b6110e98282612d86565b60006126c2600161241e610ff8565b905090565b6126d18282612dc4565b6126db8282612d86565b6126e481612e8b565b5050565b5490565b6126e48282612ecf565b600080805b83518110156125b8578060010184510360080260020a84828151811061271d57fe5b016020015160f81c0291909101906001016126fb565b6000828201838110156127585760405162461bcd60e51b8152600401610bc490614381565b9392505050565b6000612773846001600160a01b0316612f17565b61277f5750600161281d565b604051630a85bd0160e11b81526000906001600160a01b0386169063150b7a02906127b49033908a9089908990600401614194565b602060405180830381600087803b1580156127ce57600080fd5b505af11580156127e2573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061280691908101906136b2565b6001600160e01b031916630a85bd0160e11b149150505b949350505050565b6060808390506060839050606081518351016040519080825280601f01601f191660200182016040528015612861576020820181803883390190505b509050806000805b85518110156128ba5785818151811061287e57fe5b602001015160f81c60f81b83838060010194508151811061289b57fe5b60200101906001600160f81b031916908160001a905350600101612869565b5060005b845181101561290f578481815181106128d357fe5b602001015160f81c60f81b8383806001019450815181106128f057fe5b60200101906001600160f81b031916908160001a9053506001016128be565b5090979650505050505050565b60008161292e5750600360fc1b610a82565b8115610a825761010081049050600a8206603001600160f81b0260001b81179050600a828161295957fe5b04915061292e565b60408051602080825281830190925260609182919060208201818038833901905050905060005b60208110156125b8576008810260020a84026001600160f81b03198116156129cf57808383815181106129b757fe5b60200101906001600160f81b031916908160001a9053505b50600101612988565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b6000805b6013548110156114525760138181548110612a2157fe5b6000918252602090912001546001600160a01b0384811691161415612a4a576001915050610a82565b600101612a0a565b6001600160a01b038116612a785760405162461bcd60e51b8152600401610bc490614361565b600c546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6060808251845101604051908082528060200260200182016040528015612b05578160200160208202803883390190505b50905060005b8451811015612b4757848181518110612b2057fe5b6020026020010151828281518110612b3457fe5b6020908102919091010152600101612b0b565b5060005b8351811015612b8a57838181518110612b6057fe5b6020026020010151828287510181518110612b7757fe5b6020908102919091010152600101612b4b565b509392505050565b826001600160a01b0316612ba58261152e565b6001600160a01b031614612bcb5760405162461bcd60e51b8152600401610bc490614481565b6001600160a01b038216612bf15760405162461bcd60e51b8152600401610bc490614391565b612bfa81612f1d565b6001600160a01b0383166000908152600360205260409020612c1b90612f58565b6001600160a01b0382166000908152600360205260409020612c3c90612f6f565b60008181526001602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b038216600090815260056020526040812054612cc290600163ffffffff6125ef16565b600083815260066020526040902054909150808214612d5d576001600160a01b0384166000908152600560205260408120805484908110612cff57fe5b906000526020600020015490508060056000876001600160a01b03166001600160a01b031681526020019081526020016000208381548110612d3d57fe5b600091825260208083209091019290925591825260069052604090208190555b6001600160a01b0384166000908152600560205260409020805490610ff1906000198301613176565b6001600160a01b0390911660009081526005602081815260408084208054868652600684529185208290559282526001810183559183529091200155565b6001600160a01b038216612dea5760405162461bcd60e51b8152600401610bc490614431565b612df3816125d2565b15612e105760405162461bcd60e51b8152600401610bc490614371565b600081815260016020908152604080832080546001600160a01b0319166001600160a01b038716908117909155835260039091529020612e4f90612f6f565b60405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600780546000838152600860205260408120829055600182018355919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880155565b612ed98282612f78565b6000818152600b602052604090205460026000196101006001841615020190911604156126e4576000818152600b602052604081206126e4916131f2565b3b151590565b6000818152600260205260409020546001600160a01b0316156123f957600090815260026020526040902080546001600160a01b0319169055565b8054612f6b90600163ffffffff6125ef16565b9055565b80546001019055565b612f828282612fa4565b612f8c8282612c98565b6000818152600660205260408120556126e48161305c565b816001600160a01b0316612fb78261152e565b6001600160a01b031614612fdd5760405162461bcd60e51b8152600401610bc4906144c1565b612fe681612f1d565b6001600160a01b038216600090815260036020526040902061300790612f58565b60008181526001602052604080822080546001600160a01b0319169055518291906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60075460009061307390600163ffffffff6125ef16565b6000838152600860205260408120546007805493945090928490811061309557fe5b9060005260206000200154905080600783815481106130b057fe5b600091825260208083209091019290925582815260089091526040902082905560078054906130e3906000198301613176565b50505060009182525060086020526040812055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061313957805160ff1916838001178555613166565b82800160010185558215613166579182015b8281111561316657825182559160200191906001019061314b565b50613172929150613232565b5090565b8154818355818111156110e9576000838152602090206110e9918101908301613232565b50805460008255906000526020600020908101906123f99190613232565b828054828255906000526020600020908101928215613166579160200282018281111561316657825182559160200191906001019061314b565b50805460018160011615610100020316600290046000825580601f1061321857506123f9565b601f0160209004906000526020600020908101906123f991905b610b9a91905b808211156131725760008155600101613238565b8035610d47816145e1565b600082601f83011261326857600080fd5b813561327b613276826144f8565b6144d1565b915081818352602084019350602081019050838560208402820111156132a057600080fd5b60005b838110156132cc57816132b688826132ec565b84525060209283019291909101906001016132a3565b5050505092915050565b8035610d47816145f5565b8051610d47816145f5565b8035610d47816145fe565b8051610d47816145fe565b8035610d4781614607565b8051610d4781614607565b600082601f83011261332957600080fd5b813561333761327682614519565b9150808252602083016020830185838301111561335357600080fd5b61335e83828461459f565b50505092915050565b8051610d4781614610565b60006020828403121561338457600080fd5b6000610d43848461324c565b600080604083850312156133a357600080fd5b60006133af858561324c565b92505060206133c08582860161324c565b9150509250929050565b6000806000606084860312156133df57600080fd5b60006133eb868661324c565b93505060206133fc8682870161324c565b925050604061340d868287016132ec565b9150509250925092565b6000806000806080858703121561342d57600080fd5b6000613439878761324c565b945050602061344a8782880161324c565b935050604061345b878288016132ec565b925050606085013567ffffffffffffffff81111561347857600080fd5b61348487828801613318565b91505092959194509250565b60008060008060008060c087890312156134a957600080fd5b60006134b5898961324c565b96505060206134c689828a0161324c565b95505060406134d789828a016132ec565b945050606087013567ffffffffffffffff8111156134f457600080fd5b61350089828a01613318565b935050608061351189828a0161324c565b92505060a061352289828a016132ec565b9150509295509295509295565b6000806040838503121561354257600080fd5b600061354e858561324c565b92505060206133c0858286016132d6565b6000806040838503121561357257600080fd5b600061357e858561324c565b92505060206133c0858286016132ec565b600080600080608085870312156135a557600080fd5b60006135b1878761324c565b94505060206135c2878288016132ec565b935050604061345b8782880161324c565b6000806000606084860312156135e857600080fd5b60006135f4868661324c565b93505060206133fc868287016132ec565b60006020828403121561361757600080fd5b813567ffffffffffffffff81111561362e57600080fd5b610d4384828501613257565b60006020828403121561364c57600080fd5b6000610d4384846132e1565b60006020828403121561366a57600080fd5b6000610d4384846132ec565b60006020828403121561368857600080fd5b6000610d4384846132f7565b6000602082840312156136a657600080fd5b6000610d438484613302565b6000602082840312156136c457600080fd5b6000610d43848461330d565b6000602082840312156136e257600080fd5b813567ffffffffffffffff8111156136f957600080fd5b610d4384828501613318565b600080600080600080600060e0888a03121561372057600080fd5b873567ffffffffffffffff81111561373757600080fd5b6137438a828b01613318565b97505060206137548a828b0161324c565b96505060406137658a828b0161324c565b95505060606137768a828b016132ec565b945050608088013567ffffffffffffffff81111561379357600080fd5b61379f8a828b01613318565b93505060a06137b08a828b0161324c565b92505060c06137c18a828b016132ec565b91505092959891949750929550565b6000602082840312156137e257600080fd5b6000610d438484613367565b6000806040838503121561380157600080fd5b600061380d85856132ec565b925050602083013567ffffffffffffffff81111561382a57600080fd5b6133c085828601613318565b6000806040838503121561384957600080fd5b600061357e85856132ec565b600061386183836138e3565b505060200190565b61387281614594565b82525050565b61387281614560565b600061388c82614553565b6138968185614557565b93506138a183614541565b8060005b838110156138cf5781516138b98882613855565b97506138c483614541565b9250506001016138a5565b509495945050505050565b6138728161456b565b61387281610b9a565b61387281614570565b600061390082614553565b61390a8185614557565b935061391a8185602086016145ab565b613923816145d7565b9093019392505050565b600061393882614553565b6139428185610a82565b93506139528185602086016145ab565b9290920192915050565b600081546001811660008114613979576001811461399c576139db565b607f600283041661398a8187610a82565b60ff19841681529550850192506139db565b600282046139aa8187610a82565b95506139b585614547565b60005b828110156139d4578154888201526001909101906020016139b8565b5050850192505b505092915050565b60006139f0604783614557565b7f696e697469616c43616c6c202d2043616c6c656420612066756e6374696f6e2081527f776974686f757420746865206f6e6c794d756c74695369674f776e657273206d60208201526637b234b334b2b960c91b604082015260600192915050565b6000613a5f602b83614557565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7581526a74206f6620626f756e647360a81b602082015260400192915050565b6000613aac603283614557565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526581527131b2b4bb32b91034b6b83632b6b2b73a32b960711b602082015260400192915050565b6000613b00602683614557565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206181526564647265737360d01b602082015260400192915050565b6000613b48601c83614557565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000815260200192915050565b6000613b81601b83614557565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000815260200192915050565b6000613bba602483614557565b7f4552433732313a207472616e7366657220746f20746865207a65726f206164648152637265737360e01b602082015260400192915050565b6000613c00601983614557565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000815260200192915050565b6000613c39601e83614557565b7f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815260200192915050565b6000613c72602c83614557565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657881526b34b9ba32b73a103a37b5b2b760a11b602082015260400192915050565b6000613cc0603883614557565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7781527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015260400192915050565b6000613d1f602083614557565b7f496e697469616c2063616c6c202d204e6f7420696e206f776e6572206c697374815260200192915050565b6000613d58602a83614557565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a65815269726f206164647265737360b01b602082015260400192915050565b6000613da4602983614557565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737481526832b73a103a37b5b2b760b91b602082015260400192915050565b6000613def602083614557565b7f52656d6f7665206f776e6572202d204e6f7420696e206f776e6572206c697374815260200192915050565b6000613e28604383614557565b7f617070726f7665202d2043616c6c656420612066756e6374696f6e207769746881527f6f757420746865206f6e6c794d756c74695369674f776e657273206d6f64696660208201526234b2b960e91b604082015260600192915050565b6000613e93602083614557565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373815260200192915050565b6000613ecc602c83614557565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657881526b34b9ba32b73a103a37b5b2b760a11b602082015260400192915050565b6000613f1a602083614557565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572815260200192915050565b6000613f53601983614557565b7f596f75206e65656420746f206f776e2074686520617373657400000000000000815260200192915050565b6000613f8c601b83614557565b7f417070726f7665202d204e6f7420696e206f776e6572206c6973740000000000815260200192915050565b6000613fc5602983614557565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206981526839903737ba1037bbb760b91b602082015260400192915050565b6000614010602183614557565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e658152603960f91b602082015260400192915050565b6000610d47600083610a82565b6000614060603183614557565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f8152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b602082015260400192915050565b60006140b3602c83614557565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f81526b7574206f6620626f756e647360a01b602082015260400192915050565b6000614101602583614557565b7f4552433732313a206275726e206f6620746f6b656e2074686174206973206e6f8152643a1037bbb760d91b602082015260400192915050565b6000612758828461392d565b6000612758828461395c565b6000610d4782614046565b60208101610d478284613878565b6060810161417a8286613869565b6141876020830185613869565b61281d60408301846138e3565b608081016141a28287613869565b6141af6020830186613878565b6141bc60408301856138e3565b81810360608301526141ce81846138f5565b9695505050505050565b604081016141e68285613869565b61275860208301846138e3565b6060810161417a8286613878565b60c0810161420f8289613878565b61421c6020830188613878565b61422960408301876138e3565b818103606083015261423b81866138f5565b905061424a6080830185613878565b61425760a08301846138e3565b979650505050505050565b604081016142708285613878565b61275860208301846138da565b602080825281016127588184613881565b60208101610d4782846138da565b60208101610d4782846138e3565b60208101610d4782846138ec565b60e080825281016142c9818a6138f5565b90506142d86020830189613878565b6142e56040830188613878565b6142f260608301876138e3565b818103608083015261430481866138f5565b905061431360a0830185613878565b610dda60c08301846138e3565b6020808252810161275881846138f5565b60208082528101610a7f816139e3565b60208082528101610a7f81613a52565b60208082528101610a7f81613a9f565b60208082528101610a7f81613af3565b60208082528101610a7f81613b3b565b60208082528101610a7f81613b74565b60208082528101610a7f81613bad565b60208082528101610a7f81613bf3565b60208082528101610a7f81613c2c565b60208082528101610a7f81613c65565b60208082528101610a7f81613cb3565b60208082528101610a7f81613d12565b60208082528101610a7f81613d4b565b60208082528101610a7f81613d97565b60208082528101610a7f81613de2565b60208082528101610a7f81613e1b565b60208082528101610a7f81613e86565b60208082528101610a7f81613ebf565b60208082528101610a7f81613f0d565b60208082528101610a7f81613f46565b60208082528101610a7f81613f7f565b60208082528101610a7f81613fb8565b60208082528101610a7f81614003565b60208082528101610a7f81614053565b60208082528101610a7f816140a6565b60208082528101610a7f816140f4565b60405181810167ffffffffffffffff811182821017156144f057600080fd5b604052919050565b600067ffffffffffffffff82111561450f57600080fd5b5060209081020190565b600067ffffffffffffffff82111561453057600080fd5b506020601f91909101601f19160190565b60200190565b60009081526020902090565b5190565b90815260200190565b6000610a7f82614588565b151590565b6001600160e01b03191690565b6000610a7f82614560565b6001600160a01b031690565b6000610a7f8261457d565b82818337506000910152565b60005b838110156145c65781810151838201526020016145ae565b83811115611b075750506000910152565b601f01601f191690565b6145ea81614560565b81146123f957600080fd5b6145ea8161456b565b6145ea81610b9a565b6145ea81614570565b6145ea8161457d56fea365627a7a723158201f8aa00dbb99d8daad2c08f479f5af40a690b2143bd50e038961fc52e69e599b6c6578706572696d656e74616cf564736f6c634300050b0040

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

000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c100000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000045e42d659d9f9466cd5df622506033145a9b89bc0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000007423245204e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064232454e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002868747470733a2f2f6232652d6e66742e6865726f6b756170702e636f6d2f6170692f746f6b656e2f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000009a27defa6dbf90963c44a55689822e2e593fdc240000000000000000000000003467446b5a31f678fcea43cf1fe88c307f750b6b000000000000000000000000c01d95868bb0db1836ae939fea4f8380a69e7c3c0000000000000000000000007f7b04b212a1c51216b795dcebf911766a602b9b

-----Decoded View---------------
Arg [0] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
Arg [1] : name (string): B2E NFT
Arg [2] : symbol (string): B2ENFT
Arg [3] : uri_prefix (string): https://b2e-nft.herokuapp.com/api/token/
Arg [4] : _NexiumAddress (address): 0x45e42D659D9f9466cD5DF622506033145a9b89Bc
Arg [5] : _FactoryAddress (address): 0x0000000000000000000000000000000000000000
Arg [6] : _nbApprovalNeeded (uint256): 1
Arg [7] : _ownerList (address[]): 0x9a27DefA6DBf90963c44a55689822E2e593fDC24,0x3467446b5a31F678FCeA43cf1Fe88C307F750B6b,0xC01D95868BB0DB1836AE939Fea4F8380A69E7C3c,0x7f7B04b212a1C51216B795dCeBf911766A602B9B

-----Encoded View---------------
20 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [4] : 00000000000000000000000045e42d659d9f9466cd5df622506033145a9b89bc
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [7] : 00000000000000000000000000000000000000000000000000000000000001e0
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [9] : 423245204e465400000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [11] : 4232454e46540000000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000028
Arg [13] : 68747470733a2f2f6232652d6e66742e6865726f6b756170702e636f6d2f6170
Arg [14] : 692f746f6b656e2f000000000000000000000000000000000000000000000000
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [16] : 0000000000000000000000009a27defa6dbf90963c44a55689822e2e593fdc24
Arg [17] : 0000000000000000000000003467446b5a31f678fcea43cf1fe88c307f750b6b
Arg [18] : 000000000000000000000000c01d95868bb0db1836ae939fea4f8380a69e7c3c
Arg [19] : 0000000000000000000000007f7b04b212a1c51216b795dcebf911766a602b9b


Deployed Bytecode Sourcemap

77298:10511:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86441:30;;:56;;-1:-1:-1;;;;;86441:30:0;;;;86483:9;;86441:56;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;86441:56:0;;77298:10511;82835:330;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;82835:330:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;6327:135;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6327:135:0;;;;;;;;:::i;:::-;;;;;;;;22025:152;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;22025:152:0;;;;;;;;:::i;:::-;;83463:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;83463:85:0;;;:::i;:::-;;;;;;;;33365:204;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;33365:204:0;;;;;;;;:::i;:::-;;;;;;;;32651:421;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;32651:421:0;;;;;;;;:::i;86062:265::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;86062:265:0;;;;;;;;:::i;86573:379::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;86573:379:0;;;;;;;;:::i;:::-;;;;;;;;21599:142;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;21599:142:0;;;;;;;;:::i;85098:187::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;85098:187:0;;;;;;;;:::i;22189:534::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;22189:534:0;;;;;;;;:::i;65028:96::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;65028:96:0;;;:::i;80712:440::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;80712:440:0;;;;;;;;:::i;35042:290::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;35042:290:0;;;;;;;;:::i;75859:282::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;75859:282:0;;;;;;;;:::i;64637:232::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;64637:232:0;;;;;;;;:::i;79236:120::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;79236:120:0;;;;;;;;:::i;22735:931::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;22735:931:0;;;;;;;;:::i;35978:134::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;35978:134:0;;;;;;;;:::i;21223:239::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;21223:239:0;;;;;;;;:::i;65470:199::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;65470:199:0;;;;;;;;:::i;77688:50::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;77688:50:0;;;;;;;;:::i;87088:380::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;87088:380:0;;;;;;;;:::i;31992:228::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;31992:228:0;;;;;;;;:::i;31555:211::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;31555:211:0;;;;;;;;:::i;13702:140::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13702:140:0;;;:::i;23678:314::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;23678:314:0;;;;;;;;:::i;79364:122::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;79364:122:0;;;;;;;;:::i;21474:113::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;21474:113:0;;;;;;;;:::i;81669:700::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;81669:700:0;;;;;;;;:::i;67765:122::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;67765:122:0;;;;;;;;:::i;12891:79::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12891:79:0;;;:::i;13257:92::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13257:92:0;;;:::i;79525:528::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;79525:528:0;;;;;;;;:::i;83663:89::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;83663:89:0;;;:::i;75398:45::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;75398:45:0;;;;;;;;:::i;33870:248::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;33870:248:0;;;;;;;;:::i;77633:51::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;77633:51:0;;;;;;;;:::i;85877:178::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;85877:178:0;;;;;;;;:::i;36831:268::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;36831:268:0;;;;;;;;:::i;80058:476::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;80058:476:0;;;;;;;;:::i;84031:677::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;84031:677:0;;;;;;;;:::i;76373:82::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;76373:82:0;;;:::i;84717:167::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;84717:167:0;;;;;;;;:::i;84893:147::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;84893:147:0;;;;;;;;:::i;76827:402::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;76827:402:0;;;;;;;;:::i;24004:688::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;24004:688:0;;;;;;;;:::i;75448:48::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;75448:48:0;;;;;;;;:::i;81264:400::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;81264:400:0;;;;;;;;:::i;13997:109::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13997:109:0;;;;;;;;:::i;80539:168::-;;;;;;;;;:::i;82374:455::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;82374:455:0;;;;;;;;:::i;82835:330::-;82908:16;82933:29;82977:16;82985:7;82977;:16::i;:::-;82972:165;;83019:16;;;83033:1;83019:16;;;;;;;;;;;;;;;;105:10:-1;83019:16:0;88:34:-1;136:17;;-1:-1;83019:16:0;83004:31;;83059:7;83041:12;83054:1;83041:15;;;;;;;;;;;;;:25;;;;;82972:165;;;83105:21;;;;:12;:21;;;;;;;;;83090:36;;;;;;;;;;;;;;;;;83105:21;;83090:36;;83105:21;83090:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82972:165;83148:12;-1:-1:-1;82835:330:0;;;;:::o;6327:135::-;-1:-1:-1;;;;;;6421:33:0;6397:4;6421:33;;;;;;;;;;;;;;6327:135::o;22025:152::-;22115:25;27:10:-1;;39:1;23:18;;45:23;;-1:-1;22115:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22025:152::o;83463:85::-;83535:5;83528:12;;;;;;;;-1:-1:-1;;83528:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83502:13;;83528:12;;83535:5;;83528:12;;83535:5;83528:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83463:85;;:::o;33365:204::-;33424:7;33452:16;33460:7;33452;:16::i;:::-;33444:73;;;;-1:-1:-1;;;33444:73:0;;;;;;;;;;;;;;;;;-1:-1:-1;33537:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33537:24:0;;33365:204::o;32651:421::-;32715:13;32731:16;32739:7;32731;:16::i;:::-;32715:32;;32772:5;-1:-1:-1;;;;;32766:11:0;:2;-1:-1:-1;;;;;32766:11:0;;;32758:57;;;;-1:-1:-1;;;32758:57:0;;;;;;;;;32836:10;-1:-1:-1;;;;;32836:19:0;;;;:58;;;32859:35;32876:5;32883:10;32859:16;:35::i;:::-;32828:150;;;;-1:-1:-1;;;32828:150:0;;;;;;;;;32991:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;32991:29:0;-1:-1:-1;;;;;32991:29:0;;;;;;;;;33036:28;;32991:24;;33036:28;;;;;;;32651:421;;;:::o;86062:265::-;86221:30;;86264:56;;-1:-1:-1;;;86264:56:0;;86133:4;;-1:-1:-1;;;;;86221:30:0;;;;86264:38;;:56;;86303:8;;86313:6;;86264:56;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;86264:56:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;86264:56:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;86264:56:0;;;;;;;;;86257:63;;;86062:265;;;;;:::o;86573:379::-;86811:30;;86854:91;;-1:-1:-1;;;86854:91:0;;86718:7;;-1:-1:-1;;;;;86811:30:0;;;;86854;;:91;;86885:6;;86893:11;;86906:5;;86913:4;;86919:11;;86932:12;;86854:91;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;86854:91:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;86854:91:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;86854:91:0;;;;;;;;;86847:98;86573:379;-1:-1:-1;;;;;;;;86573:379:0:o;21599:142::-;20439:10;20461:4;20439:27;20431:36;;;;;;20482:19;20510:21;20534:8;;20510:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;;;;20613:2:0;20599:17;;20593:24;;-1:-1:-1;20599:17:0;-1:-1:-1;20654:26:0;20593:24;20654:12;:26::i;:::-;20650:102;;20700:42;20729:12;20700:28;:42::i;:::-;-1:-1:-1;;21695:17:0;:38;21599:142::o;85098:187::-;85210:14;;85177:4;;-1:-1:-1;;;;;85210:14:0;85196:10;:28;85188:37;;;;;;85234:18;;;;:9;:18;;;;;;;;:30;;;;;;;;:::i;:::-;-1:-1:-1;85276:4:0;;85098:187;-1:-1:-1;;;85098:187:0:o;22189:534::-;20439:10;20461:4;20439:27;20431:36;;;;;;20482:19;20510:21;20534:8;;20510:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;;;;20613:2:0;20599:17;;20593:24;;-1:-1:-1;20599:17:0;-1:-1:-1;20654:26:0;20593:24;20654:12;:26::i;:::-;20650:102;;20700:42;20729:12;20700:28;:42::i;:::-;22281:29;22295:14;22281:13;:29::i;:::-;22273:74;;;;-1:-1:-1;;;22273:74:0;;;;;;;;;22366:24;;22417:272;22441:9;:16;-1:-1:-1;;22441:20:0;22437:24;;22417:272;;;22506:14;-1:-1:-1;;;;;22490:30:0;:9;22500:1;22490:12;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22490:12:0;:30;22486:96;;;22566:4;22544:26;;22486:96;22596:19;22592:88;;;22654:9;22664:1;22666;22664:3;22654:14;;;;;;;;;;;;;;;;;;22639:9;:12;;-1:-1:-1;;;;;22654:14:0;;;;22649:1;;22639:12;;;;;;;;;;;;;;:29;;;;;-1:-1:-1;;;;;22639:29:0;;;;;-1:-1:-1;;;;;22639:29:0;;;;;;22592:88;22463:3;;22417:272;;;-1:-1:-1;22697:9:0;:18;;;;;-1:-1:-1;;22697:18:0;;;:::i;:::-;;20768:1;22189:534;;;:::o;65028:96::-;65099:10;:17;65028:96;:::o;80712:440::-;80790:4;80825:16;80833:7;80825;:16::i;:::-;-1:-1:-1;;;;;80811:30:0;:10;-1:-1:-1;;;;;80811:30:0;;80803:68;;;;-1:-1:-1;;;80803:68:0;;;;;;;;;80884:24;;;;:15;:24;;;;;;:43;-1:-1:-1;80884:43:0;80876:52;;;;;;80965:24;;;;:15;:24;;;;;;:45;;80994:15;80965:45;:28;:45;:::i;:::-;80938:24;;;;:15;:24;;;;;;:72;;;;81021:32;;:10;;:32;;;;;81037:15;;81021:32;80938:24;81021:32;81037:15;81021:10;:32;;;;;;;:40;;81057:4;81021:40;;;81018:130;;;-1:-1:-1;81088:4:0;81081:11;;81018:130;81131:8;;;35042:290;35186:39;35205:10;35217:7;35186:18;:39::i;:::-;35178:101;;;;-1:-1:-1;;;35178:101:0;;;;;;;;;35292:32;35306:4;35312:2;35316:7;35292:13;:32::i;:::-;35042:290;;;:::o;75859:282::-;20439:10;20461:4;20439:27;20431:36;;;;;;20482:19;20510:21;20534:8;;20510:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;;;;20613:2:0;20599:17;;20593:24;;-1:-1:-1;20599:17:0;-1:-1:-1;20654:26:0;20593:24;20654:12;:26::i;:::-;20650:102;;20700:42;20729:12;20700:28;:42::i;:::-;75969:18;75990:17;:15;:17::i;:::-;75969:38;;76014:22;76020:3;76025:10;76014:5;:22::i;:::-;76043:21;;;;:9;:21;;;;;;;;:33;;;;76089:12;:24;;;;;;:40;;;;-1:-1:-1;;;75859:282:0:o;64637:232::-;64717:7;64753:16;64763:5;64753:9;:16::i;:::-;64745:5;:24;64737:80;;;;-1:-1:-1;;;64737:80:0;;;;;;;;;-1:-1:-1;;;;;64835:19:0;;;;;;:12;:19;;;;;:26;;64855:5;;64835:26;;;;;;;;;;;;;;64828:33;;64637:232;;;;:::o;79236:120::-;20439:10;20461:4;20439:27;20431:36;;;;;;20482:19;20510:21;20534:8;;20510:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;;;;20613:2:0;20599:17;;20593:24;;-1:-1:-1;20599:17:0;-1:-1:-1;20654:26:0;20593:24;20654:12;:26::i;:::-;20650:102;;20700:42;20729:12;20700:28;:42::i;:::-;-1:-1:-1;;79322:13:0;:28;;-1:-1:-1;;;;;;79322:28:0;-1:-1:-1;;;;;79322:28:0;;;;;;;;;;79236:120::o;22735:931::-;22799:7;22825:25;22839:10;22825:13;:25::i;:::-;22817:70;;;;-1:-1:-1;;;22817:70:0;;;;;;;;;22931:23;;;;;;;;22904:24;:50;22963:35;;:20;;22931:23;22963:35;:::i;:::-;-1:-1:-1;23015:24:0;23022:17;;23015:24;:::i;:::-;23050:17;27:10:-1;;39:1;23:18;;;45:23;;-1:-1;23050:34:0;;;;;;;;-1:-1:-1;;;;;;23050:34:0;23073:10;23050:34;;;;23173:21;;23167:28;23224:19;:34;;;;;;-1:-1:-1;;23224:34:0;;;;;;23288:17;;23167:28;;23288:22;23285:326;;;23330:32;;23338:4;;23330:32;;23349:12;;23330:32;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;23330:32:0;;23388:26;23401:12;23388;:26::i;:::-;23383:148;;23438:81;;-1:-1:-1;;;23438:81:0;;;;;;;;23383:148;23556:45;23588:12;23556:45;;;;;;;;;;;;;;;23285:326;-1:-1:-1;;23634:24:0;;22735:931;;;:::o;35978:134::-;36065:39;36082:4;36088:2;36092:7;36065:39;;;;;;;;;;;;:16;:39::i;21223:239::-;21284:4;;21307:126;21331:9;:16;21327:20;;21307:126;;;21387:9;21397:1;21387:12;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21376:23:0;;;21387:12;;21376:23;21372:51;;;21419:4;21412:11;;;;;21372:51;21349:3;;21307:126;;;-1:-1:-1;21448:5:0;;21223:239;-1:-1:-1;;21223:239:0:o;65470:199::-;65528:7;65564:13;:11;:13::i;:::-;65556:5;:21;65548:78;;;;-1:-1:-1;;;65548:78:0;;;;;;;;;65644:10;65655:5;65644:17;;;;;;;;;;;;;;;;65637:24;;65470:199;;;:::o;77688:50::-;;;;;;;;;;;;;:::o;87088:380::-;87322:30;;87365:96;;-1:-1:-1;;;87365:96:0;;-1:-1:-1;;;;;87322:30:0;;;;;;87365;;:96;;87396:3;;87401:6;;87409:11;;87422:5;;87429:4;;87435:11;;87448:12;;87365:96;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;87365:96:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;87365:96:0;;;;87358:103;87088:380;;;;;;;:::o;31992:228::-;32047:7;32083:20;;;:11;:20;;;;;;-1:-1:-1;;;;;32083:20:0;32122:19;32114:73;;;;-1:-1:-1;;;32114:73:0;;;;;;;;31555:211;31610:7;-1:-1:-1;;;;;31638:19:0;;31630:74;;;;-1:-1:-1;;;31630:74:0;;;;;;;;;-1:-1:-1;;;;;31724:24:0;;;;;;:17;:24;;;;;:34;;:32;:34::i;13702:140::-;13103:9;:7;:9::i;:::-;13095:54;;;;-1:-1:-1;;;13095:54:0;;;;;;;;;13785:6;;13764:40;;13801:1;;-1:-1:-1;;;;;13785:6:0;;13764:40;;13801:1;;13764:40;13815:6;:19;;-1:-1:-1;;;;;;13815:19:0;;;13702:140::o;23678:314::-;23752:4;;23769:195;23793:25;:32;23789:36;;23769:195;;;23886:22;-1:-1:-1;;;;;23854:54:0;;:25;23880:1;23854:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23854:54:0;;;23850:105;;;23939:4;23932:11;;;;;23850:105;23827:3;;23769:195;;79364:122;20439:10;20461:4;20439:27;20431:36;;;;;;20482:19;20510:21;20534:8;;20510:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;;;;20613:2:0;20599:17;;20593:24;;-1:-1:-1;20599:17:0;-1:-1:-1;20654:26:0;20593:24;20654:12;:26::i;:::-;20650:102;;20700:42;20729:12;20700:28;:42::i;:::-;-1:-1:-1;;79451:14:0;:29;;-1:-1:-1;;;;;;79451:29:0;-1:-1:-1;;;;;79451:29:0;;;;;;;;;;79364:122::o;21474:113::-;20439:10;20461:4;20439:27;20431:36;;;;;;20482:19;20510:21;20534:8;;20510:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;;;;20613:2:0;20599:17;;20593:24;;-1:-1:-1;20599:17:0;-1:-1:-1;20654:26:0;20593:24;20654:12;:26::i;:::-;20650:102;;20700:42;20729:12;20700:28;:42::i;:::-;-1:-1:-1;;21554:9:0;27:10:-1;;39:1;23:18;;45:23;;-1:-1;21554:25:0;;;;;;;;-1:-1:-1;;;;;;21554:25:0;-1:-1:-1;;;;;21554:25:0;;;;;;;;;;21474:113::o;81669:700::-;81725:16;81792:10;81772:16;81780:7;81772;:16::i;:::-;-1:-1:-1;;;;;81772:30:0;;81764:39;;;;;;81853:1;81822:21;;;:12;:21;;;;;:28;81814:41;;;;;;81918:21;;;;:12;:21;;;;;;;;;:28;81904:43;;;;;;;;;;;;;;;;81876:25;;81904:43;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;136:17;;-1:-1;81904:43:0;-1:-1:-1;81876:71:0;-1:-1:-1;81973:9:0;81968:204;81992:21;;;;:12;:21;;;;;:28;81988:32;;81968:204;;;82086:21;;;;:12;:21;;;;;:24;;82041:4;;:17;;:4;;82074:10;;82108:1;;82086:24;;;;;;;;;;;;;;82041:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;82041:70:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;;82139:21:0;;;;:12;:21;;;;;:24;;:21;;-1:-1:-1;82161:1:0;;82139:24;;;;;;;;;;;;;;82125:8;82134:1;82125:11;;;;;;;;;;;;;;;;;:38;82022:3;;81968:204;;;-1:-1:-1;82218:1:0;82187:21;;;:12;:21;;;;;:32;;82218:1;82187:32;:::i;:::-;;82266:26;82272:10;82284:7;82266:5;:26::i;:::-;82304:31;82315:10;82327:7;82304:31;;;;;;;;;;;;;;;;82356:8;81669:700;-1:-1:-1;;81669:700:0:o;67765:122::-;-1:-1:-1;;;;;67860:19:0;;;;;;:12;:19;;;;;;;;;67853:26;;;;;;;;;;;;;;;;;67824:16;;67853:26;;;67860:19;67853:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67765:122;;;:::o;12891:79::-;12956:6;;-1:-1:-1;;;;;12956:6:0;12891:79;:::o;13257:92::-;13335:6;;-1:-1:-1;;;;;13335:6:0;13321:10;:20;;13257:92::o;79525:528::-;79657:13;;-1:-1:-1;;;;;79647:23:0;;;79657:13;;79647:23;79639:32;;;;;;79687:10;:17;79708:2;79687:23;79679:32;;;;;;79721:15;79739:31;79759:10;79739:19;:31::i;:::-;79823:13;;79850:57;;-1:-1:-1;;;79850:57:0;;79721:49;;-1:-1:-1;;;;;;79823:13:0;;;;79850:27;;:57;;79878:5;;79893:4;;79900:6;;79850:57;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;79850:57:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;79850:57:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;79850:57:0;;;;;;;;;79847:106;;79936:8;;;79847:106;79995:25;;;;:16;:25;;;;;;:37;;80025:6;79995:37;:29;:37;:::i;:::-;79967:25;;;;:16;:25;;;;;;:65;;;;-1:-1:-1;79525:528:0;;;;;:::o;83663:89::-;83737:7;83730:14;;;;;;;;-1:-1:-1;;83730:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83704:13;;83730:14;;83737:7;;83730:14;;83737:7;83730:14;;;;;;;;;;;;;;;;;;;;;;;;75398:45;;;;;;;;;;;;;:::o;33870:248::-;-1:-1:-1;;;;;33950:16:0;;33956:10;33950:16;;33942:54;;;;-1:-1:-1;;;33942:54:0;;;;;;;;;34028:10;34009:30;;;;:18;:30;;;;;;;;-1:-1:-1;;;;;34009:34:0;;;;;;;;;;;:45;;-1:-1:-1;;34009:45:0;;;;;;;34070:40;;34009:34;;34028:10;34070:40;;;;34009:45;;34070:40;;;;;;;;;;33870:248;;:::o;77633:51::-;;;;;;;;;;;;;:::o;85877:178::-;85986:4;20439:10;20461:4;20439:27;20431:36;;;;;;20482:19;20510:21;20534:8;;20510:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;;;;20613:2:0;20599:17;;20593:24;;-1:-1:-1;20599:17:0;-1:-1:-1;20654:26:0;20593:24;20654:12;:26::i;:::-;20650:102;;20700:42;20729:12;20700:28;:42::i;:::-;-1:-1:-1;;86003:30:0;:44;;-1:-1:-1;;;;;;86003:44:0;-1:-1:-1;;;;;86003:44:0;;;;;;;;;;;;85877:178::o;36831:268::-;36938:31;36951:4;36957:2;36961:7;36938:12;:31::i;:::-;36988:48;37011:4;37017:2;37021:7;37030:5;36988:22;:48::i;:::-;36980:111;;;;-1:-1:-1;;;36980:111:0;;;;;;;;80058:476;80159:16;80167:7;80159;:16::i;:::-;-1:-1:-1;;;;;80145:30:0;:10;-1:-1:-1;;;;;80145:30:0;;80137:68;;;;-1:-1:-1;;;80137:68:0;;;;;;;;;80218:25;;;;:16;:25;;;;;;:44;-1:-1:-1;80218:44:0;80210:53;;;;;;80316:13;;80273:27;80368:25;;;:16;:25;;;;;;-1:-1:-1;;;;;80316:13:0;;;;80368:46;;80398:15;80368:46;:29;:46;:::i;:::-;80340:25;;;;:16;:25;;;;;;;:74;;;;80432:52;-1:-1:-1;;;80432:52:0;;-1:-1:-1;;;;;80432:23:0;;;;;:52;;80456:10;;80468:15;;80432:52;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;80432:52:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;80432:52:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;80432:52:0;;;;;;;;;80429:101;;80513:8;;;84031:677;84087:13;84121:16;84129:7;84121;:16::i;:::-;84113:25;;;;;;84184:18;;;;:9;:18;;;;;;;;;84147:56;;;;;;-1:-1:-1;;84147:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:28;;:56;;;84184:18;84147:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84216:15;:22;84242:1;84216:27;84212:489;;;84367:11;84339:58;;;;;;;-1:-1:-1;;84339:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84265:381;;84291:248;;84339:58;;;;;84367:11;84339:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;84390:6:0;84339:58;;;;;;;-1:-1:-1;;84339:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;84390:6:0;;-1:-1:-1;84339:58:0;-1:-1:-1;84339:58:0;;;84390:6;84339:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:17;:58::i;:::-;84502:18;;;;:9;:18;;;;;;84428:110;;84456:66;;84480:41;;:21;:41::i;:::-;84456:23;:66::i;:::-;84428:110;;;;;;;;;;;;;-1:-1:-1;;;84428:110:0;;;:17;:110::i;:::-;84291:17;:248::i;:::-;84548:97;84575:55;84599:30;84621:7;84599:21;:30::i;84265:381::-;84257:389;;;;;84212:489;84677:18;;;;:9;:18;;;;;;;;;84670:25;;;;;;-1:-1:-1;;84670:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84677:18;;84670:25;;84677:18;84670:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76373:82;76440:9;;;;;;;;;-1:-1:-1;76440:9:0;;76373:82;:::o;84717:167::-;84808:4;20439:10;20461:4;20439:27;20431:36;;;;;;20482:19;20510:21;20534:8;;20510:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;;;;20613:2:0;20599:17;;20593:24;;-1:-1:-1;20599:17:0;-1:-1:-1;20654:26:0;20593:24;20654:12;:26::i;:::-;20650:102;;20700:42;20729:12;20700:28;:42::i;:::-;84825:29;;;;:11;;:29;;;;;:::i;:::-;-1:-1:-1;84872:4:0;;84717:167;-1:-1:-1;;;;84717:167:0:o;84893:147::-;84974:4;20439:10;20461:4;20439:27;20431:36;;;;;;20482:19;20510:21;20534:8;;20510:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;;;;20613:2:0;20599:17;;20593:24;;-1:-1:-1;20599:17:0;-1:-1:-1;20654:26:0;20593:24;20654:12;:26::i;:::-;20650:102;;20700:42;20729:12;20700:28;:42::i;:::-;84991:19;;;;:6;;:19;;;;;:::i;76827:402::-;77056:20;;77096:28;;-1:-1:-1;;;77096:28:0;;76937:4;;-1:-1:-1;;;;;77056:20:0;;;;77088:49;;;;77056:20;;77096:21;;:28;;77118:5;;77096:28;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;77096:28:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;77096:28:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;77096:28:0;;;;;;;;;-1:-1:-1;;;;;77088:49:0;;77084:85;;;77157:4;77150:11;;;;;77084:85;77184:39;77207:5;77214:8;77184:22;:39::i;24004:688::-;24071:25;24085:10;24071:13;:25::i;:::-;24063:65;;;;-1:-1:-1;;;24063:65:0;;;;;;;;;24148:28;24165:10;24148:16;:28::i;:::-;24147:29;24139:38;;;;;;24213:24;;24196:13;:41;24192:109;;;24257:17;27:10:-1;;39:1;23:18;;45:23;;-1:-1;24257:34:0;;;;;;;;-1:-1:-1;;;;;;24257:34:0;24280:10;24257:34;;;24192:109;24349:17;;24321;:24;:45;24317:368;;24386:40;;24394:4;;24386:40;;24405:20;;24386:40;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;-1:-1;;24465:19:0;;24452:33;;-1:-1:-1;24465:19:0;;24452:12;:33::i;:::-;24447:151;;24509:77;;-1:-1:-1;;;24509:77:0;;;;;;;;24447:151;24655:19;;24623:52;;;;;;24655:19;;;;;;24623:52;;;;;;;;;;24317:368;24004:688;:::o;75448:48::-;;;;;;;;;;;;;:::o;81264:400::-;81328:7;81347:15;81365:20;81383:1;81365:13;:11;:13::i;:::-;:17;:20;:17;:20;:::i;:::-;81347:38;;81396:26;81402:10;81414:7;81396:5;:26::i;:::-;81437:9;81432:121;81456:8;:15;81452:1;:19;81432:121;;;81492:52;81505:10;81525:4;81532:8;81541:1;81532:11;;;;;;;;;;;;;;81492:12;:52::i;:::-;81473:3;;81432:121;;;-1:-1:-1;81562:21:0;;;;:12;:21;;;;;;;;:32;;;;;;;;:::i;:::-;;81606:29;81615:10;81627:7;81606:29;;;;;;;;13997:109;13103:9;:7;:9::i;:::-;13095:54;;;;-1:-1:-1;;;13095:54:0;;;;;;;;;14070:28;14089:8;14070:18;:28::i;80539:168::-;80601:4;80642:24;;;:15;:24;;;;;;:39;;80671:9;80642:39;:28;:39;:::i;:::-;80615:24;;;;:15;:24;;;;;:66;-1:-1:-1;80698:4:0;80539:168;;;:::o;82374:455::-;82437:16;82462:29;82506:16;82514:7;82506;:16::i;:::-;82501:300;;82548:16;;;82562:1;82548:16;;;;;;;;;;;;;;;;105:10:-1;82548:16:0;88:34:-1;136:17;;-1:-1;82548:16:0;82533:31;;82588:7;82570:12;82583:1;82570:15;;;;;;;82501:300;82626:9;82621:175;82645:21;;;;:12;:21;;;;;:28;82641:32;;82621:175;;;82706:83;82733:12;82747:41;82763:12;:21;82776:7;82763:21;;;;;;;;;;;82785:1;82763:24;;;;;;;;;;;;;;;;82747:15;:41::i;:::-;82706:26;:83::i;:::-;82691:98;-1:-1:-1;82675:3:0;;82621:175;;;-1:-1:-1;82812:12:0;82374:455;-1:-1:-1;;82374:455:0:o;83171:118::-;83228:4;83250:21;;;:12;:21;;;;;:28;:33;;83171:118::o;37301:155::-;37358:4;37391:20;;;:11;:20;;;;;;-1:-1:-1;;;;;37391:20:0;37429:19;;;37301:155::o;1252:184::-;1310:7;1343:1;1338;:6;;1330:49;;;;-1:-1:-1;;;1330:49:0;;;;;;;;;-1:-1:-1;1402:5:0;;;1252:184::o;37826:333::-;37911:4;37936:16;37944:7;37936;:16::i;:::-;37928:73;;;;-1:-1:-1;;;37928:73:0;;;;;;;;;38012:13;38028:16;38036:7;38028;:16::i;:::-;38012:32;;38074:5;-1:-1:-1;;;;;38063:16:0;:7;-1:-1:-1;;;;;38063:16:0;;:51;;;;38107:7;-1:-1:-1;;;;;38083:31:0;:20;38095:7;38083:11;:20::i;:::-;-1:-1:-1;;;;;38083:31:0;;38063:51;:87;;;;38118:32;38135:5;38142:7;38118:16;:32::i;66053:245::-;66139:38;66159:4;66165:2;66169:7;66139:19;:38::i;:::-;66190:47;66223:4;66229:7;66190:32;:47::i;:::-;66250:40;66278:2;66282:7;66250:27;:40::i;76269:98::-;76318:7;76341:20;76359:1;76341:13;:11;:13::i;:20::-;76334:27;;76269:98;:::o;66563:202::-;66627:24;66639:2;66643:7;66627:11;:24::i;:::-;66664:40;66692:2;66696:7;66664:27;:40::i;:::-;66717;66749:7;66717:31;:40::i;:::-;66563:202;;:::o;28922:114::-;29014:14;;28922:114::o;85587:102::-;85654:27;85666:5;85673:7;85654:11;:27::i;18456:255::-;18517:7;;;18561:119;18576:1;:8;18574:1;:10;18561:119;;;18661:1;18663;18661:3;18651:1;:8;:14;18648:1;:18;18644:1;:23;18636:1;18638;18636:4;;;;;;;;;;;;;;18622:46;18613:55;;;;;18585:3;;18561:119;;796:181;854:7;886:5;;;910:6;;;;902:46;;;;-1:-1:-1;;;902:46:0;;;;;;;;;968:1;796:181;-1:-1:-1;;;796:181:0:o;41073:356::-;41195:4;41222:15;:2;-1:-1:-1;;;;;41222:13:0;;:15::i;:::-;41217:60;;-1:-1:-1;41261:4:0;41254:11;;41217:60;41305:70;;-1:-1:-1;;;41305:70:0;;41289:13;;-1:-1:-1;;;;;41305:36:0;;;;;:70;;41342:10;;41354:4;;41360:7;;41369:5;;41305:70;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41305:70:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;41305:70:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;41305:70:0;;;;;;;;;-1:-1:-1;;;;;;41394:26:0;-1:-1:-1;;;41394:26:0;;-1:-1:-1;;41073:356:0;;;;;;;:::o;18974:432::-;19052:13;19074:16;19099:2;19074:28;;19109:16;19134:2;19109:28;;19144:16;19187:3;:10;19174:3;:10;:23;19163:35;;;;;;;;;;;;;;;;;;;;;;;;;21:6:-1;;104:10;19163:35:0;87:34:-1;135:17;;-1:-1;19163:35:0;-1:-1:-1;19144:54:0;-1:-1:-1;19144:54:0;19241:6;;19258:56;19279:3;:10;19275:1;:14;19258:56;;;19308:3;19312:1;19308:6;;;;;;;;;;;;;;;;19296:4;19301:3;;;;;;19296:9;;;;;;;;;;;:18;-1:-1:-1;;;;;19296:18:0;;;;;;;;-1:-1:-1;19291:3:0;;19258:56;;;-1:-1:-1;19326:6:0;19321:56;19342:3;:10;19338:1;:14;19321:56;;;19371:3;19375:1;19371:6;;;;;;;;;;;;;;;;19359:4;19364:3;;;;;;19359:9;;;;;;;;;;;:18;-1:-1:-1;;;;;19359:18:0;;;;;;;;-1:-1:-1;19354:3:0;;19321:56;;;-1:-1:-1;19398:4:0;;18974:432;-1:-1:-1;;;;;;;18974:432:0:o;17464:327::-;17518:11;17542:6;17538:229;;-1:-1:-1;;;;17538:229:0;;;17607:5;;17600:160;;17656:6;17648:3;17643:20;;-1:-1:-1;17700:2:0;17696:1;:6;17706:2;17695:13;-1:-1:-1;;;17694:31:0;17686:40;;17679:47;;;;17746:2;17741:7;;;;;;;;;17600:160;;17803:307;17912:13;;;17922:2;17912:13;;;;;;;;;17865;;;;17912;;;;21:6:-1;;104:10;17912:13:0;87:34:-1;135:17;;-1:-1;;17885:40:0;-1:-1:-1;17935:6:0;17930:145;17947:2;17945:1;:4;17930:145;;;18006:1;:5;;18000:1;:12;17987:25;;-1:-1:-1;;;;;;18024:9:0;;;18020:50;;18059:4;18042:11;18054:1;18042:14;;;;;;;;;;;:21;-1:-1:-1;;;;;18042:21:0;;;;;;;;;18020:50;-1:-1:-1;17951:3:0;;17930:145;;34448:147;-1:-1:-1;;;;;34552:25:0;;;34528:4;34552:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34448:147::o;21753:260::-;21819:4;;21842:142;21866:17;:24;21862:28;;21842:142;;;21930:17;21948:1;21930:20;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21919:31:0;;;21930:20;;21919:31;21915:59;;;21970:4;21963:11;;;;;21915:59;21892:3;;21842:142;;14212:229;-1:-1:-1;;;;;14286:22:0;;14278:73;;;;-1:-1:-1;;;14278:73:0;;;;;;;;;14388:6;;14367:38;;-1:-1:-1;;;;;14367:38:0;;;;14388:6;;14367:38;;14388:6;;14367:38;14416:6;:17;;-1:-1:-1;;;;;;14416:17:0;-1:-1:-1;;;;;14416:17:0;;;;;;;;;;14212:229::o;19412:377::-;19505:16;19530:19;19578:2;:9;19566:2;:9;:21;19552:36;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;136:17;;-1:-1;19552:36:0;-1:-1:-1;19530:58:0;-1:-1:-1;19602:9:0;19597:78;19619:2;:9;19615:1;:13;19597:78;;;19658:2;19661:1;19658:5;;;;;;;;;;;;;;19650:2;19653:1;19650:5;;;;;;;;;;;;;;;;;:13;19630:3;;19597:78;;;-1:-1:-1;19684:9:0;19679:88;19701:2;:9;19697:1;:13;19679:88;;;19750:2;19753:1;19750:5;;;;;;;;;;;;;;19732:2;19745:1;19735:2;:9;:11;19732:15;;;;;;;;;;;;;;;;;:23;19712:3;;19679:88;;;-1:-1:-1;19782:2:0;19412:377;-1:-1:-1;;;19412:377:0:o;40028:459::-;40142:4;-1:-1:-1;;;;;40122:24:0;:16;40130:7;40122;:16::i;:::-;-1:-1:-1;;;;;40122:24:0;;40114:78;;;;-1:-1:-1;;;40114:78:0;;;;;;;;;-1:-1:-1;;;;;40211:16:0;;40203:65;;;;-1:-1:-1;;;40203:65:0;;;;;;;;;40281:23;40296:7;40281:14;:23::i;:::-;-1:-1:-1;;;;;40317:23:0;;;;;;:17;:23;;;;;:35;;:33;:35::i;:::-;-1:-1:-1;;;;;40363:21:0;;;;;;:17;:21;;;;;:33;;:31;:33::i;:::-;40409:20;;;;:11;:20;;;;;;:25;;-1:-1:-1;;;;;;40409:25:0;-1:-1:-1;;;;;40409:25:0;;;;;;;;;40452:27;;40409:20;;40452:27;;;;;;;40028:459;;;:::o;69364:1148::-;-1:-1:-1;;;;;69655:18:0;;69630:22;69655:18;;;:12;:18;;;;;:25;:32;;69685:1;69655:32;:29;:32;:::i;:::-;69698:18;69719:26;;;:17;:26;;;;;;69630:57;;-1:-1:-1;69852:28:0;;;69848:328;;-1:-1:-1;;;;;69919:18:0;;69897:19;69919:18;;;:12;:18;;;;;:34;;69938:14;;69919:34;;;;;;;;;;;;;;69897:56;;70003:11;69970:12;:18;69983:4;-1:-1:-1;;;;;69970:18:0;-1:-1:-1;;;;;69970:18:0;;;;;;;;;;;;69989:10;69970:30;;;;;;;;;;;;;;;;;;;:44;;;;70087:30;;;:17;:30;;;;;:43;;;69848:328;-1:-1:-1;;;;;70265:18:0;;;;;;:12;:18;;;;;:27;;;;;-1:-1:-1;;70265:27:0;;;:::i;68188:186::-;-1:-1:-1;;;;;68302:16:0;;;;;;;:12;:16;;;;;;;;:23;;68273:26;;;:17;:26;;;;;:52;;;68336:16;;;39:1:-1;23:18;;45:23;;68336:30:0;;;;;;;;68188:186::o;38412:335::-;-1:-1:-1;;;;;38484:16:0;;38476:61;;;;-1:-1:-1;;;38476:61:0;;;;;;;;;38557:16;38565:7;38557;:16::i;:::-;38556:17;38548:58;;;;-1:-1:-1;;;38548:58:0;;;;;;;;;38619:20;;;;:11;:20;;;;;;;;:25;;-1:-1:-1;;;;;;38619:25:0;-1:-1:-1;;;;;38619:25:0;;;;;;;;38655:21;;:17;:21;;;;;:33;;:31;:33::i;:::-;38706;;38731:7;;-1:-1:-1;;;;;38706:33:0;;;38723:1;;38706:33;;38723:1;;38706:33;38412:335;;:::o;68575:164::-;68679:10;:17;;68652:24;;;;:15;:24;;;;;:44;;;39:1:-1;23:18;;45:23;;68707:24:0;;;;;;;68575:164::o;74610:247::-;74677:27;74689:5;74696:7;74677:11;:27::i;:::-;74763:19;;;;:10;:19;;;;;74757:33;;-1:-1:-1;;74757:33:0;;;;;;;;;;;:38;74753:97;;74819:19;;;;:10;:19;;;;;74812:26;;;:::i;5005:422::-;5372:20;5411:8;;;5005:422::o;41597:175::-;41697:1;41661:24;;;:15;:24;;;;;;-1:-1:-1;;;;;41661:24:0;:38;41657:108;;41751:1;41716:24;;;:15;:24;;;;;:37;;-1:-1:-1;;;;;;41716:37:0;;;41597:175::o;29143:110::-;29224:14;;:21;;29243:1;29224:21;:18;:21;:::i;:::-;29207:38;;29143:110::o;29044:91::-;29108:19;;29126:1;29108:19;;;29044:91::o;67049:372::-;67116:27;67128:5;67135:7;67116:11;:27::i;:::-;67156:48;67189:5;67196:7;67156:32;:48::i;:::-;67354:1;67325:26;;;:17;:26;;;;;:30;67368:45;67343:7;67368:36;:45::i;39031:333::-;39126:5;-1:-1:-1;;;;;39106:25:0;:16;39114:7;39106;:16::i;:::-;-1:-1:-1;;;;;39106:25:0;;39098:75;;;;-1:-1:-1;;;39098:75:0;;;;;;;;;39186:23;39201:7;39186:14;:23::i;:::-;-1:-1:-1;;;;;39222:24:0;;;;;;:17;:24;;;;;:36;;:34;:36::i;:::-;39300:1;39269:20;;;:11;:20;;;;;;:33;;-1:-1:-1;;;;;;39269:33:0;;;39320:36;39281:7;;39300:1;-1:-1:-1;;;;;39320:36:0;;;;;39300:1;;39320:36;39031:333;;:::o;70807:1082::-;71085:10;:17;71060:22;;71085:24;;71107:1;71085:24;:21;:24;:::i;:::-;71120:18;71141:24;;;:15;:24;;;;;;71514:10;:26;;71060:49;;-1:-1:-1;71141:24:0;;71060:49;;71514:26;;;;;;;;;;;;;;71492:48;;71578:11;71553:10;71564;71553:22;;;;;;;;;;;;;;;;;;;:36;;;;71658:28;;;:15;:28;;;;;;:41;;;71823:10;:19;;;;;-1:-1:-1;;71823:19:0;;;:::i;:::-;-1:-1:-1;;;71880:1:0;71853:24;;;-1:-1:-1;71853:15:0;:24;;;;;:28;70807:1082::o;77298:10511::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;77298:10511:0;;;-1:-1:-1;77298:10511:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:130:-1;72:20;;97:33;72:20;97:33;;313:707;;430:3;423:4;415:6;411:17;407:27;397:2;;448:1;445;438:12;397:2;485:6;472:20;507:80;522:64;579:6;522:64;;;507:80;;;498:89;;604:5;629:6;622:5;615:21;659:4;651:6;647:17;637:27;;681:4;676:3;672:14;665:21;;734:6;781:3;773:4;765:6;761:17;756:3;752:27;749:36;746:2;;;798:1;795;788:12;746:2;823:1;808:206;833:6;830:1;827:13;808:206;;;891:3;913:37;946:3;934:10;913:37;;;901:50;;-1:-1;974:4;965:14;;;;993;;;;;855:1;848:9;808:206;;;812:14;390:630;;;;;;;;1028:124;1092:20;;1117:30;1092:20;1117:30;;1159:128;1234:13;;1252:30;1234:13;1252:30;;1294:130;1361:20;;1386:33;1361:20;1386:33;;1431:134;1509:13;;1527:33;1509:13;1527:33;;1572:128;1638:20;;1663:32;1638:20;1663:32;;1707:132;1784:13;;1802:32;1784:13;1802:32;;1847:440;;1948:3;1941:4;1933:6;1929:17;1925:27;1915:2;;1966:1;1963;1956:12;1915:2;2003:6;1990:20;2025:64;2040:48;2081:6;2040:48;;2025:64;2016:73;;2109:6;2102:5;2095:21;2145:4;2137:6;2133:17;2178:4;2171:5;2167:16;2213:3;2204:6;2199:3;2195:16;2192:25;2189:2;;;2230:1;2227;2220:12;2189:2;2240:41;2274:6;2269:3;2264;2240:41;;;1908:379;;;;;;;;2295:186;2399:13;;2417:59;2399:13;2417:59;;3076:241;;3180:2;3168:9;3159:7;3155:23;3151:32;3148:2;;;3196:1;3193;3186:12;3148:2;3231:1;3248:53;3293:7;3273:9;3248:53;;3588:366;;;3709:2;3697:9;3688:7;3684:23;3680:32;3677:2;;;3725:1;3722;3715:12;3677:2;3760:1;3777:53;3822:7;3802:9;3777:53;;;3767:63;;3739:97;3867:2;3885:53;3930:7;3921:6;3910:9;3906:22;3885:53;;;3875:63;;3846:98;3671:283;;;;;;3961:491;;;;4099:2;4087:9;4078:7;4074:23;4070:32;4067:2;;;4115:1;4112;4105:12;4067:2;4150:1;4167:53;4212:7;4192:9;4167:53;;;4157:63;;4129:97;4257:2;4275:53;4320:7;4311:6;4300:9;4296:22;4275:53;;;4265:63;;4236:98;4365:2;4383:53;4428:7;4419:6;4408:9;4404:22;4383:53;;;4373:63;;4344:98;4061:391;;;;;;4459:721;;;;;4623:3;4611:9;4602:7;4598:23;4594:33;4591:2;;;4640:1;4637;4630:12;4591:2;4675:1;4692:53;4737:7;4717:9;4692:53;;;4682:63;;4654:97;4782:2;4800:53;4845:7;4836:6;4825:9;4821:22;4800:53;;;4790:63;;4761:98;4890:2;4908:53;4953:7;4944:6;4933:9;4929:22;4908:53;;;4898:63;;4869:98;5026:2;5015:9;5011:18;4998:32;5050:18;5042:6;5039:30;5036:2;;;5082:1;5079;5072:12;5036:2;5102:62;5156:7;5147:6;5136:9;5132:22;5102:62;;;5092:72;;4977:193;4585:595;;;;;;;;5187:973;;;;;;;5385:3;5373:9;5364:7;5360:23;5356:33;5353:2;;;5402:1;5399;5392:12;5353:2;5437:1;5454:53;5499:7;5479:9;5454:53;;;5444:63;;5416:97;5544:2;5562:53;5607:7;5598:6;5587:9;5583:22;5562:53;;;5552:63;;5523:98;5652:2;5670:53;5715:7;5706:6;5695:9;5691:22;5670:53;;;5660:63;;5631:98;5788:2;5777:9;5773:18;5760:32;5812:18;5804:6;5801:30;5798:2;;;5844:1;5841;5834:12;5798:2;5864:62;5918:7;5909:6;5898:9;5894:22;5864:62;;;5854:72;;5739:193;5963:3;5982:53;6027:7;6018:6;6007:9;6003:22;5982:53;;;5972:63;;5942:99;6072:3;6091:53;6136:7;6127:6;6116:9;6112:22;6091:53;;;6081:63;;6051:99;5347:813;;;;;;;;;6167:360;;;6285:2;6273:9;6264:7;6260:23;6256:32;6253:2;;;6301:1;6298;6291:12;6253:2;6336:1;6353:53;6398:7;6378:9;6353:53;;;6343:63;;6315:97;6443:2;6461:50;6503:7;6494:6;6483:9;6479:22;6461:50;;6534:366;;;6655:2;6643:9;6634:7;6630:23;6626:32;6623:2;;;6671:1;6668;6661:12;6623:2;6706:1;6723:53;6768:7;6748:9;6723:53;;;6713:63;;6685:97;6813:2;6831:53;6876:7;6867:6;6856:9;6852:22;6831:53;;6907:721;;;;;7071:3;7059:9;7050:7;7046:23;7042:33;7039:2;;;7088:1;7085;7078:12;7039:2;7123:1;7140:53;7185:7;7165:9;7140:53;;;7130:63;;7102:97;7230:2;7248:53;7293:7;7284:6;7273:9;7269:22;7248:53;;;7238:63;;7209:98;7338:2;7356:53;7401:7;7392:6;7381:9;7377:22;7356:53;;7635:491;;;;7773:2;7761:9;7752:7;7748:23;7744:32;7741:2;;;7789:1;7786;7779:12;7741:2;7824:1;7841:53;7886:7;7866:9;7841:53;;;7831:63;;7803:97;7931:2;7949:53;7994:7;7985:6;7974:9;7970:22;7949:53;;8133:377;;8262:2;8250:9;8241:7;8237:23;8233:32;8230:2;;;8278:1;8275;8268:12;8230:2;8313:31;;8364:18;8353:30;;8350:2;;;8396:1;8393;8386:12;8350:2;8416:78;8486:7;8477:6;8466:9;8462:22;8416:78;;8517:257;;8629:2;8617:9;8608:7;8604:23;8600:32;8597:2;;;8645:1;8642;8635:12;8597:2;8680:1;8697:61;8750:7;8730:9;8697:61;;8781:241;;8885:2;8873:9;8864:7;8860:23;8856:32;8853:2;;;8901:1;8898;8891:12;8853:2;8936:1;8953:53;8998:7;8978:9;8953:53;;9029:263;;9144:2;9132:9;9123:7;9119:23;9115:32;9112:2;;;9160:1;9157;9150:12;9112:2;9195:1;9212:64;9268:7;9248:9;9212:64;;9299:239;;9402:2;9390:9;9381:7;9377:23;9373:32;9370:2;;;9418:1;9415;9408:12;9370:2;9453:1;9470:52;9514:7;9494:9;9470:52;;9545:261;;9659:2;9647:9;9638:7;9634:23;9630:32;9627:2;;;9675:1;9672;9665:12;9627:2;9710:1;9727:63;9782:7;9762:9;9727:63;;9813:345;;9926:2;9914:9;9905:7;9901:23;9897:32;9894:2;;;9942:1;9939;9932:12;9894:2;9977:31;;10028:18;10017:30;;10014:2;;;10060:1;10057;10050:12;10014:2;10080:62;10134:7;10125:6;10114:9;10110:22;10080:62;;10165:1203;;;;;;;;10389:3;10377:9;10368:7;10364:23;10360:33;10357:2;;;10406:1;10403;10396:12;10357:2;10441:31;;10492:18;10481:30;;10478:2;;;10524:1;10521;10514:12;10478:2;10544:62;10598:7;10589:6;10578:9;10574:22;10544:62;;;10534:72;;10420:192;10643:2;10661:53;10706:7;10697:6;10686:9;10682:22;10661:53;;;10651:63;;10622:98;10751:2;10769:53;10814:7;10805:6;10794:9;10790:22;10769:53;;;10759:63;;10730:98;10859:2;10877:53;10922:7;10913:6;10902:9;10898:22;10877:53;;;10867:63;;10838:98;10995:3;10984:9;10980:19;10967:33;11020:18;11012:6;11009:30;11006:2;;;11052:1;11049;11042:12;11006:2;11072:62;11126:7;11117:6;11106:9;11102:22;11072:62;;;11062:72;;10946:194;11171:3;11190:53;11235:7;11226:6;11215:9;11211:22;11190:53;;;11180:63;;11150:99;11280:3;11299:53;11344:7;11335:6;11324:9;11320:22;11299:53;;;11289:63;;11259:99;10351:1017;;;;;;;;;;;11375:315;;11516:2;11504:9;11495:7;11491:23;11487:32;11484:2;;;11532:1;11529;11522:12;11484:2;11567:1;11584:90;11666:7;11646:9;11584:90;;12299:472;;;12430:2;12418:9;12409:7;12405:23;12401:32;12398:2;;;12446:1;12443;12436:12;12398:2;12481:1;12498:53;12543:7;12523:9;12498:53;;;12488:63;;12460:97;12616:2;12605:9;12601:18;12588:32;12640:18;12632:6;12629:30;12626:2;;;12672:1;12669;12662:12;12626:2;12692:63;12747:7;12738:6;12727:9;12723:22;12692:63;;12778:366;;;12899:2;12887:9;12878:7;12874:23;12870:32;12867:2;;;12915:1;12912;12905:12;12867:2;12950:1;12967:53;13012:7;12992:9;12967:53;;13152:173;;13239:46;13281:3;13273:6;13239:46;;;-1:-1;;13314:4;13305:14;;13232:93;13333:142;13424:45;13463:5;13424:45;;;13419:3;13412:58;13406:69;;;13482:113;13565:24;13583:5;13565:24;;13633:690;;13778:54;13826:5;13778:54;;;13845:86;13924:6;13919:3;13845:86;;;13838:93;;13952:56;14002:5;13952:56;;;14028:7;14056:1;14041:260;14066:6;14063:1;14060:13;14041:260;;;14133:6;14127:13;14154:63;14213:3;14198:13;14154:63;;;14147:70;;14234:60;14287:6;14234:60;;;14224:70;-1:-1;;14088:1;14081:9;14041:260;;;-1:-1;14314:3;;13757:566;-1:-1;;;;;13757:566;14331:104;14408:21;14423:5;14408:21;;14442:113;14525:24;14543:5;14525:24;;14562:110;14643:23;14660:5;14643:23;;14679:343;;14789:38;14821:5;14789:38;;;14839:70;14902:6;14897:3;14839:70;;;14832:77;;14914:52;14959:6;14954:3;14947:4;14940:5;14936:16;14914:52;;;14987:29;15009:6;14987:29;;;14978:39;;;;14769:253;-1:-1;;;14769:253;15029:356;;15157:38;15189:5;15157:38;;;15207:88;15288:6;15283:3;15207:88;;;15200:95;;15300:52;15345:6;15340:3;15333:4;15326:5;15322:16;15300:52;;;15364:16;;;;;15137:248;-1:-1;;15137:248;15415:879;;15550:5;15544:12;15584:1;15573:9;15569:17;15597:1;15592:267;;;;15870:1;15865:423;;;;15562:726;;15592:267;15670:4;15666:1;15655:9;15651:17;15647:28;15689:88;15770:6;15765:3;15689:88;;;-1:-1;;15796:25;;15784:38;;15682:95;-1:-1;15836:16;;;-1:-1;15592:267;;15865:423;15934:1;15923:9;15919:17;15950:88;16031:6;16026:3;15950:88;;;15943:95;;16060:37;16091:5;16060:37;;;16113:1;16121:130;16135:6;16132:1;16129:13;16121:130;;;16194:14;;16181:11;;;16174:35;16241:1;16228:15;;;;16157:4;16150:12;16121:130;;;-1:-1;;16265:16;;;-1:-1;15562:726;;15520:774;;;;;;16657:566;;16817:67;16881:2;16876:3;16817:67;;;16917:66;16897:87;;17018:66;17013:2;17004:12;;16997:88;-1:-1;;;17114:2;17105:12;;17098:88;17214:2;17205:12;;16803:420;-1:-1;;16803:420;17232:465;;17392:67;17456:2;17451:3;17392:67;;;17492:66;17472:87;;-1:-1;;;17588:2;17579:12;;17572:88;17688:2;17679:12;;17378:319;-1:-1;;17378:319;17706:465;;17866:67;17930:2;17925:3;17866:67;;;17966:66;17946:87;;-1:-1;;;18062:2;18053:12;;18046:88;18162:2;18153:12;;17852:319;-1:-1;;17852:319;18180:465;;18340:67;18404:2;18399:3;18340:67;;;18440:66;18420:87;;-1:-1;;;18536:2;18527:12;;18520:88;18636:2;18627:12;;18326:319;-1:-1;;18326:319;18654:364;;18814:67;18878:2;18873:3;18814:67;;;18914:66;18894:87;;19009:2;19000:12;;18800:218;-1:-1;;18800:218;19027:364;;19187:67;19251:2;19246:3;19187:67;;;19287:66;19267:87;;19382:2;19373:12;;19173:218;-1:-1;;19173:218;19400:465;;19560:67;19624:2;19619:3;19560:67;;;19660:66;19640:87;;-1:-1;;;19756:2;19747:12;;19740:88;19856:2;19847:12;;19546:319;-1:-1;;19546:319;19874:364;;20034:67;20098:2;20093:3;20034:67;;;20134:66;20114:87;;20229:2;20220:12;;20020:218;-1:-1;;20020:218;20247:364;;20407:67;20471:2;20466:3;20407:67;;;20507:66;20487:87;;20602:2;20593:12;;20393:218;-1:-1;;20393:218;20620:465;;20780:67;20844:2;20839:3;20780:67;;;20880:66;20860:87;;-1:-1;;;20976:2;20967:12;;20960:88;21076:2;21067:12;;20766:319;-1:-1;;20766:319;21094:465;;21254:67;21318:2;21313:3;21254:67;;;21354:66;21334:87;;21455:66;21450:2;21441:12;;21434:88;21550:2;21541:12;;21240:319;-1:-1;;21240:319;21568:364;;21728:67;21792:2;21787:3;21728:67;;;21828:66;21808:87;;21923:2;21914:12;;21714:218;-1:-1;;21714:218;21941:465;;22101:67;22165:2;22160:3;22101:67;;;22201:66;22181:87;;-1:-1;;;22297:2;22288:12;;22281:88;22397:2;22388:12;;22087:319;-1:-1;;22087:319;22415:465;;22575:67;22639:2;22634:3;22575:67;;;22675:66;22655:87;;-1:-1;;;22771:2;22762:12;;22755:88;22871:2;22862:12;;22561:319;-1:-1;;22561:319;22889:364;;23049:67;23113:2;23108:3;23049:67;;;23149:66;23129:87;;23244:2;23235:12;;23035:218;-1:-1;;23035:218;23262:566;;23422:67;23486:2;23481:3;23422:67;;;23522:66;23502:87;;23623:66;23618:2;23609:12;;23602:88;-1:-1;;;23719:2;23710:12;;23703:88;23819:2;23810:12;;23408:420;-1:-1;;23408:420;23837:364;;23997:67;24061:2;24056:3;23997:67;;;24097:66;24077:87;;24192:2;24183:12;;23983:218;-1:-1;;23983:218;24210:465;;24370:67;24434:2;24429:3;24370:67;;;24470:66;24450:87;;-1:-1;;;24566:2;24557:12;;24550:88;24666:2;24657:12;;24356:319;-1:-1;;24356:319;24684:364;;24844:67;24908:2;24903:3;24844:67;;;24944:66;24924:87;;25039:2;25030:12;;24830:218;-1:-1;;24830:218;25057:364;;25217:67;25281:2;25276:3;25217:67;;;25317:66;25297:87;;25412:2;25403:12;;25203:218;-1:-1;;25203:218;25430:364;;25590:67;25654:2;25649:3;25590:67;;;25690:66;25670:87;;25785:2;25776:12;;25576:218;-1:-1;;25576:218;25803:465;;25963:67;26027:2;26022:3;25963:67;;;26063:66;26043:87;;-1:-1;;;26159:2;26150:12;;26143:88;26259:2;26250:12;;25949:319;-1:-1;;25949:319;26277:465;;26437:67;26501:2;26496:3;26437:67;;;26537:66;26517:87;;-1:-1;;;26633:2;26624:12;;26617:88;26733:2;26724:12;;26423:319;-1:-1;;26423:319;26751:296;;26928:83;27009:1;27004:3;26928:83;;27056:465;;27216:67;27280:2;27275:3;27216:67;;;27316:66;27296:87;;-1:-1;;;27412:2;27403:12;;27396:88;27512:2;27503:12;;27202:319;-1:-1;;27202:319;27530:465;;27690:67;27754:2;27749:3;27690:67;;;27790:66;27770:87;;-1:-1;;;27886:2;27877:12;;27870:88;27986:2;27977:12;;27676:319;-1:-1;;27676:319;28004:465;;28164:67;28228:2;28223:3;28164:67;;;28264:66;28244:87;;-1:-1;;;28360:2;28351:12;;28344:88;28460:2;28451:12;;28150:319;-1:-1;;28150:319;28707:262;;28851:93;28940:3;28931:6;28851:93;;28976:256;;29117:90;29203:3;29194:6;29117:90;;29239:370;;29437:147;29580:3;29437:147;;29616:213;29734:2;29719:18;;29748:71;29723:9;29792:6;29748:71;;29836:467;30026:2;30011:18;;30040:79;30015:9;30092:6;30040:79;;;30130:80;30206:2;30195:9;30191:18;30182:6;30130:80;;;30221:72;30289:2;30278:9;30274:18;30265:6;30221:72;;30310:647;30538:3;30523:19;;30553:79;30527:9;30605:6;30553:79;;;30643:72;30711:2;30700:9;30696:18;30687:6;30643:72;;;30726;30794:2;30783:9;30779:18;30770:6;30726:72;;;30846:9;30840:4;30836:20;30831:2;30820:9;30816:18;30809:48;30871:76;30942:4;30933:6;30871:76;;;30863:84;30509:448;-1:-1;;;;;;30509:448;30964:340;31118:2;31103:18;;31132:79;31107:9;31184:6;31132:79;;;31222:72;31290:2;31279:9;31275:18;31266:6;31222:72;;31311:451;31493:2;31478:18;;31507:71;31482:9;31551:6;31507:71;;31769:855;32045:3;32030:19;;32060:71;32034:9;32104:6;32060:71;;;32142:72;32210:2;32199:9;32195:18;32186:6;32142:72;;;32225;32293:2;32282:9;32278:18;32269:6;32225:72;;;32345:9;32339:4;32335:20;32330:2;32319:9;32315:18;32308:48;32370:76;32441:4;32432:6;32370:76;;;32362:84;;32457:73;32525:3;32514:9;32510:19;32501:6;32457:73;;;32541;32609:3;32598:9;32594:19;32585:6;32541:73;;;32016:608;;;;;;;;;;32631:312;32771:2;32756:18;;32785:71;32760:9;32829:6;32785:71;;;32867:66;32929:2;32918:9;32914:18;32905:6;32867:66;;32950:361;33118:2;33132:47;;;33103:18;;33193:108;33103:18;33287:6;33193:108;;33318:201;33430:2;33415:18;;33444:65;33419:9;33482:6;33444:65;;33526:213;33644:2;33629:18;;33658:71;33633:9;33702:6;33658:71;;33746:209;33862:2;33847:18;;33876:69;33851:9;33918:6;33876:69;;33962:1051;34284:3;34299:47;;;34269:19;;34360:76;34269:19;34422:6;34360:76;;;34352:84;;34447:72;34515:2;34504:9;34500:18;34491:6;34447:72;;;34530;34598:2;34587:9;34583:18;34574:6;34530:72;;;34613;34681:2;34670:9;34666:18;34657:6;34613:72;;;34734:9;34728:4;34724:20;34718:3;34707:9;34703:19;34696:49;34759:76;34830:4;34821:6;34759:76;;;34751:84;;34846:73;34914:3;34903:9;34899:19;34890:6;34846:73;;;34930;34998:3;34987:9;34983:19;34974:6;34930:73;;35020:301;35158:2;35172:47;;;35143:18;;35233:78;35143:18;35297:6;35233:78;;35328:407;35519:2;35533:47;;;35504:18;;35594:131;35504:18;35594:131;;35742:407;35933:2;35947:47;;;35918:18;;36008:131;35918:18;36008:131;;36156:407;36347:2;36361:47;;;36332:18;;36422:131;36332:18;36422:131;;36570:407;36761:2;36775:47;;;36746:18;;36836:131;36746:18;36836:131;;36984:407;37175:2;37189:47;;;37160:18;;37250:131;37160:18;37250:131;;37398:407;37589:2;37603:47;;;37574:18;;37664:131;37574:18;37664:131;;37812:407;38003:2;38017:47;;;37988:18;;38078:131;37988:18;38078:131;;38226:407;38417:2;38431:47;;;38402:18;;38492:131;38402:18;38492:131;;38640:407;38831:2;38845:47;;;38816:18;;38906:131;38816:18;38906:131;;39054:407;39245:2;39259:47;;;39230:18;;39320:131;39230:18;39320:131;;39468:407;39659:2;39673:47;;;39644:18;;39734:131;39644:18;39734:131;;39882:407;40073:2;40087:47;;;40058:18;;40148:131;40058:18;40148:131;;40296:407;40487:2;40501:47;;;40472:18;;40562:131;40472:18;40562:131;;40710:407;40901:2;40915:47;;;40886:18;;40976:131;40886:18;40976:131;;41124:407;41315:2;41329:47;;;41300:18;;41390:131;41300:18;41390:131;;41538:407;41729:2;41743:47;;;41714:18;;41804:131;41714:18;41804:131;;41952:407;42143:2;42157:47;;;42128:18;;42218:131;42128:18;42218:131;;42366:407;42557:2;42571:47;;;42542:18;;42632:131;42542:18;42632:131;;42780:407;42971:2;42985:47;;;42956:18;;43046:131;42956:18;43046:131;;43194:407;43385:2;43399:47;;;43370:18;;43460:131;43370:18;43460:131;;43608:407;43799:2;43813:47;;;43784:18;;43874:131;43784:18;43874:131;;44022:407;44213:2;44227:47;;;44198:18;;44288:131;44198:18;44288:131;;44436:407;44627:2;44641:47;;;44612:18;;44702:131;44612:18;44702:131;;44850:407;45041:2;45055:47;;;45026:18;;45116:131;45026:18;45116:131;;45264:407;45455:2;45469:47;;;45440:18;;45530:131;45440:18;45530:131;;45678:407;45869:2;45883:47;;;45854:18;;45944:131;45854:18;45944:131;;46312:256;46374:2;46368:9;46400:17;;;46475:18;46460:34;;46496:22;;;46457:62;46454:2;;;46532:1;46529;46522:12;46454:2;46548;46541:22;46352:216;;-1:-1;46352:216;46575:304;;46734:18;46726:6;46723:30;46720:2;;;46766:1;46763;46756:12;46720:2;-1:-1;46801:4;46789:17;;;46854:15;;46657:222;46886:321;;47029:18;47021:6;47018:30;47015:2;;;47061:1;47058;47051:12;47015:2;-1:-1;47192:4;47128;47105:17;;;;-1:-1;;47101:33;47182:15;;46952:255;47543:151;47667:4;47658:14;;47615:79;47701:157;;47795:14;;;47837:4;47824:18;;;47754:104;47865:137;47968:12;;47939:63;48382:178;48500:19;;;48549:4;48540:14;;48493:67;49064:91;;49126:24;49144:5;49126:24;;49268:85;49334:13;49327:21;;49310:43;49439:144;-1:-1;;;;;;49500:78;;49483:100;49590:117;;49678:24;49696:5;49678:24;;49714:121;-1:-1;;;;;49776:54;;49759:76;49921:129;;50008:37;50039:5;50008:37;;50301:145;50382:6;50377:3;50372;50359:30;-1:-1;50438:1;50420:16;;50413:27;50352:94;50455:268;50520:1;50527:101;50541:6;50538:1;50535:13;50527:101;;;50608:11;;;50602:18;50589:11;;;50582:39;50563:2;50556:10;50527:101;;;50643:6;50640:1;50637:13;50634:2;;;-1:-1;;50708:1;50690:16;;50683:27;50504:219;50731:97;50819:2;50799:14;-1:-1;;50795:28;;50779:49;50836:117;50905:24;50923:5;50905:24;;;50898:5;50895:35;50885:2;;50944:1;50941;50934:12;51100:111;51166:21;51181:5;51166:21;;51218:117;51287:24;51305:5;51287:24;;51342:115;51410:23;51427:5;51410:23;;51464:169;51559:50;51603:5;51559:50;

Swarm Source

bzzr://1f8aa00dbb99d8daad2c08f479f5af40a690b2143bd50e038961fc52e69e599b
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.